From 5a5c24441a4b0da9080577a1efbda7a1c8093a55 Mon Sep 17 00:00:00 2001 From: Vlad Cananau Date: Mon, 6 Mar 2017 13:33:08 +0000 Subject: [PATCH 01/56] Support for version 2017-03-01 of Azure Traffic Manager REST API. Geographic profiles --- .../Generated/EndpointsOperations.cs | 27 ++- .../EndpointsOperationsExtensions.cs | 8 +- .../GeographicHierarchiesOperations.cs | 209 ++++++++++++++++++ ...ographicHierarchiesOperationsExtensions.cs | 52 +++++ .../Generated/IEndpointsOperations.cs | 8 +- .../IGeographicHierarchiesOperations.cs | 33 +++ .../Generated/IProfilesOperations.cs | 8 +- .../ITrafficManagerManagementClient.cs | 13 +- ...erRelativeDnsNameAvailabilityParameters.cs | 8 +- .../Generated/Models/DnsConfig.cs | 8 +- .../Generated/Models/Endpoint.cs | 32 ++- .../Generated/Models/MonitorConfig.cs | 8 +- .../Generated/Models/Page.cs | 8 +- .../Generated/Models/Profile.cs | 12 +- .../Generated/Models/Region.cs | 56 +++++ .../Generated/Models/Resource.cs | 8 +- .../TrafficManagerGeographicHierarchy.cs | 46 ++++ .../Models/TrafficManagerNameAvailability.cs | 8 +- .../Generated/ProfilesOperations.cs | 36 +-- .../Generated/ProfilesOperationsExtensions.cs | 8 +- .../TrafficManagerManagementClient.cs | 16 +- .../Properties/AssemblyInfo.cs | 4 +- .../project.json | 2 +- .../Helpers/TrafficManagerHelper.cs | 47 ++-- .../ScenarioTests/EndpointScenarioTests.cs | 70 ++++++ .../GeographicHierarchyScenarioTests.cs | 48 ++++ .../ScenarioTests/ProfileScenarioTests.cs | 24 +- 27 files changed, 670 insertions(+), 137 deletions(-) create mode 100644 src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs create mode 100644 src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs create mode 100644 src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs create mode 100644 src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs create mode 100644 src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs create mode 100644 src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/EndpointScenarioTests.cs create mode 100644 src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/GeographicHierarchyScenarioTests.cs diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs index 0a5f41545ada..c11f29de1795 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { @@ -169,9 +167,12 @@ internal EndpointsOperations(TrafficManagerManagementClient client) // Serialize Request string _requestContent = null; - _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); + _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (this.Client.Credentials != null) { @@ -582,9 +583,12 @@ internal EndpointsOperations(TrafficManagerManagementClient client) // Serialize Request string _requestContent = null; - _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); + _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (this.Client.Credentials != null) { @@ -827,6 +831,7 @@ internal EndpointsOperations(TrafficManagerManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs index c282af716474..fcff44526e2b 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs new file mode 100644 index 000000000000..74f6b248548b --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs @@ -0,0 +1,209 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.TrafficManager +{ + using System; + using System.Linq; + using System.Collections.Generic; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Text; + using System.Text.RegularExpressions; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using Microsoft.Rest.Azure; + using Models; + + /// + /// GeographicHierarchiesOperations operations. + /// + internal partial class GeographicHierarchiesOperations : IServiceOperations, IGeographicHierarchiesOperations + { + /// + /// Initializes a new instance of the GeographicHierarchiesOperations class. + /// + /// + /// Reference to the service client. + /// + internal GeographicHierarchiesOperations(TrafficManagerManagementClient client) + { + if (client == null) + { + throw new ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the TrafficManagerManagementClient + /// + public TrafficManagerManagementClient Client { get; private set; } + + /// + /// Gets the default Geographic Hierarchy used by the Geographic traffic + /// routing method. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetDefaultWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetDefault", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Network/trafficManagerGeographicHierarchies/default").ToString(); + List _queryParameters = new List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.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 (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.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 = SafeJsonConvert.DeserializeObject(_responseContent, this.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 = SafeJsonConvert.DeserializeObject(_responseContent, this.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/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs new file mode 100644 index 000000000000..fa40ac3d21de --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs @@ -0,0 +1,52 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.TrafficManager +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for GeographicHierarchiesOperations. + /// + public static partial class GeographicHierarchiesOperationsExtensions + { + /// + /// Gets the default Geographic Hierarchy used by the Geographic traffic + /// routing method. + /// + /// + /// The operations group for this extension method. + /// + public static TrafficManagerGeographicHierarchy GetDefault(this IGeographicHierarchiesOperations operations) + { + return Task.Factory.StartNew(s => ((IGeographicHierarchiesOperations)s).GetDefaultAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the default Geographic Hierarchy used by the Geographic traffic + /// routing method. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task GetDefaultAsync(this IGeographicHierarchiesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetDefaultWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs index 148a9e18b085..81d802f0d2ab 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs new file mode 100644 index 000000000000..242794ab4a4b --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs @@ -0,0 +1,33 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.TrafficManager +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// GeographicHierarchiesOperations operations. + /// + public partial interface IGeographicHierarchiesOperations + { + /// + /// Gets the default Geographic Hierarchy used by the Geographic + /// traffic routing method. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetDefaultWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs index 4283fa93cef1..f74a6a50f7e7 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs index e7b2a5376a43..0545a707b497 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { @@ -80,5 +78,10 @@ public partial interface ITrafficManagerManagementClient : IDisposable /// IProfilesOperations Profiles { get; } + /// + /// Gets the IGeographicHierarchiesOperations. + /// + IGeographicHierarchiesOperations GeographicHierarchies { get; } + } } diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs index 2d2174fcdf59..8559c2416911 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs index 57080f1e1904..652ba02ae779 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs index c743b9cffe21..c5c4e8f94561 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { @@ -15,7 +13,7 @@ namespace Microsoft.Azure.Management.TrafficManager.Models using Microsoft.Rest.Azure; /// - /// Class respresenting a Traffic Manager endpoint. + /// Class representing a Traffic Manager endpoint. /// [JsonTransformation] public partial class Endpoint @@ -28,7 +26,7 @@ public Endpoint() { } /// /// Initializes a new instance of the Endpoint class. /// - public Endpoint(string id = default(string), string name = default(string), string type = default(string), string targetResourceId = default(string), string target = default(string), string endpointStatus = default(string), long? weight = default(long?), long? priority = default(long?), string endpointLocation = default(string), string endpointMonitorStatus = default(string), long? minChildEndpoints = default(long?)) + public Endpoint(string id = default(string), string name = default(string), string type = default(string), string targetResourceId = default(string), string target = default(string), string endpointStatus = default(string), long? weight = default(long?), long? priority = default(long?), string endpointLocation = default(string), string endpointMonitorStatus = default(string), long? minChildEndpoints = default(long?), IList geoMapping = default(IList)) { Id = id; Name = name; @@ -41,6 +39,7 @@ public Endpoint() { } EndpointLocation = endpointLocation; EndpointMonitorStatus = endpointMonitorStatus; MinChildEndpoints = minChildEndpoints; + GeoMapping = geoMapping; } /// @@ -94,17 +93,17 @@ public Endpoint() { } /// /// Gets or sets the priority of this endpoint when using the - /// ‘Priority’ traffic routing method. Possible values are from 1 - /// to 1000, lower values represent higher priority. This is an - /// optional parameter. If specified, it must be specified on all - /// endpoints, and no two endpoints can share the same priority value. + /// ‘Priority’ traffic routing method. Possible values are from 1 to + /// 1000, lower values represent higher priority. This is an optional + /// parameter. If specified, it must be specified on all endpoints, + /// and no two endpoints can share the same priority value. /// [JsonProperty(PropertyName = "properties.priority")] public long? Priority { get; set; } /// /// Specifies the location of the external or nested endpoints when - /// using the ‘Performance’ traffic routing method. + /// using the ‘Performance’ traffic routing method. /// [JsonProperty(PropertyName = "properties.endpointLocation")] public string EndpointLocation { get; set; } @@ -124,5 +123,14 @@ public Endpoint() { } [JsonProperty(PropertyName = "properties.minChildEndpoints")] public long? MinChildEndpoints { get; set; } + /// + /// Gets or sets the list of countries/regions mapped to this endpoint + /// when using the ‘Geographic’ traffic routing method. Please + /// consult Traffic Manager Geographic documentation for a full list + /// of accepted values. + /// + [JsonProperty(PropertyName = "properties.geoMapping")] + public IList GeoMapping { get; set; } + } } diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs index 392d917f3cb1..7b8a5a27e85c 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs index 886378427cee..4fc398a563b6 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs index 27e2702c56dc..4a2fb9819f6d 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { @@ -47,8 +45,8 @@ public Profile() { } /// /// Gets or sets the traffic routing method of the Traffic Manager - /// profile. Possible values are 'Performance', 'Weighted', or - /// 'Priority'. + /// profile. Possible values are 'Performance', 'Weighted', + /// 'Priority' or 'Geographic'. /// [JsonProperty(PropertyName = "properties.trafficRoutingMethod")] public string TrafficRoutingMethod { get; set; } diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs new file mode 100644 index 000000000000..f537f31c3cc4 --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs @@ -0,0 +1,56 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.TrafficManager.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Class representing a region in the Geographic hierarchy used with the + /// Geographic traffic routing method. + /// + public partial class Region + { + /// + /// Initializes a new instance of the Region class. + /// + public Region() { } + + /// + /// Initializes a new instance of the Region class. + /// + public Region(string code = default(string), string name = default(string), IList regions = default(IList)) + { + Code = code; + Name = name; + Regions = regions; + } + + /// + /// The code of the region + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; set; } + + /// + /// The name of the region + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// The list of Regions grouped under this Region in the Geographic + /// Hierarchy. + /// + [JsonProperty(PropertyName = "regions")] + public IList Regions { get; set; } + + } +} diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs index acc9f414d7fe..75c174eaa7a4 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs new file mode 100644 index 000000000000..8ed009bdb424 --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs @@ -0,0 +1,46 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.TrafficManager.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Class representing the Geographic hierarchy used with the Geographic + /// traffic routing method. + /// + [JsonTransformation] + public partial class TrafficManagerGeographicHierarchy : Resource + { + /// + /// Initializes a new instance of the + /// TrafficManagerGeographicHierarchy class. + /// + public TrafficManagerGeographicHierarchy() { } + + /// + /// Initializes a new instance of the + /// TrafficManagerGeographicHierarchy class. + /// + public TrafficManagerGeographicHierarchy(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), Region geographicHierarchy = default(Region)) + : base(id, name, type, location, tags) + { + GeographicHierarchy = geographicHierarchy; + } + + /// + /// The region at the root of the hierarchy from all the regions in + /// the hierarchy can be retrieved. + /// + [JsonProperty(PropertyName = "properties.geographicHierarchy")] + public Region GeographicHierarchy { get; set; } + + } +} diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs index e54df47c9167..d22f5a70d2ab 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs index 40dd2fd887f7..1c2034b0ee73 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { @@ -133,9 +131,12 @@ internal ProfilesOperations(TrafficManagerManagementClient client) // Serialize Request string _requestContent = null; - _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); + _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (this.Client.Credentials != null) { @@ -847,9 +848,12 @@ internal ProfilesOperations(TrafficManagerManagementClient client) // Serialize Request string _requestContent = null; - _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); + _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (this.Client.Credentials != null) { @@ -1074,6 +1078,7 @@ internal ProfilesOperations(TrafficManagerManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1209,9 +1214,12 @@ internal ProfilesOperations(TrafficManagerManagementClient client) // Serialize Request string _requestContent = null; - _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); + _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (this.Client.Credentials != null) { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs index a7c71cecaf8d..00e1632c484b 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs index 5b105dc326d6..6e3c792f3453 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs @@ -1,8 +1,6 @@ -// 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 0.15.0.0 -// Changes may cause incorrect behavior and will be lost if the code is regenerated. +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. namespace Microsoft.Azure.Management.TrafficManager { @@ -84,6 +82,11 @@ public partial class TrafficManagerManagementClient : ServiceClient public virtual IProfilesOperations Profiles { get; private set; } + /// + /// Gets the IGeographicHierarchiesOperations. + /// + public virtual IGeographicHierarchiesOperations GeographicHierarchies { get; private set; } + /// /// Initializes a new instance of the TrafficManagerManagementClient class. /// @@ -265,8 +268,9 @@ private void Initialize() { this.Endpoints = new EndpointsOperations(this); this.Profiles = new ProfilesOperations(this); + this.GeographicHierarchies = new GeographicHierarchiesOperations(this); this.BaseUri = new Uri("https://management.azure.com"); - this.ApiVersion = "2015-11-01"; + this.ApiVersion = "2017-03-01"; this.AcceptLanguage = "en-US"; this.LongRunningOperationRetryTimeout = 30; this.GenerateClientRequestId = true; diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs index 46cff83775f0..08c52ec8195a 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs @@ -8,8 +8,8 @@ [assembly: AssemblyTitle("Microsoft Azure Traffic Manager Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Traffic Manager management functions for managing the Microsoft Azure Traffic Manager service.")] -[assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.1.0.0")] +[assembly: AssemblyVersion("2.2.0.0")] +[assembly: AssemblyFileVersion("2.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json index c7183cfbc6c4..759b945a1c87 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json @@ -1,5 +1,5 @@ { - "version": "2.1.0-preview", + "version": "2.2.0-preview", "description": "Microsoft Azure Management TrafficManager Library", "authors": [ "Microsoft" ], diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/Helpers/TrafficManagerHelper.cs b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/Helpers/TrafficManagerHelper.cs index 8685a204432d..b1d3b40bd457 100644 --- a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/Helpers/TrafficManagerHelper.cs +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/Helpers/TrafficManagerHelper.cs @@ -36,7 +36,27 @@ public static Profile BuildProfile(string id, string name, string type, string l endpoints: endpoints); } - public static Profile GenerateDefaultProfile(string profileName) + public static Profile GenerateDefaultProfileWithExternalEndpoint(string profileName, string trafficRoutingMethod = "Performance") + { + Profile defaultProfile = GenerateDefaultEmptyProfile(profileName, trafficRoutingMethod); + defaultProfile.Endpoints = new[] + { + new Endpoint + { + Id = null, + Name = "My external endpoint", + Type = "Microsoft.network/TrafficManagerProfiles/ExternalEndpoints", + TargetResourceId = null, + Target = "foobar.contoso.com", + EndpointLocation = "North Europe", + EndpointStatus = "Enabled" + } + }; + + return defaultProfile; + } + + public static Profile GenerateDefaultEmptyProfile(string profileName, string trafficRoutingMethod = "Performance") { return TrafficManagerHelper.BuildProfile( id: null, @@ -45,31 +65,24 @@ public static Profile GenerateDefaultProfile(string profileName) location: "global", tags: null, profileStatus: "Enabled", - trafficRoutingMethod: "Performance", + trafficRoutingMethod: trafficRoutingMethod, dnsConfig: new DnsConfig { RelativeName = profileName, Ttl = 35 - }, + }, monitorConfig: new MonitorConfig { Protocol = "http", Port = 80, Path = "/testpath.aspx" - }, - endpoints: new [] - { - new Endpoint - { - Id = null, - Name = "My external endpoint", - Type = "Microsoft.network/TrafficManagerProfiles/ExternalEndpoints", - TargetResourceId = null, - Target = "foobar.contoso.com", - EndpointLocation = "North Europe", - EndpointStatus = "Enabled" - } - }); + }, + endpoints: null); + } + + public static string GenerateName() + { + return TestUtilities.GenerateName("azuresdkfornetautoresttrafficmanager"); } } } diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/EndpointScenarioTests.cs b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/EndpointScenarioTests.cs new file mode 100644 index 000000000000..73d00658c445 --- /dev/null +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/EndpointScenarioTests.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. + +namespace Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests +{ + using System.Collections.Generic; + using System.Linq; + using global::TrafficManager.Tests.Helpers; + using Microsoft.Azure.Management.Resources.Models; + using Microsoft.Azure.Management.TrafficManager.Models; + using Microsoft.Azure.Management.TrafficManager.Testing.Helpers; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + + public class EndpointScenarioTests : TestBase + { + [Fact] + public void CrudEndpointGeographicProfile() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + TrafficManagerManagementClient trafficManagerClient = this.GetTrafficManagerManagementClient(context); + + string resourceGroupName = TrafficManagerHelper.GenerateName(); + string profileName = TrafficManagerHelper.GenerateName(); + ResourceGroup resourceGroup = this.CreateResourceGroup(context, resourceGroupName); + + // Create the profile + Profile profile = trafficManagerClient.Profiles.CreateOrUpdate( + resourceGroup.Name, + profileName, + TrafficManagerHelper.GenerateDefaultEmptyProfile(profileName, "Geographic")); + + Assert.Equal("Geographic", profile.TrafficRoutingMethod); + + Endpoint endpoint = new Endpoint + { + Id = null, + Name = "My external endpoint", + Type = "Microsoft.network/TrafficManagerProfiles/ExternalEndpoints", + TargetResourceId = null, + Target = "foobar.contoso.com", + EndpointStatus = "Enabled", + GeoMapping = new[] { "GEO-AS", "GEO-AF" }, + }; + + // Create the endpoint + Endpoint createEndpointResponse = trafficManagerClient.Endpoints.CreateOrUpdate( + resourceGroup.Name, + profileName, + "ExternalEndpoints", + endpoint.Name, + endpoint); + + Assert.Equal("GEO-AS", createEndpointResponse.GeoMapping[0]); + Assert.Equal("GEO-AF", createEndpointResponse.GeoMapping[1]); + + // Get the endpoint + Endpoint endpointGetResponse = trafficManagerClient.Endpoints.Get( + resourceGroup.Name, + profileName, + "ExternalEndpoints", + endpoint.Name); + + Assert.Equal("GEO-AS", endpointGetResponse.GeoMapping[0]); + Assert.Equal("GEO-AF", endpointGetResponse.GeoMapping[1]); + } + } + } +} diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/GeographicHierarchyScenarioTests.cs b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/GeographicHierarchyScenarioTests.cs new file mode 100644 index 000000000000..6c6126382d67 --- /dev/null +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/GeographicHierarchyScenarioTests.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests +{ + using System.Collections.Generic; + using System.Linq; + using global::TrafficManager.Tests.Helpers; + using Microsoft.Azure.Management.Resources.Models; + using Microsoft.Azure.Management.TrafficManager.Models; + using Microsoft.Azure.Management.TrafficManager.Testing.Helpers; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + + public class GeographicHierarchyScenarioTests : TestBase + { + [Fact] + public void GetDefaultGeographicHierarchy() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + TrafficManagerManagementClient trafficManagerClient = this.GetTrafficManagerManagementClient(context); + + TrafficManagerGeographicHierarchy getHierarchyResponse = trafficManagerClient.GeographicHierarchies.GetDefault(); + Assert.NotNull(getHierarchyResponse); + Assert.Equal("/providers/Microsoft.Network/trafficManagerGeographicHierarchies/default", getHierarchyResponse.Id); + Assert.Equal("Microsoft.Network/trafficManagerGeographicHierarchies", getHierarchyResponse.Type); + Assert.Equal("default", getHierarchyResponse.Name); + + Assert.NotNull(getHierarchyResponse.GeographicHierarchy); + Region root = getHierarchyResponse.GeographicHierarchy; + + Assert.Equal("WORLD", root.Code); + Assert.Equal("World", root.Name); + Assert.NotEmpty(root.Regions); + + foreach (var grouping in root.Regions) + { + Assert.NotNull(grouping.Code); + Assert.NotEmpty(grouping.Code); + Assert.NotNull(grouping.Name); + Assert.NotEmpty(grouping.Name); + Assert.NotEmpty(grouping.Regions); + } + } + } + } +} diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/ProfileScenarioTests.cs b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/ProfileScenarioTests.cs index ca10837da2d5..10e5c12fdf1f 100644 --- a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/ProfileScenarioTests.cs +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/ScenarioTests/ProfileScenarioTests.cs @@ -21,15 +21,15 @@ public void CrudProfileFullCycle() { TrafficManagerManagementClient trafficManagerClient = this.GetTrafficManagerManagementClient(context); - string resourceGroupName = TestUtilities.GenerateName("resourcegroup"); - string profileName = TestUtilities.GenerateName("atmprofile"); + string resourceGroupName = TrafficManagerHelper.GenerateName(); + string profileName = TrafficManagerHelper.GenerateName(); ResourceGroup resourceGroup = this.CreateResourceGroup(context, resourceGroupName); // Create the profile trafficManagerClient.Profiles.CreateOrUpdate( resourceGroup.Name, profileName, - TrafficManagerHelper.GenerateDefaultProfile(profileName)); + TrafficManagerHelper.GenerateDefaultProfileWithExternalEndpoint(profileName)); // Get the profile trafficManagerClient.Profiles.Get( @@ -50,11 +50,11 @@ public void CrudProfileWithoutEndpoints_ThenUpdate() { TrafficManagerManagementClient trafficManagerClient = this.GetTrafficManagerManagementClient(context); - string resourceGroupName = TestUtilities.GenerateName("resourcegroup"); - string profileName = TestUtilities.GenerateName("atmprofile"); + string resourceGroupName = TrafficManagerHelper.GenerateName(); + string profileName = TrafficManagerHelper.GenerateName(); ResourceGroup resourceGroup = this.CreateResourceGroup(context, resourceGroupName); - Profile profile = TrafficManagerHelper.GenerateDefaultProfile(profileName); + Profile profile = TrafficManagerHelper.GenerateDefaultProfileWithExternalEndpoint(profileName); profile.Endpoints = null; // Create the profile @@ -94,17 +94,17 @@ public void ListProfilesByResourceGroup() { TrafficManagerManagementClient trafficManagerClient = this.GetTrafficManagerManagementClient(context); - string resourceGroupName = TestUtilities.GenerateName("resourcegroup"); + string resourceGroupName = TrafficManagerHelper.GenerateName(); ResourceGroup resourceGroup = this.CreateResourceGroup(context, resourceGroupName); for (int i = 0; i < 5; ++i) { - string profileName = TestUtilities.GenerateName("atmprofile"); + string profileName = TrafficManagerHelper.GenerateName(); trafficManagerClient.Profiles.CreateOrUpdate( resourceGroup.Name, profileName, - TrafficManagerHelper.GenerateDefaultProfile(profileName)); + TrafficManagerHelper.GenerateDefaultProfileWithExternalEndpoint(profileName)); } List listResponse = trafficManagerClient.Profiles.ListAllInResourceGroup(resourceGroup.Name).ToList(); @@ -122,17 +122,17 @@ public void ListAllProfiles() { TrafficManagerManagementClient trafficManagerClient = this.GetTrafficManagerManagementClient(context); - string resourceGroupName = TestUtilities.GenerateName("resourcegroup"); + string resourceGroupName = TrafficManagerHelper.GenerateName(); ResourceGroup resourceGroup = this.CreateResourceGroup(context, resourceGroupName); for (int i = 0; i < 5; ++i) { - string profileName = TestUtilities.GenerateName("atmprofile"); + string profileName = TrafficManagerHelper.GenerateName(); trafficManagerClient.Profiles.CreateOrUpdate( resourceGroup.Name, profileName, - TrafficManagerHelper.GenerateDefaultProfile(profileName)); + TrafficManagerHelper.GenerateDefaultProfileWithExternalEndpoint(profileName)); } IEnumerable listResponse = trafficManagerClient.Profiles.ListAll(); From 49c3cb12fb80e768d0e4c3c55e31665dbf3e34dc Mon Sep 17 00:00:00 2001 From: Vlad Cananau Date: Mon, 6 Mar 2017 13:33:49 +0000 Subject: [PATCH 02/56] Update test recordings for version 2017-03-01 --- .../CrudEndpointGeographicProfile.json | 272 ++++++++++++++ .../GetDefaultGeographicHierarchy.json | 72 ++++ .../CrudProfileFullCycle.json | 169 +++++---- ...rudProfileWithoutEndpoints_ThenUpdate.json | 186 ++++----- .../ListAllProfiles.json | 354 ++++++++---------- .../ListProfilesByResourceGroup.json | 324 ++++++++-------- 6 files changed, 854 insertions(+), 523 deletions(-) create mode 100644 src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.EndpointScenarioTests/CrudEndpointGeographicProfile.json create mode 100644 src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.GeographicHierarchyScenarioTests/GetDefaultGeographicHierarchy.json diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.EndpointScenarioTests/CrudEndpointGeographicProfile.json b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.EndpointScenarioTests/CrudEndpointGeographicProfile.json new file mode 100644 index 000000000000..4a38e3773fd2 --- /dev/null +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.EndpointScenarioTests/CrudEndpointGeographicProfile.json @@ -0,0 +1,272 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager2156?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjIxNTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "e774d201-abcd-4c13-a414-a36c718ea2aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2156\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager2156\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 06 Mar 2017 12:19:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "cc059b15-046a-486e-8724-b22d345beee1" + ], + "x-ms-correlation-request-id": [ + "cc059b15-046a-486e-8724-b22d345beee1" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20170306T121934Z:cc059b15-046a-486e-8724-b22d345beee1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2156/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager2930?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjIxNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyMjkzMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Geographic\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager2930\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n }\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "350" + ], + "x-ms-client-request-id": [ + "94ebb1f4-68aa-4909-8ac9-9a2ac66ad08f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2156/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager2930\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager2930\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Geographic\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager2930\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager2930.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"Inactive\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "699" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Mon, 06 Mar 2017 12:19:38 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "94ebb1f4-68aa-4909-8ac9-9a2ac66ad08f" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "10791" + ], + "x-ms-correlation-request-id": [ + "a3a3484c-2ed4-4ef5-abe4-a7324dd3c258" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20170306T121938Z:a3a3484c-2ed4-4ef5-abe4-a7324dd3c258" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2156/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager2930/ExternalEndpoints/My%20external%20endpoint?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjIxNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyMjkzMC9FeHRlcm5hbEVuZHBvaW50cy9NeSUyMGV4dGVybmFsJTIwZW5kcG9pbnQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"geoMapping\": [\r\n \"GEO-AS\",\r\n \"GEO-AF\"\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "268" + ], + "x-ms-client-request-id": [ + "25656fd6-e16e-42f5-ac3f-90fcca3fd82b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2156/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager2930/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": null,\r\n \"geoMapping\": [\r\n \"GEO-AS\",\r\n \"GEO-AF\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "553" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Mon, 06 Mar 2017 12:19:39 GMT" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "25656fd6-e16e-42f5-ac3f-90fcca3fd82b" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "f06c0348-1558-4aab-a7be-9109a5b3596f" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20170306T121939Z:f06c0348-1558-4aab-a7be-9109a5b3596f" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2156/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager2930/ExternalEndpoints/My%20external%20endpoint?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjIxNTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyMjkzMC9FeHRlcm5hbEVuZHBvaW50cy9NeSUyMGV4dGVybmFsJTIwZW5kcG9pbnQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0696e79-93d8-425a-b387-1c8ed386da81" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager2156/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager2930/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": null,\r\n \"geoMapping\": [\r\n \"GEO-AS\",\r\n \"GEO-AF\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Mon, 06 Mar 2017 12:19:39 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f0696e79-93d8-425a-b387-1c8ed386da81" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "e55ef049-51e8-4936-879f-625386fa92ca" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20170306T121939Z:e55ef049-51e8-4936-879f-625386fa92ca" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azuresdkfornetautoresttrafficmanager2156", + "azuresdkfornetautoresttrafficmanager2930" + ] + }, + "Variables": { + "SubscriptionId": "e68d4145-c9ae-4667-925d-c51c8d88ad73" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.GeographicHierarchyScenarioTests/GetDefaultGeographicHierarchy.json b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.GeographicHierarchyScenarioTests/GetDefaultGeographicHierarchy.json new file mode 100644 index 000000000000..4765de3c1cda --- /dev/null +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.GeographicHierarchyScenarioTests/GetDefaultGeographicHierarchy.json @@ -0,0 +1,72 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.Network/trafficManagerGeographicHierarchies/default?api-version=2017-03-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljTWFuYWdlckdlb2dyYXBoaWNIaWVyYXJjaGllcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "953da237-9711-4447-b221-4b718a21a15b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Network/trafficManagerGeographicHierarchies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Network/trafficManagerGeographicHierarchies\",\r\n \"properties\": {\r\n \"geographicHierarchy\": {\r\n \"code\": \"WORLD\",\r\n \"name\": \"World\",\r\n \"regions\": [\r\n {\r\n \"code\": \"GEO-EU\",\r\n \"name\": \"Europe\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AD\",\r\n \"name\": \"Andorra\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AL\",\r\n \"name\": \"Albania\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AT\",\r\n \"name\": \"Austria\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AX\",\r\n \"name\": \"Åland Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BA\",\r\n \"name\": \"Bosnia and Herzegovina\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BE\",\r\n \"name\": \"Belgium\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BG\",\r\n \"name\": \"Bulgaria\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BY\",\r\n \"name\": \"Belarus\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CH\",\r\n \"name\": \"Switzerland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CY\",\r\n \"name\": \"Cyprus\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CZ\",\r\n \"name\": \"Czech Republic\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"DE\",\r\n \"name\": \"Germany\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"DK\",\r\n \"name\": \"Denmark\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"EE\",\r\n \"name\": \"Estonia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ES\",\r\n \"name\": \"Spain\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"FI\",\r\n \"name\": \"Finland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"FO\",\r\n \"name\": \"Faroe Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"FR\",\r\n \"name\": \"France\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GB\",\r\n \"name\": \"United Kingdom\",\r\n \"regions\": [\r\n {\r\n \"code\": \"GB-ENG\",\r\n \"name\": \"England\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GB-NIR\",\r\n \"name\": \"Northern Ireland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GB-SCT\",\r\n \"name\": \"Scotland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GB-WLS\",\r\n \"name\": \"Wales\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GG\",\r\n \"name\": \"Guernsey\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GI\",\r\n \"name\": \"Gibraltar\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GR\",\r\n \"name\": \"Greece\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"HR\",\r\n \"name\": \"Croatia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"HU\",\r\n \"name\": \"Hungary\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IE\",\r\n \"name\": \"Ireland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IM\",\r\n \"name\": \"Isle of Man\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IS\",\r\n \"name\": \"Iceland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IT\",\r\n \"name\": \"Italy\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"JE\",\r\n \"name\": \"Jersey\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LI\",\r\n \"name\": \"Liechtenstein\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LT\",\r\n \"name\": \"Lithuania\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LU\",\r\n \"name\": \"Luxembourg\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LV\",\r\n \"name\": \"Latvia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MC\",\r\n \"name\": \"Monaco\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MD\",\r\n \"name\": \"Moldova\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ME\",\r\n \"name\": \"Montenegro\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MK\",\r\n \"name\": \"Macedonia, FYRO\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MT\",\r\n \"name\": \"Malta\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NL\",\r\n \"name\": \"Netherlands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NO\",\r\n \"name\": \"Norway\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PL\",\r\n \"name\": \"Poland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PT\",\r\n \"name\": \"Portugal\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"RO\",\r\n \"name\": \"Romania\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"RS\",\r\n \"name\": \"Serbia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"RU\",\r\n \"name\": \"Russia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SE\",\r\n \"name\": \"Sweden\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SI\",\r\n \"name\": \"Slovenia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SJ\",\r\n \"name\": \"Svalbard\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SK\",\r\n \"name\": \"Slovakia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SM\",\r\n \"name\": \"San Marino\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"UA\",\r\n \"name\": \"Ukraine\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"VA\",\r\n \"name\": \"Vatican City\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"XJ\",\r\n \"name\": \"Jan Mayen\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"XK\",\r\n \"name\": \"Kosovo\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GEO-ME\",\r\n \"name\": \"Middle East\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AE\",\r\n \"name\": \"United Arab Emirates\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BH\",\r\n \"name\": \"Bahrain\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IL\",\r\n \"name\": \"Israel\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IQ\",\r\n \"name\": \"Iraq\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IR\",\r\n \"name\": \"Iran\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"JO\",\r\n \"name\": \"Jordan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KW\",\r\n \"name\": \"Kuwait\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LB\",\r\n \"name\": \"Lebanon\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"OM\",\r\n \"name\": \"Oman\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PS\",\r\n \"name\": \"Palestinian Authority\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"QA\",\r\n \"name\": \"Qatar\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SY\",\r\n \"name\": \"Syria\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SA\",\r\n \"name\": \"Saudi Arabia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TR\",\r\n \"name\": \"Turkey\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"YE\",\r\n \"name\": \"Yemen\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GEO-NA\",\r\n \"name\": \"North America / Central America / Caribbean\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AG\",\r\n \"name\": \"Antigua and Barbuda\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AI\",\r\n \"name\": \"Anguilla\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AW\",\r\n \"name\": \"Aruba\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BB\",\r\n \"name\": \"Barbados\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BL\",\r\n \"name\": \"Saint Barthélemy\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BM\",\r\n \"name\": \"Bermuda\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BQ\",\r\n \"name\": \"Bonaire\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BS\",\r\n \"name\": \"Bahamas\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BZ\",\r\n \"name\": \"Belize\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA\",\r\n \"name\": \"Canada\",\r\n \"regions\": [\r\n {\r\n \"code\": \"CA-AB\",\r\n \"name\": \"Alberta\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-BC\",\r\n \"name\": \"British Columbia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-MB\",\r\n \"name\": \"Manitoba\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-NB\",\r\n \"name\": \"New Brunswick\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-NL\",\r\n \"name\": \"Newfoundland and Labrador\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-NS\",\r\n \"name\": \"Nova Scotia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-NT\",\r\n \"name\": \"Northwest Territories\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-NU\",\r\n \"name\": \"Nunavut\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-ON\",\r\n \"name\": \"Ontario\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-PE\",\r\n \"name\": \"Prince Edward Island\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-QC\",\r\n \"name\": \"Québec\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-SK\",\r\n \"name\": \"Saskatchewan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CA-YT\",\r\n \"name\": \"Yukon Territory\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"CR\",\r\n \"name\": \"Costa Rica\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CU\",\r\n \"name\": \"Cuba\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CW\",\r\n \"name\": \"Curaçao\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"DM\",\r\n \"name\": \"Dominica\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"DO\",\r\n \"name\": \"Dominican Republic\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GD\",\r\n \"name\": \"Grenada\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GL\",\r\n \"name\": \"Greenland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GP\",\r\n \"name\": \"Guadeloupe\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GT\",\r\n \"name\": \"Guatemala\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"HN\",\r\n \"name\": \"Honduras\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"HT\",\r\n \"name\": \"Haiti\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"JM\",\r\n \"name\": \"Jamaica\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KN\",\r\n \"name\": \"Saint Kitts and Nevis\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KY\",\r\n \"name\": \"Cayman Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LC\",\r\n \"name\": \"Saint Lucia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MF\",\r\n \"name\": \"Saint Martin\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MQ\",\r\n \"name\": \"Martinique\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MS\",\r\n \"name\": \"Montserrat\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MX\",\r\n \"name\": \"Mexico\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NI\",\r\n \"name\": \"Nicaragua\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PA\",\r\n \"name\": \"Panama\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PM\",\r\n \"name\": \"Saint Pierre and Miquelon\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PR\",\r\n \"name\": \"Puerto Rico\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SV\",\r\n \"name\": \"El Salvador\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SX\",\r\n \"name\": \"Sint Maarten\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TC\",\r\n \"name\": \"Turks and Caicos Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TT\",\r\n \"name\": \"Trinidad and Tobago\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"UM\",\r\n \"name\": \"U.S. Outlying Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US\",\r\n \"name\": \"United States\",\r\n \"regions\": [\r\n {\r\n \"code\": \"US-AK\",\r\n \"name\": \"Alaska\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-AL\",\r\n \"name\": \"Alabama\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-AR\",\r\n \"name\": \"Arkansas\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-AZ\",\r\n \"name\": \"Arizona\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-CA\",\r\n \"name\": \"California\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-CO\",\r\n \"name\": \"Colorado\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-CT\",\r\n \"name\": \"Connecticut\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-DC\",\r\n \"name\": \"District of Columbia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-DE\",\r\n \"name\": \"Delaware\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-FL\",\r\n \"name\": \"Florida\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-GA\",\r\n \"name\": \"Georgia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-HI\",\r\n \"name\": \"Hawaii\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-IA\",\r\n \"name\": \"Iowa\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-ID\",\r\n \"name\": \"Idaho\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-IL\",\r\n \"name\": \"Illinois\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-IN\",\r\n \"name\": \"Indiana\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-KS\",\r\n \"name\": \"Kansas\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-KY\",\r\n \"name\": \"Kentucky\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-LA\",\r\n \"name\": \"Louisiana\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-MA\",\r\n \"name\": \"Massachusetts\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-MD\",\r\n \"name\": \"Maryland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-ME\",\r\n \"name\": \"Maine\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-MI\",\r\n \"name\": \"Michigan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-MN\",\r\n \"name\": \"Minnesota\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-MO\",\r\n \"name\": \"Missouri\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-MS\",\r\n \"name\": \"Mississippi\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-MT\",\r\n \"name\": \"Montana\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-NC\",\r\n \"name\": \"North Carolina\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-ND\",\r\n \"name\": \"North Dakota\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-NE\",\r\n \"name\": \"Nebraska\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-NH\",\r\n \"name\": \"New Hampshire\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-NJ\",\r\n \"name\": \"New Jersey\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-NM\",\r\n \"name\": \"New Mexico\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-NV\",\r\n \"name\": \"Nevada\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-NY\",\r\n \"name\": \"New York\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-OH\",\r\n \"name\": \"Ohio\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-OK\",\r\n \"name\": \"Oklahoma\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-OR\",\r\n \"name\": \"Oregon\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-PA\",\r\n \"name\": \"Pennsylvania\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-RI\",\r\n \"name\": \"Rhode Island\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-SC\",\r\n \"name\": \"South Carolina\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-SD\",\r\n \"name\": \"South Dakota\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-TN\",\r\n \"name\": \"Tennessee\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-TX\",\r\n \"name\": \"Texas\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-UT\",\r\n \"name\": \"Utah\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-VA\",\r\n \"name\": \"Virginia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-VT\",\r\n \"name\": \"Vermont\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-WA\",\r\n \"name\": \"Washington\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-WI\",\r\n \"name\": \"Wisconsin\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-WV\",\r\n \"name\": \"West Virginia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"US-WY\",\r\n \"name\": \"Wyoming\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"VC\",\r\n \"name\": \"Saint Vincent and the Grenadines\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"VG\",\r\n \"name\": \"British Virgin Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"VI\",\r\n \"name\": \"U.S. Virgin Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"XE\",\r\n \"name\": \"Sint Eustatius\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"XS\",\r\n \"name\": \"Saba\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GEO-AS\",\r\n \"name\": \"Asia\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AF\",\r\n \"name\": \"Afghanistan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AM\",\r\n \"name\": \"Armenia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AZ\",\r\n \"name\": \"Azerbaijan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BD\",\r\n \"name\": \"Bangladesh\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BN\",\r\n \"name\": \"Brunei\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BT\",\r\n \"name\": \"Bhutan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CC\",\r\n \"name\": \"Cocos (Keeling) Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CN\",\r\n \"name\": \"China\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CX\",\r\n \"name\": \"Christmas Island\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GE\",\r\n \"name\": \"Georgia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"HK\",\r\n \"name\": \"Hong Kong SAR\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ID\",\r\n \"name\": \"Indonesia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IN\",\r\n \"name\": \"India\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"IO\",\r\n \"name\": \"British Indian Ocean Territory\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"JP\",\r\n \"name\": \"Japan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KG\",\r\n \"name\": \"Kyrgyzstan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KH\",\r\n \"name\": \"Cambodia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KP\",\r\n \"name\": \"North Korea\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KR\",\r\n \"name\": \"Korea\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KZ\",\r\n \"name\": \"Kazakhstan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LA\",\r\n \"name\": \"Laos\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LK\",\r\n \"name\": \"Sri Lanka\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MM\",\r\n \"name\": \"Myanmar\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MN\",\r\n \"name\": \"Mongolia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MO\",\r\n \"name\": \"Macao SAR\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MV\",\r\n \"name\": \"Maldives\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MY\",\r\n \"name\": \"Malaysia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NP\",\r\n \"name\": \"Nepal\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PH\",\r\n \"name\": \"Philippines\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PK\",\r\n \"name\": \"Pakistan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SG\",\r\n \"name\": \"Singapore\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TH\",\r\n \"name\": \"Thailand\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TJ\",\r\n \"name\": \"Tajikistan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TL\",\r\n \"name\": \"Timor_Leste\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TM\",\r\n \"name\": \"Turkmenistan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TW\",\r\n \"name\": \"Taiwan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"UZ\",\r\n \"name\": \"Uzbekistan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"VN\",\r\n \"name\": \"Vietnam\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GEO-AF\",\r\n \"name\": \"Africa\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AO\",\r\n \"name\": \"Angola\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BF\",\r\n \"name\": \"Burkina Faso\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BI\",\r\n \"name\": \"Burundi\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BJ\",\r\n \"name\": \"Benin\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BV\",\r\n \"name\": \"Bouvet Island\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BW\",\r\n \"name\": \"Botswana\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CD\",\r\n \"name\": \"Congo (DRC)\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CF\",\r\n \"name\": \"Central African Republic\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CG\",\r\n \"name\": \"Congo\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CI\",\r\n \"name\": \"Côte d’Ivoire\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CM\",\r\n \"name\": \"Cameroon\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CV\",\r\n \"name\": \"Cabo Verde\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"DJ\",\r\n \"name\": \"Djibouti\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"DZ\",\r\n \"name\": \"Algeria\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"EG\",\r\n \"name\": \"Egypt\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ER\",\r\n \"name\": \"Eritrea\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ET\",\r\n \"name\": \"Ethiopia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GA\",\r\n \"name\": \"Gabon\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GH\",\r\n \"name\": \"Ghana\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GM\",\r\n \"name\": \"Gambia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GN\",\r\n \"name\": \"Guinea\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GQ\",\r\n \"name\": \"Equatorial Guinea\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GW\",\r\n \"name\": \"Guinea_Bissau\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KE\",\r\n \"name\": \"Kenya\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KM\",\r\n \"name\": \"Comoros\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LR\",\r\n \"name\": \"Liberia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LS\",\r\n \"name\": \"Lesotho\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"LY\",\r\n \"name\": \"Libya\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MA\",\r\n \"name\": \"Morocco\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MG\",\r\n \"name\": \"Madagascar\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ML\",\r\n \"name\": \"Mali\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MR\",\r\n \"name\": \"Mauritania\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MU\",\r\n \"name\": \"Mauritius\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MW\",\r\n \"name\": \"Malawi\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MZ\",\r\n \"name\": \"Mozambique\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NA\",\r\n \"name\": \"Namibia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NE\",\r\n \"name\": \"Niger\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NG\",\r\n \"name\": \"Nigeria\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"RE\",\r\n \"name\": \"Réunion\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"RW\",\r\n \"name\": \"Rwanda\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SC\",\r\n \"name\": \"Seychelles\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SD\",\r\n \"name\": \"Sudan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SH\",\r\n \"name\": \"St Helena, Ascension, Tristan da Cunha\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SL\",\r\n \"name\": \"Sierra Leone\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SN\",\r\n \"name\": \"Senegal\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SO\",\r\n \"name\": \"Somalia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SS\",\r\n \"name\": \"South Sudan\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ST\",\r\n \"name\": \"São Tomé and Príncipe\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SZ\",\r\n \"name\": \"Swaziland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TD\",\r\n \"name\": \"Chad\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TF\",\r\n \"name\": \"French Southern Territories\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TG\",\r\n \"name\": \"Togo\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TN\",\r\n \"name\": \"Tunisia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TZ\",\r\n \"name\": \"Tanzania\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"UG\",\r\n \"name\": \"Uganda\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"YT\",\r\n \"name\": \"Mayotte\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ZA\",\r\n \"name\": \"South Africa\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ZM\",\r\n \"name\": \"Zambia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"ZW\",\r\n \"name\": \"Zimbabwe\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GEO-AN\",\r\n \"name\": \"Antarctica\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AQ\",\r\n \"name\": \"Antarctica\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GEO-SA\",\r\n \"name\": \"South America\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AR\",\r\n \"name\": \"Argentina\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BO\",\r\n \"name\": \"Bolivia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"BR\",\r\n \"name\": \"Brazil\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CL\",\r\n \"name\": \"Chile\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"CO\",\r\n \"name\": \"Colombia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"EC\",\r\n \"name\": \"Ecuador\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"FK\",\r\n \"name\": \"Falkland Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GF\",\r\n \"name\": \"French Guiana\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GS\",\r\n \"name\": \"South Georgia and South Sandwich Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GY\",\r\n \"name\": \"Guyana\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PE\",\r\n \"name\": \"Peru\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PY\",\r\n \"name\": \"Paraguay\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SR\",\r\n \"name\": \"Suriname\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"UY\",\r\n \"name\": \"Uruguay\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"VE\",\r\n \"name\": \"Venezuela\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"GEO-AP\",\r\n \"name\": \"Australia / Pacific\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AS\",\r\n \"name\": \"American Samoa\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU\",\r\n \"name\": \"Australia\",\r\n \"regions\": [\r\n {\r\n \"code\": \"AU-ACT\",\r\n \"name\": \"Australian Capital Territory\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU-NSW\",\r\n \"name\": \"New South Wales\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU-NT\",\r\n \"name\": \"Northern Territory\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU-QLD\",\r\n \"name\": \"Queensland\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU-SA\",\r\n \"name\": \"South Australia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU-TAS\",\r\n \"name\": \"Tasmania\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU-VIC\",\r\n \"name\": \"Victoria\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"AU-WA\",\r\n \"name\": \"Western Australia\",\r\n \"regions\": []\r\n }\r\n ]\r\n },\r\n {\r\n \"code\": \"CK\",\r\n \"name\": \"Cook Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"FJ\",\r\n \"name\": \"Fiji\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"FM\",\r\n \"name\": \"Micronesia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"GU\",\r\n \"name\": \"Guam\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"HM\",\r\n \"name\": \"Heard Island and McDonald Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"KI\",\r\n \"name\": \"Kiribati\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MH\",\r\n \"name\": \"Marshall Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"MP\",\r\n \"name\": \"Northern Mariana Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NC\",\r\n \"name\": \"New Caledonia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NF\",\r\n \"name\": \"Norfolk Island\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NR\",\r\n \"name\": \"Nauru\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NU\",\r\n \"name\": \"Niue\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"NZ\",\r\n \"name\": \"New Zealand\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PF\",\r\n \"name\": \"French Polynesia\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PG\",\r\n \"name\": \"Papua New Guinea\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PN\",\r\n \"name\": \"Pitcairn Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"PW\",\r\n \"name\": \"Palau\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"SB\",\r\n \"name\": \"Solomon Islands\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TK\",\r\n \"name\": \"Tokelau\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TO\",\r\n \"name\": \"Tonga\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"TV\",\r\n \"name\": \"Tuvalu\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"VU\",\r\n \"name\": \"Vanuatu\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"WF\",\r\n \"name\": \"Wallis and Futuna\",\r\n \"regions\": []\r\n },\r\n {\r\n \"code\": \"WS\",\r\n \"name\": \"Samoa\",\r\n \"regions\": []\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Mon, 06 Mar 2017 12:19:46 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "953da237-9711-4447-b221-4b718a21a15b" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "b844d6e4-73c3-4979-9486-baa14d4d767d" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20170306T121946Z:b844d6e4-73c3-4979-9486-baa14d4d767d" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "e68d4145-c9ae-4667-925d-c51c8d88ad73" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileFullCycle.json b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileFullCycle.json index 5c37145b5963..0d4e053fd99b 100644 --- a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileFullCycle.json +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileFullCycle.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup9988?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXA5OTg4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager6377?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjYzNzc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { @@ -13,19 +13,20 @@ "32" ], "x-ms-client-request-id": [ - "c4fce9a3-15e5-42cd-9d7a-3aa899c0be9a" + "81493a1e-c071-463d-aee2-dd1d7cc8a991" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988\",\r\n \"name\": \"resourcegroup9988\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager6377\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "236" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:37:50 GMT" + "Mon, 06 Mar 2017 12:18:14 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "1190" ], "x-ms-request-id": [ - "ffa372fc-1e5d-4ecc-b44e-d05f9cb8ff00" + "18adcfdb-d6f1-40f3-830e-0781520d6b22" ], "x-ms-correlation-request-id": [ - "ffa372fc-1e5d-4ecc-b44e-d05f9cb8ff00" + "18adcfdb-d6f1-40f3-830e-0781520d6b22" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133751Z:ffa372fc-1e5d-4ecc-b44e-d05f9cb8ff00" + "NORTHEUROPE:20170306T121814Z:18adcfdb-d6f1-40f3-830e-0781520d6b22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -61,31 +62,32 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile1206?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXA5OTg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGUxMjA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager9662?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjYzNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyOTY2Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile1206\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager9662\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "d725d29a-8ecb-426e-bbb1-33f8ccbdc57d" + "dbedded4-86c3-4ea9-aace-7a8175c2017f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988/providers/Microsoft.Network/trafficManagerProfiles/atmprofile1206\",\r\n \"name\": \"atmprofile1206\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile1206\",\r\n \"fqdn\": \"atmprofile1206.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988/providers/Microsoft.Network/trafficManagerProfiles/atmprofile1206/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9662\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager9662\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager9662\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager9662.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9662/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -94,7 +96,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:37:52 GMT" + "Mon, 06 Mar 2017 12:18:18 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -102,8 +104,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "d725d29a-8ecb-426e-bbb1-33f8ccbdc57d" + "dbedded4-86c3-4ea9-aace-7a8175c2017f" ], "X-AspNet-Version": [ "4.0.30319" @@ -112,37 +117,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10785" + "10793" ], "x-ms-correlation-request-id": [ - "f0f05a01-cb64-441a-bec5-73c45512eb83" + "8dba7bf8-fd00-4c73-81d7-e76149951f87" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133753Z:f0f05a01-cb64-441a-bec5-73c45512eb83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121818Z:8dba7bf8-fd00-4c73-81d7-e76149951f87" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile1206?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXA5OTg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGUxMjA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager9662?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjYzNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyOTY2Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "359767fc-6e95-4d76-b4ca-a55a4fd1f445" + "9ec2cdb4-9b74-40dc-a1ff-681283b9fb77" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988/providers/Microsoft.Network/trafficManagerProfiles/atmprofile1206\",\r\n \"name\": \"atmprofile1206\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile1206\",\r\n \"fqdn\": \"atmprofile1206.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988/providers/Microsoft.Network/trafficManagerProfiles/atmprofile1206/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9662\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager9662\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager9662\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager9662.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9662/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,7 +154,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:37:52 GMT" + "Mon, 06 Mar 2017 12:18:18 GMT" ], "Transfer-Encoding": [ "chunked" @@ -165,8 +168,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "359767fc-6e95-4d76-b4ca-a55a4fd1f445" + "9ec2cdb4-9b74-40dc-a1ff-681283b9fb77" ], "X-AspNet-Version": [ "4.0.30319" @@ -175,34 +181,32 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10795" + "10798" ], "x-ms-correlation-request-id": [ - "cc130f76-1bb1-4a33-a2e4-f9e901f3bc7c" + "1aa901b2-8fb8-41c0-9ebc-520f3d2926f3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133753Z:cc130f76-1bb1-4a33-a2e4-f9e901f3bc7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121818Z:1aa901b2-8fb8-41c0-9ebc-520f3d2926f3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9988/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile1206?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXA5OTg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGUxMjA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager6377/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager9662?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjYzNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyOTY2Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f625af16-a3d1-4b6b-8b92-e184d4cf4ca4" + "ade26343-1ebc-428f-9b7f-04284861051c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, "ResponseBody": "", @@ -214,7 +218,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:37:54 GMT" + "Mon, 06 Mar 2017 12:18:20 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -222,8 +226,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "f625af16-a3d1-4b6b-8b92-e184d4cf4ca4" + "ade26343-1ebc-428f-9b7f-04284861051c" ], "X-AspNet-Version": [ "4.0.30319" @@ -232,34 +239,32 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10797" + "10799" ], "x-ms-correlation-request-id": [ - "781f035a-8843-45d5-b321-745012c99c19" + "2c167f71-cecf-4fbe-b1b9-86fd87eca7a3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133755Z:781f035a-8843-45d5-b321-745012c99c19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121820Z:2c167f71-cecf-4fbe-b1b9-86fd87eca7a3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup9988?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXA5OTg4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager6377?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjYzNzc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0bf3498-932a-4146-a2db-beb22587ef0a" + "90e3248c-e524-46bd-9018-9efba07a82a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -274,28 +279,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:37:56 GMT" + "Mon, 06 Mar 2017 12:18:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTk4OC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI2Mzc3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1189" ], "x-ms-request-id": [ - "0b063c10-1bc9-4660-ba34-8f4f4e50bf77" + "6d09de00-c9f0-4255-8d31-91052dc66f96" ], "x-ms-correlation-request-id": [ - "0b063c10-1bc9-4660-ba34-8f4f4e50bf77" + "6d09de00-c9f0-4255-8d31-91052dc66f96" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133757Z:0b063c10-1bc9-4660-ba34-8f4f4e50bf77" + "NORTHEUROPE:20170306T121825Z:6d09de00-c9f0-4255-8d31-91052dc66f96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -304,13 +309,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTk4OC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU9UazRPQzFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI2Mzc3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkkyTXpjM0xVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -325,28 +331,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:38:27 GMT" + "Mon, 06 Mar 2017 12:18:56 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTk4OC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI2Mzc3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14976" ], "x-ms-request-id": [ - "3bbab205-1f2f-44c4-8341-2d1216c7f72e" + "23f717fc-1dff-4dae-83ac-775594494f40" ], "x-ms-correlation-request-id": [ - "3bbab205-1f2f-44c4-8341-2d1216c7f72e" + "23f717fc-1dff-4dae-83ac-775594494f40" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133827Z:3bbab205-1f2f-44c4-8341-2d1216c7f72e" + "NORTHEUROPE:20170306T121856Z:23f717fc-1dff-4dae-83ac-775594494f40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -355,13 +361,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTk4OC1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU9UazRPQzFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI2Mzc3LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkkyTXpjM0xVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -376,22 +383,22 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:38:56 GMT" + "Mon, 06 Mar 2017 12:19:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14975" ], "x-ms-request-id": [ - "95641cb0-53f3-4a0d-ad0a-a05f83356e8e" + "63515475-7c5a-4ef3-81e6-c1830b1f4284" ], "x-ms-correlation-request-id": [ - "95641cb0-53f3-4a0d-ad0a-a05f83356e8e" + "63515475-7c5a-4ef3-81e6-c1830b1f4284" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133857Z:95641cb0-53f3-4a0d-ad0a-a05f83356e8e" + "NORTHEUROPE:20170306T121926Z:63515475-7c5a-4ef3-81e6-c1830b1f4284" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -401,9 +408,9 @@ } ], "Names": { - "CrudProfileFullCycle": [ - "resourcegroup9988", - "atmprofile1206" + "GenerateName": [ + "azuresdkfornetautoresttrafficmanager6377", + "azuresdkfornetautoresttrafficmanager9662" ] }, "Variables": { diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileWithoutEndpoints_ThenUpdate.json b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileWithoutEndpoints_ThenUpdate.json index ba51c98b7a39..4137461bc129 100644 --- a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileWithoutEndpoints_ThenUpdate.json +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/CrudProfileWithoutEndpoints_ThenUpdate.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup9299?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXA5Mjk5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager8493?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg0OTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { @@ -13,19 +13,20 @@ "32" ], "x-ms-client-request-id": [ - "e1779858-1171-49bb-ba10-1ffdf6158c38" + "592c9585-dca2-45d5-b47d-487ca66cc308" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9299\",\r\n \"name\": \"resourcegroup9299\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8493\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager8493\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "236" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:33:22 GMT" + "Mon, 06 Mar 2017 12:11:23 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "1194" ], "x-ms-request-id": [ - "789a3600-8b41-4555-9cc0-d0e672bdb725" + "490ff072-5a9a-4bbd-bf48-6edf1df6a916" ], "x-ms-correlation-request-id": [ - "789a3600-8b41-4555-9cc0-d0e672bdb725" + "490ff072-5a9a-4bbd-bf48-6edf1df6a916" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133323Z:789a3600-8b41-4555-9cc0-d0e672bdb725" + "NORTHEUROPE:20170306T121123Z:490ff072-5a9a-4bbd-bf48-6edf1df6a916" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -61,31 +62,32 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9299/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile6872?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXA5Mjk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU2ODcyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8493/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager4939?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyNDkzOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile6872\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n }\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager4939\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n }\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "325" + "351" ], "x-ms-client-request-id": [ - "d9fe5c0c-fcdc-4928-af88-e57cb8feafbc" + "291b4b15-c860-4f18-a1a1-9468f25fff24" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9299/providers/Microsoft.Network/trafficManagerProfiles/atmprofile6872\",\r\n \"name\": \"atmprofile6872\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile6872\",\r\n \"fqdn\": \"atmprofile6872.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"Inactive\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8493/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager4939\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager4939\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager4939\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager4939.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"Inactive\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "573" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -94,7 +96,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:33:25 GMT" + "Mon, 06 Mar 2017 12:11:29 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -102,8 +104,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "d9fe5c0c-fcdc-4928-af88-e57cb8feafbc" + "291b4b15-c860-4f18-a1a1-9468f25fff24" ], "X-AspNet-Version": [ "4.0.30319" @@ -112,43 +117,41 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10797" + "10798" ], "x-ms-correlation-request-id": [ - "a5cbfbef-b826-42f9-904b-caaede4c7489" + "c8d865a9-eeb3-465b-82c3-b5fe887541b7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133325Z:a5cbfbef-b826-42f9-904b-caaede4c7489" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121129Z:c8d865a9-eeb3-465b-82c3-b5fe887541b7" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9299/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile6872?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXA5Mjk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU2ODcyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8493/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager4939?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg0OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyNDkzOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile6872\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager4939\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "372eebbe-0f6e-4d84-8773-a8cf3d7209af" + "017480e5-1ead-420e-9a97-5ff6ba191b23" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9299/providers/Microsoft.Network/trafficManagerProfiles/atmprofile6872\",\r\n \"name\": \"atmprofile6872\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile6872\",\r\n \"fqdn\": \"atmprofile6872.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup9299/providers/Microsoft.Network/trafficManagerProfiles/atmprofile6872/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8493/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager4939\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager4939\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager4939\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager4939.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8493/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager4939/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -157,7 +160,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:33:26 GMT" + "Mon, 06 Mar 2017 12:11:29 GMT" ], "Transfer-Encoding": [ "chunked" @@ -171,8 +174,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "372eebbe-0f6e-4d84-8773-a8cf3d7209af" + "017480e5-1ead-420e-9a97-5ff6ba191b23" ], "X-AspNet-Version": [ "4.0.30319" @@ -181,34 +187,32 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10796" + "10797" ], "x-ms-correlation-request-id": [ - "3cf25a9f-bfd0-454e-ac77-64023b2f314e" + "f615ebf5-4801-4210-b5bb-cb0100d4ac0f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133326Z:3cf25a9f-bfd0-454e-ac77-64023b2f314e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121130Z:f615ebf5-4801-4210-b5bb-cb0100d4ac0f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup9299?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXA5Mjk5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager8493?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg0OTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99b82787-f353-435a-95ab-ed8c45608146" + "457dd3cb-6556-4301-81d5-14b8ec38c0e5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -223,28 +227,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:33:27 GMT" + "Mon, 06 Mar 2017 12:11:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-request-id": [ - "64b21e74-06b7-465f-abbc-b3e097a4f29d" + "1ebe1f27-c33e-4637-b411-38d9e6f98dd5" ], "x-ms-correlation-request-id": [ - "64b21e74-06b7-465f-abbc-b3e097a4f29d" + "1ebe1f27-c33e-4637-b411-38d9e6f98dd5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133327Z:64b21e74-06b7-465f-abbc-b3e097a4f29d" + "NORTHEUROPE:20170306T121135Z:1ebe1f27-c33e-4637-b411-38d9e6f98dd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -253,13 +257,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU9USTVPUzFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TkRrekxVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -274,28 +279,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:33:57 GMT" + "Mon, 06 Mar 2017 12:12:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14987" ], "x-ms-request-id": [ - "e5eacdda-327e-40c5-af8f-06f2ddb139b4" + "8ed06ecc-7733-40cc-9723-3d9aa7998aa4" ], "x-ms-correlation-request-id": [ - "e5eacdda-327e-40c5-af8f-06f2ddb139b4" + "8ed06ecc-7733-40cc-9723-3d9aa7998aa4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133357Z:e5eacdda-327e-40c5-af8f-06f2ddb139b4" + "NORTHEUROPE:20170306T121206Z:8ed06ecc-7733-40cc-9723-3d9aa7998aa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -304,13 +309,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU9USTVPUzFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TkRrekxVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -325,28 +331,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:34:27 GMT" + "Mon, 06 Mar 2017 12:12:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14986" ], "x-ms-request-id": [ - "0211f6cf-fb15-4c6e-b1ef-b26c1a8ae381" + "97b7d879-0bcb-487d-97f3-8480aa091209" ], "x-ms-correlation-request-id": [ - "0211f6cf-fb15-4c6e-b1ef-b26c1a8ae381" + "97b7d879-0bcb-487d-97f3-8480aa091209" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133427Z:0211f6cf-fb15-4c6e-b1ef-b26c1a8ae381" + "NORTHEUROPE:20170306T121237Z:97b7d879-0bcb-487d-97f3-8480aa091209" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -355,13 +361,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU9USTVPUzFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TkRrekxVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -376,28 +383,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:34:57 GMT" + "Mon, 06 Mar 2017 12:13:07 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14985" ], "x-ms-request-id": [ - "b0624c57-b9c7-45ca-8134-4d1d9525336d" + "12bec955-0c70-41fd-9369-b8514eb315fc" ], "x-ms-correlation-request-id": [ - "b0624c57-b9c7-45ca-8134-4d1d9525336d" + "12bec955-0c70-41fd-9369-b8514eb315fc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133458Z:b0624c57-b9c7-45ca-8134-4d1d9525336d" + "NORTHEUROPE:20170306T121307Z:12bec955-0c70-41fd-9369-b8514eb315fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -406,13 +413,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQOTI5OS1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU9USTVPUzFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NDkzLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TkRrekxVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -427,22 +435,22 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:35:27 GMT" + "Mon, 06 Mar 2017 12:13:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14984" ], "x-ms-request-id": [ - "434b33a6-d860-4b75-a7c5-cf041ca2fc59" + "99f3f762-30e9-4494-9c10-7e44d4771089" ], "x-ms-correlation-request-id": [ - "434b33a6-d860-4b75-a7c5-cf041ca2fc59" + "99f3f762-30e9-4494-9c10-7e44d4771089" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133528Z:434b33a6-d860-4b75-a7c5-cf041ca2fc59" + "NORTHEUROPE:20170306T121338Z:99f3f762-30e9-4494-9c10-7e44d4771089" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -452,9 +460,9 @@ } ], "Names": { - "CrudProfileWithoutEndpoints_ThenUpdate": [ - "resourcegroup9299", - "atmprofile6872" + "GenerateName": [ + "azuresdkfornetautoresttrafficmanager8493", + "azuresdkfornetautoresttrafficmanager4939" ] }, "Variables": { diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListAllProfiles.json b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListAllProfiles.json index 88d29a5cb0b1..b46c7b7e51c7 100644 --- a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListAllProfiles.json +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListAllProfiles.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup1622?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXAxNjIyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager4665?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjQ2NjU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { @@ -13,19 +13,20 @@ "32" ], "x-ms-client-request-id": [ - "ffc1ba9f-3435-4640-9f7f-067a572e42b7" + "144cf0e1-22af-4a1b-9e34-85648aaa2f8f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622\",\r\n \"name\": \"resourcegroup1622\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager4665\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "236" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,22 +38,22 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:40:58 GMT" + "Mon, 06 Mar 2017 12:13:46 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "b6e3b3bb-c777-43b0-ad8f-8dba5ebdce79" + "2d0b7c0c-140b-42da-bf86-e815de38bfbc" ], "x-ms-correlation-request-id": [ - "b6e3b3bb-c777-43b0-ad8f-8dba5ebdce79" + "2d0b7c0c-140b-42da-bf86-e815de38bfbc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134058Z:b6e3b3bb-c777-43b0-ad8f-8dba5ebdce79" + "NORTHEUROPE:20170306T121346Z:2d0b7c0c-140b-42da-bf86-e815de38bfbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -61,31 +62,32 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile942?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAxNjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU5NDI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager3481?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjQ2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyMzQ4MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile942\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager3481\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "655" + "682" ], "x-ms-client-request-id": [ - "edbabcd8-d5d5-411e-991f-25aab01cf98c" + "ce21293a-b3c2-4b92-b82c-420356c051cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile942\",\r\n \"name\": \"atmprofile942\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile942\",\r\n \"fqdn\": \"atmprofile942.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile942/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3481\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager3481\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager3481\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager3481.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3481/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1058" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -94,7 +96,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:41:00 GMT" + "Mon, 06 Mar 2017 12:13:51 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -102,8 +104,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "edbabcd8-d5d5-411e-991f-25aab01cf98c" + "ce21293a-b3c2-4b92-b82c-420356c051cc" ], "X-AspNet-Version": [ "4.0.30319" @@ -112,46 +117,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10797" + "10798" ], "x-ms-correlation-request-id": [ - "da369905-2baf-4a6a-a8a5-0c849731e9b3" + "60277f85-eea5-4e09-94bd-a564c4c79fcf" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134100Z:da369905-2baf-4a6a-a8a5-0c849731e9b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121351Z:60277f85-eea5-4e09-94bd-a564c4c79fcf" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile3967?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAxNjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGUzOTY3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager8306?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjQ2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyODMwNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile3967\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager8306\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "380bcd2c-8b89-443c-85b8-30be1644d652" + "02c40879-8890-4d65-9831-02717d86b459" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3967\",\r\n \"name\": \"atmprofile3967\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile3967\",\r\n \"fqdn\": \"atmprofile3967.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3967/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8306\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager8306\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager8306\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager8306.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8306/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,7 +163,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:41:02 GMT" + "Mon, 06 Mar 2017 12:13:53 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -168,8 +171,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "380bcd2c-8b89-443c-85b8-30be1644d652" + "02c40879-8890-4d65-9831-02717d86b459" ], "X-AspNet-Version": [ "4.0.30319" @@ -178,46 +184,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10796" + "10797" ], "x-ms-correlation-request-id": [ - "1aec6b27-4007-40e7-b605-5224f6d0164f" + "d56f6026-6975-4070-a7e8-697c9f8f5df5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134103Z:1aec6b27-4007-40e7-b605-5224f6d0164f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121353Z:d56f6026-6975-4070-a7e8-697c9f8f5df5" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile7802?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAxNjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU3ODAyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager9108?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjQ2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyOTEwOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile7802\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager9108\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "a0b2a82d-b45e-4ab7-9652-2a4e31c7c0eb" + "f954512b-9617-4861-aa16-32ad18a1dae3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7802\",\r\n \"name\": \"atmprofile7802\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile7802\",\r\n \"fqdn\": \"atmprofile7802.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7802/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9108\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager9108\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager9108\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager9108.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9108/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +230,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:41:03 GMT" + "Mon, 06 Mar 2017 12:13:55 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -234,8 +238,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "a0b2a82d-b45e-4ab7-9652-2a4e31c7c0eb" + "f954512b-9617-4861-aa16-32ad18a1dae3" ], "X-AspNet-Version": [ "4.0.30319" @@ -244,46 +251,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10795" + "10796" ], "x-ms-correlation-request-id": [ - "966afb47-8541-49a6-abb9-e2ff064c87f0" + "9cda0057-e734-4009-9563-95634ee19d26" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134104Z:966afb47-8541-49a6-abb9-e2ff064c87f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121355Z:9cda0057-e734-4009-9563-95634ee19d26" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile7460?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAxNjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU3NDYwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager5207?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjQ2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyNTIwNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile7460\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager5207\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "0be4d495-128d-4b39-9b64-ee9fb448ac7a" + "ac783c5a-4339-4efd-8cf5-dfe361f51c74" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7460\",\r\n \"name\": \"atmprofile7460\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile7460\",\r\n \"fqdn\": \"atmprofile7460.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7460/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager5207\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager5207\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager5207\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager5207.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager5207/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -292,7 +297,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:41:05 GMT" + "Mon, 06 Mar 2017 12:13:56 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -300,8 +305,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "0be4d495-128d-4b39-9b64-ee9fb448ac7a" + "ac783c5a-4339-4efd-8cf5-dfe361f51c74" ], "X-AspNet-Version": [ "4.0.30319" @@ -310,46 +318,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10794" + "10795" ], "x-ms-correlation-request-id": [ - "9abb6099-7491-4ebc-ad8f-b95c533449a1" + "d20c769b-fb39-43e3-9c55-a610e1553e9a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134106Z:9abb6099-7491-4ebc-ad8f-b95c533449a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121356Z:d20c769b-fb39-43e3-9c55-a610e1553e9a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile8009?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAxNjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU4MDA5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager3179?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjQ2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyMzE3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile8009\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager3179\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "a93b8933-46b9-4aac-a8c8-c19e79aa735c" + "a9d23706-b875-44ce-bc60-128ef9d64570" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8009\",\r\n \"name\": \"atmprofile8009\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile8009\",\r\n \"fqdn\": \"atmprofile8009.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8009/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3179\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager3179\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager3179\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager3179.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3179/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -358,7 +364,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:41:06 GMT" + "Mon, 06 Mar 2017 12:13:58 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -366,8 +372,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "a93b8933-46b9-4aac-a8c8-c19e79aa735c" + "a9d23706-b875-44ce-bc60-128ef9d64570" ], "X-AspNet-Version": [ "4.0.30319" @@ -376,37 +385,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10793" + "10794" ], "x-ms-correlation-request-id": [ - "b4ce7cc1-4c1d-49f1-9b1c-6f862f921d9f" + "7a82ea7e-9d9c-4774-8758-afd22add8d76" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134107Z:b4ce7cc1-4c1d-49f1-9b1c-6f862f921d9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121358Z:7a82ea7e-9d9c-4774-8758-afd22add8d76" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab7c39a0-d4a6-4cce-9a61-3142c1107539" + "fbc29e84-a51a-42d7-83f9-57fb1da38cf3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg6713/providers/Microsoft.Network/trafficManagerProfiles/hydratestwatmv2profile6953\",\r\n \"name\": \"hydratestwatmv2profile6953\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"foohydratestrelativename6857\",\r\n \"fqdn\": \"foohydratestrelativename6857.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg6713/providers/Microsoft.Network/trafficManagerProfiles/hydratestwatmv2profile6953/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg7258/providers/Microsoft.Network/trafficManagerProfiles/hydratestwatmv2profile5063\",\r\n \"name\": \"hydratestwatmv2profile5063\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"foohydratestrelativename8172\",\r\n \"fqdn\": \"foohydratestrelativename8172.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg7258/providers/Microsoft.Network/trafficManagerProfiles/hydratestwatmv2profile5063/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg7258/providers/Microsoft.Network/trafficManagerProfiles/hydratestwatmv2profile7779\",\r\n \"name\": \"hydratestwatmv2profile7779\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"foohydratestrelativename2266\",\r\n \"fqdn\": \"foohydratestrelativename2266.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg7258/providers/Microsoft.Network/trafficManagerProfiles/hydratestwatmv2profile7779/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg8525/providers/Microsoft.Network/trafficManagerProfiles/watmv2profilehydratest1333\",\r\n \"name\": \"watmv2profilehydratest1333\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"foohydratestrelativename9680\",\r\n \"fqdn\": \"foohydratestrelativename9680.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg8525/providers/Microsoft.Network/trafficManagerProfiles/watmv2profilehydratest1333/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg8525/providers/Microsoft.Network/trafficManagerProfiles/watmv2profilehydratest9950\",\r\n \"name\": \"watmv2profilehydratest9950\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"foohydratestrelativename122\",\r\n \"fqdn\": \"foohydratestrelativename122.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/hydratestdnsrg8525/providers/Microsoft.Network/trafficManagerProfiles/watmv2profilehydratest9950/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3967\",\r\n \"name\": \"atmprofile3967\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile3967\",\r\n \"fqdn\": \"atmprofile3967.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3967/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7460\",\r\n \"name\": \"atmprofile7460\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile7460\",\r\n \"fqdn\": \"atmprofile7460.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7460/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7802\",\r\n \"name\": \"atmprofile7802\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile7802\",\r\n \"fqdn\": \"atmprofile7802.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile7802/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8009\",\r\n \"name\": \"atmprofile8009\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile8009\",\r\n \"fqdn\": \"atmprofile8009.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8009/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile942\",\r\n \"name\": \"atmprofile942\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile942\",\r\n \"fqdn\": \"atmprofile942.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup1622/providers/Microsoft.Network/trafficManagerProfiles/atmprofile942/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup880/providers/Microsoft.Network/trafficManagerProfiles/atmprofile681\",\r\n \"name\": \"atmprofile681\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile681\",\r\n \"fqdn\": \"atmprofile681.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup880/providers/Microsoft.Network/trafficManagerProfiles/atmprofile681/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3179\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager3179\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager3179\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager3179.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3179/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3481\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager3481\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager3481\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager3481.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager3481/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager5207\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager5207\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager5207\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager5207.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager5207/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8306\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager8306\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager8306\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager8306.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8306/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9108\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager9108\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager9108\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager9108.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager4665/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager9108/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -415,7 +422,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:41:07 GMT" + "Mon, 06 Mar 2017 12:14:00 GMT" ], "Transfer-Encoding": [ "chunked" @@ -429,8 +436,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "ab7c39a0-d4a6-4cce-9a61-3142c1107539" + "fbc29e84-a51a-42d7-83f9-57fb1da38cf3" ], "X-AspNet-Version": [ "4.0.30319" @@ -442,31 +452,29 @@ "10799" ], "x-ms-correlation-request-id": [ - "429b0014-1e08-42f9-8479-e2eae3368050" + "242623b8-0095-426f-b168-c2288419b4e1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134108Z:429b0014-1e08-42f9-8479-e2eae3368050" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121400Z:242623b8-0095-426f-b168-c2288419b4e1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup1622?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXAxNjIyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager4665?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjQ2NjU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b85270f-3cf8-4abe-8bfe-34b5a8b4cf72" + "43b74856-9a12-4da9-96e7-09932697ad2a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -481,79 +489,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:41:09 GMT" + "Mon, 06 Mar 2017 12:14:04 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI0NjY1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-request-id": [ - "a64f8b87-8a4f-4e4a-8fc6-ccb7ffb18981" - ], - "x-ms-correlation-request-id": [ - "a64f8b87-8a4f-4e4a-8fc6-ccb7ffb18981" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134109Z:a64f8b87-8a4f-4e4a-8fc6-ccb7ffb18981" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1UWXlNaTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 12 Apr 2016 13:41:38 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "1197" ], "x-ms-request-id": [ - "8f571498-511a-448e-9fc8-8b70f954f7d0" + "1c289307-6334-4e2d-8764-96f2bb5383ec" ], "x-ms-correlation-request-id": [ - "8f571498-511a-448e-9fc8-8b70f954f7d0" + "1c289307-6334-4e2d-8764-96f2bb5383ec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134139Z:8f571498-511a-448e-9fc8-8b70f954f7d0" + "NORTHEUROPE:20170306T121405Z:1c289307-6334-4e2d-8764-96f2bb5383ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,13 +519,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1UWXlNaTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI0NjY1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkkwTmpZMUxVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -583,28 +541,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:42:08 GMT" + "Mon, 06 Mar 2017 12:14:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI0NjY1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14983" ], "x-ms-request-id": [ - "a4b81117-367b-40b7-b414-c49c4e8bf02f" + "86785626-4e7a-428a-8426-4a7edef0f6c4" ], "x-ms-correlation-request-id": [ - "a4b81117-367b-40b7-b414-c49c4e8bf02f" + "86785626-4e7a-428a-8426-4a7edef0f6c4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134209Z:a4b81117-367b-40b7-b414-c49c4e8bf02f" + "NORTHEUROPE:20170306T121435Z:86785626-4e7a-428a-8426-4a7edef0f6c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -613,13 +571,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1UWXlNaTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI0NjY1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkkwTmpZMUxVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -634,28 +593,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:42:39 GMT" + "Mon, 06 Mar 2017 12:15:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI0NjY1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14982" ], "x-ms-request-id": [ - "9d70683a-7885-485d-a269-2fddd7a38a29" + "70720d29-42fb-43a9-b950-0733f3da1489" ], "x-ms-correlation-request-id": [ - "9d70683a-7885-485d-a269-2fddd7a38a29" + "70720d29-42fb-43a9-b950-0733f3da1489" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134239Z:9d70683a-7885-485d-a269-2fddd7a38a29" + "NORTHEUROPE:20170306T121506Z:70720d29-42fb-43a9-b950-0733f3da1489" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +623,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMTYyMi1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1UWXlNaTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI0NjY1LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkkwTmpZMUxVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -685,22 +645,22 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:43:09 GMT" + "Mon, 06 Mar 2017 12:15:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14981" ], "x-ms-request-id": [ - "17a722b1-7d09-4334-a639-d923d1725d14" + "c0de4025-4da0-4b62-9606-8f3047936436" ], "x-ms-correlation-request-id": [ - "17a722b1-7d09-4334-a639-d923d1725d14" + "c0de4025-4da0-4b62-9606-8f3047936436" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T134309Z:17a722b1-7d09-4334-a639-d923d1725d14" + "NORTHEUROPE:20170306T121536Z:c0de4025-4da0-4b62-9606-8f3047936436" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,13 +670,13 @@ } ], "Names": { - "ListAllProfiles": [ - "resourcegroup1622", - "atmprofile942", - "atmprofile3967", - "atmprofile7802", - "atmprofile7460", - "atmprofile8009" + "GenerateName": [ + "azuresdkfornetautoresttrafficmanager4665", + "azuresdkfornetautoresttrafficmanager3481", + "azuresdkfornetautoresttrafficmanager8306", + "azuresdkfornetautoresttrafficmanager9108", + "azuresdkfornetautoresttrafficmanager5207", + "azuresdkfornetautoresttrafficmanager3179" ] }, "Variables": { diff --git a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListProfilesByResourceGroup.json b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListProfilesByResourceGroup.json index a8a78b34900f..de9ec1932100 100644 --- a/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListProfilesByResourceGroup.json +++ b/src/ResourceManagement/TrafficManager/TrafficManager.Tests/SessionRecords/Microsoft.Azure.Management.TrafficManager.Testing.ScenarioTests.ProfileScenarioTests/ListProfilesByResourceGroup.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup2153?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager8578?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1Nzg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Central US\"\r\n}", "RequestHeaders": { @@ -13,19 +13,20 @@ "32" ], "x-ms-client-request-id": [ - "1c425389-b8d6-4d49-a8f2-d373abc5f5fb" + "df645b13-49c3-4150-9ac4-91a1a32c0960" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153\",\r\n \"name\": \"resourcegroup2153\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager8578\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "190" + "236" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,22 +38,22 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:35:40 GMT" + "Mon, 06 Mar 2017 12:15:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1191" ], "x-ms-request-id": [ - "655c4009-7983-47dc-bbcf-8da467ee53d5" + "69affbdb-ec00-4bfd-bc62-1b0a84ea7362" ], "x-ms-correlation-request-id": [ - "655c4009-7983-47dc-bbcf-8da467ee53d5" + "69affbdb-ec00-4bfd-bc62-1b0a84ea7362" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133540Z:655c4009-7983-47dc-bbcf-8da467ee53d5" + "NORTHEUROPE:20170306T121544Z:69affbdb-ec00-4bfd-bc62-1b0a84ea7362" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -61,31 +62,32 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile544?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU1NDQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager6246?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyNjI0Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile544\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager6246\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "655" + "682" ], "x-ms-client-request-id": [ - "b2edb37f-043f-4e1f-9ab4-6240be3355e7" + "a2c516fe-81f5-4353-a84f-3eb48c0b5264" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile544\",\r\n \"name\": \"atmprofile544\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile544\",\r\n \"fqdn\": \"atmprofile544.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile544/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager6246\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager6246\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager6246\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager6246.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager6246/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1058" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -94,7 +96,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:35:40 GMT" + "Mon, 06 Mar 2017 12:15:48 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -102,8 +104,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "b2edb37f-043f-4e1f-9ab4-6240be3355e7" + "a2c516fe-81f5-4353-a84f-3eb48c0b5264" ], "X-AspNet-Version": [ "4.0.30319" @@ -112,46 +117,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10794" + "10796" ], "x-ms-correlation-request-id": [ - "3c3533d9-991e-4ac9-af98-5aed8c836f90" + "e89db59f-47eb-4b7d-ab67-f95bea12c8db" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133541Z:3c3533d9-991e-4ac9-af98-5aed8c836f90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121549Z:e89db59f-47eb-4b7d-ab67-f95bea12c8db" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile320?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGUzMjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager1638?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyMTYzOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile320\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager1638\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "655" + "682" ], "x-ms-client-request-id": [ - "ed51da86-0bb1-441c-b22f-e2a710e5e711" + "c600d918-4ae8-47a1-ae2b-db082999baeb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile320\",\r\n \"name\": \"atmprofile320\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile320\",\r\n \"fqdn\": \"atmprofile320.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile320/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager1638\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager1638\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager1638\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager1638.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager1638/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1058" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,7 +163,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:35:42 GMT" + "Mon, 06 Mar 2017 12:15:51 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -168,8 +171,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "ed51da86-0bb1-441c-b22f-e2a710e5e711" + "c600d918-4ae8-47a1-ae2b-db082999baeb" ], "X-AspNet-Version": [ "4.0.30319" @@ -178,46 +184,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10793" + "10795" ], "x-ms-correlation-request-id": [ - "fcf0afce-ee3c-46c3-b904-d61edf2fd9fa" + "35ef7ec3-f3a2-4b41-8645-f0c24ab7375e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133542Z:fcf0afce-ee3c-46c3-b904-d61edf2fd9fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121551Z:35ef7ec3-f3a2-4b41-8645-f0c24ab7375e" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile3894?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGUzODk0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager2225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyMjIyNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile3894\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager2225\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "4c09836a-fa17-4051-a611-6bf2fd54fde6" + "368b1707-80b6-4641-ac73-18dc1bc07d2d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3894\",\r\n \"name\": \"atmprofile3894\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile3894\",\r\n \"fqdn\": \"atmprofile3894.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3894/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager2225\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager2225\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager2225\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager2225.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager2225/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +230,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:35:43 GMT" + "Mon, 06 Mar 2017 12:15:53 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -234,8 +238,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "4c09836a-fa17-4051-a611-6bf2fd54fde6" + "368b1707-80b6-4641-ac73-18dc1bc07d2d" ], "X-AspNet-Version": [ "4.0.30319" @@ -244,46 +251,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10792" + "10794" ], "x-ms-correlation-request-id": [ - "73ad634c-a5b0-48fc-bb88-7cba22f1e78d" + "8f3fdc62-ee1d-4d62-a8b2-0cdf9813555a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133544Z:73ad634c-a5b0-48fc-bb88-7cba22f1e78d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121553Z:8f3fdc62-ee1d-4d62-a8b2-0cdf9813555a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile8204?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU4MjA0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager7242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyNzI0Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile8204\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager7242\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "0eabf33d-de6c-44e4-a0c5-4ace7c70658c" + "b75e5baf-4b9c-4be6-a9af-c79bc3e842c6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8204\",\r\n \"name\": \"atmprofile8204\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile8204\",\r\n \"fqdn\": \"atmprofile8204.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8204/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager7242\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager7242\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager7242\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager7242.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager7242/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -292,7 +297,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:35:44 GMT" + "Mon, 06 Mar 2017 12:15:54 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -300,8 +305,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "0eabf33d-de6c-44e4-a0c5-4ace7c70658c" + "b75e5baf-4b9c-4be6-a9af-c79bc3e842c6" ], "X-AspNet-Version": [ "4.0.30319" @@ -310,46 +318,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10791" + "10793" ], "x-ms-correlation-request-id": [ - "a3e4a341-fc95-45ee-90a2-16624ade96af" + "8fba0996-c66a-43ec-abac-0daf6cfd8915" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133544Z:a3e4a341-fc95-45ee-90a2-16624ade96af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121554Z:8fba0996-c66a-43ec-abac-0daf6cfd8915" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficmanagerprofiles/atmprofile9979?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzL2F0bXByb2ZpbGU5OTc5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficmanagerprofiles/azuresdkfornetautoresttrafficmanager8217?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXMvYXp1cmVzZGtmb3JuZXRhdXRvcmVzdHRyYWZmaWNtYW5hZ2VyODIxNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile9979\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager8217\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"protocol\": \"http\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.network/TrafficManagerProfiles/ExternalEndpoints\",\r\n \"properties\": {\r\n \"target\": \"foobar.contoso.com\",\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"global\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "656" + "682" ], "x-ms-client-request-id": [ - "9df971e7-ffd6-4606-9b3d-4353272ff46a" + "bf2dfd02-b09b-4295-b424-91c7bb82888c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile9979\",\r\n \"name\": \"atmprofile9979\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile9979\",\r\n \"fqdn\": \"atmprofile9979.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile9979/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8217\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager8217\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager8217\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager8217.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": \"CheckingEndpoints\",\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8217/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": \"CheckingEndpoint\",\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1063" + "1239" ], "Content-Type": [ "application/json; charset=utf-8" @@ -358,7 +364,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:35:45 GMT" + "Mon, 06 Mar 2017 12:15:56 GMT" ], "Server": [ "Microsoft-IIS/8.5" @@ -366,8 +372,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "9df971e7-ffd6-4606-9b3d-4353272ff46a" + "bf2dfd02-b09b-4295-b424-91c7bb82888c" ], "X-AspNet-Version": [ "4.0.30319" @@ -376,37 +385,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10790" + "10792" ], "x-ms-correlation-request-id": [ - "48700dba-a70c-4100-a790-cfb0f1c528c8" + "dfab6927-fd9a-40bd-9b7c-426fb2aef68b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133546Z:48700dba-a70c-4100-a790-cfb0f1c528c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121556Z:dfab6927-fd9a-40bd-9b7c-426fb2aef68b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay90cmFmZmljbWFuYWdlcnByb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficmanagerprofiles?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlR3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1NzgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3RyYWZmaWNtYW5hZ2VycHJvZmlsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aeca3e24-377e-461e-817b-7d1142e16a0f" + "1bd54eca-0b95-4fa1-ad91-419ae1bd59cd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.TrafficManager.TrafficManagerManagementClient/2.2.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile320\",\r\n \"name\": \"atmprofile320\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile320\",\r\n \"fqdn\": \"atmprofile320.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile320/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3894\",\r\n \"name\": \"atmprofile3894\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile3894\",\r\n \"fqdn\": \"atmprofile3894.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile3894/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile544\",\r\n \"name\": \"atmprofile544\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile544\",\r\n \"fqdn\": \"atmprofile544.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile544/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8204\",\r\n \"name\": \"atmprofile8204\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile8204\",\r\n \"fqdn\": \"atmprofile8204.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile8204/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile9979\",\r\n \"name\": \"atmprofile9979\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"atmprofile9979\",\r\n \"fqdn\": \"atmprofile9979.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/resourcegroup2153/providers/Microsoft.Network/trafficManagerProfiles/atmprofile9979/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager1638\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager1638\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager1638\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager1638.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager1638/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager2225\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager2225\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager2225\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager2225.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager2225/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager6246\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager6246\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager6246\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager6246.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager6246/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager7242\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager7242\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager7242\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager7242.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager7242/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8217\",\r\n \"name\": \"azuresdkfornetautoresttrafficmanager8217\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles\",\r\n \"location\": \"global\",\r\n \"properties\": {\r\n \"profileStatus\": \"Enabled\",\r\n \"trafficRoutingMethod\": \"Performance\",\r\n \"dnsConfig\": {\r\n \"relativeName\": \"azuresdkfornetautoresttrafficmanager8217\",\r\n \"fqdn\": \"azuresdkfornetautoresttrafficmanager8217.tmpreview.watmtest.azure-test.net\",\r\n \"ttl\": 35\r\n },\r\n \"monitorConfig\": {\r\n \"profileMonitorStatus\": null,\r\n \"protocol\": \"HTTP\",\r\n \"port\": 80,\r\n \"path\": \"/testpath.aspx\"\r\n },\r\n \"endpoints\": [\r\n {\r\n \"id\": \"/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourceGroups/azuresdkfornetautoresttrafficmanager8578/providers/Microsoft.Network/trafficManagerProfiles/azuresdkfornetautoresttrafficmanager8217/externalEndpoints/My external endpoint\",\r\n \"name\": \"My external endpoint\",\r\n \"type\": \"Microsoft.Network/trafficManagerProfiles/externalEndpoints\",\r\n \"properties\": {\r\n \"endpointStatus\": \"Enabled\",\r\n \"endpointMonitorStatus\": null,\r\n \"target\": \"foobar.contoso.com\",\r\n \"weight\": 1,\r\n \"priority\": 1,\r\n \"endpointLocation\": \"North Europe\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -415,7 +422,7 @@ "private" ], "Date": [ - "Tue, 12 Apr 2016 13:35:45 GMT" + "Mon, 06 Mar 2017 12:15:57 GMT" ], "Transfer-Encoding": [ "chunked" @@ -429,8 +436,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "aeca3e24-377e-461e-817b-7d1142e16a0f" + "1bd54eca-0b95-4fa1-ad91-419ae1bd59cd" ], "X-AspNet-Version": [ "4.0.30319" @@ -439,34 +449,32 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "10798" + "10799" ], "x-ms-correlation-request-id": [ - "5e46dc3d-099e-4951-8841-5a4c675b2987" + "04816165-331d-43d0-93f2-677ab37d8b27" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133546Z:5e46dc3d-099e-4951-8841-5a4c675b2987" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "NORTHEUROPE:20170306T121557Z:04816165-331d-43d0-93f2-677ab37d8b27" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/resourcegroup2153?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL3Jlc291cmNlZ3JvdXAyMTUzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/resourcegroups/azuresdkfornetautoresttrafficmanager8578?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL3Jlc291cmNlZ3JvdXBzL2F6dXJlc2RrZm9ybmV0YXV0b3Jlc3R0cmFmZmljbWFuYWdlcjg1Nzg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56cb8a1d-74a2-43e7-9339-068a8f45a021" + "a81bdd6e-6421-4fe8-9c48-25d43554950c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -481,28 +489,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:35:47 GMT" + "Mon, 06 Mar 2017 12:16:02 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-request-id": [ - "e595093f-5746-4c87-be86-e68464f87623" + "d677fad4-8050-440d-b91b-a852fcca4b53" ], "x-ms-correlation-request-id": [ - "e595093f-5746-4c87-be86-e68464f87623" + "d677fad4-8050-440d-b91b-a852fcca4b53" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133548Z:e595093f-5746-4c87-be86-e68464f87623" + "NORTHEUROPE:20170306T121602Z:d677fad4-8050-440d-b91b-a852fcca4b53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -511,13 +519,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1qRTFNeTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TlRjNExVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -532,28 +541,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:36:17 GMT" + "Mon, 06 Mar 2017 12:16:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14979" ], "x-ms-request-id": [ - "c923c2ad-df0f-467e-8ca5-b6794a69ceae" + "616fb49c-4112-499a-86b6-ec63875a25f2" ], "x-ms-correlation-request-id": [ - "c923c2ad-df0f-467e-8ca5-b6794a69ceae" + "616fb49c-4112-499a-86b6-ec63875a25f2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133618Z:c923c2ad-df0f-467e-8ca5-b6794a69ceae" + "NORTHEUROPE:20170306T121633Z:616fb49c-4112-499a-86b6-ec63875a25f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,13 +571,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1qRTFNeTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TlRjNExVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -583,28 +593,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:36:48 GMT" + "Mon, 06 Mar 2017 12:17:03 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14978" ], "x-ms-request-id": [ - "21b0a5b3-5557-4ac8-a6b2-e1b57c19806d" + "5816c78e-594e-4304-8ec1-cf87c8d544a8" ], "x-ms-correlation-request-id": [ - "21b0a5b3-5557-4ac8-a6b2-e1b57c19806d" + "5816c78e-594e-4304-8ec1-cf87c8d544a8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133648Z:21b0a5b3-5557-4ac8-a6b2-e1b57c19806d" + "NORTHEUROPE:20170306T121704Z:5816c78e-594e-4304-8ec1-cf87c8d544a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -613,13 +623,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1qRTFNeTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TlRjNExVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -634,28 +645,28 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:37:18 GMT" + "Mon, 06 Mar 2017 12:17:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01" + "https://api-dogfood.resources.windows-int.net/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14977" ], "x-ms-request-id": [ - "390b414a-7c92-4753-a040-be5184b37418" + "af18c54e-c1b6-4d48-b2d7-8762bf2d9f96" ], "x-ms-correlation-request-id": [ - "390b414a-7c92-4753-a040-be5184b37418" + "af18c54e-c1b6-4d48-b2d7-8762bf2d9f96" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133718Z:390b414a-7c92-4753-a040-be5184b37418" + "NORTHEUROPE:20170306T121734Z:af18c54e-c1b6-4d48-b2d7-8762bf2d9f96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -664,13 +675,14 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVNPVVJDRUdST1VQMjE1My1DRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6ImNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZOUFZWSkRSVWRTVDFWUU1qRTFNeTFEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbU5sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/e68d4145-c9ae-4667-925d-c51c8d88ad73/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlVSRVNES0ZPUk5FVEFVVE9SRVNUVFJBRkZJQ01BTkFHRVI4NTc4LUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTY4ZDQxNDUtYzlhZS00NjY3LTkyNWQtYzUxYzhkODhhZDczL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xWU1JWTkVTMFpQVWs1RlZFRlZWRTlTUlZOVVZGSkJSa1pKUTAxQlRrRkhSVkk0TlRjNExVTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaVkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -685,22 +697,22 @@ "no-cache" ], "Date": [ - "Tue, 12 Apr 2016 13:37:48 GMT" + "Mon, 06 Mar 2017 12:18:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14976" ], "x-ms-request-id": [ - "2f4cf5a6-3c6d-4f83-8cd5-e2aa706b6614" + "a7b492e7-d8f2-48f2-a6f0-5f328fd33e0f" ], "x-ms-correlation-request-id": [ - "2f4cf5a6-3c6d-4f83-8cd5-e2aa706b6614" + "a7b492e7-d8f2-48f2-a6f0-5f328fd33e0f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160412T133748Z:2f4cf5a6-3c6d-4f83-8cd5-e2aa706b6614" + "NORTHEUROPE:20170306T121805Z:a7b492e7-d8f2-48f2-a6f0-5f328fd33e0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,13 +722,13 @@ } ], "Names": { - "ListProfilesByResourceGroup": [ - "resourcegroup2153", - "atmprofile544", - "atmprofile320", - "atmprofile3894", - "atmprofile8204", - "atmprofile9979" + "GenerateName": [ + "azuresdkfornetautoresttrafficmanager8578", + "azuresdkfornetautoresttrafficmanager6246", + "azuresdkfornetautoresttrafficmanager1638", + "azuresdkfornetautoresttrafficmanager2225", + "azuresdkfornetautoresttrafficmanager7242", + "azuresdkfornetautoresttrafficmanager8217" ] }, "Variables": { From ae73640a8d7ada24fbd0447e168b13886b22b510 Mon Sep 17 00:00:00 2001 From: Vlad Cananau Date: Mon, 6 Mar 2017 13:49:31 +0000 Subject: [PATCH 03/56] Update generated.cmd --- .../Microsoft.Azure.Management.TrafficManager/generate.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd index 100da7f0c7f0..f634c924c690 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd @@ -4,9 +4,9 @@ :: @echo off -set autoRestVersion=0.14.0-Nightly20160125 +set autoRestVersion=0.16.0 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-trafficmanager/2015-11-01/swagger/trafficmanager.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-trafficmanager/2017-03-01/swagger/trafficmanager.json" ) else ( set specFile="%1" ) From 708dd1e677079ea5ba60428f8f63459d214e56bf Mon Sep 17 00:00:00 2001 From: Vlad Cananau Date: Wed, 15 Mar 2017 09:09:28 +0000 Subject: [PATCH 04/56] Update generate.cmd with the exact commit in the spec repository for Traffic Manager 2017-03-01 --- .../Microsoft.Azure.Management.TrafficManager/generate.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd index f634c924c690..6d1589716271 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd @@ -6,7 +6,7 @@ @echo off set autoRestVersion=0.16.0 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-trafficmanager/2017-03-01/swagger/trafficmanager.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/776baa315cfda36195fe4b7f38f56e6fa34f1819/arm-trafficmanager/2017-03-01/swagger/trafficmanager.json" ) else ( set specFile="%1" ) From dd1bf6983cc61deda9c15c258f300d875e1b4db8 Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Mon, 13 Mar 2017 16:05:35 -0700 Subject: [PATCH 05/56] Virtual Network Gateway Connection tests for Ipsec Policy Added virtual network gateway connection tests for ipsec policies Added VirtualNetworkGatewayConnection Ipsec Policies Test record Test Cases updated to use field names Connection Ipsec Policies Test session data Ipsec policies Test added for virtual network gateway connections --- ...atewayConnectionWithIpsecPoliciesTest.json | 5540 +++++++++++++++++ .../Tests/GatewayOperationsTests.cs | 235 + 2 files changed, 5775 insertions(+) create mode 100644 src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json new file mode 100644 index 000000000000..7568b934988f --- /dev/null +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json @@ -0,0 +1,5540 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yaz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b69926-2909-49a1-9458-9a3c781db181" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/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 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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\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 \"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 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 ],\r\n \"apiVersions\": [\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\": \"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 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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\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-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-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-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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-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-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\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-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\": \"routeFilters\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\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, 16 Mar 2017 03:33:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "8341394e-66d0-4d49-8631-29fc993b2ac4" + ], + "x-ms-correlation-request-id": [ + "8341394e-66d0-4d49-8631-29fc993b2ac4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033325Z:8341394e-66d0-4d49-8631-29fc993b2ac4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourcegroups/csmrg8555?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlZ3JvdXBzL2NzbXJnODU1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "c12e3e4a-ab80-4569-91a6-f7aa61865e2a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555\",\r\n \"name\": \"csmrg8555\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:33:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "ec6cb7c3-9fbc-407f-9ef5-0cc1e5003be8" + ], + "x-ms-correlation-request-id": [ + "ec6cb7c3-9fbc-407f-9ef5-0cc1e5003be8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033326Z:ec6cb7c3-9fbc-407f-9ef5-0cc1e5003be8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDc0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PUT", + "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\": \"West US\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "239" + ], + "x-ms-client-request-id": [ + "11308ef4-78cb-42a1-9fc7-08e638088a7c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet744\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\",\r\n \"etag\": \"W/\\\"471cee44-2fa7-4375-9f4c-1f916f22d554\\\"\",\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\": \"c16d6dbc-859c-43aa-92a6-fc835ff9d2fc\",\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": [ + "621" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:33:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "444015ed-da54-439d-adb1-76f0f5cdcd66" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/444015ed-da54-439d-adb1-76f0f5cdcd66?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "b55b82f7-fb49-4b84-a35d-8ff4985715d9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033329Z:b55b82f7-fb49-4b84-a35d-8ff4985715d9" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/444015ed-da54-439d-adb1-76f0f5cdcd66?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDQ0MDE1ZWQtZGE1NC00MzlkLWFkYjEtNzZmMGY1Y2RjZDY2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:33:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "559a4cfb-1f8d-4483-aaad-b3c7a18a3571" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "07ee2b20-cecd-484d-ba5d-e86a84e3f77e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033359Z:07ee2b20-cecd-484d-ba5d-e86a84e3f77e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDc0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet744\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\",\r\n \"etag\": \"W/\\\"f8b69d07-6555-4047-aca8-b83f6571bd31\\\"\",\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\": \"c16d6dbc-859c-43aa-92a6-fc835ff9d2fc\",\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-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:33:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"f8b69d07-6555-4047-aca8-b83f6571bd31\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "dedaff64-577e-42c6-9dd1-480bbe3cd0d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "1b77f96e-4d86-432a-b514-5244e2264d4e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033359Z:1b77f96e-4d86-432a-b514-5244e2264d4e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDc0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7809fa9-9939-40f8-9225-b0691d905597" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet744\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\",\r\n \"etag\": \"W/\\\"f8b69d07-6555-4047-aca8-b83f6571bd31\\\"\",\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\": \"c16d6dbc-859c-43aa-92a6-fc835ff9d2fc\",\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-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:33:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"f8b69d07-6555-4047-aca8-b83f6571bd31\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d2c5fae9-1f27-48e7-b30f-87ac7f46e3c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "73c0ad97-a96e-44e9-9e94-767e02cf101b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033359Z:73c0ad97-a96e-44e9-9e94-767e02cf101b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDg5Nzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6862\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "206" + ], + "x-ms-client-request-id": [ + "d5ea4778-9161-4d82-899b-97c317f56bb5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8977\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\",\r\n \"etag\": \"W/\\\"34673da1-6865-4833-8e50-508b5fdd97e2\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"890c450d-3607-4147-baf6-0f50c75756d5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6862\",\r\n \"fqdn\": \"azsmnet6862.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "711" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:34:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f6fe2ca2-a115-4d4c-a402-f56e4ea64214" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/f6fe2ca2-a115-4d4c-a402-f56e4ea64214?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d52c8700-4e5b-4419-be2f-1d0d2edeb59a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033401Z:d52c8700-4e5b-4419-be2f-1d0d2edeb59a" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/f6fe2ca2-a115-4d4c-a402-f56e4ea64214?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjZmZTJjYTItYTExNS00ZDRjLWE0MDItZjU2ZTRlYTY0MjE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:34:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5a660bcc-19bf-4093-a4f6-071fbf561c6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "ea0a3e64-2134-478c-b2fa-efe2e7537dd4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033431Z:ea0a3e64-2134-478c-b2fa-efe2e7537dd4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDg5Nzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8977\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\",\r\n \"etag\": \"W/\\\"7bf02b8d-22a1-4d40-b34c-8c1e6f58c929\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"890c450d-3607-4147-baf6-0f50c75756d5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6862\",\r\n \"fqdn\": \"azsmnet6862.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:34:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"7bf02b8d-22a1-4d40-b34c-8c1e6f58c929\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fefc436f-dca2-4f3a-a2ed-2cff4ebb7dab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "e28a5825-22bb-43dc-b02d-c4c64ec34684" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033431Z:e28a5825-22bb-43dc-b02d-c4c64ec34684" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDg5Nzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef9b2e69-f438-4c10-bed1-eea33a686856" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8977\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\",\r\n \"etag\": \"W/\\\"7bf02b8d-22a1-4d40-b34c-8c1e6f58c929\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"890c450d-3607-4147-baf6-0f50c75756d5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet6862\",\r\n \"fqdn\": \"azsmnet6862.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:34:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"7bf02b8d-22a1-4d40-b34c-8c1e6f58c929\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "64fcde82-1902-4019-9d1b-a694b0e2fda0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "de2f96d2-29e8-4f53-97ee-da9de6c5608c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033431Z:de2f96d2-29e8-4f53-97ee-da9de6c5608c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4ODA4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "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\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "403" + ], + "x-ms-client-request-id": [ + "90b0d000-3370-465f-8492-bce7d4c2e609" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8808\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808\",\r\n \"etag\": \"W/\\\"7d1bb4c6-3ece-4bb1-97f0-798d151d3fe2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"de0cb1dc-77a5-4d30-9e94-22d8982970e6\",\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/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"7d1bb4c6-3ece-4bb1-97f0-798d151d3fe2\\\"\",\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": [ + "1092" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:34:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "107b7b58-b63f-4869-8308-bc50d2923e36" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/107b7b58-b63f-4869-8308-bc50d2923e36?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "27eda6cd-2e95-40b5-8192-29373d65d9ce" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033433Z:27eda6cd-2e95-40b5-8192-29373d65d9ce" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/107b7b58-b63f-4869-8308-bc50d2923e36?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTA3YjdiNTgtYjYzZi00ODY5LTgzMDgtYmM1MGQyOTIzZTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:35:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "942e0bfa-c21f-43be-bf5d-69e7b2c553b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "85283fb9-5625-41e2-9252-cc093e938e57" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033504Z:85283fb9-5625-41e2-9252-cc093e938e57" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4ODA4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8808\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808\",\r\n \"etag\": \"W/\\\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"de0cb1dc-77a5-4d30-9e94-22d8982970e6\",\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/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\\\"\",\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" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:35:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a68a7b02-eabc-4f60-ae6b-4d78e29e27cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "15c7ffd5-c661-48b3-b30d-9f5537317b19" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033504Z:15c7ffd5-c661-48b3-b30d-9f5537317b19" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4ODA4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a3a1c6a-4e65-426e-8235-207bed945e1a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8808\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808\",\r\n \"etag\": \"W/\\\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"de0cb1dc-77a5-4d30-9e94-22d8982970e6\",\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/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\\\"\",\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" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:35:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a022024f-7115-400a-b35b-5d4452564f4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "32ed69e5-4697-4aa4-8550-5dac7c12593b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033505Z:32ed69e5-4697-4aa4-8550-5dac7c12593b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4ODA4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab363897-18df-4414-a615-26de6d80bdee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"GatewaySubnet\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\",\r\n \"etag\": \"W/\\\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\\\"\",\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" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:35:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"1dc94077-2ee2-46dc-a1e9-98038ce9215c\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ef8bdae2-2ca2-4040-93c9-87f1f54b877d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "9ac4e1ea-23c4-4184-8b5e-29bc386e7d40" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033505Z:9ac4e1ea-23c4-4184-8b5e-29bc386e7d40" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0ODkxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "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/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\"\r\n }\r\n },\r\n \"name\": \"azsmnet1494\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "835" + ], + "x-ms-client-request-id": [ + "986e0d6e-5d19-473c-8d5a-218f588636f6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8916\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\",\r\n \"etag\": \"W/\\\"a64c9fbf-c152-4853-bbec-bd01cdd1cde3\\\"\",\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\": \"44515bf5-d8ea-4c5c-9ded-360a0d6bb8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1494\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916/ipConfigurations/azsmnet1494\",\r\n \"etag\": \"W/\\\"a64c9fbf-c152-4853-bbec-bd01cdd1cde3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\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 \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1690" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:35:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "7cb8618d-c7d4-4591-a47f-0730d1e805de" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "b0fbaf99-cbad-4304-99f4-8d9ae71048e1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033506Z:b0fbaf99-cbad-4304-99f4-8d9ae71048e1" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:35: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": [ + "048b6fb8-8896-473e-a6f4-b3ac57d503cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "a017d308-5730-420a-9aee-65007a2f46cc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033537Z:a017d308-5730-420a-9aee-65007a2f46cc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:36:08 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": [ + "0aaf4b74-6c5e-4730-afdd-15dca7d25666" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "6fdfd28b-d2d7-461b-bcdd-c3d378c82f08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033608Z:6fdfd28b-d2d7-461b-bcdd-c3d378c82f08" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:36: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": [ + "dcd10376-0cc6-4bd3-87d1-6cbaf1778958" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "26a9d1e6-8adb-4c89-a467-f17ae8807378" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033638Z:26a9d1e6-8adb-4c89-a467-f17ae8807378" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:37:08 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": [ + "5e3e64c4-bd07-47c1-9419-8d35c2102b8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "88d026ad-2b49-42db-b438-1e6245f5a149" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033708Z:88d026ad-2b49-42db-b438-1e6245f5a149" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:37: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": [ + "762b6055-18ac-4321-8745-fe8f9b366114" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "0bbb62a3-b5d1-433a-8a4d-0fd486aab80d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033738Z:0bbb62a3-b5d1-433a-8a4d-0fd486aab80d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:38:08 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": [ + "6c52822a-068b-4eae-bb81-ed87a8235bc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "e246e554-b4e4-4cea-a7be-22952c52dee5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033809Z:e246e554-b4e4-4cea-a7be-22952c52dee5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:38: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": [ + "6c88a4d5-8e41-4173-8643-11b9cfcbcd6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "79891e15-bad3-491b-a213-43bf607d9b08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033839Z:79891e15-bad3-491b-a213-43bf607d9b08" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:39:08 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": [ + "86f92d28-460e-451c-a137-90443cf62726" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "fce54e08-1951-4fc3-8947-cfcebb12a381" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033909Z:fce54e08-1951-4fc3-8947-cfcebb12a381" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:39:39 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": [ + "89640c51-925d-49bd-87cc-e8dd1315ac12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "6e4db0db-db57-4a8a-8041-33e4af246b78" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T033939Z:6e4db0db-db57-4a8a-8041-33e4af246b78" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:40:09 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": [ + "30ead79a-28ec-45bb-806a-afa012b1b334" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "15f5b1e3-c3b0-4935-a00c-7575bfad8f36" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034010Z:15f5b1e3-c3b0-4935-a00c-7575bfad8f36" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:40:39 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": [ + "228682ae-8338-4809-9762-86c42f0c40ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "770516b5-692c-4d25-a553-b96fc9774ece" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034040Z:770516b5-692c-4d25-a553-b96fc9774ece" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:41:09 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": [ + "234c09ff-e9cb-448b-987f-d13fa2414ea0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "823e4fd7-99de-4f14-a5fa-7957028e9bf0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034110Z:823e4fd7-99de-4f14-a5fa-7957028e9bf0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:41:40 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": [ + "445332a1-2472-453d-91b7-37eaa0442051" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "d9b59add-868f-4c6e-a7de-d2e5e06e8efd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034140Z:d9b59add-868f-4c6e-a7de-d2e5e06e8efd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:42:10 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": [ + "8e1afd5a-8762-4c20-995c-d75c4dac7921" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "9029d989-f85e-4e50-b900-7ad7607b2698" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034210Z:9029d989-f85e-4e50-b900-7ad7607b2698" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:42:40 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": [ + "055660cd-c1c7-4008-88ad-0359730c82e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "eab7c447-5a1d-4846-82fb-1118037f7979" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034241Z:eab7c447-5a1d-4846-82fb-1118037f7979" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:43:11 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": [ + "6cc0c7fe-8a23-4fc0-93d0-8df74e2fa6a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "9207cb16-a674-4c2f-ac9a-14ddb76967db" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034311Z:9207cb16-a674-4c2f-ac9a-14ddb76967db" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:43: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": [ + "f8427835-55aa-48ec-9bd1-e199605343c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "c148427d-1ea0-4d5f-8ff0-2e68e241d436" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034341Z:c148427d-1ea0-4d5f-8ff0-2e68e241d436" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:44:11 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": [ + "685121cb-7d44-45e5-a44b-1a5189c96db7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "185d1b17-6b14-49b5-90f4-a434fc29adaf" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034412Z:185d1b17-6b14-49b5-90f4-a434fc29adaf" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:44: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": [ + "546834f6-1838-477d-b172-695fa7dd5e7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "fbcafe25-fed7-4f78-bdaf-edb099c2eef1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034442Z:fbcafe25-fed7-4f78-bdaf-edb099c2eef1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:45: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": [ + "22445ffb-36ed-4b20-aba6-288ec3ac64be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "1230e508-dfeb-457d-b4ef-572caa5a5225" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034512Z:1230e508-dfeb-457d-b4ef-572caa5a5225" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:45:42 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": [ + "de0a4aff-a469-4081-981d-01bddbadcfe8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "3b2ce778-6700-4461-9efc-35a4dc39eb19" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034542Z:3b2ce778-6700-4461-9efc-35a4dc39eb19" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:46: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": [ + "b3a51b24-042d-4fd2-b58e-91934f7377ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "0a838121-dc41-447f-9c29-064ea38058ff" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034613Z:0a838121-dc41-447f-9c29-064ea38058ff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:46:42 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": [ + "d31f0e87-0fed-455c-b3c9-d9b77b9cfb11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14966" + ], + "x-ms-correlation-request-id": [ + "10a2a643-0f57-4ba1-90d1-ffaceb686c77" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034643Z:10a2a643-0f57-4ba1-90d1-ffaceb686c77" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:47: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": [ + "0b7cb23c-032e-4bc1-ba45-39b2efc201f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "320b921b-402a-45b1-88cc-eb4521b95e01" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034713Z:320b921b-402a-45b1-88cc-eb4521b95e01" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:47: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": [ + "5fa1c99f-9493-4c4d-8852-452b79435484" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14964" + ], + "x-ms-correlation-request-id": [ + "f675dc16-7b32-46a4-9bc0-c4639c7a98d6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034743Z:f675dc16-7b32-46a4-9bc0-c4639c7a98d6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:48: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": [ + "9ab2e470-4c89-4866-a627-0400eb4da0fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14963" + ], + "x-ms-correlation-request-id": [ + "2162173c-e302-4bbf-b06b-fe07f553fd71" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034814Z:2162173c-e302-4bbf-b06b-fe07f553fd71" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:48: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": [ + "d74038ce-5cb9-46d4-b822-b3ba716082a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14962" + ], + "x-ms-correlation-request-id": [ + "a38302a5-0144-4ddd-ae6e-5c15bd23c9d9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034844Z:a38302a5-0144-4ddd-ae6e-5c15bd23c9d9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:49: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": [ + "5ffff3c8-4eb1-45dd-8054-5b6aaf835606" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14961" + ], + "x-ms-correlation-request-id": [ + "e6ff3f95-0381-4c7e-9c9e-56e56b4f3de7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034914Z:e6ff3f95-0381-4c7e-9c9e-56e56b4f3de7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:49: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": [ + "3e5aeaef-3a58-4c60-a1c1-f4c7ab10118a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "f71363c9-06de-4749-8bb8-6591d72d4e2c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T034944Z:f71363c9-06de-4749-8bb8-6591d72d4e2c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:50:15 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": [ + "60a36b30-5671-497c-9d84-bca2f50db250" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14959" + ], + "x-ms-correlation-request-id": [ + "19390fe5-3e9f-45ae-9b11-c9a062467e57" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035015Z:19390fe5-3e9f-45ae-9b11-c9a062467e57" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:50: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": [ + "dd764670-f210-45b0-850f-2fb97108df3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14958" + ], + "x-ms-correlation-request-id": [ + "84ffab07-083d-42bf-aa71-e6ed4c9e6a5f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035045Z:84ffab07-083d-42bf-aa71-e6ed4c9e6a5f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:51:15 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": [ + "3349b1ec-37da-4538-9c98-e743fe52b770" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14957" + ], + "x-ms-correlation-request-id": [ + "fc4e9234-e5a7-4e17-a219-0237e009b56d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035115Z:fc4e9234-e5a7-4e17-a219-0237e009b56d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:51: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": [ + "3d462f4b-4337-43f4-a1bb-0725c431d6a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14956" + ], + "x-ms-correlation-request-id": [ + "4b894879-2a66-4cc8-a780-e4389c82a865" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035145Z:4b894879-2a66-4cc8-a780-e4389c82a865" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:52:15 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": [ + "feb7bdb5-f404-4c0d-ba5c-168f2f9fdf45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14955" + ], + "x-ms-correlation-request-id": [ + "795a1311-94ff-478e-8591-0d8ae21ce31a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035216Z:795a1311-94ff-478e-8591-0d8ae21ce31a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:52: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": [ + "36fccb15-8504-467b-b602-2cdc1dfde85d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14954" + ], + "x-ms-correlation-request-id": [ + "995b539e-3b55-4094-b433-17e4419916e8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035246Z:995b539e-3b55-4094-b433-17e4419916e8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:53:16 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": [ + "94a1f13f-1c4b-4fed-b223-7058a296f8dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14953" + ], + "x-ms-correlation-request-id": [ + "db1a4f3b-c6e3-47cf-b905-3cff07ca8a7c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035316Z:db1a4f3b-c6e3-47cf-b905-3cff07ca8a7c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:53:47 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": [ + "05f435c5-409a-43ed-9e6b-83e4fa1912a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" + ], + "x-ms-correlation-request-id": [ + "52daa015-8260-4ba4-b645-608ddcf28fca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035347Z:52daa015-8260-4ba4-b645-608ddcf28fca" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:54:17 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": [ + "62929577-8c76-4bb5-9088-4c6469892af7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "ab659113-1e82-4a5e-a6b9-085ccc84d694" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035417Z:ab659113-1e82-4a5e-a6b9-085ccc84d694" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:54:47 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": [ + "9a08dadb-5d98-487e-9062-e57466c2cb02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14950" + ], + "x-ms-correlation-request-id": [ + "728fae6f-84dd-4726-88b3-783688a5c734" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035447Z:728fae6f-84dd-4726-88b3-783688a5c734" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:55:17 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": [ + "2f0a9f5c-7d7e-4e67-83a2-579f4a36a13d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14949" + ], + "x-ms-correlation-request-id": [ + "f7cc410c-aff2-43e1-9f9d-c78ee253833a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035517Z:f7cc410c-aff2-43e1-9f9d-c78ee253833a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:55:47 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": [ + "e8b778f7-e99a-4129-a92e-1630fedc27c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14948" + ], + "x-ms-correlation-request-id": [ + "b49c9578-608b-4221-9fa5-866a32c4581d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035547Z:b49c9578-608b-4221-9fa5-866a32c4581d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:56:18 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": [ + "6f40fd48-7217-4071-a9fb-5b99abcf39a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-correlation-request-id": [ + "72703bc3-a1e1-46bc-8533-4a38af79a6c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035618Z:72703bc3-a1e1-46bc-8533-4a38af79a6c7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:56:48 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": [ + "fc76b2e0-4f64-4645-91d4-127ac437a68d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14946" + ], + "x-ms-correlation-request-id": [ + "9a756b0f-1fa0-402b-9bf0-1723b3f0ac63" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035648Z:9a756b0f-1fa0-402b-9bf0-1723b3f0ac63" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:57:18 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": [ + "90e9e048-b8f2-4a8e-9f3d-481c0d53c714" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-correlation-request-id": [ + "ab9af4f6-60a0-45db-86aa-6498c4b1be01" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035718Z:ab9af4f6-60a0-45db-86aa-6498c4b1be01" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:57:48 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": [ + "e939daae-f324-4403-bcc6-65f431d65163" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14944" + ], + "x-ms-correlation-request-id": [ + "90ae36d4-3462-491f-a2a1-00fa39d7acd7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035748Z:90ae36d4-3462-491f-a2a1-00fa39d7acd7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:58:18 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": [ + "848ddcb7-4fc4-40ac-8ea0-e8b09ed167bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-correlation-request-id": [ + "0c3feb58-6260-4c47-a69e-5c83207909ed" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035819Z:0c3feb58-6260-4c47-a69e-5c83207909ed" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:58:49 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": [ + "8de0affb-2e74-486b-8d92-62e41ebafcba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14942" + ], + "x-ms-correlation-request-id": [ + "a05a791d-279a-4722-8795-de8961716d95" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035849Z:a05a791d-279a-4722-8795-de8961716d95" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:59:19 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": [ + "c5094ac5-b6b4-450c-a30e-0c74380fb72e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-correlation-request-id": [ + "91791692-435b-4bf1-a52e-3c5830300362" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035919Z:91791692-435b-4bf1-a52e-3c5830300362" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 03:59:49 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": [ + "17700fe9-7b21-4e57-af40-8e7ed91b0a5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14940" + ], + "x-ms-correlation-request-id": [ + "4b8f5cd8-3cee-4788-bc8c-caf88cee8299" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T035950Z:4b8f5cd8-3cee-4788-bc8c-caf88cee8299" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:00:19 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": [ + "20868b85-c732-4b0f-aad6-7b4275cbb79b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-correlation-request-id": [ + "6d0c7e94-9f35-4c42-b37d-dc8cd9e8a219" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040020Z:6d0c7e94-9f35-4c42-b37d-dc8cd9e8a219" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:00:50 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": [ + "f8649bd9-1d1f-47f8-a219-31d741f479f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14938" + ], + "x-ms-correlation-request-id": [ + "082bc3fd-7ea2-4778-8267-4854e77ce49c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040051Z:082bc3fd-7ea2-4778-8267-4854e77ce49c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:01:20 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": [ + "814ea4a9-0a98-4f2d-ad12-a1b0515907b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-correlation-request-id": [ + "01e03ef9-bf94-4ae4-8905-4da756decb51" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040121Z:01e03ef9-bf94-4ae4-8905-4da756decb51" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:01:51 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": [ + "4b40d0dc-9bfe-4d10-8d06-7265502d1d03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" + ], + "x-ms-correlation-request-id": [ + "f2dc27a0-5904-4e18-be53-f729585c1b10" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040151Z:f2dc27a0-5904-4e18-be53-f729585c1b10" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:02:21 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": [ + "3b88adac-25b5-44db-bed8-b05fda35fee2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-correlation-request-id": [ + "d504c4b7-51e6-4a7b-bc1a-ea07b7214560" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040221Z:d504c4b7-51e6-4a7b-bc1a-ea07b7214560" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:02:51 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": [ + "8359fe66-c6a5-46c6-87a8-47610a310621" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14934" + ], + "x-ms-correlation-request-id": [ + "836165df-482b-4a46-939b-0edbdb580818" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040252Z:836165df-482b-4a46-939b-0edbdb580818" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:03:21 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": [ + "e732b8f3-cca2-4889-9c8e-d9aa23bae41b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-correlation-request-id": [ + "0b3bcb16-09cd-40b0-98b1-364d1ffa989a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040322Z:0b3bcb16-09cd-40b0-98b1-364d1ffa989a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:03:52 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": [ + "4c405cac-6536-4d76-a18d-d80c5693f310" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14932" + ], + "x-ms-correlation-request-id": [ + "89ecdcb5-4031-4450-b6ce-de87ede73400" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040352Z:89ecdcb5-4031-4450-b6ce-de87ede73400" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/7cb8618d-c7d4-4591-a47f-0730d1e805de?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NiODYxOGQtYzdkNC00NTkxLWE0N2YtMDczMGQxZTgwNWRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "96bcfa34-fc34-4a35-a3a7-3a52e7f07096" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-correlation-request-id": [ + "88e83bd6-4191-46d0-9260-d65cfab96de4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040422Z:88e83bd6-4191-46d0-9260-d65cfab96de4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0ODkxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8916\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\",\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\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\": \"44515bf5-d8ea-4c5c-9ded-360a0d6bb8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1494\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916/ipConfigurations/azsmnet1494\",\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\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-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3d54c92f-5ccb-403d-bb28-e027d50bb8ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14930" + ], + "x-ms-correlation-request-id": [ + "b4a7fb03-b840-45c1-b881-9d4e9813c91a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040423Z:b4a7fb03-b840-45c1-b881-9d4e9813c91a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0ODkxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adcf580d-27e0-4afb-8bf2-9ff77b8bfe81" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet8916\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\",\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\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\": \"44515bf5-d8ea-4c5c-9ded-360a0d6bb8be\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1494\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916/ipConfigurations/azsmnet1494\",\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\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-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "68c77cdc-4745-4e42-8b7b-d3cec3977af7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-correlation-request-id": [ + "e2d51712-bee4-40da-a086-f834cb119c69" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040423Z:e2d51712-bee4-40da-a086-f834cb119c69" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "PUT", + "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/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet1494\",\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916/ipConfigurations/azsmnet1494\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\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\": \"44515bf5-d8ea-4c5c-9ded-360a0d6bb8be\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\",\r\n \"name\": \"azsmnet8916\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\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\": \"c16d6dbc-859c-43aa-92a6-fc835ff9d2fc\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f8b69d07-6555-4047-aca8-b83f6571bd31\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\",\r\n \"name\": \"azsmnet744\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\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 \"usePolicyBasedTrafficSelectors\": true,\r\n \"ipsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 300,\r\n \"saDataSizeKilobytes\": 1024,\r\n \"ipsecEncryption\": \"AES128\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES192\",\r\n \"ikeIntegrity\": \"SHA1\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS1\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3130" + ], + "x-ms-client-request-id": [ + "f296bc47-181c-46d3-9057-e59bb66e40cf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"1f52c2c7-9575-45de-9602-27812dff1b50\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"3082019006092A864886F70D010703A08201813082017D0201003182014930820145020100302D3019311730150603550403130E6E72702D656E6372797074696F6E021024D7E76585617DB24043672221D25170300D06092A864886F70D0101010500048201001ADFF190A1D163F3783D99A789BAACAABC19A6004095708607536DBAC0B122CBEBE991FFDA4A11C1688EA8031C6C402E4B115144D83473719E2D10D2B892D2C924FF65313BB9F4DC02C9DE632471AC1FB9CE1CF0DF6EBE4944C44E894A9C735E3C45B7C339B770ABD1301A6B5E047A101F886C154F36D74D54FDB849589055E2C1207901030B6B1D2BAA4815C9825A801244A8EE0504DDBCDA61ED544BD32B1782E6C1286ACF0A547D5D17737C9A9005D09F1D470F91496CD85159B299053656BA40E2ED29A0A0C1C911CD4C8D8A8DF00537F01569C134E91703F8AB89D0C58E64AEAF830090E771CC63A804E737752908BD302A43D76867B15C4A6F505DBD2E302B06092A864886F70D010701301406082A864886F70D03070408402BA5A5DB68D0AF8008AE196C01927FDEBC\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": true,\r\n \"ipsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 300,\r\n \"saDataSizeKilobytes\": 1024,\r\n \"ipsecEncryption\": \"AES128\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES192\",\r\n \"ikeIntegrity\": \"SHA1\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS1\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2159" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "bb183974-8d3b-4d8d-91ad-419989397d47" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/bb183974-8d3b-4d8d-91ad-419989397d47?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "1afcb875-32ad-4be7-b636-1747fe04b5fa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040425Z:1afcb875-32ad-4be7-b636-1747fe04b5fa" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "PUT", + "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/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet1494\",\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916/ipConfigurations/azsmnet1494\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\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\": \"44515bf5-d8ea-4c5c-9ded-360a0d6bb8be\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\",\r\n \"name\": \"azsmnet8916\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\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\": \"c16d6dbc-859c-43aa-92a6-fc835ff9d2fc\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f8b69d07-6555-4047-aca8-b83f6571bd31\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\",\r\n \"name\": \"azsmnet744\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\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 \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 600,\r\n \"saDataSizeKilobytes\": 2048,\r\n \"ipsecEncryption\": \"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2048\",\r\n \"pfsGroup\": \"ECP384\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3144" + ], + "x-ms-client-request-id": [ + "8d7dca54-ba79-4261-8bfb-328bed363fb4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"f1c03e06-6cdc-4478-afe6-634633e54ef6\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"3082019006092A864886F70D010703A08201813082017D0201003182014930820145020100302D3019311730150603550403130E6E72702D656E6372797074696F6E021024D7E76585617DB24043672221D25170300D06092A864886F70D010101050004820100487A15E112BE5DA70F0F83BCFB36F4BBAC64838CAA09F95588B566FC486188255E4F843200878AEC91777AD45176BCC598C2B99C9DFB24A2A0FC8FE021122333F18D6DFF0B552215B28C845E2EA7D9F6E6DBF51DC220F66565892F5C912013083DC240084661E24D86CB3332043649C2617FAF39CC07DF80C00EBA954763782E904FF6E34A302815D2B421F45BCAA261197DB6E24594D0CF7ECC546963E5DFCD949CA487751443DBF71CBD21074FE8589B309846A4C3584351D4F0AAC7DCF5E27E3A8C767CF1453373B4B8AD4B634D737877E43E7B1E3853B175FD4B1BFBE93F7ADE032C2561DEF5FF5CFFEA006EFBBDC92A770229965B57EAEC397D9295B583302B06092A864886F70D010701301406082A864886F70D03070408EEFAD0E45E1F78B58008F189543776C9CD10\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": false,\r\n \"ipsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 600,\r\n \"saDataSizeKilobytes\": 2048,\r\n \"ipsecEncryption\": \"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2048\",\r\n \"pfsGroup\": \"ECP384\"\r\n }\r\n ],\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:55 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": [ + "dc18cd3a-9221-4be4-9e20-07de49e13625" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/dc18cd3a-9221-4be4-9e20-07de49e13625?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "af57be05-87be-4b40-8e38-82a9787e3aad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040456Z:af57be05-87be-4b40-8e38-82a9787e3aad" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "PUT", + "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/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworks/azsmnet8808/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/publicIPAddresses/azsmnet8977\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet1494\",\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916/ipConfigurations/azsmnet1494\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\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\": \"44515bf5-d8ea-4c5c-9ded-360a0d6bb8be\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"0a300c92-bd8f-4255-a49c-863565a660a5\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\",\r\n \"name\": \"azsmnet8916\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\",\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\": \"c16d6dbc-859c-43aa-92a6-fc835ff9d2fc\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f8b69d07-6555-4047-aca8-b83f6571bd31\\\"\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\",\r\n \"name\": \"azsmnet744\",\r\n \"type\": \"Microsoft.Network/localNetworkGateways\",\r\n \"location\": \"westus\",\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 \"usePolicyBasedTrafficSelectors\": false\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2804" + ], + "x-ms-client-request-id": [ + "feb5e312-fcab-40b6-8d81-4c6e00d334ed" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"8b10a0d8-7ef4-4656-aef0-e319e77ec3be\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"3082019006092A864886F70D010703A08201813082017D0201003182014930820145020100302D3019311730150603550403130E6E72702D656E6372797074696F6E021024D7E76585617DB24043672221D25170300D06092A864886F70D010101050004820100868C0E0306375349B6C40972D207E031B394348A2642EF827838965EAD3612048035304ADFD83B58EC2A010FF17E311644AA48E6ADA75F027EE07226661A93393D62F550F1488C7C8F61A6B34DB6281FDB10FC02FAA1EF1A1A8E32C1C993A5E8E616D45557553AF5B7F9282974A63D8698CE5662CC0B60E179649C342F839F515527F95FA707A91BACB60761CD6CA6576E6B43CDF0103E5050D234157101528082D340F36FADF7B3057CFEBA76F6096FC29DD0ABE1669446BA9E5A08798A4A2B2F9440E89601B5736D6CCAE5A2052D5490A22CC36E4BD897E456D0DA9B83C40AFA57EBF21E1589C994A31FBB9F02F56834B02C4CA9A006002CF16E8F953960D2302B06092A864886F70D010701301406082A864886F70D0307040868297E94AE8049C78008F81116FEAB9AD9E2\",\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-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:28 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": [ + "2f0e4536-1fb5-4190-a94c-19730fb6cd4a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/2f0e4536-1fb5-4190-a94c-19730fb6cd4a?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "fb7ae196-2a52-44ba-8588-f50f49a665fb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040528Z:fb7ae196-2a52-44ba-8588-f50f49a665fb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/bb183974-8d3b-4d8d-91ad-419989397d47?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmIxODM5NzQtOGQzYi00ZDhkLTkxYWQtNDE5OTg5Mzk3ZDQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d68b32e3-5a06-4b87-a568-4053fee6f3cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14928" + ], + "x-ms-correlation-request-id": [ + "6b5161fe-5ce6-4525-ac62-2033394f7a64" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040455Z:6b5161fe-5ce6-4525-ac62-2033394f7a64" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"64cea58c-51a0-42d0-9f70-2d569f16c1b0\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": true,\r\n \"ipsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 300,\r\n \"saDataSizeKilobytes\": 1024,\r\n \"ipsecEncryption\": \"AES128\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES192\",\r\n \"ikeIntegrity\": \"SHA1\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS1\"\r\n }\r\n ],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5a9767d4-68f2-4d76-841d-4796d59b2d1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-correlation-request-id": [ + "76e5ce7a-9aa8-4294-ba6b-fcb7648ddb2b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040456Z:76e5ce7a-9aa8-4294-ba6b-fcb7648ddb2b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02d11ff5-60d4-4f57-9f6f-e26630eab7c1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"64cea58c-51a0-42d0-9f70-2d569f16c1b0\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": false,\r\n \"usePolicyBasedTrafficSelectors\": true,\r\n \"ipsecPolicies\": [\r\n {\r\n \"saLifeTimeSeconds\": 300,\r\n \"saDataSizeKilobytes\": 1024,\r\n \"ipsecEncryption\": \"AES128\",\r\n \"ipsecIntegrity\": \"SHA256\",\r\n \"ikeEncryption\": \"AES192\",\r\n \"ikeIntegrity\": \"SHA1\",\r\n \"dhGroup\": \"DHGroup2\",\r\n \"pfsGroup\": \"PFS1\"\r\n }\r\n ],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:04:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b47b3d5d-a73a-4299-9c3b-0a725be4ae42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14926" + ], + "x-ms-correlation-request-id": [ + "47a3a616-6e0b-49b0-a6ba-adf849919b38" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040456Z:47a3a616-6e0b-49b0-a6ba-adf849919b38" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"213da857-656f-4662-8843-e5613bd9f0ba\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\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 {\r\n \"saLifeTimeSeconds\": 600,\r\n \"saDataSizeKilobytes\": 2048,\r\n \"ipsecEncryption\": \"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2048\",\r\n \"pfsGroup\": \"ECP384\"\r\n }\r\n ],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5bc758e5-3797-403f-984e-092807088ec2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-correlation-request-id": [ + "ada74ba7-a22f-4093-82e5-a16f23fb2f66" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040527Z:ada74ba7-a22f-4093-82e5-a16f23fb2f66" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f6208a5-f1f0-447e-b991-49af798801b0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"213da857-656f-4662-8843-e5613bd9f0ba\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\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 {\r\n \"saLifeTimeSeconds\": 600,\r\n \"saDataSizeKilobytes\": 2048,\r\n \"ipsecEncryption\": \"GCMAES256\",\r\n \"ipsecIntegrity\": \"GCMAES256\",\r\n \"ikeEncryption\": \"AES256\",\r\n \"ikeIntegrity\": \"SHA384\",\r\n \"dhGroup\": \"DHGroup2048\",\r\n \"pfsGroup\": \"ECP384\"\r\n }\r\n ],\r\n \"connectionStatus\": \"Unknown\",\r\n \"ingressBytesTransferred\": 0,\r\n \"egressBytesTransferred\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5e69af9d-4837-4229-b2e2-7eb3b2397fe9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14923" + ], + "x-ms-correlation-request-id": [ + "dddbcac7-1d2b-4af7-8600-cad7456c1c0f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040528Z:dddbcac7-1d2b-4af7-8600-cad7456c1c0f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"27552817-3de0-4524-a338-43923ae71c36\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\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-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "99a852d1-a97f-4eb5-ba80-a64a183403a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" + ], + "x-ms-correlation-request-id": [ + "ab6cea22-a45c-4978-b09d-ec0bb7122f42" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040559Z:ab6cea22-a45c-4978-b09d-ec0bb7122f42" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab10043c-9b8a-49f3-acb0-3a4ceae3df14" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"27552817-3de0-4524-a338-43923ae71c36\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\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-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "039bf6c8-ab5e-415e-98f3-c19592116b8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-correlation-request-id": [ + "dbeccd35-659d-46d8-b86b-647e5464c65c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040559Z:dbeccd35-659d-46d8-b86b-647e5464c65c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/dc18cd3a-9221-4be4-9e20-07de49e13625?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGMxOGNkM2EtOTIyMS00YmU0LTllMjAtMDdkZTQ5ZTEzNjI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7d194d34-5651-429c-8e63-03885cab6c33" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14925" + ], + "x-ms-correlation-request-id": [ + "b2956c39-206a-4f03-a453-516458556995" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040527Z:b2956c39-206a-4f03-a453-516458556995" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/2f0e4536-1fb5-4190-a94c-19730fb6cd4a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmYwZTQ1MzYtMWZiNS00MTkwLWE5NGMtMTk3MzBmYjZjZDRhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6e896fc4-8379-4ece-a403-ccf768bd39ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-correlation-request-id": [ + "8de35de6-746e-4818-84cf-cef1b70c7baa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040558Z:8de35de6-746e-4818-84cf-cef1b70c7baa" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54fdd7a8-83fc-4b92-a07c-65d5b6b668bc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875\",\r\n \"etag\": \"W/\\\"27552817-3de0-4524-a338-43923ae71c36\\\"\",\r\n \"type\": \"Microsoft.Network/connections\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b88ef1df-4fc9-4205-b9a4-0b9a0cdc5bee\",\r\n \"virtualNetworkGateway1\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/virtualNetworkGateways/azsmnet8916\"\r\n },\r\n \"localNetworkGateway2\": {\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/localNetworkGateways/azsmnet744\"\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\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-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:05:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7acf6bc3-2253-451e-b2ba-c2247e2025a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" + ], + "x-ms-correlation-request-id": [ + "5ee73504-ee66-43bc-a2d5-c6de142a6a55" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040600Z:5ee73504-ee66-43bc-a2d5-c6de142a6a55" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a7e76a1-9298-47ac-b6a6-231a57925c16" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:06:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" + ], + "x-ms-request-id": [ + "1cb8f6c0-457a-48e0-8b2c-5c034c977d94" + ], + "x-ms-correlation-request-id": [ + "1cb8f6c0-457a-48e0-8b2c-5c034c977d94" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040630Z:1cb8f6c0-457a-48e0-8b2c-5c034c977d94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/resourceGroups/csmrg8555/providers/Microsoft.Network/connections/azsmnet6875?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Jlc291cmNlR3JvdXBzL2NzbXJnODU1NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDY4NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4651e213-5d2f-436e-91cf-b45d84b6dcc0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:06:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operationResults/38f03a5b-469a-4631-82c8-df69062c23a7?api-version=2017-03-01" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "38f03a5b-469a-4631-82c8-df69062c23a7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/38f03a5b-469a-4631-82c8-df69062c23a7?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "4b0cdab3-22ff-4d6f-af0a-91f3e117266c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040600Z:4b0cdab3-22ff-4d6f-af0a-91f3e117266c" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/providers/Microsoft.Network/locations/westus/operations/38f03a5b-469a-4631-82c8-df69062c23a7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODdhNWFjNzItNTM0Yi00ZDY1LWE1NTMtYjliOTU2ZDZiOGQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzhmMDNhNWItNDY5YS00NjMxLTgyYzgtZGY2OTA2MmMyM2E3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 04:06:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "68abc899-83c0-4661-ba23-7c60365780c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-correlation-request-id": [ + "c11cde17-70e6-4a46-9307-253ce0b18f63" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T040630Z:c11cde17-70e6-4a46-9307-253ce0b18f63" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "VirtualNetworkGatewayConnectionWithIpsecPoliciesTest": [ + "csmrg8555", + "azsmnet744", + "azsmnet8977", + "azsmnet6862", + "azsmnet8808", + "azsmnet8916", + "azsmnet1494", + "azsmnet6875" + ] + }, + "Variables": { + "SubscriptionId": "87a5ac72-534b-4d65-a553-b9b956d6b8d8" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs index 59a93286263e..43ba5b3d470a 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/GatewayOperationsTests.cs @@ -423,6 +423,241 @@ public void VirtualNetworkGatewayConnectionWithBgpTest() } } + // Tests Resource:-VirtualNetworkGatewayConnection with Ipsec Policies + [Fact] + public void VirtualNetworkGatewayConnectionWithIpsecPoliciesTest() + { + 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); + var networkManagementClient = NetworkManagementTestUtilities.GetNetworkManagementClientWithHandler(context, handler2); + + var location = NetworkManagementTestUtilities.GetResourceLocation(resourcesClient, "Microsoft.Network/connections"); + + string resourceGroupName = TestUtilities.GenerateName("csmrg"); + resourcesClient.ResourceGroups.CreateOrUpdate(resourceGroupName, + new ResourceGroup + { + Location = location + }); + + // 1. CreateVirtualNetworkGatewayConnection API + + //A. Create LocalNetworkGateway2 + string localNetworkGatewayName = TestUtilities.GenerateName(); + string gatewayIp = "192.168.3.4"; + + var localNetworkGateway = new LocalNetworkGateway() + { + Location = location, + Tags = new Dictionary() + { + {"test","value"} + }, + GatewayIpAddress = gatewayIp, + LocalNetworkAddressSpace = new AddressSpace() + { + AddressPrefixes = new List() + { + "192.168.0.0/16", + } + } + }; + + var putLocalNetworkGatewayResponse = networkManagementClient.LocalNetworkGateways.CreateOrUpdate(resourceGroupName, localNetworkGatewayName, localNetworkGateway); + Assert.Equal("Succeeded", putLocalNetworkGatewayResponse.ProvisioningState); + var getLocalNetworkGatewayResponse = networkManagementClient.LocalNetworkGateways.Get(resourceGroupName, localNetworkGatewayName); + + // B. Prerequisite:- Create VirtualNetworkGateway1 + // a. Create PublicIPAddress(Gateway Ip) using Put PublicIPAddress API + string publicIpName = TestUtilities.GenerateName(); + string domainNameLabel = TestUtilities.GenerateName(); + + var nic1publicIp = TestHelper.CreateDefaultPublicIpAddress(publicIpName, resourceGroupName, domainNameLabel, location, networkManagementClient); + Console.WriteLine("PublicIPAddress(Gateway Ip) :{0}", nic1publicIp.Id); + + // b. Create Virtual Network using Put VirtualNetwork API + string vnetName = TestUtilities.GenerateName(); + string subnetName = "GatewaySubnet"; + + var virtualNetwork = TestHelper.CreateVirtualNetwork(vnetName, subnetName, resourceGroupName, location, networkManagementClient); + + var getSubnetResponse = networkManagementClient.Subnets.Get(resourceGroupName, vnetName, subnetName); + Console.WriteLine("Virtual Network GatewaySubnet Id: {0}", getSubnetResponse.Id); + + //c. CreateVirtualNetworkGateway API (Also, Set Default local network site) + string virtualNetworkGatewayName = TestUtilities.GenerateName(); + string ipConfigName = TestUtilities.GenerateName(); + + var virtualNetworkGateway = new VirtualNetworkGateway() + { + Location = location, + Tags = new Dictionary() + { + {"key","value"} + }, + EnableBgp = false, + GatewayType = VirtualNetworkGatewayType.Vpn, + VpnType = VpnType.RouteBased, + IpConfigurations = new List() + { + new VirtualNetworkGatewayIPConfiguration() + { + Name = ipConfigName, + PrivateIPAllocationMethod = IPAllocationMethod.Dynamic, + PublicIPAddress = new SubResource() + { + Id = nic1publicIp.Id + }, + Subnet = new SubResource() + { + Id = getSubnetResponse.Id + } + } + }, + Sku = new VirtualNetworkGatewaySku() + { + Name = VirtualNetworkGatewaySkuName.Standard, + Tier = VirtualNetworkGatewaySkuTier.Standard + } + }; + + var putVirtualNetworkGatewayResponse = networkManagementClient.VirtualNetworkGateways.CreateOrUpdate(resourceGroupName, virtualNetworkGatewayName, virtualNetworkGateway); + Assert.Equal("Succeeded", putVirtualNetworkGatewayResponse.ProvisioningState); + Console.WriteLine("Virtual Network Gateway is deployed successfully."); + var getVirtualNetworkGatewayResponse = networkManagementClient.VirtualNetworkGateways.Get(resourceGroupName, virtualNetworkGatewayName); + + // C. CreaetVirtualNetworkGatewayConnection API - Ipsec policy and policybased TS enabled + string VirtualNetworkGatewayConnectionName = TestUtilities.GenerateName(); + var virtualNetworkGatewayConnection = new VirtualNetworkGatewayConnection() + { + Location = location, + VirtualNetworkGateway1 = getVirtualNetworkGatewayResponse, + LocalNetworkGateway2 = getLocalNetworkGatewayResponse, + ConnectionType = VirtualNetworkGatewayConnectionType.IPsec, + RoutingWeight = 3, + SharedKey = "abc" + }; + + virtualNetworkGatewayConnection.IpsecPolicies = new List() + { + new IpsecPolicy() + { + IpsecEncryption = IpsecEncryption.AES128, + IpsecIntegrity = IpsecIntegrity.SHA256, + IkeEncryption = IkeEncryption.AES192, + IkeIntegrity = IkeIntegrity.SHA1, + DhGroup = DhGroup.DHGroup2, + PfsGroup = PfsGroup.PFS1, + SaDataSizeKilobytes = 1024, + SaLifeTimeSeconds = 300 + } + }; + virtualNetworkGatewayConnection.UsePolicyBasedTrafficSelectors = true; + + var putVirtualNetworkGatewayConnectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.CreateOrUpdate(resourceGroupName, VirtualNetworkGatewayConnectionName, virtualNetworkGatewayConnection); + Assert.Equal("Succeeded", putVirtualNetworkGatewayConnectionResponse.ProvisioningState); + + // 2. GetVirtualNetworkGatewayConnection API + var getVirtualNetworkGatewayConnectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.Get(resourceGroupName, VirtualNetworkGatewayConnectionName); + Console.WriteLine("GatewayConnection details:- GatewayLocation: {0}, GatewayConnectionId:{1}, VirtualNetworkGateway1 name={2} & Id={3}, LocalNetworkGateway2 name={4} & Id={5}, " + + "IpsecPolicies Count={6}, UsePolicyBasedTS={7}", + getVirtualNetworkGatewayConnectionResponse.Location, getVirtualNetworkGatewayConnectionResponse.Id, + getVirtualNetworkGatewayConnectionResponse.Name, + getVirtualNetworkGatewayConnectionResponse.VirtualNetworkGateway1.Name, getVirtualNetworkGatewayConnectionResponse.VirtualNetworkGateway1.Id, + getVirtualNetworkGatewayConnectionResponse.LocalNetworkGateway2.Name, getVirtualNetworkGatewayConnectionResponse.LocalNetworkGateway2.Id, + getVirtualNetworkGatewayConnectionResponse.IpsecPolicies.Count, getVirtualNetworkGatewayConnectionResponse.UsePolicyBasedTrafficSelectors); + + Assert.Equal(VirtualNetworkGatewayConnectionType.IPsec, getVirtualNetworkGatewayConnectionResponse.ConnectionType); + Assert.Equal(virtualNetworkGatewayConnection.UsePolicyBasedTrafficSelectors, getVirtualNetworkGatewayConnectionResponse.UsePolicyBasedTrafficSelectors); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies.Count, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies.Count); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IpsecEncryption, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IpsecEncryption); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IpsecIntegrity, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IpsecIntegrity); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IkeEncryption, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IkeEncryption); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IkeIntegrity, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IkeIntegrity); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].DhGroup, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].DhGroup); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].PfsGroup, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].PfsGroup); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].SaDataSizeKilobytes, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].SaDataSizeKilobytes); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].SaLifeTimeSeconds, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].SaLifeTimeSeconds); + + // 3A. UpdateVirtualNetworkGatewayConnection API : update ipsec policies and disable TS + virtualNetworkGatewayConnection.UsePolicyBasedTrafficSelectors = false; + virtualNetworkGatewayConnection.IpsecPolicies = new List() + { + new IpsecPolicy() + { + IpsecEncryption = IpsecEncryption.GCMAES256, + IpsecIntegrity = IpsecIntegrity.GCMAES256, + IkeEncryption = IkeEncryption.AES256, + IkeIntegrity = IkeIntegrity.SHA384, + DhGroup = DhGroup.DHGroup2048, + PfsGroup = PfsGroup.ECP384, + SaDataSizeKilobytes = 2048, + SaLifeTimeSeconds = 600 + } + }; + + putVirtualNetworkGatewayConnectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.CreateOrUpdate(resourceGroupName, VirtualNetworkGatewayConnectionName, virtualNetworkGatewayConnection); + Assert.Equal("Succeeded", putVirtualNetworkGatewayConnectionResponse.ProvisioningState); + + // 3B. GetVirtualNetworkGatewayConnection API after Updating + getVirtualNetworkGatewayConnectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.Get(resourceGroupName, VirtualNetworkGatewayConnectionName); + Console.WriteLine("GatewayConnection details:- GatewayLocation: {0}, GatewayConnectionId:{1}, VirtualNetworkGateway1 name={2} & Id={3}, LocalNetworkGateway2 name={4} & Id={5}, " + + "IpsecPolicies Count={6}, UsePolicyBasedTS={7}", + getVirtualNetworkGatewayConnectionResponse.Location, getVirtualNetworkGatewayConnectionResponse.Id, + getVirtualNetworkGatewayConnectionResponse.Name, + getVirtualNetworkGatewayConnectionResponse.VirtualNetworkGateway1.Name, getVirtualNetworkGatewayConnectionResponse.VirtualNetworkGateway1.Id, + getVirtualNetworkGatewayConnectionResponse.LocalNetworkGateway2.Name, getVirtualNetworkGatewayConnectionResponse.LocalNetworkGateway2.Id, + getVirtualNetworkGatewayConnectionResponse.IpsecPolicies.Count, getVirtualNetworkGatewayConnectionResponse.UsePolicyBasedTrafficSelectors); + + Assert.Equal(virtualNetworkGatewayConnection.UsePolicyBasedTrafficSelectors, getVirtualNetworkGatewayConnectionResponse.UsePolicyBasedTrafficSelectors); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies.Count, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies.Count); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IpsecEncryption, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IpsecEncryption); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IpsecIntegrity, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IpsecIntegrity); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IkeEncryption, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IkeEncryption); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].IkeIntegrity, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].IkeIntegrity); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].DhGroup, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].DhGroup); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].PfsGroup, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].PfsGroup); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].SaDataSizeKilobytes, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].SaDataSizeKilobytes); + Assert.Equal(virtualNetworkGatewayConnection.IpsecPolicies[0].SaLifeTimeSeconds, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies[0].SaLifeTimeSeconds); + + // 4A. UpdateVirtualNetworkGatewayConnection API : remove ipsec policies + virtualNetworkGatewayConnection.IpsecPolicies = null; + + putVirtualNetworkGatewayConnectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.CreateOrUpdate(resourceGroupName, VirtualNetworkGatewayConnectionName, virtualNetworkGatewayConnection); + Assert.Equal("Succeeded", putVirtualNetworkGatewayConnectionResponse.ProvisioningState); + + // 4B. GetVirtualNetworkGatewayConnection API after Updating + getVirtualNetworkGatewayConnectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.Get(resourceGroupName, VirtualNetworkGatewayConnectionName); + Console.WriteLine("GatewayConnection details:- GatewayLocation: {0}, GatewayConnectionId:{1}, VirtualNetworkGateway1 name={2} & Id={3}, LocalNetworkGateway2 name={4} & Id={5}, " + + "IpsecPolicies Count={6}, UsePolicyBasedTS={7}", + getVirtualNetworkGatewayConnectionResponse.Location, getVirtualNetworkGatewayConnectionResponse.Id, + getVirtualNetworkGatewayConnectionResponse.Name, + getVirtualNetworkGatewayConnectionResponse.VirtualNetworkGateway1.Name, getVirtualNetworkGatewayConnectionResponse.VirtualNetworkGateway1.Id, + getVirtualNetworkGatewayConnectionResponse.LocalNetworkGateway2.Name, getVirtualNetworkGatewayConnectionResponse.LocalNetworkGateway2.Id, + getVirtualNetworkGatewayConnectionResponse.IpsecPolicies.Count, getVirtualNetworkGatewayConnectionResponse.UsePolicyBasedTrafficSelectors); + + Assert.Equal(virtualNetworkGatewayConnection.UsePolicyBasedTrafficSelectors, getVirtualNetworkGatewayConnectionResponse.UsePolicyBasedTrafficSelectors); + Assert.Equal(0, getVirtualNetworkGatewayConnectionResponse.IpsecPolicies.Count); + + // 4. ListVitualNetworkGatewayConnections API + var listVirtualNetworkGatewayConectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.List(resourceGroupName); + Console.WriteLine("ListVirtualNetworkGatewayConnections count ={0} ", listVirtualNetworkGatewayConectionResponse.Count()); + Assert.Equal(1, listVirtualNetworkGatewayConectionResponse.Count()); + + // 5A. DeleteVirtualNetworkGatewayConnection API + networkManagementClient.VirtualNetworkGatewayConnections.Delete(resourceGroupName, VirtualNetworkGatewayConnectionName); + + // 5B. ListVitualNetworkGatewayConnections API after DeleteVirtualNetworkGatewayConnection API called + listVirtualNetworkGatewayConectionResponse = networkManagementClient.VirtualNetworkGatewayConnections.List(resourceGroupName); + Console.WriteLine("ListVirtualNetworkGatewayConnections count ={0} ", listVirtualNetworkGatewayConectionResponse.Count()); + Assert.Equal(0, listVirtualNetworkGatewayConectionResponse.Count()); + } + } + // Tests Resource:-VirtualNetworkGatewayConnection 5 APIs & Set-Remove default site [Fact] public void VirtualNetworkGatewayConnectionOperationsApisTest() From af97a84d38f5836628c44c43fac5f762a514c110 Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Thu, 16 Mar 2017 11:04:44 -0700 Subject: [PATCH 06/56] Generated code for network new 2017-03-01 api-version (only Ipsec Policies added compared to previous swagger) --- .../ApplicationGatewaysOperations.cs | 16 +- .../BgpServiceCommunitiesOperations.cs | 2 +- ...essRouteCircuitAuthorizationsOperations.cs | 8 +- .../ExpressRouteCircuitPeeringsOperations.cs | 8 +- .../ExpressRouteCircuitsOperations.cs | 20 +-- .../ExpressRouteServiceProvidersOperations.cs | 2 +- .../Generated/LoadBalancersOperations.cs | 10 +- .../LocalNetworkGatewaysOperations.cs | 8 +- .../Generated/Models/BgpPeerStatus.cs | 7 +- .../Generated/Models/BgpSettings.cs | 3 + .../Models/ConnectionResetSharedKey.cs | 3 + .../Generated/Models/DhGroup.cs | 30 ++++ .../Models/ExpressRouteCircuitPeering.cs | 24 +-- .../Generated/Models/GatewayRoute.cs | 3 + .../Generated/Models/IkeEncryption.cs | 27 +++ .../Generated/Models/IkeIntegrity.cs | 26 +++ .../Generated/Models/IpsecEncryption.cs | 31 ++++ .../Generated/Models/IpsecIntegrity.cs | 28 +++ .../Generated/Models/IpsecPolicy.cs | 160 ++++++++++++++++++ .../Generated/Models/PfsGroup.cs | 29 ++++ .../Generated/Models/VirtualNetworkGateway.cs | 12 +- .../Models/VirtualNetworkGatewayConnection.cs | 31 +++- .../Generated/Models/VpnClientParameters.cs | 4 +- .../Generated/NetworkInterfacesOperations.cs | 14 +- .../Generated/NetworkManagementClient.cs | 2 +- .../NetworkSecurityGroupsOperations.cs | 10 +- .../Generated/NetworkWatchersOperations.cs | 26 +-- .../Generated/PacketCapturesOperations.cs | 12 +- .../Generated/PublicIpAddressesOperations.cs | 10 +- .../Generated/RouteFilterRulesOperations.cs | 10 +- .../Generated/RouteFiltersOperations.cs | 12 +- .../Generated/RouteTablesOperations.cs | 10 +- .../Generated/RoutesOperations.cs | 8 +- .../Generated/SecurityRulesOperations.cs | 8 +- .../Generated/SubnetsOperations.cs | 8 +- .../Generated/UsagesOperations.cs | 2 +- ...tualNetworkGatewayConnectionsOperations.cs | 14 +- .../VirtualNetworkGatewaysOperations.cs | 18 +- .../VirtualNetworkPeeringsOperations.cs | 8 +- .../Generated/VirtualNetworksOperations.cs | 12 +- 40 files changed, 523 insertions(+), 153 deletions(-) create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/DhGroup.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeEncryption.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeIntegrity.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecEncryption.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecIntegrity.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/PfsGroup.cs diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs index 1304539a2f17..eac66811a1e3 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs @@ -116,7 +116,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -328,7 +328,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -506,7 +506,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -764,7 +764,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -943,7 +943,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1159,7 +1159,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1324,7 +1324,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1497,7 +1497,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs index fbf6072faf89..0f239babdefb 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs @@ -80,7 +80,7 @@ internal BgpServiceCommunitiesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs index 415877929d59..a7915b341560 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs @@ -127,7 +127,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -352,7 +352,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -551,7 +551,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -736,7 +736,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs index 57bc445de11a..0bb703b7a23c 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs @@ -126,7 +126,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -734,7 +734,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs index 25af2d5fa863..6b52e1e9fb92 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs @@ -116,7 +116,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -423,7 +423,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -624,7 +624,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -813,7 +813,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -991,7 +991,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1178,7 +1178,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1354,7 +1354,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1588,7 +1588,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1801,7 +1801,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2014,7 +2014,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs index d14c8cb79dac..3fff7273ca3e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs @@ -80,7 +80,7 @@ internal ExpressRouteServiceProvidersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs index 13b32fbe0c2e..9204f6baaea7 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs @@ -119,7 +119,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs index 482a33ce2fcc..5b990240d851 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs @@ -120,7 +120,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -533,7 +533,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -749,7 +749,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpPeerStatus.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpPeerStatus.cs index d1740a9d0c69..0287912e572c 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpPeerStatus.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpPeerStatus.cs @@ -14,6 +14,9 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using System.Linq; + /// + /// BGP peer status details + /// public partial class BgpPeerStatus { /// @@ -38,7 +41,7 @@ public BgpPeerStatus() { } /// The number of BGP messages sent /// The number of BGP messages /// received - public BgpPeerStatus(string localAddress = default(string), string neighbor = default(string), int? asn = default(int?), string state = default(string), string connectedDuration = default(string), long? routesReceived = default(long?), long? messagesSent = default(long?), int? messagesReceived = default(int?)) + public BgpPeerStatus(string localAddress = default(string), string neighbor = default(string), int? asn = default(int?), string state = default(string), string connectedDuration = default(string), long? routesReceived = default(long?), long? messagesSent = default(long?), long? messagesReceived = default(long?)) { LocalAddress = localAddress; Neighbor = neighbor; @@ -97,7 +100,7 @@ public BgpPeerStatus() { } /// Gets the number of BGP messages received /// [JsonProperty(PropertyName = "messagesReceived")] - public int? MessagesReceived { get; protected set; } + public long? MessagesReceived { get; protected set; } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpSettings.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpSettings.cs index fb3e207c9912..32351d78c568 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpSettings.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/BgpSettings.cs @@ -14,6 +14,9 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using System.Linq; + /// + /// BGP settings details + /// public partial class BgpSettings { /// diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ConnectionResetSharedKey.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ConnectionResetSharedKey.cs index a33a93984a01..343c7e38364e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ConnectionResetSharedKey.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ConnectionResetSharedKey.cs @@ -15,6 +15,9 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using System.Linq; + /// + /// The virtual network connection reset shared key + /// public partial class ConnectionResetSharedKey { /// diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/DhGroup.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/DhGroup.cs new file mode 100644 index 000000000000..e6447e859e05 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/DhGroup.cs @@ -0,0 +1,30 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + + /// + /// Defines values for DhGroup. + /// + public static class DhGroup + { + public const string None = "None"; + public const string DHGroup1 = "DHGroup1"; + public const string DHGroup2 = "DHGroup2"; + public const string DHGroup14 = "DHGroup14"; + public const string DHGroup2048 = "DHGroup2048"; + public const string ECP256 = "ECP256"; + public const string ECP384 = "ECP384"; + public const string DHGroup24 = "DHGroup24"; + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs index d886ee1287cf..6fa656fae80b 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs @@ -57,14 +57,14 @@ public ExpressRouteCircuitPeering() { } /// The GatewayManager Etag. /// Gets whether the provider or the /// customer last modified the peering. + /// The reference of the RouteFilter + /// resource. /// Gets name of the resource that is unique within /// a resource group. This name can be used to access the /// resource. /// A unique read-only string that changes whenever /// the resource is updated. - /// The reference of the RouteFilter - /// resource. - public ExpressRouteCircuitPeering(string id = default(string), string peeringType = default(string), string state = default(string), int? azureASN = default(int?), int? peerASN = default(int?), string primaryPeerAddressPrefix = default(string), string secondaryPeerAddressPrefix = default(string), string primaryAzurePort = default(string), string secondaryAzurePort = default(string), string sharedKey = default(string), int? vlanId = default(int?), ExpressRouteCircuitPeeringConfig microsoftPeeringConfig = default(ExpressRouteCircuitPeeringConfig), ExpressRouteCircuitStats stats = default(ExpressRouteCircuitStats), string provisioningState = default(string), string gatewayManagerEtag = default(string), string lastModifiedBy = default(string), string name = default(string), string etag = default(string), RouteFilter routeFilter = default(RouteFilter)) + public ExpressRouteCircuitPeering(string id = default(string), string peeringType = default(string), string state = default(string), int? azureASN = default(int?), int? peerASN = default(int?), string primaryPeerAddressPrefix = default(string), string secondaryPeerAddressPrefix = default(string), string primaryAzurePort = default(string), string secondaryAzurePort = default(string), string sharedKey = default(string), int? vlanId = default(int?), ExpressRouteCircuitPeeringConfig microsoftPeeringConfig = default(ExpressRouteCircuitPeeringConfig), ExpressRouteCircuitStats stats = default(ExpressRouteCircuitStats), string provisioningState = default(string), string gatewayManagerEtag = default(string), string lastModifiedBy = default(string), RouteFilter routeFilter = default(RouteFilter), string name = default(string), string etag = default(string)) : base(id) { PeeringType = peeringType; @@ -82,9 +82,9 @@ public ExpressRouteCircuitPeering() { } ProvisioningState = provisioningState; GatewayManagerEtag = gatewayManagerEtag; LastModifiedBy = lastModifiedBy; + RouteFilter = routeFilter; Name = name; Etag = etag; - RouteFilter = routeFilter; } /// @@ -183,6 +183,12 @@ public ExpressRouteCircuitPeering() { } [JsonProperty(PropertyName = "properties.lastModifiedBy")] public string LastModifiedBy { get; set; } + /// + /// Gets or sets the reference of the RouteFilter resource. + /// + [JsonProperty(PropertyName = "properties.routeFilter")] + public RouteFilter RouteFilter { get; set; } + /// /// Gets name of the resource that is unique within a resource group. /// This name can be used to access the resource. @@ -196,11 +202,7 @@ public ExpressRouteCircuitPeering() { } /// [JsonProperty(PropertyName = "etag")] public string Etag { get; protected set; } - - /// - /// Gets or sets the reference of the RouteFilter resource. - /// - [JsonProperty(PropertyName = "properties.routeFilter")] - public RouteFilter RouteFilter { get; set; } + } -} \ No newline at end of file +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/GatewayRoute.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/GatewayRoute.cs index b096887596ef..087fd4c57b59 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/GatewayRoute.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/GatewayRoute.cs @@ -14,6 +14,9 @@ namespace Microsoft.Azure.Management.Network.Models using Newtonsoft.Json; using System.Linq; + /// + /// Gateway routing details + /// public partial class GatewayRoute { /// diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeEncryption.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeEncryption.cs new file mode 100644 index 000000000000..164f8d80f042 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeEncryption.cs @@ -0,0 +1,27 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + + /// + /// Defines values for IkeEncryption. + /// + public static class IkeEncryption + { + public const string DES = "DES"; + public const string DES3 = "DES3"; + public const string AES128 = "AES128"; + public const string AES192 = "AES192"; + public const string AES256 = "AES256"; + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeIntegrity.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeIntegrity.cs new file mode 100644 index 000000000000..1d2398dba89b --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IkeIntegrity.cs @@ -0,0 +1,26 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + + /// + /// Defines values for IkeIntegrity. + /// + public static class IkeIntegrity + { + public const string MD5 = "MD5"; + public const string SHA1 = "SHA1"; + public const string SHA256 = "SHA256"; + public const string SHA384 = "SHA384"; + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecEncryption.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecEncryption.cs new file mode 100644 index 000000000000..d82d5c236c92 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecEncryption.cs @@ -0,0 +1,31 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + + /// + /// Defines values for IpsecEncryption. + /// + public static class IpsecEncryption + { + public const string None = "None"; + public const string DES = "DES"; + public const string DES3 = "DES3"; + public const string AES128 = "AES128"; + public const string AES192 = "AES192"; + public const string AES256 = "AES256"; + public const string GCMAES128 = "GCMAES128"; + public const string GCMAES192 = "GCMAES192"; + public const string GCMAES256 = "GCMAES256"; + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecIntegrity.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecIntegrity.cs new file mode 100644 index 000000000000..4efb587d7a99 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecIntegrity.cs @@ -0,0 +1,28 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + + /// + /// Defines values for IpsecIntegrity. + /// + public static class IpsecIntegrity + { + public const string MD5 = "MD5"; + public const string SHA1 = "SHA1"; + public const string SHA256 = "SHA256"; + public const string GCMAES128 = "GCMAES128"; + public const string GCMAES192 = "GCMAES192"; + public const string GCMAES256 = "GCMAES256"; + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs new file mode 100644 index 000000000000..57a5642d7e47 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs @@ -0,0 +1,160 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// An IPSec Policy configuration for a virtual network gateway connection + /// + public partial class IpsecPolicy + { + /// + /// Initializes a new instance of the IpsecPolicy class. + /// + public IpsecPolicy() { } + + /// + /// Initializes a new instance of the IpsecPolicy class. + /// + /// The Security Association (SA) + /// lifetime in seconds for a site to site VPN tunnel. + /// The Security Association (SA) + /// payload size in KB for a site to site VPN tunnel. + /// The IPSec encryption algorithm (IKE + /// phase 2). Possible values include: 'None', 'DES', 'DES3', 'AES128', + /// 'AES192', 'AES256', 'GCMAES128', 'GCMAES192', 'GCMAES256' + /// The IPSec integrity algorithm (IKE + /// phase 2). Possible values include: 'MD5', 'SHA1', 'SHA256', + /// 'GCMAES128', 'GCMAES192', 'GCMAES256' + /// The IKE encryption algorithm (IKE phase + /// 1). Possible values include: 'DES', 'DES3', 'AES128', 'AES192', + /// 'AES256' + /// The IKE integrity algorithm (IKE phase + /// 1). Possible values include: 'MD5', 'SHA1', 'SHA256', + /// 'SHA384' + /// The DH Groups used in IKE Phase 1 for initial + /// SA. Possible values include: 'None', 'DHGroup1', 'DHGroup2', + /// 'DHGroup14', 'DHGroup2048', 'ECP256', 'ECP384', 'DHGroup24' + /// The DH Groups used in IKE Phase 2 for new + /// child SA. Possible values include: 'None', 'PFS1', 'PFS2', + /// 'PFS2048', 'ECP256', 'ECP384', 'PFS24' + public IpsecPolicy(int saLifeTimeSeconds, int saDataSizeKilobytes, string ipsecEncryption, string ipsecIntegrity, string ikeEncryption, string ikeIntegrity, string dhGroup, string pfsGroup) + { + SaLifeTimeSeconds = saLifeTimeSeconds; + SaDataSizeKilobytes = saDataSizeKilobytes; + IpsecEncryption = ipsecEncryption; + IpsecIntegrity = ipsecIntegrity; + IkeEncryption = ikeEncryption; + IkeIntegrity = ikeIntegrity; + DhGroup = dhGroup; + PfsGroup = pfsGroup; + } + + /// + /// Gets or sets the Security Association (SA) lifetime in seconds for + /// a site to site VPN tunnel. + /// + [JsonProperty(PropertyName = "saLifeTimeSeconds")] + public int SaLifeTimeSeconds { get; set; } + + /// + /// Gets or sets the Security Association (SA) payload size in KB for a + /// site to site VPN tunnel. + /// + [JsonProperty(PropertyName = "saDataSizeKilobytes")] + public int SaDataSizeKilobytes { get; set; } + + /// + /// Gets or sets the IPSec encryption algorithm (IKE phase 2). Possible + /// values include: 'None', 'DES', 'DES3', 'AES128', 'AES192', + /// 'AES256', 'GCMAES128', 'GCMAES192', 'GCMAES256' + /// + [JsonProperty(PropertyName = "ipsecEncryption")] + public string IpsecEncryption { get; set; } + + /// + /// Gets or sets the IPSec integrity algorithm (IKE phase 2). Possible + /// values include: 'MD5', 'SHA1', 'SHA256', 'GCMAES128', 'GCMAES192', + /// 'GCMAES256' + /// + [JsonProperty(PropertyName = "ipsecIntegrity")] + public string IpsecIntegrity { get; set; } + + /// + /// Gets or sets the IKE encryption algorithm (IKE phase 1). Possible + /// values include: 'DES', 'DES3', 'AES128', 'AES192', 'AES256' + /// + [JsonProperty(PropertyName = "ikeEncryption")] + public string IkeEncryption { get; set; } + + /// + /// Gets or sets the IKE integrity algorithm (IKE phase 1). Possible + /// values include: 'MD5', 'SHA1', 'SHA256', 'SHA384' + /// + [JsonProperty(PropertyName = "ikeIntegrity")] + public string IkeIntegrity { get; set; } + + /// + /// Gets or sets the DH Groups used in IKE Phase 1 for initial SA. + /// Possible values include: 'None', 'DHGroup1', 'DHGroup2', + /// 'DHGroup14', 'DHGroup2048', 'ECP256', 'ECP384', 'DHGroup24' + /// + [JsonProperty(PropertyName = "dhGroup")] + public string DhGroup { get; set; } + + /// + /// Gets or sets the DH Groups used in IKE Phase 2 for new child SA. + /// Possible values include: 'None', 'PFS1', 'PFS2', 'PFS2048', + /// 'ECP256', 'ECP384', 'PFS24' + /// + [JsonProperty(PropertyName = "pfsGroup")] + public string PfsGroup { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (IpsecEncryption == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "IpsecEncryption"); + } + if (IpsecIntegrity == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "IpsecIntegrity"); + } + if (IkeEncryption == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "IkeEncryption"); + } + if (IkeIntegrity == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "IkeIntegrity"); + } + if (DhGroup == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "DhGroup"); + } + if (PfsGroup == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "PfsGroup"); + } + } + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/PfsGroup.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/PfsGroup.cs new file mode 100644 index 000000000000..aae064818f29 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/PfsGroup.cs @@ -0,0 +1,29 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + + /// + /// Defines values for PfsGroup. + /// + public static class PfsGroup + { + public const string None = "None"; + public const string PFS1 = "PFS1"; + public const string PFS2 = "PFS2"; + public const string PFS2048 = "PFS2048"; + public const string ECP256 = "ECP256"; + public const string ECP384 = "ECP384"; + public const string PFS24 = "PFS24"; + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs index ec6849f3713a..fd24da61dcb0 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs @@ -37,14 +37,14 @@ public VirtualNetworkGateway() { } /// The type of this virtual network gateway. /// Possible values are: 'Vpn' and 'ExpressRoute'. Possible values /// include: 'Vpn', 'ExpressRoute' - /// The type of this virtual network gateway. - /// Possible values are: 'PolicyBased' and 'RouteBased'. Possible - /// values include: 'PolicyBased', 'RouteBased' /// Resource ID. /// Resource name. /// Resource type. /// Resource location. /// Resource tags. + /// The type of this virtual network gateway. + /// Possible values are: 'PolicyBased' and 'RouteBased'. Possible + /// values include: 'PolicyBased', 'RouteBased' /// Whether BGP is enabled for this virtual /// network gateway or not. /// ActiveActive flag @@ -67,7 +67,7 @@ public VirtualNetworkGateway() { } /// 'Deleting', and 'Failed'. /// Gets a unique read-only string that changes /// whenever the resource is updated. - public VirtualNetworkGateway(IList ipConfigurations, string gatewayType, string vpnType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), bool? enableBgp = default(bool?), bool? activeActive = default(bool?), SubResource gatewayDefaultSite = default(SubResource), VirtualNetworkGatewaySku sku = default(VirtualNetworkGatewaySku), VpnClientConfiguration vpnClientConfiguration = default(VpnClientConfiguration), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) + public VirtualNetworkGateway(IList ipConfigurations, string gatewayType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string vpnType = default(string), bool? enableBgp = default(bool?), bool? activeActive = default(bool?), SubResource gatewayDefaultSite = default(SubResource), VirtualNetworkGatewaySku sku = default(VirtualNetworkGatewaySku), VpnClientConfiguration vpnClientConfiguration = default(VpnClientConfiguration), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) : base(id, name, type, location, tags) { IpConfigurations = ipConfigurations; @@ -184,10 +184,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "GatewayType"); } - if (VpnType == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "VpnType"); - } if (IpConfigurations != null) { foreach (var element in IpConfigurations) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs index bc1fc82be665..f9a3f9166660 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs @@ -58,6 +58,10 @@ public VirtualNetworkGatewayConnection() { } /// 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 @@ -65,7 +69,7 @@ public VirtualNetworkGatewayConnection() { } /// 'Updating', 'Deleting', and 'Failed'. /// Gets a unique read-only string that changes /// whenever the resource is updated. - public VirtualNetworkGatewayConnection(VirtualNetworkGateway 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), VirtualNetworkGateway virtualNetworkGateway2 = default(VirtualNetworkGateway), LocalNetworkGateway localNetworkGateway2 = default(LocalNetworkGateway), 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?), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) + public VirtualNetworkGatewayConnection(VirtualNetworkGateway 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), VirtualNetworkGateway virtualNetworkGateway2 = default(VirtualNetworkGateway), LocalNetworkGateway localNetworkGateway2 = default(LocalNetworkGateway), 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; @@ -81,6 +85,8 @@ public VirtualNetworkGatewayConnection() { } IngressBytesTransferred = ingressBytesTransferred; Peer = peer; EnableBgp = enableBgp; + UsePolicyBasedTrafficSelectors = usePolicyBasedTrafficSelectors; + IpsecPolicies = ipsecPolicies; ResourceGuid = resourceGuid; ProvisioningState = provisioningState; Etag = etag; @@ -166,6 +172,19 @@ public VirtualNetworkGatewayConnection() { } [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. @@ -216,6 +235,16 @@ public virtual void Validate() { LocalNetworkGateway2.Validate(); } + if (IpsecPolicies != null) + { + foreach (var element in IpsecPolicies) + { + if (element != null) + { + element.Validate(); + } + } + } } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VpnClientParameters.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VpnClientParameters.cs index 5fae80b65659..d3b300ff546f 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VpnClientParameters.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VpnClientParameters.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Management.Network.Models using System.Linq; /// - /// VpnClientParameters + /// Vpn Client Parameters for package generation /// public partial class VpnClientParameters { @@ -40,7 +40,7 @@ public VpnClientParameters(string processorArchitecture) /// Gets or sets VPN client Processor Architecture. Possible values /// are: 'AMD64' and 'X86'. Possible values include: 'Amd64', 'X86' /// - [JsonProperty(PropertyName = "ProcessorArchitecture")] + [JsonProperty(PropertyName = "processorArchitecture")] public string ProcessorArchitecture { get; set; } /// diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs index 40a02eb86e16..525d96aceb34 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs @@ -119,7 +119,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1363,7 +1363,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1538,7 +1538,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1757,7 +1757,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1951,7 +1951,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs index c391afbcc5bb..d67a6eaf2fbd 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs @@ -492,7 +492,7 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "this.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs index aeca4d060053..e19347f56e70 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs @@ -119,7 +119,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -331,7 +331,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -514,7 +514,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -703,7 +703,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -880,7 +880,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs index 070dc4e02b9e..9a5badd7b810 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs @@ -101,7 +101,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -320,7 +320,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -529,7 +529,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -707,7 +707,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -908,7 +908,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1282,7 +1282,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1462,7 +1462,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1692,7 +1692,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1922,7 +1922,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2152,7 +2152,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2382,7 +2382,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2612,7 +2612,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2842,7 +2842,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs index d0991beed77d..f4c6230ac541 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs @@ -129,7 +129,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -400,7 +400,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -612,7 +612,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -819,7 +819,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -993,7 +993,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1170,7 +1170,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs index a7824035e5a0..b3c24481d2a9 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs @@ -119,7 +119,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs index d0d79d3e759c..df48c96625a5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs @@ -126,7 +126,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -378,7 +378,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -576,7 +576,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -768,7 +768,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { routeFilterRuleParameters = new RouteFilterRule(); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1007,7 +1007,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { routeFilterRuleParameters = new PatchRouteFilterRule(); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs index 2e88eb338d9e..b1503a90165e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs @@ -119,7 +119,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -361,7 +361,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -539,7 +539,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -726,7 +726,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -901,7 +901,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1127,7 +1127,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs index cdf2aeeb916f..f932e1b31272 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs @@ -119,7 +119,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -336,7 +336,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -514,7 +514,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs index 49913de1c6f5..3c1c572df681 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs @@ -126,7 +126,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -350,7 +350,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -548,7 +548,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -736,7 +736,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs index 8fce4b56a92e..32f094919c35 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs @@ -126,7 +126,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -738,7 +738,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs index e6ba2ddfeaac..011c231e0b09 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs @@ -129,7 +129,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -358,7 +358,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -740,7 +740,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs index 7565dd077bdd..51bf83fdccd5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs @@ -94,7 +94,7 @@ internal UsagesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs index c17abfa1ae4e..c0cfd3175707 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs @@ -121,7 +121,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -368,7 +368,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -790,7 +790,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1006,7 +1006,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1189,7 +1189,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1423,7 +1423,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs index eb992e20de22..129061612af9 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs @@ -120,7 +120,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -561,7 +561,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -848,7 +848,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1064,7 +1064,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1237,7 +1237,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1439,7 +1439,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1639,7 +1639,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1841,7 +1841,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs index e9249a583ea6..308efbfb5b0b 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs @@ -126,7 +126,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -734,7 +734,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs index 8dc887aadf03..b2fe8e257173 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs @@ -119,7 +119,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -707,7 +707,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -903,7 +903,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1078,7 +1078,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; From 3e92d9137965d0414771ef8613563c0d88e3d4a5 Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Thu, 16 Mar 2017 11:17:05 -0700 Subject: [PATCH 07/56] package version incremented --- .../Properties/AssemblyInfo.cs | 4 ++-- .../Network/Microsoft.Azure.Management.Network/project.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs index 31b13a51ad32..3a079d1447c2 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.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("9.1.0.0")] -[assembly: AssemblyFileVersion("9.1.0.0")] +[assembly: AssemblyVersion("9.2.0.0")] +[assembly: AssemblyFileVersion("9.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json index d8484bf93b04..93058cacb507 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json @@ -1,6 +1,6 @@ { - "version": "9.1.0-preview", + "version": "9.2.0-preview", "description": "Provides management capabilities for Network services.", "authors": [ "Microsoft" ], From 3179142769527e3904729cae26002231fb871773 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Thu, 16 Mar 2017 15:11:19 -0700 Subject: [PATCH 08/56] Adding E2E test for VM Put bug for protected members --- src/ClientRuntime/ClientRuntime.sln | 24 + ...crosoft.Rest.ClientRuntime.E2E.Tests.xproj | 22 + .../Properties/AssemblyInfo.cs | 19 + .../ScenarioTests/E2ETestBase.cs | 793 ++++ .../ScenarioTests/VMTests.cs | 88 + .../UpdateVM_DoNotSerializeProtected.json | 3601 +++++++++++++++++ .../TestAssets/ExtendingTypes.cs | 70 + .../TestAssets/RecordedDelegatingHandler.cs | 82 + .../project.json | 56 + src/ClientRuntime/global.json | 4 +- 10 files changed, 4756 insertions(+), 3 deletions(-) create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Microsoft.Rest.ClientRuntime.E2E.Tests.xproj create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Properties/AssemblyInfo.cs create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs create mode 100644 src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/project.json diff --git a/src/ClientRuntime/ClientRuntime.sln b/src/ClientRuntime/ClientRuntime.sln index 7bb148f2ee43..26d514f45335 100644 --- a/src/ClientRuntime/ClientRuntime.sln +++ b/src/ClientRuntime/ClientRuntime.sln @@ -19,6 +19,14 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntim EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime.Tests", "Microsoft.Rest.ClientRuntime.Tests\Microsoft.Rest.ClientRuntime.Tests.xproj", "{24009A5E-85EC-4EF9-8C22-9F563DF6250F}" EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime.E2E.Tests", "Microsoft.Rest.ClientRuntime.E2E.Tests\Microsoft.Rest.ClientRuntime.E2E.Tests.xproj", "{4E9AEB40-026F-4BA1-A2DB-C8E252305157}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HttpRecorder", "..\TestFramework\Microsoft.Azure.Test.HttpRecorder\HttpRecorder.xproj", "{5D12D45A-E55F-410E-B8AF-9DC90E81B237}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "TestFramework", "..\TestFramework\Microsoft.Rest.ClientRuntime.Azure.TestFramework\TestFramework.xproj", "{C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Azure.Management.Compute", "..\ResourceManagement\Compute\Microsoft.Azure.Management.Compute\Microsoft.Azure.Management.Compute.xproj", "{CBE97730-45F5-448E-88E9-55DF94D65B77}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -57,6 +65,22 @@ Global {24009A5E-85EC-4EF9-8C22-9F563DF6250F}.Debug|Any CPU.Build.0 = Debug|Any CPU {24009A5E-85EC-4EF9-8C22-9F563DF6250F}.Release|Any CPU.ActiveCfg = Release|Any CPU {24009A5E-85EC-4EF9-8C22-9F563DF6250F}.Release|Any CPU.Build.0 = Release|Any CPU + {4E9AEB40-026F-4BA1-A2DB-C8E252305157}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4E9AEB40-026F-4BA1-A2DB-C8E252305157}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4E9AEB40-026F-4BA1-A2DB-C8E252305157}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4E9AEB40-026F-4BA1-A2DB-C8E252305157}.Release|Any CPU.Build.0 = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Release|Any CPU.Build.0 = Release|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.Build.0 = Release|Any CPU + {CBE97730-45F5-448E-88E9-55DF94D65B77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CBE97730-45F5-448E-88E9-55DF94D65B77}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CBE97730-45F5-448E-88E9-55DF94D65B77}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CBE97730-45F5-448E-88E9-55DF94D65B77}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Microsoft.Rest.ClientRuntime.E2E.Tests.xproj b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Microsoft.Rest.ClientRuntime.E2E.Tests.xproj new file mode 100644 index 000000000000..d2375757323d --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Microsoft.Rest.ClientRuntime.E2E.Tests.xproj @@ -0,0 +1,22 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + 4e9aeb40-026f-4ba1-a2db-c8e252305157 + Microsoft.Rest.ClientRuntime.E2E.Tests + .\obj + .\bin\ + v4.6 + + + 2.0 + + + + + + \ No newline at end of file diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Properties/AssemblyInfo.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..97bdb11d3c80 --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,19 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Microsoft.Rest.ClientRuntime.E2E.Tests")] +[assembly: AssemblyTrademark("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("4e9aeb40-026f-4ba1-a2db-c8e252305157")] diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs new file mode 100644 index 000000000000..f6b9921e991f --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs @@ -0,0 +1,793 @@ +namespace Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests +{ + using Microsoft.Azure.Management.Compute; + using Microsoft.Azure.Management.Compute.Models; + 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.Management.Storage; + using Microsoft.Azure.Management.Storage.Models; + using Microsoft.Azure.Test.HttpRecorder; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets; + using System; + using System.Collections.Generic; + using System.Diagnostics; + using System.Linq; + using System.Net; + using System.Reflection; + using System.Threading.Tasks; + using Xunit; + + public class E2ETestBase + { + const string DEFAULT_LOCATION = "SoutheastAsia"; + + string TEST_PREFIX; + + MockContext _mockContext; + ResourceManagementClient _resourceClient; + //ComputeManagementClient _computeClient; + MyComputeClient _computeClient; + StorageManagementClient _storageClient; + NetworkManagementClient _networkClient; + + ImageReference m_windowsImageReference, m_linuxImageReference; + + public E2ETestBase(string testPrefix = "") + { + TEST_PREFIX = testPrefix; + } + + protected MockContext MockContext + { + get + { + return _mockContext; + + } + + set + { + _mockContext = value; + } + } + protected ResourceManagementClient ResourceClient + { + get + { + if(_resourceClient == null) + { + var handle = new RecordedDelegatingHandler + { + StatusCodeToReturn = HttpStatusCode.OK, + IsPassThrough = true + }; + + _resourceClient = MockContext.GetServiceClient(handlers: handle); + } + + return _resourceClient; + } + } + + protected MyComputeClient ComputeClient + { + get + { + if(_computeClient == null) + { + var handle = new RecordedDelegatingHandler + { + StatusCodeToReturn = HttpStatusCode.OK, + IsPassThrough = true + }; + _computeClient = MockContext.GetServiceClient(handlers: handle); + } + + return _computeClient; + } + } + + protected StorageManagementClient StorageClient + { + get + { + if (_storageClient == null) + { + var handle = new RecordedDelegatingHandler + { + StatusCodeToReturn = HttpStatusCode.OK, + IsPassThrough = true + }; + + _storageClient = MockContext.GetServiceClient(handlers: handle); + } + + return _storageClient; + } + } + + protected NetworkManagementClient NetworkClient + { + get + { + if (_networkClient == null) + { + var handle = new RecordedDelegatingHandler + { + StatusCodeToReturn = HttpStatusCode.OK, + IsPassThrough = true + }; + + _networkClient = MockContext.GetServiceClient(handlers: handle); + } + + return _networkClient; + } + } + + protected StorageAccount CreateStorageAccount(ResourceGroup resGroup, string storageAccountName) + { + StorageAccount storageAccountOutput = null; + string rgName = resGroup.Name; + + try + { + var storageAccountList = StorageClient.StorageAccounts.ListByResourceGroup(rgName); + if(storageAccountList.Any()) + { + storageAccountOutput = storageAccountList.Where((sa) => sa.Name.Equals(storageAccountName, StringComparison.OrdinalIgnoreCase)).FirstOrDefault(); + } + } + catch { } + + try + { + if(storageAccountOutput == null) + { + var stoInput = new StorageAccountCreateParameters + { + Location = DEFAULT_LOCATION, + AccountType = AccountType.StandardGRS + }; + + storageAccountOutput = StorageClient.StorageAccounts.Create(rgName, + storageAccountName, stoInput); + bool created = false; + while (!created) + { + System.Threading.Thread.Sleep(TimeSpan.FromSeconds(10)); + var stos = StorageClient.StorageAccounts.ListByResourceGroup(rgName); + created = + stos.Any( + t => + StringComparer.OrdinalIgnoreCase.Equals(t.Name, storageAccountName)); + } + + storageAccountOutput = StorageClient.StorageAccounts.GetProperties(rgName, storageAccountName); + } + + return storageAccountOutput; + } + catch + { + //ResourceClient.ResourceGroups.Delete(rgName); + throw; + } + } + + protected ResourceGroup CreateResourceGroup(string rgName) + { + ResourceGroup resourceGroup = null; + try + { + resourceGroup = ResourceClient.ResourceGroups.Get(rgName); + //ResourceClient.ResourceGroups.Delete(rgName); + } + catch { } + + try + { + if (resourceGroup == null) + { + resourceGroup = ResourceClient.ResourceGroups.CreateOrUpdate( + rgName, + new ResourceGroup + { + Location = DEFAULT_LOCATION, + Tags = new Dictionary() { { rgName, DateTime.UtcNow.ToString("u") } } + }); + } + } + catch + { + throw; + } + + return resourceGroup; + } + + public static string GenerateName(string prefix = null, + [System.Runtime.CompilerServices.CallerMemberName] + string methodName="GenerateName_failed") + { + return HttpMockServer.GetAssetName(methodName, prefix); + } + + protected ImageReference GetPlatformVMImage(bool useWindowsImage) + { + if (useWindowsImage) + { + if (m_windowsImageReference == null) + { + m_windowsImageReference = FindVMImage("MicrosoftWindowsServer", "WindowsServer", "2012-R2-Datacenter"); + } + return m_windowsImageReference; + } + + if (m_linuxImageReference == null) + { + // If this sku disappears, query latest with + // GET https://management.azure.com/subscriptions//providers/Microsoft.Compute/locations/SoutheastAsia/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus?api-version=2015-06-15 + m_linuxImageReference = FindVMImage("Canonical", "UbuntuServer", "15.10"); + } + return m_linuxImageReference; + } + + protected ImageReference FindVMImage(string publisher, string offer, string sku) + { + var query = new Microsoft.Rest.Azure.OData.ODataQuery(); + query.Top = 1; + var images = ComputeClient.VirtualMachineImages.List( + location: DEFAULT_LOCATION, publisherName: publisher, offer: offer, skus: sku, + odataQuery: query); + var image = images.First(); + return new ImageReference + { + Publisher = publisher, + Offer = offer, + Sku = sku, + Version = image.Name + }; + } + + protected VirtualMachine CreateVM_NoAsyncTracking( + string rgName, string vmName, string asName, StorageAccount storageAccount, ImageReference imageRef, + out VirtualMachine inputVM, + Action vmCustomizer = null, + bool createWithPublicIpAddress = false, + bool waitOperation = true, + bool hasManagedDisks = false) + { + return CreateVM_NoAsyncTracking(rgName, vmName, asName, storageAccount.Name, imageRef, out inputVM, vmCustomizer, + createWithPublicIpAddress, waitOperation, hasManagedDisks); + } + + protected VirtualMachine CreateVM_NoAsyncTracking( + string rgName, string vmName, string asName, string storageAccountName, ImageReference imageRef, + out VirtualMachine inputVM, + Action vmCustomizer = null, + bool createWithPublicIpAddress = false, + bool waitOperation = true, + bool hasManagedDisks = false) + { + + VirtualMachine vm = null; + try + { + vm = ComputeClient.VirtualMachines.Get(rgName, vmName); + } + catch(Exception ex) + { + Debug.WriteLine(ex.ToString()); + } + + try + { + if (vm == null) + { + // Create the resource Group, it might have been already created during StorageAccount creation. + var resourceGroup = ResourceClient.ResourceGroups.Get(rgName); + + PublicIPAddress getPublicIpAddressResponse = createWithPublicIpAddress ? null : CreatePublicIP(rgName); + + // Do not add Dns server for managed disks, as they cannot resolve managed disk url ( https://md-xyz ) without + // explicitly setting up the rules for resolution. The VMs upon booting would need to contact the + // DNS server to access the VMStatus agent blob. Without proper Dns resolution, The VMs cannot access the + // VMStatus agent blob and there by fail to boot. + bool addDnsServer = !hasManagedDisks; + Subnet subnetResponse = CreateVNET(rgName, addDnsServer); + + NetworkInterface nicResponse = CreateNIC( + rgName, + subnetResponse, + getPublicIpAddressResponse != null ? getPublicIpAddressResponse.IpAddress : null); + + string asetId = CreateAvailabilitySet(rgName, asName, hasManagedDisks); + + inputVM = CreateDefaultVMInput(rgName, vmName, storageAccountName, imageRef, asetId, nicResponse.Id, hasManagedDisks); + //if (vmCustomizer != null) + //{ + // vmCustomizer(inputVM); + //} + + string expectedVMReferenceId = GetVMReferenceId(ComputeClient.SubscriptionId, rgName, inputVM.Name); + + VirtualMachine createOrUpdateResponse = null; + if (waitOperation) + { + createOrUpdateResponse = ComputeClient.VirtualMachines.CreateOrUpdate(rgName, inputVM.Name, inputVM); + } + else + { + createOrUpdateResponse = ComputeClient.VirtualMachines.BeginCreateOrUpdate(rgName, inputVM.Name, inputVM); + } + + Assert.True(createOrUpdateResponse.Name == inputVM.Name); + Assert.True(createOrUpdateResponse.Location == inputVM.Location.ToLower().Replace(" ", "") || + createOrUpdateResponse.Location.ToLower() == inputVM.Location.ToLower()); + + Assert.True( + createOrUpdateResponse.AvailabilitySet.Id + .ToLowerInvariant() == asetId.ToLowerInvariant()); + //ValidateVM(inputVM, createOrUpdateResponse, expectedVMReferenceId, hasManagedDisks); + + // CONSIDER dropping this Get and ValidateVM call. Nothing changes in the VM model after it's accepted. + // There might have been intent to track the async operation to completion and then check the VM is + // still this and okay, but that's not what the code above does and still doesn't make much sense. + vm = ComputeClient.VirtualMachines.Get(rgName, inputVM.Name); + //ValidateVM(inputVM, vm, expectedVMReferenceId, hasManagedDisks); + } + + inputVM = vm; + } + catch + { + //ResourceClient.ResourceGroups.Delete(rgName); + throw; + } + + return vm; + } + + protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expectedVMReferenceId, bool hasManagedDisks = false) + { + Assert.True(vmOut.LicenseType == vm.LicenseType); + + Assert.True(!string.IsNullOrEmpty(vmOut.ProvisioningState)); + + Assert.True(vmOut.HardwareProfile.VmSize + == vm.HardwareProfile.VmSize); + + Assert.NotNull(vmOut.StorageProfile.OsDisk); + + if (vm.StorageProfile.OsDisk != null) + { + Assert.True(vmOut.StorageProfile.OsDisk.Name + == vm.StorageProfile.OsDisk.Name); + + Assert.True(vmOut.StorageProfile.OsDisk.Caching + == vm.StorageProfile.OsDisk.Caching); + + Assert.NotNull(vmOut.StorageProfile.OsDisk.Vhd); + Assert.Equal(vm.StorageProfile.OsDisk.Vhd.Uri, vmOut.StorageProfile.OsDisk.Vhd.Uri); + if (vm.StorageProfile.OsDisk.Image != null && vm.StorageProfile.OsDisk.Image.Uri != null) + { + Assert.Equal(vm.StorageProfile.OsDisk.Image.Uri, vmOut.StorageProfile.OsDisk.Image.Uri); + } + } + + if (vm.StorageProfile.DataDisks != null && + vm.StorageProfile.DataDisks.Any()) + { + foreach (var dataDisk in vm.StorageProfile.DataDisks) + { + var dataDiskOut = vmOut.StorageProfile.DataDisks.FirstOrDefault( + d => dataDisk.Lun == d.Lun); + + Assert.NotNull(dataDiskOut); + Assert.Equal(dataDiskOut.DiskSizeGB, dataDisk.DiskSizeGB); + Assert.Equal(dataDiskOut.CreateOption, dataDisk.CreateOption); + if (dataDisk.Caching != null) + { + Assert.Equal(dataDiskOut.Caching, dataDisk.Caching); + } + + if (dataDisk.Name != null) + { + Assert.Equal(dataDiskOut.Name, dataDisk.Name); + } + + // Disabling resharper null-ref check as it doesn't seem to understand the not-null assert above. + // ReSharper disable PossibleNullReferenceException + + + Assert.NotNull(dataDiskOut.Vhd); + Assert.NotNull(dataDiskOut.Vhd.Uri); + if (dataDisk.Image != null && dataDisk.Image.Uri != null) + { + Assert.NotNull(dataDiskOut.Image); + Assert.Equal(dataDisk.Image.Uri, dataDiskOut.Image.Uri); + } + // ReSharper enable PossibleNullReferenceException + } + } + } + + + protected PublicIPAddress CreatePublicIP(string rgName) + { + // Create publicIP + string publicIpName = "pip5913"; + string domainNameLabel = "dn5913"; + + PublicIPAddress publicIp = null; + + try + { + publicIp = NetworkClient.PublicIPAddresses.Get(rgName, publicIpName); + } + catch { } + + if(publicIp == null) + { + publicIp = new PublicIPAddress() + { + Location = DEFAULT_LOCATION, + Tags = new Dictionary() + { + {"key", "value"} + }, + PublicIPAllocationMethod = IPAllocationMethod.Dynamic, + DnsSettings = new PublicIPAddressDnsSettings() + { + DomainNameLabel = domainNameLabel + } + }; + + var putPublicIpAddressResponse = NetworkClient.PublicIPAddresses.CreateOrUpdate(rgName, publicIpName, publicIp); + var getPublicIpAddressResponse = NetworkClient.PublicIPAddresses.Get(rgName, publicIpName); + + publicIp = getPublicIpAddressResponse; + } + + return publicIp; + } + + protected string CreateAvailabilitySet(string rgName, string asName, bool hasManagedDisks = false) + { + // Setup availability set + AvailabilitySet inputAvailabilitySet = null; + + try + { + inputAvailabilitySet = ComputeClient.AvailabilitySets.Get(rgName, asName); + } + catch { } + + if(inputAvailabilitySet == null) + { + var aSet = new AvailabilitySet + { + Location = DEFAULT_LOCATION, + Tags = new Dictionary() + { + {"RG", "rg"}, + {"testTag", "1"} + }, + PlatformFaultDomainCount = hasManagedDisks ? 2 : 3, + PlatformUpdateDomainCount = 5, + }; + + // Create an Availability Set and then create a VM inside this availability set + var asCreateOrUpdateResponse = ComputeClient.AvailabilitySets.CreateOrUpdate( + rgName, + asName, + aSet + ); + + inputAvailabilitySet = asCreateOrUpdateResponse; + } + + var asetId = GetAvailabilitySetRef(ComputeClient.SubscriptionId, rgName, inputAvailabilitySet.Name); + return asetId; + } + + protected Subnet CreateVNET(string rgName, bool addDnsServer = true) + { + // Create Vnet + // Populate parameter for Put Vnet + string vnetName = "vn5913"; + string subnetName = "sn5913"; + + Subnet subnet = null; + + try + { + subnet = NetworkClient.Subnets.Get(rgName, vnetName, subnetName); + } + catch { } + + + if (subnet == null) + { + var vnet = new VirtualNetwork() + { + Location = DEFAULT_LOCATION, + AddressSpace = new AddressSpace() + { + AddressPrefixes = new List() + { + "10.0.0.0/16", + } + }, + DhcpOptions = !addDnsServer ? null : new DhcpOptions() + { + DnsServers = new List() + { + "10.1.1.1", + "10.1.2.4" + } + }, + Subnets = new List() + { + new Subnet() + { + Name = subnetName, + AddressPrefix = "10.0.0.0/24", + } + } + }; + var putVnetResponse = NetworkClient.VirtualNetworks.CreateOrUpdate(rgName, vnetName, vnet); + var getSubnetResponse = NetworkClient.Subnets.Get(rgName, vnetName, subnetName); + subnet = getSubnetResponse; + } + return subnet; + } + + protected VirtualNetwork CreateVNETWithSubnets(string rgName, int subnetCount = 2) + { + // Create Vnet + // Populate parameter for Put Vnet + string vnetName = GenerateName("vn"); + + var vnet = new VirtualNetwork() + { + Location = DEFAULT_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" + } + }, + }; + + vnet.Subnets = new List(); + for (int i = 1; i <= subnetCount; i++) + { + Subnet subnet = new Subnet() + { + Name = GenerateName("sn" + i), + AddressPrefix = "10.0." + i + ".0/24", + }; + vnet.Subnets.Add(subnet); + } + + var putVnetResponse = NetworkClient.VirtualNetworks.CreateOrUpdate(rgName, vnetName, vnet); + return putVnetResponse; + } + + protected NetworkSecurityGroup CreateNsg(string rgName, string nsgName = null) + { + nsgName = nsgName ?? GenerateName("nsg"); + var nsgParameters = new NetworkSecurityGroup() + { + Location = DEFAULT_LOCATION + }; + + var putNSgResponse = NetworkClient.NetworkSecurityGroups.CreateOrUpdate(rgName, nsgName, nsgParameters); + var getNsgResponse = NetworkClient.NetworkSecurityGroups.Get(rgName, nsgName); + + return getNsgResponse; + } + + protected NetworkInterface CreateNIC(string rgName, Subnet subnet, string publicIPaddress, string nicname = null, NetworkSecurityGroup nsg = null) + { + // Create Nic + nicname = "nic5913"; + string ipConfigName = "ip5913"; + NetworkInterface netInterface = null; + try + { + netInterface = NetworkClient.NetworkInterfaces.Get(rgName, nicname); + } + catch { } + + if(netInterface == null) + { + var nicParameters = new NetworkInterface() + { + Location = DEFAULT_LOCATION, + Tags = new Dictionary() + { + { "key" ,"value" } + }, + IpConfigurations = new List() + { + new NetworkInterfaceIPConfiguration() + { + Name = ipConfigName, + PrivateIPAllocationMethod = IPAllocationMethod.Dynamic, + Subnet = subnet, + } + }, + NetworkSecurityGroup = nsg + }; + + if (publicIPaddress != null) + { + nicParameters.IpConfigurations[0].PublicIPAddress = new Microsoft.Azure.Management.Network.Models.PublicIPAddress() { Id = publicIPaddress }; + } + + var putNicResponse = NetworkClient.NetworkInterfaces.CreateOrUpdate(rgName, nicname, nicParameters); + var getNicResponse = NetworkClient.NetworkInterfaces.Get(rgName, nicname); + netInterface = getNicResponse; + } + return netInterface; + } + + protected NetworkInterface CreateMultiIpConfigNIC(string rgName, Subnet subnet, string nicname) + { + // Create Nic + nicname = nicname ?? GenerateName("nic"); + + string ipConfigName = GenerateName("ip"); + string ipConfigName2 = GenerateName("ip2"); + + var nicParameters = new NetworkInterface() + { + Location = DEFAULT_LOCATION, + Tags = new Dictionary() + { + { "key" ,"value" } + }, + IpConfigurations = new List() + { + new NetworkInterfaceIPConfiguration() + { + Name = ipConfigName, + Primary = true, + PrivateIPAllocationMethod = IPAllocationMethod.Dynamic, + Subnet = subnet, + }, + + new NetworkInterfaceIPConfiguration() + { + Name = ipConfigName2, + Primary = false, + PrivateIPAllocationMethod = IPAllocationMethod.Dynamic, + Subnet = subnet, + } + } + }; + + var putNicResponse = NetworkClient.NetworkInterfaces.CreateOrUpdate(rgName, nicname, nicParameters); + var getNicResponse = NetworkClient.NetworkInterfaces.Get(rgName, nicname); + return getNicResponse; + } + + protected VirtualMachine CreateDefaultVMInput(string rgName, string vmName, string storageAccountName, ImageReference imageRef, string asetId, string nicId, bool hasManagedDisks = false) + { + // Generate Container name to hold disk VHds + string containerName = "cont5913"; + var vhdContainer = "https://" + storageAccountName + ".blob.core.windows.net/" + containerName; + var vhduri = vhdContainer + string.Format("/{0}.vhd", "vhd5913"); + var osVhduri = vhdContainer + string.Format("/os{0}.vhd", "vhdcont5913"); + + var vm = new VirtualMachine + { + Location = DEFAULT_LOCATION, + Tags = new Dictionary() { { "RG", "rg" }, { "testTag", "1" } }, + AvailabilitySet = new Microsoft.Azure.Management.Compute.Models.SubResource() { Id = asetId }, + HardwareProfile = new HardwareProfile + { + VmSize = VirtualMachineSizeTypes.StandardA0 + }, + StorageProfile = new StorageProfile + { + ImageReference = imageRef, + OsDisk = new OSDisk + { + Caching = CachingTypes.None, + CreateOption = DiskCreateOptionTypes.FromImage, + Name = "test", + Vhd = hasManagedDisks ? null : new VirtualHardDisk + { + Uri = osVhduri + } + } + //DataDisks = !hasManagedDisks ? null : new List() + //{ + // new DataDisk() + // { + // Caching = CachingTypes.None, + // CreateOption = DiskCreateOptionTypes.Empty, + // Lun = 0, + // DiskSizeGB = 30, + // ManagedDisk = new ManagedDiskParameters() + // { + // StorageAccountType = StorageAccountTypes.StandardLRS + // } + // } + //}, + }, + NetworkProfile = new NetworkProfile + { + NetworkInterfaces = new List + { + new NetworkInterfaceReference + { + Id = nicId + } + } + }, + OsProfile = new OSProfile + { + AdminUsername = "Foo12", + AdminPassword = "BaR@123" + rgName, + ComputerName = "test" + } + }; + + typeof(Microsoft.Azure.Management.Compute.Models.Resource).GetRuntimeProperty("Name").SetValue(vm, vmName); + typeof(Microsoft.Azure.Management.Compute.Models.Resource).GetRuntimeProperty("Type").SetValue(vm, GenerateName("Microsoft.Compute/virtualMachines")); + return vm; + } + + public static string GetVMReferenceId(string subId, string resourceGrpName, string vmName) + { + return GetEntityReferenceId(subId, resourceGrpName, ApiConstants.VirtualMachines, vmName); + } + + public static string GetAvailabilitySetRef(string subId, string resourceGrpName, string availabilitySetName) + { + return GetEntityReferenceId(subId, resourceGrpName, ApiConstants.AvailabilitySets, availabilitySetName); + } + + private static string GetEntityReferenceId(string subId, string resourceGrpName, string controllerName, string entityName) + { + return string.Format("/{0}/{1}/{2}/{3}/{4}/{5}/{6}/{7}", + ApiConstants.Subscriptions, subId, ApiConstants.ResourceGroups, resourceGrpName, + ApiConstants.Providers, ApiConstants.ResourceProviderNamespace, controllerName, + entityName); + } + + } + + public static class ApiConstants + { + public const string + Subscriptions = "subscriptions", + ResourceGroups = "resourceGroups", + Providers = "providers", + VirtualMachines = "virtualMachines", + AvailabilitySets = "availabilitySets", + ResourceProviderNamespace = "Microsoft.Compute"; + } + + public static class Constants + { + public const string StorageAccountBlobUriTemplate = "https://{0}.blob.core.windows.net/"; + } +} diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs new file mode 100644 index 000000000000..ee9b9185f04a --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs @@ -0,0 +1,88 @@ +namespace Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests +{ + using Microsoft.Azure.Management.Compute; + using Microsoft.Azure.Management.Compute.Models; + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Resources.Models; + using Microsoft.Azure.Management.Storage.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets; + using Rest.Azure; + using System.Net; + using Xunit; + using System.Threading.Tasks; + using System.Diagnostics; + using System; + using System.Net.Http; + + public class VMTests : E2ETestBase + { + const string prefix = "e2etests"; + const string resourcePrefix = "res"; + const string storagePrefix = "sto"; + const string networkPrefix = "net"; + const string vmPrefix = "vm"; + + /// + /// Constructor + /// + public VMTests() : base(prefix) + { + + } + + [Fact] + public void UpdateVM_DoNotSerializeProtected() + { + string guidString = "f978ade9"; //We need to be under 24 char for storage, so making it shorter for almost all names + string resourceGroupName = string.Format("{0}-{1}-{2}", prefix, resourcePrefix, guidString); + string storageName = string.Format("{0}{1}{2}", prefix, storagePrefix, guidString); + string vmName = string.Format("{0}-{1}-{2}", prefix, vmPrefix, guidString); + + VirtualMachine vm1; + ResourceGroup resGroup = null; + + using (base.MockContext = MockContext.Start(this.GetType().FullName)) + { + try + { + string newVmId = "5C6F1669-C183-4BFC-9BBB-138E0892E917"; + string asName = "as5913"; + resGroup = CreateResourceGroup(resourceGroupName); + StorageAccount storageAccount = CreateStorageAccount(resGroup, storageName); + ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); + VirtualMachine vm = CreateVM_NoAsyncTracking(resGroup.Name, vmName, asName, storageAccount, imageRef, out vm1); + + //Create a new VM and Update VmId protected Property + MyVm myNewVm = new MyVm(vm); + myNewVm.UpdateVm(newVmId); + VirtualMachine updatedVm = myNewVm as VirtualMachine; + + // Update VM + AzureOperationResponse res = Task>.Run(async () => + { + return await ComputeClient.VirtualMachines.BeginCreateOrUpdateWithHttpMessagesAsync(resGroup.Name, updatedVm.Name, updatedVm).ConfigureAwait(false); + }).GetAwaiter().GetResult(); + + //Get Request Content and verify it does not contain VmId property + string requestContentStr = ComputeClient.GetRequestContent(); + Assert.False(requestContentStr.Contains("VmId")); + + //Get VM Object + VirtualMachine getVm = res.Body; + + // Verify the vmPutResponse does not contain updated VmId + Assert.NotEqual(newVmId, getVm.VmId); + } + catch(Exception ex) + { + Debug.WriteLine(ex.ToString()); + } + finally + { + ResourceClient.ResourceGroups.Delete(resGroup.Name); + } + } + } + } +} diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json new file mode 100644 index 000000000000..a1df7c3f975f --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json @@ -0,0 +1,3601 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourcegroups/e2etests-res-f978ade9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlZ3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5954cea2-0adc-4ec3-bf29-553565f7efcb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'e2etests-res-f978ade9' could not be found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "113" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:33:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "103a4b62-0ffd-4cd3-8d32-113d8b5a16f7" + ], + "x-ms-correlation-request-id": [ + "103a4b62-0ffd-4cd3-8d32-113d8b5a16f7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153329Z:103a4b62-0ffd-4cd3-8d32-113d8b5a16f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourcegroups/e2etests-res-f978ade9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlZ3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "792b5bc8-bbb8-4975-9f09-f923d8396902" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9\",\r\n \"name\": \"e2etests-res-f978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 15:33:29Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "b3e84152-d2aa-4401-bae1-e08f6a5d29e1" + ], + "x-ms-correlation-request-id": [ + "b3e84152-d2aa-4401-bae1-e08f6a5d29e1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153422Z:b3e84152-d2aa-4401-bae1-e08f6a5d29e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourcegroups/e2etests-res-f978ade9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlZ3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 15:33:29Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "107" + ], + "x-ms-client-request-id": [ + "2693c761-c7bd-41f0-be26-6cecd3a6d67a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9\",\r\n \"name\": \"e2etests-res-f978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 15:33:29Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "258" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:33:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "d3c44c97-2eaf-4312-b5b1-850f55aaf200" + ], + "x-ms-correlation-request-id": [ + "d3c44c97-2eaf-4312-b5b1-850f55aaf200" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153332Z:d3c44c97-2eaf-4312-b5b1-850f55aaf200" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac4e8e0d-fe2e-48bd-b82a-3b39327187d2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:33:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3fcf20ac-11aa-45fb-b977-96432c983e8a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "3fcf20ac-11aa-45fb-b977-96432c983e8a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153334Z:3fcf20ac-11aa-45fb-b977-96432c983e8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4610d918-d3c6-4781-8e71-796a1c9cf744" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e2etestsstof978ade9\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-03-16T15:33:37.2060922Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://e2etestsstof978ade9.blob.core.windows.net/\",\r\n \"file\": \"https://e2etestsstof978ade9.file.core.windows.net/\",\r\n \"queue\": \"https://e2etestsstof978ade9.queue.core.windows.net/\",\r\n \"table\": \"https://e2etestsstof978ade9.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1f7addc2-86e9-48de-aede-1c6432ecacd5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "1f7addc2-86e9-48de-aede-1c6432ecacd5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153418Z:1f7addc2-86e9-48de-aede-1c6432ecacd5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2UyZXRlc3Rzc3RvZjk3OGFkZTk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "95" + ], + "x-ms-client-request-id": [ + "2a916740-2551-4705-8e18-1c480963194a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:33:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/0d1d1a0c-6124-429b-990d-2559bd9f83fd?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "7301374d-633d-490a-8cec-9a5dbb23dbb5" + ], + "x-ms-correlation-request-id": [ + "7301374d-633d-490a-8cec-9a5dbb23dbb5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153337Z:7301374d-633d-490a-8cec-9a5dbb23dbb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/0d1d1a0c-6124-429b-990d-2559bd9f83fd?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzBkMWQxYTBjLTYxMjQtNDI5Yi05OTBkLTI1NTliZDlmODNmZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4e392d2b-332f-460a-920f-0b66a12b4d3b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "4e392d2b-332f-460a-920f-0b66a12b4d3b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153408Z:4e392d2b-332f-460a-920f-0b66a12b4d3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2UyZXRlc3Rzc3RvZjk3OGFkZTk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8825bfb5-d522-4e06-ab25-24c0376025a8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e2etestsstof978ade9\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-03-16T15:33:37.2060922Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://e2etestsstof978ade9.blob.core.windows.net/\",\r\n \"file\": \"https://e2etestsstof978ade9.file.core.windows.net/\",\r\n \"queue\": \"https://e2etestsstof978ade9.queue.core.windows.net/\",\r\n \"table\": \"https://e2etestsstof978ade9.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "07196a4a-cf03-4d44-bc6b-cd9593240d21" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "07196a4a-cf03-4d44-bc6b-cd9593240d21" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153418Z:07196a4a-cf03-4d44-bc6b-cd9593240d21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bcf2cfd2-32dd-4b54-bcda-7887fda0a87b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.0.20160617\",\r\n \"id\": \"/Subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.0.20160617\"\r\n }\r\n]", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9fc414ea-410e-4600-9f7c-71bc36416f3f_131147224964182697" + ], + "x-ms-request-id": [ + "fc9bbf56-7a4f-49df-9468-35b1dcc92631" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "3f7c05ae-2909-4dc6-a354-85b4f557f865" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153421Z:3f7c05ae-2909-4dc6-a354-85b4f557f865" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2UyZXRlc3RzLXZtLWY5NzhhZGU5P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd4c4b15-852f-4045-bf81-9f62f9e26de9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9' under resource group 'e2etests-res-f978ade9' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "179" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "20a78d0d-836d-4e37-b019-0adc476b1161" + ], + "x-ms-correlation-request-id": [ + "20a78d0d-836d-4e37-b019-0adc476b1161" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153422Z:20a78d0d-836d-4e37-b019-0adc476b1161" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2UyZXRlc3RzLXZtLWY5NzhhZGU5P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:44:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "a039c1c1-3bad-4d74-adaa-1f5c178c0b59" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "cc7aaff7-6eda-48b3-bcfe-1aac7b017696" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154424Z:cc7aaff7-6eda-48b3-bcfe-1aac7b017696" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2UyZXRlc3RzLXZtLWY5NzhhZGU5P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0debd1f-1b6d-4f26-bbe3-09fc161cfd26" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:44:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "0759e33f-992d-4016-8ede-b50f976842fa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "ff5c2e00-ff69-43be-be85-e54b8d27f3e4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154424Z:ff5c2e00-ff69-43be-be85-e54b8d27f3e4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1fcce22-63cc-4af1-92aa-1196d66fd13e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/pip5913' under resource group 'e2etests-res-f978ade9' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "baf238f9-d309-4992-b3b8-19c301b15514" + ], + "x-ms-correlation-request-id": [ + "baf238f9-d309-4992-b3b8-19c301b15514" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153425Z:baf238f9-d309-4992-b3b8-19c301b15514" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"caeed610-eeef-44b4-a08a-95fbee2b11ca\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"271e3be2-6a59-49ab-9056-9cc785cc45ca\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"caeed610-eeef-44b4-a08a-95fbee2b11ca\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "639adec6-5e9a-444c-ac04-b883931868b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "f84c8d73-45d8-4d0a-b5e0-82cde333892a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153502Z:f84c8d73-45d8-4d0a-b5e0-82cde333892a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0527fd56-c0bb-4a8c-949b-cf63a2876b64" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"caeed610-eeef-44b4-a08a-95fbee2b11ca\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"271e3be2-6a59-49ab-9056-9cc785cc45ca\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"caeed610-eeef-44b4-a08a-95fbee2b11ca\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "83bddc95-be76-408b-bcbe-0f81f209180d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "a2a982a8-0c45-43ae-8916-7a9129e32c0c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153502Z:a2a982a8-0c45-43ae-8916-7a9129e32c0c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "207" + ], + "x-ms-client-request-id": [ + "f18755ac-c196-4602-8304-777797768d7f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"f7626243-4e30-4757-a7e1-d222ea938c29\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"271e3be2-6a59-49ab-9056-9cc785cc45ca\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "719" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:34:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "8da38886-e9cd-47b4-b357-5fae8a3f0ed3" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/8da38886-e9cd-47b4-b357-5fae8a3f0ed3?api-version=2016-06-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "1740ca82-fe1f-4350-abc7-017ef9d48b0c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153431Z:1740ca82-fe1f-4350-abc7-017ef9d48b0c" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/8da38886-e9cd-47b4-b357-5fae8a3f0ed3?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhkYTM4ODg2LWU5Y2QtNDdiNC1iMzU3LTVmYWU4YTNmMGVkMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f1f55caa-a929-4beb-b58e-82a59cb60ba4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "e88c4b1c-769c-47d8-a1bf-299cb2b0ba9c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153501Z:e88c4b1c-769c-47d8-a1bf-299cb2b0ba9c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuNTkxMy9zdWJuZXRzL3NuNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7890c050-2a1b-4b30-8ddb-21a2fbacbe20" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/vn5913' under resource group 'e2etests-res-f978ade9' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9f8316ba-bdcb-42f1-a2e9-adc096379d32" + ], + "x-ms-correlation-request-id": [ + "9f8316ba-bdcb-42f1-a2e9-adc096379d32" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153502Z:9f8316ba-bdcb-42f1-a2e9-adc096379d32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuNTkxMy9zdWJuZXRzL3NuNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a53e297-dea7-48e0-a016-f711bc113589" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\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" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "81d5f5e3-1772-4b20-850b-9f62dbb40195" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "6341deb3-f781-42e4-b679-df4c9bce09ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153536Z:6341deb3-f781-42e4-b679-df4c9bce09ba" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "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\": \"sn5913\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "402" + ], + "x-ms-client-request-id": [ + "038a2f8e-f4c7-4bdd-b3b4-932d80d76796" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913\",\r\n \"etag\": \"W/\\\"ddab5f9b-96a4-4a5f-9719-10c450c4ad0b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6649a8b2-540c-4ad7-925d-65d64b5db865\",\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\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"ddab5f9b-96a4-4a5f-9719-10c450c4ad0b\\\"\",\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": [ + "1094" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "ae38e65f-0430-488a-a145-b5de0e17f282" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/ae38e65f-0430-488a-a145-b5de0e17f282?api-version=2016-06-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "3710b103-0229-43b0-8c9e-17ccfbbd6d15" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153505Z:3710b103-0229-43b0-8c9e-17ccfbbd6d15" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/ae38e65f-0430-488a-a145-b5de0e17f282?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FlMzhlNjVmLTA0MzAtNDg4YS1hMTQ1LWI1ZGUwZTE3ZjI4Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "316fb40a-193a-4ee2-b0ac-d7eb6f6c4525" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-correlation-request-id": [ + "aeb283ac-6083-4c92-ab28-b60e89555c2c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153536Z:aeb283ac-6083-4c92-ab28-b60e89555c2c" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6649a8b2-540c-4ad7-925d-65d64b5db865\",\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\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\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" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9d194060-5591-4d5c-8e48-e981833efdb5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-correlation-request-id": [ + "0a078aca-adba-4af4-844a-640177b74ef0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153536Z:0a078aca-adba-4af4-844a-640177b74ef0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e8a88d6-acaf-4e10-ae74-5e10692f2b96" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/nic5913' under resource group 'e2etests-res-f978ade9' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "168" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c0f5e60f-103c-44f3-ba76-501d5d63d4b7" + ], + "x-ms-correlation-request-id": [ + "c0f5e60f-103c-44f3-ba76-501d5d63d4b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153537Z:c0f5e60f-103c-44f3-ba76-501d5d63d4b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd87aa4b-4bb6-4f51-b5d5-a3b723171542\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\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/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\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\": \"wkueszqmktluves3mxlewxnymf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"534832b1-f3a9-46c2-9f91-9d86527c3df1\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "36694866-cffd-411f-9797-ca68d0d8375f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "9a105f62-e6b6-4c2a-ae8f-4701f50e8623" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153541Z:9a105f62-e6b6-4c2a-ae8f-4701f50e8623" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c51934a0-036b-4e86-927b-04b7100f24cf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd87aa4b-4bb6-4f51-b5d5-a3b723171542\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\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/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\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\": \"wkueszqmktluves3mxlewxnymf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "ETag": [ + "W/\"534832b1-f3a9-46c2-9f91-9d86527c3df1\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a5978243-e842-49a3-9ddd-78c9128d2a51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "fbd7aed1-089e-437e-b08f-1a6c58169851" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153541Z:fbd7aed1-089e-437e-b08f-1a6c58169851" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n }\r\n },\r\n \"name\": \"ip5913\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "715" + ], + "x-ms-client-request-id": [ + "cf715dbd-2162-48cc-a5e0-30b6c701bb70" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd87aa4b-4bb6-4f51-b5d5-a3b723171542\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\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/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\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\": \"wkueszqmktluves3mxlewxnymf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1481" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c4728559-db3c-49a3-9e3a-173c398d8d16" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/c4728559-db3c-49a3-9e3a-173c398d8d16?api-version=2016-06-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "5dea3e7a-db1e-4a10-9dfc-9484d4f905b7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153540Z:5dea3e7a-db1e-4a10-9dfc-9484d4f905b7" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/as5913?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hczU5MTM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31181cf7-3d08-41fb-aafa-6ae4b73b1034" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/availabilitySets/as5913' under resource group 'e2etests-res-f978ade9' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "394b6141-07a5-453e-9401-68952659e867" + ], + "x-ms-correlation-request-id": [ + "394b6141-07a5-453e-9401-68952659e867" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153542Z:394b6141-07a5-453e-9401-68952659e867" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/as5913?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvYXZhaWxhYmlsaXR5U2V0cy9hczU5MTM/YXBpLXZlcnNpb249MjAxNi0wNC0zMC1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "188" + ], + "x-ms-client-request-id": [ + "1f49fce4-ada8-449f-8ccb-f06d17125e15" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/as5913\",\r\n \"name\": \"as5913\",\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "ba6bbe97-b35c-4c5d-83ef-13a15d96c515" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "3b617b5b-fc27-4a0c-95a0-3229444944a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153547Z:3b617b5b-fc27-4a0c-95a0-3229444944a8" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2UyZXRlc3RzLXZtLWY5NzhhZGU5P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"BaR@123e2etests-res-f978ade9\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/as5913\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1244" + ], + "x-ms-client-request-id": [ + "9e43aa08-09af-4cbc-bb8f-88e28480ea93" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:35:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "88d7e8c3-bb51-411e-aa29-b31652ea04dc" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c8c1c4fc-1e57-4288-8131-95d76fe6d8a1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153550Z:c8c1c4fc-1e57-4288-8131-95d76fe6d8a1" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2UyZXRlc3RzLXZtLWY5NzhhZGU5P2FwaS12ZXJzaW9uPTIwMTYtMDQtMzAtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n }\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1382" + ], + "x-ms-client-request-id": [ + "172d2834-2b44-4b27-812f-fb4da2a32c14" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:44:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/8f646245-0811-4c2d-a2e8-bb4c7b16f230?api-version=2016-04-30-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "8f646245-0811-4c2d-a2e8-bb4c7b16f230" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "e38ae6f2-c276-4d60-8027-45959808f569" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154427Z:e38ae6f2-c276-4d60-8027-45959808f569" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:36:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "fc5000e3-2c8f-4484-b7a1-407cc1aaa24f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "727a4083-4d42-4a30-bf71-e75c374e159a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153621Z:727a4083-4d42-4a30-bf71-e75c374e159a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:36:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "f1b927b7-578a-4afc-85e7-eb8fb5ab3525" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-correlation-request-id": [ + "13f6aa11-951f-4f11-bb2e-67acc8345812" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153651Z:13f6aa11-951f-4f11-bb2e-67acc8345812" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:37:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "62fd83e5-a5fd-4485-b100-b3958fe0b4b8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "3cd13bd8-7c47-4a76-9e13-6c1d77dbd5dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153721Z:3cd13bd8-7c47-4a76-9e13-6c1d77dbd5dd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:37:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "432c79d2-ab49-4a72-ac36-564dd2ec0c33" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "7213fa32-9a29-4505-949f-47ab0e9734cd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153751Z:7213fa32-9a29-4505-949f-47ab0e9734cd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:38:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "37f830ef-7134-46f6-aa3f-7f0db7594357" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "3c2826e8-31de-458f-9757-92b884390736" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153821Z:3c2826e8-31de-458f-9757-92b884390736" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:38:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "c8dd66f2-9b48-42bc-9f48-43429c8adb92" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "e28068be-8c02-4a56-9425-bb7c3095434f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153851Z:e28068be-8c02-4a56-9425-bb7c3095434f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:39:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "83de1fd7-0216-47a2-baf7-866117034fae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "674b5d0d-3957-4fc0-aafb-2590410c4887" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153922Z:674b5d0d-3957-4fc0-aafb-2590410c4887" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:39:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "16798955-fef3-4486-a292-869a3a71aee7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "2d0de45d-bb95-48d5-86af-a86a3ef26c9d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T153952Z:2d0de45d-bb95-48d5-86af-a86a3ef26c9d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:40:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "11e42ce0-9f34-4311-a463-c1e8a9931623" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "9170548e-7ac9-4ced-8379-3f0030bd84b2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154022Z:9170548e-7ac9-4ced-8379-3f0030bd84b2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:40:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "35a2028e-7473-40ec-853a-59511a8a5af0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-correlation-request-id": [ + "7f5c6c8b-75b4-4a3f-be75-e6ef944bed29" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154052Z:7f5c6c8b-75b4-4a3f-be75-e6ef944bed29" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:41:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "d2d6e687-52ed-4d7f-97a9-2969969f0e26" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-correlation-request-id": [ + "c049ae64-f685-4632-afe4-8da38af04fba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154122Z:c049ae64-f685-4632-afe4-8da38af04fba" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:41:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "756cf451-dc4b-4749-816a-776467d2524c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-correlation-request-id": [ + "dee21388-e85e-402d-9bfc-896090432a71" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154153Z:dee21388-e85e-402d-9bfc-896090432a71" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:42:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "60af8a07-8416-42df-a454-bf3181da457d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "de759402-14b6-45f6-95a8-6323e4a4c5fb" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154223Z:de759402-14b6-45f6-95a8-6323e4a4c5fb" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:42:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "aa6a10db-677b-403f-8329-a4284840b1c4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "aaef9ee7-4cf4-48c2-bf18-1aceb115bace" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154253Z:aaef9ee7-4cf4-48c2-bf18-1aceb115bace" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:43:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "123976d8-1870-4dbb-8e68-ecb1ca3708ed" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-correlation-request-id": [ + "0b86726f-c8eb-4243-bb28-0809a771c5c0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154324Z:0b86726f-c8eb-4243-bb28-0809a771c5c0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:43:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "21848832-5333-4606-988e-40dbc76f7214" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "693b844d-1133-449b-a83f-a44c56f59784" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154354Z:693b844d-1133-449b-a83f-a44c56f59784" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"endTime\": \"2017-03-16T08:44:20.1438629-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:44:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" + ], + "x-ms-request-id": [ + "bc61502f-744a-4148-a460-690410fa2b95" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14969" + ], + "x-ms-correlation-request-id": [ + "36e8d32d-a9b6-46a6-a3cb-51c5b5dca573" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154424Z:36e8d32d-a9b6-46a6-a3cb-51c5b5dca573" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourcegroups/e2etests-res-f978ade9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlZ3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5c3ec0d-db3c-48f2-9442-21c36160141a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:44:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "cd72d30a-55bc-47d9-9201-318fbcc61230" + ], + "x-ms-correlation-request-id": [ + "cd72d30a-55bc-47d9-9201-318fbcc61230" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154431Z:cd72d30a-55bc-47d9-9201-318fbcc61230" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:45:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "622c2276-5727-4796-a026-6e430a49454e" + ], + "x-ms-correlation-request-id": [ + "622c2276-5727-4796-a026-6e430a49454e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154501Z:622c2276-5727-4796-a026-6e430a49454e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:45:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "285358c0-e496-4f9d-a610-bcf70f3a745a" + ], + "x-ms-correlation-request-id": [ + "285358c0-e496-4f9d-a610-bcf70f3a745a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154531Z:285358c0-e496-4f9d-a610-bcf70f3a745a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:46:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "980be1f8-765c-4b02-9bbe-a26fd2744126" + ], + "x-ms-correlation-request-id": [ + "980be1f8-765c-4b02-9bbe-a26fd2744126" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154602Z:980be1f8-765c-4b02-9bbe-a26fd2744126" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:46:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "e97c30d7-bc49-49af-bdb4-524cf85aa6fe" + ], + "x-ms-correlation-request-id": [ + "e97c30d7-bc49-49af-bdb4-524cf85aa6fe" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154632Z:e97c30d7-bc49-49af-bdb4-524cf85aa6fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:47:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "5d7b6b1d-b566-43f0-a662-91f628e60899" + ], + "x-ms-correlation-request-id": [ + "5d7b6b1d-b566-43f0-a662-91f628e60899" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154703Z:5d7b6b1d-b566-43f0-a662-91f628e60899" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:47:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "28afe351-f663-4612-9f98-b328ca6cf165" + ], + "x-ms-correlation-request-id": [ + "28afe351-f663-4612-9f98-b328ca6cf165" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154733Z:28afe351-f663-4612-9f98-b328ca6cf165" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:48:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "588d8025-e38e-49ab-8087-38d59cf2c737" + ], + "x-ms-correlation-request-id": [ + "588d8025-e38e-49ab-8087-38d59cf2c737" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154803Z:588d8025-e38e-49ab-8087-38d59cf2c737" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:48:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "ff765548-d892-457b-9c10-3094246b3617" + ], + "x-ms-correlation-request-id": [ + "ff765548-d892-457b-9c10-3094246b3617" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154834Z:ff765548-d892-457b-9c10-3094246b3617" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:49:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-request-id": [ + "673472ff-3923-4c5b-8ef6-e6a7a78d7802" + ], + "x-ms-correlation-request-id": [ + "673472ff-3923-4c5b-8ef6-e6a7a78d7802" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154904Z:673472ff-3923-4c5b-8ef6-e6a7a78d7802" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:49:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "8c8aa8e6-3966-4866-aea1-12ed6b134f67" + ], + "x-ms-correlation-request-id": [ + "8c8aa8e6-3966-4866-aea1-12ed6b134f67" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T154934Z:8c8aa8e6-3966-4866-aea1-12ed6b134f67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:50:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-request-id": [ + "52a0757d-4122-4f74-8d68-4f3807717743" + ], + "x-ms-correlation-request-id": [ + "52a0757d-4122-4f74-8d68-4f3807717743" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T155005Z:52a0757d-4122-4f74-8d68-4f3807717743" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:50:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-request-id": [ + "8a597e30-adbc-4861-878d-1de304a96423" + ], + "x-ms-correlation-request-id": [ + "8a597e30-adbc-4861-878d-1de304a96423" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T155035Z:8a597e30-adbc-4861-878d-1de304a96423" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1FMkVURVNUUzoyRFJFUzoyREY5NzhBREU5LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFGTWtWVVJWTlVVem95UkZKRlV6b3lSRVk1TnpoQlJFVTVMVk5QVlZSSVJVRlRWRUZUU1VFaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5OdmRYUm9aV0Z6ZEdGemFXRWlmUT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 15:51:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "fc381e54-715f-4898-b9c3-6b43f2106613" + ], + "x-ms-correlation-request-id": [ + "fc381e54-715f-4898-b9c3-6b43f2106613" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T155106Z:fc381e54-715f-4898-b9c3-6b43f2106613" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateDefaultVMInput": [ + "Microsoft.Compute/virtualMachines9966" + ] + }, + "Variables": { + "SubscriptionId": "2c224e7e-3ef5-431d-a57b-e71f4662e3a6" + } +} \ No newline at end of file diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs new file mode 100644 index 000000000000..5404a8460c5b --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs @@ -0,0 +1,70 @@ +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets +{ + /// + /// Class to extend VM class + /// This class is specifically meant to assign/reinitialize/set protected members + /// + public class MyVm : Microsoft.Azure.Management.Compute.Models.VirtualMachine + { + /// + /// Constructor + /// + /// + public MyVm(VirtualMachine vm) + : base(vm.Location, vm.Id, vm.Name, vm.Type, vm.Tags, vm.Plan, vm.HardwareProfile, vm.StorageProfile, vm.OsProfile, + vm.NetworkProfile, vm.DiagnosticsProfile, vm.AvailabilitySet, vm.ProvisioningState, vm.InstanceView, + vm.LicenseType, vm.VmId, vm.Resources) + { + + } + + /// + /// Method to update protected properties + /// + /// + public void UpdateVm(string newVmId) + { + VmId = newVmId; + } + } + + + /// + /// Extending Compute Client + /// This client is used to capture Request content sent over wire using user defined delegates + /// + public class MyComputeClient : ComputeManagementClient + { + public MyComputeClient(System.Uri baseUri, + System.Net.Http.HttpClientHandler rootHandler, + params System.Net.Http.DelegatingHandler[] handlers) : base(baseUri, rootHandler, handlers) + { + + } + + public MyComputeClient(System.Uri baseUri, + ServiceClientCredentials credentials, + params System.Net.Http.DelegatingHandler[] handlers) : base(baseUri, credentials, handlers) + { + + } + + /// + /// Gets Request contet for the request that was sent by the client + /// + /// + public string GetRequestContent() + { + RecordedDelegatingHandler handle = this.FirstMessageHandler as RecordedDelegatingHandler; + string cont = handle.RequestContent; + return cont; + } + } +} diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs new file mode 100644 index 000000000000..8a988d395d18 --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs @@ -0,0 +1,82 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Net; +using System.Net.Http; +using System.Net.Http.Headers; +using System.Threading.Tasks; + +namespace Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets +{ + /// + /// Delegating handler for test purpose + /// + public class RecordedDelegatingHandler : DelegatingHandler + { + private readonly HttpResponseMessage _response; + + public RecordedDelegatingHandler() + { + StatusCodeToReturn = HttpStatusCode.Created; + } + + public RecordedDelegatingHandler(HttpResponseMessage response) + { + StatusCodeToReturn = HttpStatusCode.Created; + _response = response; + } + + public HttpContentHeaders ContentHeaders { get; private set; } + + public bool IsPassThrough { get; set; } + + public HttpMethod Method { get; private set; } + + public string RequestContent { get; private set; } + + public HttpRequestHeaders RequestHeaders { get; private set; } + + public HttpStatusCode StatusCodeToReturn { get; set; } + + public Uri Uri { get; private set; } + + protected override async Task SendAsync(HttpRequestMessage request, + System.Threading.CancellationToken cancellationToken) + { + // Save request + if (request.Content == null) + { + RequestContent = string.Empty; + } + else + { + RequestContent = await request.Content.ReadAsStringAsync(); + } + RequestHeaders = request.Headers; + if (request.Content != null) + { + ContentHeaders = request.Content.Headers; + } + Method = request.Method; + Uri = request.RequestUri; + + // Prepare response + if (IsPassThrough) + { + return await base.SendAsync(request, cancellationToken); + } + + if (_response != null) + { + return _response; + } + else + { + var response = new HttpResponseMessage(StatusCodeToReturn); + response.Content = new StringContent(""); + return response; + } + } + } +} diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/project.json new file mode 100644 index 000000000000..c6593b477443 --- /dev/null +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/project.json @@ -0,0 +1,56 @@ +{ + "version": "1.0.0-*", + "description": "Microsoft Rest ClientRuntime End to End Tests", + "authors": [ "Microsoft Corporation" ], + + "packOptions": { + "summary": "TestFramework.Tests Class Library", + "tags": [ "" ], + "projectUrl": "", + "licenseUrl": "" + }, + + "buildOptions": { + "delaySign": true, + "publicSign": false, + "keyFile": "../../../tools/MSSharedLibKey.snk", + "compile": "../../../tools/DisableTestRunParallel.cs" + }, + + "testRunner": "xunit", + "frameworks": { + "netcoreapp1.0": { + "imports": [ "dnxcore50", "portable-net45+win8" ], + "dependencies": { + } + } + }, + "dependencies": { + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0" + }, + "Microsoft.Azure.Test.HttpRecorder": { + "target": "project", + "type": "build" + }, + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": { + "target": "project", + "type": "build" + }, + "Microsoft.Rest.ClientRuntime": { + "target": "project", + "type": "build" + }, + "Microsoft.Rest.ClientRuntime.Azure": { + "target": "project", + "type": "build" + }, + "xunit": "2.2.0-beta4-build3444", + "dotnet-test-xunit": "2.2.0-preview2-build1029", + "Microsoft.Azure.ResourceManager": "1.0.0-preview", + "Microsoft.Azure.Management.Storage": "4.1.0-preview", + "Microsoft.Azure.Management.Compute": "14.1.0-prerelease", + "Microsoft.Azure.Management.Network": "[5.0.1-preview,7.0)" + } +} diff --git a/src/ClientRuntime/global.json b/src/ClientRuntime/global.json index 25fb11a0a6d5..cd6189215a08 100644 --- a/src/ClientRuntime/global.json +++ b/src/ClientRuntime/global.json @@ -1,5 +1,3 @@ { - "projects": [ "Microsoft.Rest.ClientRuntime", "Microsoft.Rest.ClientRuntime.Azure.Authentication", "Microsoft.Rest.ClientRuntime.Etw", - "Microsoft.Rest.ClientRuntime.Tests", "Microsoft.Rest.ClientRuntime.Azure", "Microsoft.Rest.ClientRuntime.Azure.Tests", - "Microsoft.Rest.ClientRuntime.Log4Net", "Microsoft.Rest.ClientRuntime.Tracing.Tests" ] + "projects": [ "../TestFramework" ] } \ No newline at end of file From 78918d4ccfcecc3b1c18cca085086999a4ca2da6 Mon Sep 17 00:00:00 2001 From: Dongjiang You Date: Thu, 16 Mar 2017 10:35:36 -0700 Subject: [PATCH 09/56] [ACR] Update to 2017-03-01 version 1. Update getCredentials to listCredentials to support multiple login credentials. 2. Refine regenerateCredential to support regenerate the specified login credential. 3. Add Sku to registry properties as a required property. 4. Rename GetProperties to Get. 5. Change CreateOrUpdate to Create, add registry create parameters. --- .../Helpers/ContainerRegistryTestUtilities.cs | 23 +- .../ContainerRegistryCheckNameTest.json | 240 ++-- .../ContainerRegistryCreateTest.json | 170 +-- .../ContainerRegistryDeleteTest.json | 198 ++- .../ContainerRegistryGetCredentialsTest.json | 597 -------- .../ContainerRegistryGetTest.json | 234 ++- ...tainerRegistryListByResourceGroupTest.json | 202 ++- ...ntainerRegistryListBySubscriptionTest.json | 298 ++-- .../ContainerRegistryListCredentialsTest.json | 573 ++++++++ ...ainerRegistryRegenerateCredentialTest.json | 582 ++++++++ ...inerRegistryRegenerateCredentialsTest.json | 527 ------- .../ContainerRegistryUpdateTest.json | 380 +++-- ...ContainerRegistryUpdateWithCreateTest.json | 1183 --------------- .../Tests/ContainerRegistryTests.cs | 191 +-- .../ContainerRegistryManagementClient.cs | 131 +- .../IContainerRegistryManagementClient.cs | 27 +- .../Generated/IOperations.cs | 71 + .../Generated/IRegistriesOperations.cs | 94 +- .../Generated/Models/OperationDefinition.cs | 55 + .../Models/OperationDisplayDefinition.cs | 73 + .../Generated/Models/Page.cs | 31 +- .../Generated/Models/PasswordName.cs | 31 + .../Generated/Models/ProvisioningState.cs | 31 + .../Models/RegenerateCredentialParameters.cs | 59 + .../Generated/Models/Registry.cs | 75 +- .../Models/RegistryCreateParameters.cs | 118 ++ .../Generated/Models/RegistryCredentials.cs | 48 - .../Models/RegistryListCredentialsResult.cs | 58 + .../Models/RegistryNameCheckRequest.cs | 39 +- .../Generated/Models/RegistryNameStatus.cs | 15 +- .../Generated/Models/RegistryPassword.cs | 54 + .../Models/RegistryUpdateParameters.cs | 51 +- .../Generated/Models/Resource.cs | 43 +- .../Generated/Models/Sku.cs | 70 + .../Generated/Models/SkuTier.cs | 23 + .../Models/StorageAccountParameters.cs | 71 + .../Models/StorageAccountProperties.cs | 39 +- .../Generated/Operations.cs | 401 ++++++ .../Generated/OperationsExtensions.cs | 88 ++ .../Generated/RegistriesOperations.cs | 1267 ++++++++++------- .../RegistriesOperationsExtensions.cs | 189 ++- .../Properties/AssemblyInfo.cs | 2 +- .../generate.cmd | 4 +- .../project.json | 2 +- 44 files changed, 4424 insertions(+), 4234 deletions(-) delete mode 100644 src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetCredentialsTest.json create mode 100644 src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListCredentialsTest.json create mode 100644 src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialTest.json delete mode 100644 src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialsTest.json delete mode 100644 src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateWithCreateTest.json create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IOperations.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDefinition.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDisplayDefinition.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/PasswordName.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/ProvisioningState.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegenerateCredentialParameters.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCreateParameters.cs delete mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCredentials.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryListCredentialsResult.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryPassword.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Sku.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/SkuTier.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountParameters.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Operations.cs create mode 100644 src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/OperationsExtensions.cs diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Helpers/ContainerRegistryTestUtilities.cs b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Helpers/ContainerRegistryTestUtilities.cs index e52d3ac51372..3d599579b91a 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Helpers/ContainerRegistryTestUtilities.cs +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Helpers/ContainerRegistryTestUtilities.cs @@ -82,7 +82,7 @@ public static string CreateStorageAccount(StorageManagementClient client, Resour var createRequest = client.StorageAccounts.Create(resourceGroup.Name, storageName, new StorageAccountCreateParameters { Location = resourceGroup.Location, - Sku = new Sku { Name = SkuName.StandardLRS }, + Sku = new Microsoft.Azure.Management.Storage.Models.Sku { Name = SkuName.StandardLRS }, Kind = Kind.Storage }); @@ -92,19 +92,23 @@ public static string CreateStorageAccount(StorageManagementClient client, Resour public static string CreateContainerRegistry(ContainerRegistryManagementClient client, ResourceGroup resourceGroup, string storageName, string storageKey) { string registryName = TestUtilities.GenerateName("acrregistry"); - Registry registry = GetDefaultRegistryProperties(resourceGroup, storageName, storageKey); + RegistryCreateParameters parameters = GetDefaultRegistryCreateParameters(resourceGroup, storageName, storageKey); - var createRequest = client.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registry); + var createRequest = client.Registries.Create(resourceGroup.Name, registryName, parameters); return registryName; } - public static Registry GetDefaultRegistryProperties(ResourceGroup resourceGroup, string storageName, string storageKey) + public static RegistryCreateParameters GetDefaultRegistryCreateParameters(ResourceGroup resourceGroup, string storageName, string storageKey) { - Registry registry = new Registry + RegistryCreateParameters parameters = new RegistryCreateParameters { Location = resourceGroup.Location, - StorageAccount = new StorageAccountProperties + Sku = new Microsoft.Azure.Management.ContainerRegistry.Models.Sku + { + Name = "Basic" + }, + StorageAccount = new StorageAccountParameters { Name = storageName, AccessKey = storageKey @@ -112,7 +116,7 @@ public static Registry GetDefaultRegistryProperties(ResourceGroup resourceGroup, Tags = DefaultTags }; - return registry; + return parameters; } public static string GetStorageAccessKey(StorageManagementClient client, ResourceGroup resourceGroup, string storageName) @@ -126,12 +130,15 @@ public static void VerifyRegistryProperties(Registry registry, string storageNam Assert.NotNull(registry.Id); Assert.NotNull(registry.Name); Assert.NotNull(registry.Location); + Assert.NotNull(registry.Sku); + Assert.Equal(registry.Sku.Name, "Basic"); + Assert.Equal(registry.Sku.Tier, Microsoft.Azure.Management.ContainerRegistry.Models.SkuTier.Basic); + Assert.Equal(registry.ProvisioningState, Microsoft.Azure.Management.ContainerRegistry.Models.ProvisioningState.Succeeded); Assert.NotNull(registry.AdminUserEnabled); Assert.NotNull(registry.LoginServer); Assert.NotNull(registry.CreationDate); Assert.NotNull(registry.StorageAccount); Assert.NotNull(registry.StorageAccount.Name); - Assert.Null(registry.StorageAccount.AccessKey); Assert.Equal(registry.StorageAccount.Name, storageName); diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCheckNameTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCheckNameTest.json index 111e47376fbe..9fb990e4b50c 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCheckNameTest.json +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCheckNameTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f2455ed-b113-44a6-9fe6-6d733fe2bc1a" + "060c9c9d-62e7-4eca-9cb7-d459f734dc7f" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:38:38 GMT" + "Thu, 16 Mar 2017 22:56:05 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14990" ], "x-ms-request-id": [ - "c9abdedb-d1ae-4e7b-97ec-32a04d7403ff" + "37dd45ac-2238-4300-bf70-9a53964bc66e" ], "x-ms-correlation-request-id": [ - "c9abdedb-d1ae-4e7b-97ec-32a04d7403ff" + "37dd45ac-2238-4300-bf70-9a53964bc66e" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033839Z:c9abdedb-d1ae-4e7b-97ec-32a04d7403ff" + "WESTUS2:20170316T225606Z:37dd45ac-2238-4300-bf70-9a53964bc66e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,8 +56,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6863?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzY4NjM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg130?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzEzMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -68,7 +68,7 @@ "28" ], "x-ms-client-request-id": [ - "9dfec152-ce2b-4cf3-b2c6-12a7984983b4" + "1ecb15f0-f2a8-4613-a867-8d02cb610b65" ], "accept-language": [ "en-US" @@ -78,10 +78,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6863\",\r\n \"name\": \"acr_rg6863\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg130\",\r\n \"name\": \"acr_rg130\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "173" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,22 +93,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:38:39 GMT" + "Thu, 16 Mar 2017 22:56:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1185" ], "x-ms-request-id": [ - "8962016b-b7f9-4593-8d9a-0e890505599b" + "c3f722d0-6f02-493e-91ac-de336192ea3a" ], "x-ms-correlation-request-id": [ - "8962016b-b7f9-4593-8d9a-0e890505599b" + "c3f722d0-6f02-493e-91ac-de336192ea3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033839Z:8962016b-b7f9-4593-8d9a-0e890505599b" + "WESTUS2:20170316T225606Z:c3f722d0-6f02-493e-91ac-de336192ea3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6863/providers/Microsoft.Storage/storageAccounts/acrstorage610?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzY4NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjEwP2FwaS12ZXJzaW9uPTIwMTYtMDEtMDE=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg130/providers/Microsoft.Storage/storageAccounts/acrstorage5345?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FjcnN0b3JhZ2U1MzQ1P2FwaS12ZXJzaW9uPTIwMTYtMDEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -129,7 +129,7 @@ "96" ], "x-ms-client-request-id": [ - "8f4465ae-e44c-47ed-9fd7-6fd95b88a1df" + "2b07dbd0-68b9-4c65-bd63-ab7c9ea1c79d" ], "accept-language": [ "en-US" @@ -151,13 +151,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:38:39 GMT" + "Thu, 16 Mar 2017 22:56:07 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/98a78e27-c7aa-4d72-a029-bcdb0acc8e9c?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/47e8748b-1867-44fe-ac4a-ee96e5eca922?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -167,16 +167,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1184" ], "x-ms-request-id": [ - "25f0f58c-02cc-446b-86d1-590d1050d57a" + "cda0e802-0fe9-4acd-9106-d05fc169a731" ], "x-ms-correlation-request-id": [ - "25f0f58c-02cc-446b-86d1-590d1050d57a" + "cda0e802-0fe9-4acd-9106-d05fc169a731" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033840Z:25f0f58c-02cc-446b-86d1-590d1050d57a" + "WESTUS2:20170316T225608Z:cda0e802-0fe9-4acd-9106-d05fc169a731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/98a78e27-c7aa-4d72-a029-bcdb0acc8e9c?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzk4YTc4ZTI3LWM3YWEtNGQ3Mi1hMDI5LWJjZGIwYWNjOGU5Yz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/47e8748b-1867-44fe-ac4a-ee96e5eca922?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQ3ZTg3NDhiLTE4NjctNDRmZS1hYzRhLWVlOTZlNWVjYTkyMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,7 +195,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6863/providers/Microsoft.Storage/storageAccounts/acrstorage610\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage610\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:38:40.3576429Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage610.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage610.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage610.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage610.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg130/providers/Microsoft.Storage/storageAccounts/acrstorage5345\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage5345\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:56:07.7550247Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage5345.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage5345.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage5345.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage5345.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -207,7 +207,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:39:09 GMT" + "Thu, 16 Mar 2017 22:56:38 GMT" ], "Pragma": [ "no-cache" @@ -223,16 +223,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e81f82e3-84c7-4611-a7e6-94f8a95ea9e0" + "3a4c2840-0a7e-4533-9186-721f9d6d86c0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14989" ], "x-ms-correlation-request-id": [ - "e81f82e3-84c7-4611-a7e6-94f8a95ea9e0" + "3a4c2840-0a7e-4533-9186-721f9d6d86c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033910Z:e81f82e3-84c7-4611-a7e6-94f8a95ea9e0" + "WESTUS2:20170316T225639Z:3a4c2840-0a7e-4533-9186-721f9d6d86c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,13 +241,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6863/providers/Microsoft.Storage/storageAccounts/acrstorage610/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzY4NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjEwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTYtMDEtMDE=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg130/providers/Microsoft.Storage/storageAccounts/acrstorage5345/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FjcnN0b3JhZ2U1MzQ1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTYtMDEtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44df4ca1-80cc-4060-834d-8c8caae1be2e" + "2be52d97-14fe-4e30-9277-07b51689a153" ], "accept-language": [ "en-US" @@ -257,7 +257,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"bSiop7ePM3THdgC8ciRDa4V/83+0G0I0soMcpnR0BJmrGay1iHL511h37i7zZfdFgLqgn7MLOBp3LjKRo1E4uQ==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"ew+8yhMab1rUUz9UxLgxO/dQ/GyFPO87lxQvtCkVnaNQfAjYRzZocogaOD8USNn6bLK5s02VB0lPnf0kvd4xVw==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"S/HB2nelE4UpnKyjQ8w9miTohq6PpnOffxVACsRGTg+Svk2A3DO+g51lp1Ty9nCKsS7qXoTRRdAx5FC4t3s/xQ==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"BQd9rn6zE5L9wDAs/JaBTJM54LDoyZnSEmMQYuvkvucG7C0e+WZ1dFXypBwg2oqgej3yKDAxIbhkpjPf+xcuLg==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -269,7 +269,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:39:10 GMT" + "Thu, 16 Mar 2017 22:56:38 GMT" ], "Pragma": [ "no-cache" @@ -285,16 +285,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bada00cc-9bd3-467a-b732-d5cb9df316c9" + "5a872545-a333-4dc9-bcfb-6c2a54f2c20c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1183" ], "x-ms-correlation-request-id": [ - "bada00cc-9bd3-467a-b732-d5cb9df316c9" + "5a872545-a333-4dc9-bcfb-6c2a54f2c20c" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033910Z:bada00cc-9bd3-467a-b732-d5cb9df316c9" + "WESTUS2:20170316T225639Z:5a872545-a333-4dc9-bcfb-6c2a54f2c20c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,26 +303,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMjctcHJldmlldw==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"acrregistry422\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\"\r\n}", + "RequestBody": "{\r\n \"name\": \"acrregistry5548\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "85" + "86" ], "x-ms-client-request-id": [ - "4797bb3c-5062-4d37-b93f-fe263a79b56a" + "5e0ebdba-0b86-4bee-84be-460225775ad7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", @@ -337,7 +337,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:39:10 GMT" + "Thu, 16 Mar 2017 22:56:39 GMT" ], "Pragma": [ "no-cache" @@ -346,59 +346,53 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14988" ], "x-ms-request-id": [ - "24a53d65-a38a-4dfe-928d-3492a645d3f0" + "c4fa4d27-9fb2-4d99-a735-16b0bc59eb05" ], "x-ms-correlation-request-id": [ - "24a53d65-a38a-4dfe-928d-3492a645d3f0" + "c4fa4d27-9fb2-4d99-a735-16b0bc59eb05" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033911Z:24a53d65-a38a-4dfe-928d-3492a645d3f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225640Z:c4fa4d27-9fb2-4d99-a735-16b0bc59eb05" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMjctcHJldmlldw==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"CAPS\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\"\r\n}", + "RequestBody": "{\r\n \"name\": \"Microsoft\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "75" + "80" ], "x-ms-client-request-id": [ - "600a5dcd-ec9c-4f15-85a9-b6ba4af9f37d" + "37aee96c-fd71-4ec2-b4f3-f13e394c3266" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"Invalid\",\r\n \"message\": \"Registry names may contain alpha numeric characters only and must be between 5 and 50 characters\"\r\n}", + "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"Invalid\",\r\n \"message\": \"The specified registry name is disallowed\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -410,7 +404,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:39:10 GMT" + "Thu, 16 Mar 2017 22:56:39 GMT" ], "Pragma": [ "no-cache" @@ -419,40 +413,34 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14987" ], "x-ms-request-id": [ - "6631862b-1c94-40bf-85ce-d95b46eca4a0" + "ea8832fc-3a86-4462-8415-0fe50b866217" ], "x-ms-correlation-request-id": [ - "6631862b-1c94-40bf-85ce-d95b46eca4a0" + "ea8832fc-3a86-4462-8415-0fe50b866217" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033911Z:6631862b-1c94-40bf-85ce-d95b46eca4a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225640Z:ea8832fc-3a86-4462-8415-0fe50b866217" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTYtMDYtMjctcHJldmlldw==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"acrregistry9167\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\"\r\n}", + "RequestBody": "{\r\n \"name\": \"acrregistry6760\",\r\n \"type\": \"Microsoft.ContainerRegistry/registries\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -461,17 +449,17 @@ "86" ], "x-ms-client-request-id": [ - "1bfa3855-8939-4b96-8fd2-5c831452752e" + "e0454ff5-2ba2-45d2-9cd5-f38799106907" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"The registry acrregistry9167 is already in use.\"\r\n}", + "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"The registry acrregistry6760 is already in use.\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -483,7 +471,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:39:14 GMT" + "Thu, 16 Mar 2017 22:56:42 GMT" ], "Pragma": [ "no-cache" @@ -492,59 +480,53 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14986" ], "x-ms-request-id": [ - "d372391c-16c3-4de1-8a18-4a2baaecd8a7" + "3b383815-17eb-4b57-a394-8b0b6d4834cf" ], "x-ms-correlation-request-id": [ - "d372391c-16c3-4de1-8a18-4a2baaecd8a7" + "3b383815-17eb-4b57-a394-8b0b6d4834cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033915Z:d372391c-16c3-4de1-8a18-4a2baaecd8a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225643Z:3b383815-17eb-4b57-a394-8b0b6d4834cf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6863/providers/Microsoft.ContainerRegistry/registries/acrregistry9167?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzY4NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5OTE2Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg130/providers/Microsoft.ContainerRegistry/registries/acrregistry6760?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzEzMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lclJlZ2lzdHJ5L3JlZ2lzdHJpZXMvYWNycmVnaXN0cnk2NzYwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage610\",\r\n \"accessKey\": \"bSiop7ePM3THdgC8ciRDa4V/83+0G0I0soMcpnR0BJmrGay1iHL511h37i7zZfdFgLqgn7MLOBp3LjKRo1E4uQ==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5345\",\r\n \"accessKey\": \"S/HB2nelE4UpnKyjQ8w9miTohq6PpnOffxVACsRGTg+Svk2A3DO+g51lp1Ty9nCKsS7qXoTRRdAx5FC4t3s/xQ==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "292" + "332" ], "x-ms-client-request-id": [ - "b9971e95-1671-4d47-9ec6-5fdc3781a20f" + "4b9ff5c7-45c3-45d2-b620-1860c1c3d32b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6863/providers/Microsoft.ContainerRegistry/registries/acrregistry9167\",\r\n \"name\": \"acrregistry9167\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry9167-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:39:13.6250133Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage610\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg130/providers/Microsoft.ContainerRegistry/registries/acrregistry6760\",\r\n \"name\": \"acrregistry6760\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry6760.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:56:42.4447349Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5345\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -556,7 +538,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:39:14 GMT" + "Thu, 16 Mar 2017 22:56:42 GMT" ], "Pragma": [ "no-cache" @@ -565,31 +547,25 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1182" ], "x-ms-request-id": [ - "f89b39b5-d895-488a-a956-08a763a98b5e" + "85f6f2c2-82b9-47fd-9fa3-28256215009d" ], "x-ms-correlation-request-id": [ - "f89b39b5-d895-488a-a956-08a763a98b5e" + "85f6f2c2-82b9-47fd-9fa3-28256215009d" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033914Z:f89b39b5-d895-488a-a956-08a763a98b5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225643Z:85f6f2c2-82b9-47fd-9fa3-28256215009d" ] }, "StatusCode": 200 @@ -597,19 +573,19 @@ ], "Names": { "CreateResourceGroup": [ - "acr_rg6863" + "acr_rg130" ], "CreateStorageAccount": [ - "acrstorage610" + "acrstorage5345" ], "ContainerRegistryCheckNameTest": [ - "acrregistry422" + "acrregistry5548" ], "CreateContainerRegistry": [ - "acrregistry9167" + "acrregistry6760" ] }, "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCreateTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCreateTest.json index 66bfdd970ec3..8b4ec685d443 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCreateTest.json +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryCreateTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1866ba67-9a7d-48d8-ad6d-e8f1927c40ee" + "c9893638-06dc-432f-8687-c0a9f49f5dfe" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:58 GMT" + "Thu, 16 Mar 2017 22:54:57 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14807" + "14981" ], "x-ms-request-id": [ - "9b92e55f-6135-4483-a3be-38cb6b03d8e0" + "a989aba4-f088-49da-adf3-0035505cd7f3" ], "x-ms-correlation-request-id": [ - "9b92e55f-6135-4483-a3be-38cb6b03d8e0" + "a989aba4-f088-49da-adf3-0035505cd7f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033758Z:9b92e55f-6135-4483-a3be-38cb6b03d8e0" + "WESTUS2:20170316T225457Z:a989aba4-f088-49da-adf3-0035505cd7f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,8 +56,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6169?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzYxNjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg3844?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzM4NDQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -68,7 +68,7 @@ "28" ], "x-ms-client-request-id": [ - "333255bb-7fb4-4ec0-b053-8da5b4359f73" + "99791b0e-d205-44e8-8f18-962304c2d692" ], "accept-language": [ "en-US" @@ -78,7 +78,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6169\",\r\n \"name\": \"acr_rg6169\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3844\",\r\n \"name\": \"acr_rg3844\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -93,22 +93,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:59 GMT" + "Thu, 16 Mar 2017 22:54:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1180" ], "x-ms-request-id": [ - "02892038-3e43-4e69-a8a6-17a8bf8861cc" + "3fdbc2bf-127b-4622-96d7-9d94504853ac" ], "x-ms-correlation-request-id": [ - "02892038-3e43-4e69-a8a6-17a8bf8861cc" + "3fdbc2bf-127b-4622-96d7-9d94504853ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033759Z:02892038-3e43-4e69-a8a6-17a8bf8861cc" + "WESTUS2:20170316T225458Z:3fdbc2bf-127b-4622-96d7-9d94504853ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6169/providers/Microsoft.Storage/storageAccounts/acrstorage1690?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYxNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlMTY5MD9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3844/providers/Microsoft.Storage/storageAccounts/acrstorage5516?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTUxNj9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -129,7 +129,7 @@ "96" ], "x-ms-client-request-id": [ - "c92e8021-5d9b-4c94-b3a2-a08290275a8a" + "ef35c44e-8d8a-42fb-8137-01a80af9e7cb" ], "accept-language": [ "en-US" @@ -151,13 +151,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:59 GMT" + "Thu, 16 Mar 2017 22:54:59 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/e566bacb-2d82-44a1-a421-e8e86eb624c5?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/b44eeab4-a4b7-4f25-8be2-b49879f44820?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -167,16 +167,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1179" ], "x-ms-request-id": [ - "d68d041b-c456-4ac9-bb62-e7460be2ea8a" + "90befa48-ccb3-4759-b09c-b3b950eefc45" ], "x-ms-correlation-request-id": [ - "d68d041b-c456-4ac9-bb62-e7460be2ea8a" + "90befa48-ccb3-4759-b09c-b3b950eefc45" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033800Z:d68d041b-c456-4ac9-bb62-e7460be2ea8a" + "WESTUS2:20170316T225459Z:90befa48-ccb3-4759-b09c-b3b950eefc45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/e566bacb-2d82-44a1-a421-e8e86eb624c5?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2U1NjZiYWNiLTJkODItNDRhMS1hNDIxLWU4ZTg2ZWI2MjRjNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/b44eeab4-a4b7-4f25-8be2-b49879f44820?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2I0NGVlYWI0LWE0YjctNGYyNS04YmUyLWI0OTg3OWY0NDgyMD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,7 +195,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6169/providers/Microsoft.Storage/storageAccounts/acrstorage1690\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage1690\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:38:00.1590353Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage1690.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage1690.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage1690.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage1690.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3844/providers/Microsoft.Storage/storageAccounts/acrstorage5516\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage5516\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:54:59.2635223Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage5516.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage5516.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage5516.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage5516.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -207,7 +207,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:38:30 GMT" + "Thu, 16 Mar 2017 22:55:29 GMT" ], "Pragma": [ "no-cache" @@ -223,16 +223,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5cb7fa9b-cade-4ab6-bdde-3e34a5d1242e" + "cb31d1c6-abe3-437e-b1f8-429803cccb9f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14805" + "14981" ], "x-ms-correlation-request-id": [ - "5cb7fa9b-cade-4ab6-bdde-3e34a5d1242e" + "cb31d1c6-abe3-437e-b1f8-429803cccb9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033830Z:5cb7fa9b-cade-4ab6-bdde-3e34a5d1242e" + "WESTUS2:20170316T225530Z:cb31d1c6-abe3-437e-b1f8-429803cccb9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,13 +241,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6169/providers/Microsoft.Storage/storageAccounts/acrstorage1690/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYxNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlMTY5MC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3844/providers/Microsoft.Storage/storageAccounts/acrstorage5516/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTUxNi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ceeee08-177b-4147-b76d-3ef7511eb555" + "4f7a9b94-d1b0-4a43-9d76-fa5c75c4c9af" ], "accept-language": [ "en-US" @@ -257,7 +257,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"lU2y7aKcUUbuUQwCys6OsF2+Nwf343r93dHsAr2kexwj70f80CH01ugRGPZJYMv0c4YCKSocqVaw6Do82bdEeQ==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"cNCpCQNalwwqdJnNgho1N7ocfK8I2DzaamOs2Z3zjZokeFoQK4OQD3y/S7yPWWcXHKGZPg+G+pOEMdWU1Yph3A==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"iEGtqp2ZNlb2v4DeDANC+DA45w3JDJXHmNVOtJ+c6kaIFRBxkw38LOMqsc9v+GE9WirfqiqDMAQF84sMlzsb6w==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"KRzW0lpeLoBeNU2WyUx6V9iVXe+IfYipggO2UXZyFuqCxUg9DfFvfjzr5wkP0jAJ/WvP1FQLl0/myXhh1jMMCQ==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -269,7 +269,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:38:30 GMT" + "Thu, 16 Mar 2017 22:55:29 GMT" ], "Pragma": [ "no-cache" @@ -285,16 +285,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "69c10ea9-fb07-445c-8f05-9a6e62060eb5" + "a5ee8330-9532-40a2-9e8b-5fa49754517f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1178" ], "x-ms-correlation-request-id": [ - "69c10ea9-fb07-445c-8f05-9a6e62060eb5" + "a5ee8330-9532-40a2-9e8b-5fa49754517f" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033830Z:69c10ea9-fb07-445c-8f05-9a6e62060eb5" + "WESTUS2:20170316T225530Z:a5ee8330-9532-40a2-9e8b-5fa49754517f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,29 +303,29 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6169/providers/Microsoft.ContainerRegistry/registries/acrregistry5570?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYxNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NTU3MD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3844/providers/Microsoft.ContainerRegistry/registries/acrregistry807?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage1690\",\r\n \"accessKey\": \"lU2y7aKcUUbuUQwCys6OsF2+Nwf343r93dHsAr2kexwj70f80CH01ugRGPZJYMv0c4YCKSocqVaw6Do82bdEeQ==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5516\",\r\n \"accessKey\": \"iEGtqp2ZNlb2v4DeDANC+DA45w3JDJXHmNVOtJ+c6kaIFRBxkw38LOMqsc9v+GE9WirfqiqDMAQF84sMlzsb6w==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "332" ], "x-ms-client-request-id": [ - "aef44cc4-93e0-4553-9066-486e09d309a0" + "fe8474d6-109f-4293-ae6d-315f7c184e5c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6169/providers/Microsoft.ContainerRegistry/registries/acrregistry5570\",\r\n \"name\": \"acrregistry5570\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry5570-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:38:32.1073488Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage1690\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg3844/providers/Microsoft.ContainerRegistry/registries/acrregistry807\",\r\n \"name\": \"acrregistry807\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry807.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:55:32.9755213Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5516\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -337,7 +337,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:38:33 GMT" + "Thu, 16 Mar 2017 22:55:59 GMT" ], "Pragma": [ "no-cache" @@ -346,59 +346,53 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1177" ], "x-ms-request-id": [ - "5fa40ef7-4be3-47d1-924a-f8a8b795a36c" + "86b78256-5fbf-4e25-bb60-344a0b2d7f6b" ], "x-ms-correlation-request-id": [ - "5fa40ef7-4be3-47d1-924a-f8a8b795a36c" + "86b78256-5fbf-4e25-bb60-344a0b2d7f6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033833Z:5fa40ef7-4be3-47d1-924a-f8a8b795a36c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225559Z:86b78256-5fbf-4e25-bb60-344a0b2d7f6b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6169/providers/Microsoft.ContainerRegistry/registries/acrregistry1542?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYxNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTU0Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3844/providers/Microsoft.ContainerRegistry/registries/acrregistry5094?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4NDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NTA5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage1690\",\r\n \"accessKey\": \"lU2y7aKcUUbuUQwCys6OsF2+Nwf343r93dHsAr2kexwj70f80CH01ugRGPZJYMv0c4YCKSocqVaw6Do82bdEeQ==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5516\",\r\n \"accessKey\": \"iEGtqp2ZNlb2v4DeDANC+DA45w3JDJXHmNVOtJ+c6kaIFRBxkw38LOMqsc9v+GE9WirfqiqDMAQF84sMlzsb6w==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "324" + "363" ], "x-ms-client-request-id": [ - "90dc8ca9-03b0-4d6a-b1ca-f3c1a8cc0531" + "3a4ba901-c32d-4bbd-a69b-1900f91d71f4" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6169/providers/Microsoft.ContainerRegistry/registries/acrregistry1542\",\r\n \"name\": \"acrregistry1542\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1542-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:38:34.2434505Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage1690\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg3844/providers/Microsoft.ContainerRegistry/registries/acrregistry5094\",\r\n \"name\": \"acrregistry5094\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry5094.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:56:00.9029153Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5516\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -410,7 +404,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:38:35 GMT" + "Thu, 16 Mar 2017 22:56:01 GMT" ], "Pragma": [ "no-cache" @@ -419,31 +413,25 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1176" ], "x-ms-request-id": [ - "9b5efed6-9ded-4860-829b-d72f18a3dd3c" + "2d051354-0e55-46ab-8e2c-f1771df6051f" ], "x-ms-correlation-request-id": [ - "9b5efed6-9ded-4860-829b-d72f18a3dd3c" + "2d051354-0e55-46ab-8e2c-f1771df6051f" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033835Z:9b5efed6-9ded-4860-829b-d72f18a3dd3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225601Z:2d051354-0e55-46ab-8e2c-f1771df6051f" ] }, "StatusCode": 200 @@ -451,17 +439,17 @@ ], "Names": { "CreateResourceGroup": [ - "acr_rg6169" + "acr_rg3844" ], "CreateStorageAccount": [ - "acrstorage1690" + "acrstorage5516" ], "ContainerRegistryCreateTest": [ - "acrregistry5570", - "acrregistry1542" + "acrregistry807", + "acrregistry5094" ] }, "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryDeleteTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryDeleteTest.json index d0f8c536446f..ce9433468a3b 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryDeleteTest.json +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryDeleteTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d519edd-3dee-44cc-957e-ce22b8c47f05" + "b96ba4cf-46e1-4381-a4f7-ecac752927ff" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:16 GMT" + "Thu, 16 Mar 2017 22:53:52 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14993" ], "x-ms-request-id": [ - "047aa4f9-fcf6-494a-b9e0-540aba29159a" + "76319a52-1f99-4745-96e5-b7dffa19565e" ], "x-ms-correlation-request-id": [ - "047aa4f9-fcf6-494a-b9e0-540aba29159a" + "76319a52-1f99-4745-96e5-b7dffa19565e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033717Z:047aa4f9-fcf6-494a-b9e0-540aba29159a" + "CENTRALUS:20170316T225352Z:76319a52-1f99-4745-96e5-b7dffa19565e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,8 +56,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg4076?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzQwNzY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg3822?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzM4MjI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -68,7 +68,7 @@ "28" ], "x-ms-client-request-id": [ - "6d55b506-2077-42f0-b37d-58c7d7c4e8c6" + "8f046bfc-9469-4875-b864-ae72cdfea73d" ], "accept-language": [ "en-US" @@ -78,7 +78,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076\",\r\n \"name\": \"acr_rg4076\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822\",\r\n \"name\": \"acr_rg3822\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -93,22 +93,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:17 GMT" + "Thu, 16 Mar 2017 22:53:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "9d8ac2a5-372c-41c6-8125-318345515c5c" + "342e98a3-869b-4097-bf62-6ac083cf7a0d" ], "x-ms-correlation-request-id": [ - "9d8ac2a5-372c-41c6-8125-318345515c5c" + "342e98a3-869b-4097-bf62-6ac083cf7a0d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033717Z:9d8ac2a5-372c-41c6-8125-318345515c5c" + "CENTRALUS:20170316T225353Z:342e98a3-869b-4097-bf62-6ac083cf7a0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076/providers/Microsoft.Storage/storageAccounts/acrstorage4358?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDM1OD9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822/providers/Microsoft.Storage/storageAccounts/acrstorage8486?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODQ4Nj9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -129,7 +129,7 @@ "96" ], "x-ms-client-request-id": [ - "adc270e3-b8c3-4662-8a62-4747ade814e4" + "39fc6665-412b-40fe-abf1-3021091a732c" ], "accept-language": [ "en-US" @@ -151,13 +151,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:18 GMT" + "Thu, 16 Mar 2017 22:53:54 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/a1474d06-2e49-4acb-845d-6f314ed91a83?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/34262009-be6f-4a5a-b863-e7da8c7ff9d8?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -167,16 +167,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "8ed76558-343c-4f01-bf03-38622fca2d03" + "89829535-f1df-46e5-858b-845b88498e73" ], "x-ms-correlation-request-id": [ - "8ed76558-343c-4f01-bf03-38622fca2d03" + "89829535-f1df-46e5-858b-845b88498e73" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033718Z:8ed76558-343c-4f01-bf03-38622fca2d03" + "CENTRALUS:20170316T225354Z:89829535-f1df-46e5-858b-845b88498e73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/a1474d06-2e49-4acb-845d-6f314ed91a83?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2ExNDc0ZDA2LTJlNDktNGFjYi04NDVkLTZmMzE0ZWQ5MWE4Mz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/34262009-be6f-4a5a-b863-e7da8c7ff9d8?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzM0MjYyMDA5LWJlNmYtNGE1YS1iODYzLWU3ZGE4YzdmZjlkOD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,7 +195,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076/providers/Microsoft.Storage/storageAccounts/acrstorage4358\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage4358\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:37:18.7771252Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage4358.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage4358.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage4358.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage4358.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822/providers/Microsoft.Storage/storageAccounts/acrstorage8486\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage8486\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:53:54.729397Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage8486.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage8486.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage8486.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage8486.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -207,7 +207,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:48 GMT" + "Thu, 16 Mar 2017 22:54:24 GMT" ], "Pragma": [ "no-cache" @@ -223,16 +223,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "83fd7018-4fff-4a13-be38-9f0dcaa6aa41" + "674300de-8a92-49e7-a8fd-1cbcdca77911" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14992" ], "x-ms-correlation-request-id": [ - "83fd7018-4fff-4a13-be38-9f0dcaa6aa41" + "674300de-8a92-49e7-a8fd-1cbcdca77911" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033749Z:83fd7018-4fff-4a13-be38-9f0dcaa6aa41" + "CENTRALUS:20170316T225425Z:674300de-8a92-49e7-a8fd-1cbcdca77911" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,13 +241,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076/providers/Microsoft.Storage/storageAccounts/acrstorage4358/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDM1OC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822/providers/Microsoft.Storage/storageAccounts/acrstorage8486/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODQ4Ni9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a434f942-f9cc-4947-a598-a4c236a3fd4d" + "325317cd-6890-4c73-86ad-3c30009e588a" ], "accept-language": [ "en-US" @@ -257,7 +257,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"GgBwMq3mpgeR2k9CKKZjEyEOFnBUzykemIlnVVw2GN3Z1OhFOFbQ83opRkWTdeJ1MCi7VDJR7mi40kA4/WRnDQ==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"XkpfeLlC52K+RhLOGeZ7fo7LPMbnIfF6uKuDgQnp1SNHvOzhGJBXYqjoBgEcEezmcQiGfmY6su/61dSCSW3Elw==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"H7HeVdoiFI54kD7+nATzO027hQ6rLvKdYETqORURd+AmRQwnhMoEdkyPHUlH8TORffd35YcAJyayQOW0wDjWEw==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"bC3PcP8JFDA9xvXtA3cYuoifRE8HqbRDFnjG3ALUoB9ZLzc2ATrdvY5ZqC6vcwAWqaqZQOlYQX5YwCNV70iUhQ==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -269,7 +269,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:48 GMT" + "Thu, 16 Mar 2017 22:54:24 GMT" ], "Pragma": [ "no-cache" @@ -285,16 +285,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "95956122-97ac-4fab-a76b-60ba55a912e6" + "5766b74f-3550-4fa7-a575-e1abd3e376c8" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "95956122-97ac-4fab-a76b-60ba55a912e6" + "5766b74f-3550-4fa7-a575-e1abd3e376c8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033749Z:95956122-97ac-4fab-a76b-60ba55a912e6" + "CENTRALUS:20170316T225425Z:5766b74f-3550-4fa7-a575-e1abd3e376c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,20 +303,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076/providers/Microsoft.ContainerRegistry/registries/doesnotexist?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2RvZXNub3RleGlzdD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822/providers/Microsoft.ContainerRegistry/registries/doesnotexist?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2RvZXNub3RleGlzdD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "efb6021b-b012-4eb3-bff8-48c40ef610f8" + "0e81f88d-d9c9-4d2e-a6c7-3d12df61e04b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, "ResponseBody": "", @@ -328,22 +328,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:48 GMT" + "Thu, 16 Mar 2017 22:54:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-request-id": [ - "7d8545b3-5d0c-4c80-92ab-e1669fc09f3f" + "e16e0a98-7f9c-41a5-85b9-e266a96665b4" ], "x-ms-correlation-request-id": [ - "7d8545b3-5d0c-4c80-92ab-e1669fc09f3f" + "e16e0a98-7f9c-41a5-85b9-e266a96665b4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033749Z:7d8545b3-5d0c-4c80-92ab-e1669fc09f3f" + "CENTRALUS:20170316T225425Z:e16e0a98-7f9c-41a5-85b9-e266a96665b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -352,29 +352,29 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076/providers/Microsoft.ContainerRegistry/registries/acrregistry5314?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NTMxND9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822/providers/Microsoft.ContainerRegistry/registries/acrregistry4222?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NDIyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4358\",\r\n \"accessKey\": \"GgBwMq3mpgeR2k9CKKZjEyEOFnBUzykemIlnVVw2GN3Z1OhFOFbQ83opRkWTdeJ1MCi7VDJR7mi40kA4/WRnDQ==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8486\",\r\n \"accessKey\": \"H7HeVdoiFI54kD7+nATzO027hQ6rLvKdYETqORURd+AmRQwnhMoEdkyPHUlH8TORffd35YcAJyayQOW0wDjWEw==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "332" ], "x-ms-client-request-id": [ - "ffc59a20-3025-49cb-b7a9-6b8242772920" + "e3bcee92-0a6c-4494-92a4-bc71aa55179c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg4076/providers/Microsoft.ContainerRegistry/registries/acrregistry5314\",\r\n \"name\": \"acrregistry5314\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry5314-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:50.9126491Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4358\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg3822/providers/Microsoft.ContainerRegistry/registries/acrregistry4222\",\r\n \"name\": \"acrregistry4222\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry4222.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:54:47.0144318Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8486\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -386,7 +386,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:51 GMT" + "Thu, 16 Mar 2017 22:54:48 GMT" ], "Pragma": [ "no-cache" @@ -395,50 +395,44 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-request-id": [ - "c03daac7-22ff-4b54-8220-d6d563b24184" + "95841333-8683-4930-a86b-a088a113960e" ], "x-ms-correlation-request-id": [ - "c03daac7-22ff-4b54-8220-d6d563b24184" + "95841333-8683-4930-a86b-a088a113960e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033752Z:c03daac7-22ff-4b54-8220-d6d563b24184" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225449Z:95841333-8683-4930-a86b-a088a113960e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076/providers/Microsoft.ContainerRegistry/registries/acrregistry5314?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NTMxND9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822/providers/Microsoft.ContainerRegistry/registries/acrregistry4222?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NDIyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf81ba92-1e60-4248-9e73-f935595b40ed" + "d1804061-ce22-40b1-b6d5-362e5bee2773" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, "ResponseBody": "", @@ -453,53 +447,47 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:52 GMT" + "Thu, 16 Mar 2017 22:54:50 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" + "Microsoft-HTTPAPI/2.0" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1192" ], "x-ms-request-id": [ - "64bae69a-fae2-4d38-8632-94d8c2ec025f" + "ec6444eb-a82e-45e2-8050-82d509024806" ], "x-ms-correlation-request-id": [ - "64bae69a-fae2-4d38-8632-94d8c2ec025f" + "ec6444eb-a82e-45e2-8050-82d509024806" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033753Z:64bae69a-fae2-4d38-8632-94d8c2ec025f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225451Z:ec6444eb-a82e-45e2-8050-82d509024806" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4076/providers/Microsoft.ContainerRegistry/registries/acrregistry5314?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQwNzYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NTMxND9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg3822/providers/Microsoft.ContainerRegistry/registries/acrregistry4222?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzM4MjIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NDIyMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbfefdd2-d273-4686-ab61-c22bb932932d" + "7ff2b18e-97e4-401e-8055-53167c552697" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, "ResponseBody": "", @@ -511,22 +499,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:53 GMT" + "Thu, 16 Mar 2017 22:54:50 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1191" ], "x-ms-request-id": [ - "3480d3f4-989e-48db-a044-223c32fe3bf3" + "23390d66-2889-46bc-a129-9f1c812e8ecc" ], "x-ms-correlation-request-id": [ - "3480d3f4-989e-48db-a044-223c32fe3bf3" + "23390d66-2889-46bc-a129-9f1c812e8ecc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033753Z:3480d3f4-989e-48db-a044-223c32fe3bf3" + "CENTRALUS:20170316T225451Z:23390d66-2889-46bc-a129-9f1c812e8ecc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -537,16 +525,16 @@ ], "Names": { "CreateResourceGroup": [ - "acr_rg4076" + "acr_rg3822" ], "CreateStorageAccount": [ - "acrstorage4358" + "acrstorage8486" ], "CreateContainerRegistry": [ - "acrregistry5314" + "acrregistry4222" ] }, "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetCredentialsTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetCredentialsTest.json deleted file mode 100644 index 31c3bfd21702..000000000000 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetCredentialsTest.json +++ /dev/null @@ -1,597 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "623aa301-69db-49cd-93f1-e72a7231bf54" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\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": [ - "Tue, 06 Dec 2016 03:34:37 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-request-id": [ - "cf30832f-89f1-4c4b-895b-f0cdb641e19e" - ], - "x-ms-correlation-request-id": [ - "cf30832f-89f1-4c4b-895b-f0cdb641e19e" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033437Z:cf30832f-89f1-4c4b-895b-f0cdb641e19e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg7766?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzc3NjY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "x-ms-client-request-id": [ - "7463753d-1526-402b-8731-7089ee14c1e9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766\",\r\n \"name\": \"acr_rg7766\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:34:38 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "ab1769c5-3e00-4448-9152-237d38558041" - ], - "x-ms-correlation-request-id": [ - "ab1769c5-3e00-4448-9152-237d38558041" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033438Z:ab1769c5-3e00-4448-9152-237d38558041" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766/providers/Microsoft.Storage/storageAccounts/acrstorage591?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzc3NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTkxP2FwaS12ZXJzaW9uPTIwMTYtMDEtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "96" - ], - "x-ms-client-request-id": [ - "876215a9-30d9-4229-8541-910afd5ac63c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:34:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/cd8598ed-ff81-4468-a71d-265c7962cb54?monitor=true&api-version=2016-01-01" - ], - "Retry-After": [ - "17" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "b945f852-80fe-4c60-a7bb-08f08a3d7266" - ], - "x-ms-correlation-request-id": [ - "b945f852-80fe-4c60-a7bb-08f08a3d7266" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033439Z:b945f852-80fe-4c60-a7bb-08f08a3d7266" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/cd8598ed-ff81-4468-a71d-265c7962cb54?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2NkODU5OGVkLWZmODEtNDQ2OC1hNzFkLTI2NWM3OTYyY2I1ND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766/providers/Microsoft.Storage/storageAccounts/acrstorage591\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage591\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:34:39.3706388Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage591.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage591.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage591.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage591.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:35:09 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "d09315af-0a67-4f65-aec9-dac0da6c8e1f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-correlation-request-id": [ - "d09315af-0a67-4f65-aec9-dac0da6c8e1f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033509Z:d09315af-0a67-4f65-aec9-dac0da6c8e1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766/providers/Microsoft.Storage/storageAccounts/acrstorage591/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzc3NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTkxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTYtMDEtMDE=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "02f30a25-59b0-42b0-97ec-1efd4fe1a384" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"3unULxaJeyOiONo7gyA5jr5i/5pz9gNp/ACPE4uOIRDPgt6T7muYL2vEXVNQOGLDAVfuE3WzY3haUGrUPjsgcQ==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"FnjKZfj7eBAd93P5xXQ28SEPRq5TspBDugtAtrqixDyyoWAFXyOoWDJLvhdd/n2Wh4ZKqjDr1sP6nG8CWmcd9A==\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:35:09 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "1769286f-dcf6-4668-a89e-0e76e146cc09" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "1769286f-dcf6-4668-a89e-0e76e146cc09" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033509Z:1769286f-dcf6-4668-a89e-0e76e146cc09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766/providers/Microsoft.ContainerRegistry/registries/acrregistry1982?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzc3NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTk4Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage591\",\r\n \"accessKey\": \"3unULxaJeyOiONo7gyA5jr5i/5pz9gNp/ACPE4uOIRDPgt6T7muYL2vEXVNQOGLDAVfuE3WzY3haUGrUPjsgcQ==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "292" - ], - "x-ms-client-request-id": [ - "30df4e41-f72d-4192-b2f9-9e045af04027" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg7766/providers/Microsoft.ContainerRegistry/registries/acrregistry1982\",\r\n \"name\": \"acrregistry1982\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1982-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:35:11.4327776Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage591\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:35:12 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "0a365dfd-df39-4a60-a526-250f4b74681f" - ], - "x-ms-correlation-request-id": [ - "0a365dfd-df39-4a60-a526-250f4b74681f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033512Z:0a365dfd-df39-4a60-a526-250f4b74681f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766/providers/Microsoft.ContainerRegistry/registries/acrregistry1982/getCredentials?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzc3NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTk4Mi9nZXRDcmVkZW50aWFscz9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e51b7407-ce1b-437a-806d-5ec097d9c2ec" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"message\": \"Cannot perform credential operations for /subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg7766/providers/Microsoft.ContainerRegistry/registries/acrregistry1982 as Admin user is disabled. Enable Admin user feature and try again.\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "265" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:35:12 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "fa2781ca-051b-4cf9-83e6-ce292aaa651d" - ], - "x-ms-correlation-request-id": [ - "fa2781ca-051b-4cf9-83e6-ce292aaa651d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033512Z:fa2781ca-051b-4cf9-83e6-ce292aaa651d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 400 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766/providers/Microsoft.ContainerRegistry/registries/acrregistry1982/getCredentials?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzc3NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTk4Mi9nZXRDcmVkZW50aWFscz9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1bb3c36d-c53e-45ca-bc39-2398453ed5e3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"username\": \"acrregistry1982\",\r\n \"password\": \"/=fzu=+Yh=s/0X+85++/PFdiE0DIh=C2\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:35:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-request-id": [ - "0e1cfe10-c6c4-45bc-bbd2-9ddf27ca72fb" - ], - "x-ms-correlation-request-id": [ - "0e1cfe10-c6c4-45bc-bbd2-9ddf27ca72fb" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033513Z:0e1cfe10-c6c4-45bc-bbd2-9ddf27ca72fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg7766/providers/Microsoft.ContainerRegistry/registries/acrregistry1982?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzc3NjYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTk4Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "58" - ], - "x-ms-client-request-id": [ - "e3ad3163-06eb-4611-a6a1-cc4315544e55" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg7766/providers/Microsoft.ContainerRegistry/registries/acrregistry1982\",\r\n \"name\": \"acrregistry1982\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1982-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:35:12.1733394Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage591\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:35:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-request-id": [ - "9eca3a6a-109b-4912-a8c7-6b97d2c6a40f" - ], - "x-ms-correlation-request-id": [ - "9eca3a6a-109b-4912-a8c7-6b97d2c6a40f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033513Z:9eca3a6a-109b-4912-a8c7-6b97d2c6a40f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "CreateResourceGroup": [ - "acr_rg7766" - ], - "CreateStorageAccount": [ - "acrstorage591" - ], - "CreateContainerRegistry": [ - "acrregistry1982" - ] - }, - "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" - } -} \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetTest.json index 3342ce6ec8e4..2b3656483dcb 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetTest.json +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryGetTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "921ebe12-4f41-4387-9a64-76e8805fbcca" + "41059e2e-0fea-4d73-b461-c86720c42774" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:30:37 GMT" + "Thu, 16 Mar 2017 22:45:57 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14996" ], "x-ms-request-id": [ - "d1c1926f-a102-4a1f-90a8-6827790020ef" + "8a8e859c-95af-407b-90da-2e1b4311e704" ], "x-ms-correlation-request-id": [ - "d1c1926f-a102-4a1f-90a8-6827790020ef" + "8a8e859c-95af-407b-90da-2e1b4311e704" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033038Z:d1c1926f-a102-4a1f-90a8-6827790020ef" + "WESTUS2:20170316T224558Z:8a8e859c-95af-407b-90da-2e1b4311e704" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,8 +56,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg9093?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzkwOTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg9843?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzk4NDM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -68,7 +68,7 @@ "28" ], "x-ms-client-request-id": [ - "38728e4c-ab0e-44f3-9d20-297242b5eb2b" + "ce54ebbd-22c1-4dde-86f4-659db2c94cfc" ], "accept-language": [ "en-US" @@ -78,7 +78,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093\",\r\n \"name\": \"acr_rg9093\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843\",\r\n \"name\": \"acr_rg9843\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -93,22 +93,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:30:37 GMT" + "Thu, 16 Mar 2017 22:45:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-request-id": [ - "5c7266e6-38b2-41cb-acb6-78a2f396ae1e" + "016cf2ab-362e-4eaf-8100-fa61d9e3c84e" ], "x-ms-correlation-request-id": [ - "5c7266e6-38b2-41cb-acb6-78a2f396ae1e" + "016cf2ab-362e-4eaf-8100-fa61d9e3c84e" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033038Z:5c7266e6-38b2-41cb-acb6-78a2f396ae1e" + "WESTUS2:20170316T224558Z:016cf2ab-362e-4eaf-8100-fa61d9e3c84e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093/providers/Microsoft.Storage/storageAccounts/acrstorage4122?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzkwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDEyMj9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843/providers/Microsoft.Storage/storageAccounts/acrstorage5985?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTk4NT9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -129,7 +129,7 @@ "96" ], "x-ms-client-request-id": [ - "825a5fcf-ec14-410d-a6b5-2da2fa805ca1" + "3289b3a2-e3ec-429e-bfa0-d3c23bf8b3a6" ], "accept-language": [ "en-US" @@ -151,13 +151,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:30:38 GMT" + "Thu, 16 Mar 2017 22:45:58 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/cf1b3b68-172d-46ba-a163-0738c692f5db?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/8d99bedd-6f7b-4e25-aaa4-d4b762f3746b?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -167,16 +167,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-request-id": [ - "53bb76b7-2f10-4466-ad05-d21feb8e1ce9" + "640e8a2a-b944-42c5-86e8-21f4e55913ad" ], "x-ms-correlation-request-id": [ - "53bb76b7-2f10-4466-ad05-d21feb8e1ce9" + "640e8a2a-b944-42c5-86e8-21f4e55913ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033039Z:53bb76b7-2f10-4466-ad05-d21feb8e1ce9" + "WESTUS2:20170316T224559Z:640e8a2a-b944-42c5-86e8-21f4e55913ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/cf1b3b68-172d-46ba-a163-0738c692f5db?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2NmMWIzYjY4LTE3MmQtNDZiYS1hMTYzLTA3MzhjNjkyZjVkYj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/8d99bedd-6f7b-4e25-aaa4-d4b762f3746b?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzhkOTliZWRkLTZmN2ItNGUyNS1hYWE0LWQ0Yjc2MmYzNzQ2Yj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,7 +195,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093/providers/Microsoft.Storage/storageAccounts/acrstorage4122\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage4122\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:30:39.7382152Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage4122.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage4122.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage4122.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage4122.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843/providers/Microsoft.Storage/storageAccounts/acrstorage5985\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage5985\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:45:59.8424177Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage5985.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage5985.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage5985.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage5985.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -207,7 +207,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:31:10 GMT" + "Thu, 16 Mar 2017 22:46:32 GMT" ], "Pragma": [ "no-cache" @@ -223,16 +223,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f5440d47-cc6f-48b2-a62c-0406621a1904" + "fe63b8d5-9ee0-413c-bb6e-5cca67335a5e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14995" ], "x-ms-correlation-request-id": [ - "f5440d47-cc6f-48b2-a62c-0406621a1904" + "fe63b8d5-9ee0-413c-bb6e-5cca67335a5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033110Z:f5440d47-cc6f-48b2-a62c-0406621a1904" + "WESTUS2:20170316T224632Z:fe63b8d5-9ee0-413c-bb6e-5cca67335a5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,13 +241,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093/providers/Microsoft.Storage/storageAccounts/acrstorage4122/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzkwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDEyMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843/providers/Microsoft.Storage/storageAccounts/acrstorage5985/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTk4NS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d2b43b1-1e58-484b-a366-4cb2bba233a9" + "4bf6fc89-c5cb-40d0-a191-7b9f034f251a" ], "accept-language": [ "en-US" @@ -257,7 +257,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"WluI9k+YyMnP4dmXp20lKNwPb7P+Lnzzy8gUk24/5Odoj3ivMZVzGUsYM91d52LoEYf9TirFjCoeDJS9hyUH2A==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"8g68TNfJxCAlX1kMV18AKGnpV81SJDN9KDgsdOKe6+m+jJ4PpSZJPOr3fbEH1xNGNG2yZeXwhVNubQI8a6+3xg==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"nWK3MX+0ZSkjFzNIM0tSuewn6K9MhzsqRJtUaRNh+WIKGd1Uq94hbGkg74t8SwTVewawOk3STzdFItTsaCNJgA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"1qbwQDM6OVYsqmxC96z29jQa8tzYZSX2j4uy7nMWRp/pnyf9IjBs/m7efRsu4xii0gRGUX8UawSlJhlSw49Mxg==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -269,7 +269,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:31:10 GMT" + "Thu, 16 Mar 2017 22:46:32 GMT" ], "Pragma": [ "no-cache" @@ -285,16 +285,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "81306851-367c-4ec4-b644-c98164e91d45" + "c4a3913a-1254-4eee-9a87-50ff83b1c302" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1196" ], "x-ms-correlation-request-id": [ - "81306851-367c-4ec4-b644-c98164e91d45" + "c4a3913a-1254-4eee-9a87-50ff83b1c302" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033110Z:81306851-367c-4ec4-b644-c98164e91d45" + "WESTUS2:20170316T224633Z:c4a3913a-1254-4eee-9a87-50ff83b1c302" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,29 +303,29 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry6754?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzkwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Njc1ND9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry86?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4122\",\r\n \"accessKey\": \"WluI9k+YyMnP4dmXp20lKNwPb7P+Lnzzy8gUk24/5Odoj3ivMZVzGUsYM91d52LoEYf9TirFjCoeDJS9hyUH2A==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5985\",\r\n \"accessKey\": \"nWK3MX+0ZSkjFzNIM0tSuewn6K9MhzsqRJtUaRNh+WIKGd1Uq94hbGkg74t8SwTVewawOk3STzdFItTsaCNJgA==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "324" + "363" ], "x-ms-client-request-id": [ - "eff60c4f-2a86-49ed-a2cf-da2ff6062813" + "9d61f92a-bd56-4d43-b96a-4e87a756da34" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry6754\",\r\n \"name\": \"acrregistry6754\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry6754-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:31:13.3255799Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4122\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry86\",\r\n \"name\": \"acrregistry86\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry86.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:46:35.8198288Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5985\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -337,7 +337,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:31:14 GMT" + "Thu, 16 Mar 2017 22:46:37 GMT" ], "Pragma": [ "no-cache" @@ -346,53 +346,47 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1195" ], "x-ms-request-id": [ - "dfc18e2d-1447-4174-97fd-378bd4ac5058" + "d181b9eb-273d-4ef2-ab43-c2721e392f5d" ], "x-ms-correlation-request-id": [ - "dfc18e2d-1447-4174-97fd-378bd4ac5058" + "d181b9eb-273d-4ef2-ab43-c2721e392f5d" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033114Z:dfc18e2d-1447-4174-97fd-378bd4ac5058" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T224637Z:d181b9eb-273d-4ef2-ab43-c2721e392f5d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry6754?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzkwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Njc1ND9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry86?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "938ad0ab-2835-4cb0-b5be-58c8fff1d77a" + "fa0b33c0-d0ca-47e9-aef4-df52bd484d5b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry6754\",\r\n \"name\": \"acrregistry6754\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry6754-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:31:14.0590714Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4122\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry86\",\r\n \"name\": \"acrregistry86\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry86.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:46:37.402919Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5985\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -404,7 +398,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:31:14 GMT" + "Thu, 16 Mar 2017 22:46:37 GMT" ], "Pragma": [ "no-cache" @@ -413,59 +407,53 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14994" ], "x-ms-request-id": [ - "429caf14-ef5e-4883-825d-88ea17dce0c4" + "5fb17681-89d0-48ed-8b66-b1c59d657b92" ], "x-ms-correlation-request-id": [ - "429caf14-ef5e-4883-825d-88ea17dce0c4" + "5fb17681-89d0-48ed-8b66-b1c59d657b92" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033114Z:429caf14-ef5e-4883-825d-88ea17dce0c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T224637Z:5fb17681-89d0-48ed-8b66-b1c59d657b92" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry8837?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzkwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODgzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry3319?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MzMxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4122\",\r\n \"accessKey\": \"WluI9k+YyMnP4dmXp20lKNwPb7P+Lnzzy8gUk24/5Odoj3ivMZVzGUsYM91d52LoEYf9TirFjCoeDJS9hyUH2A==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5985\",\r\n \"accessKey\": \"nWK3MX+0ZSkjFzNIM0tSuewn6K9MhzsqRJtUaRNh+WIKGd1Uq94hbGkg74t8SwTVewawOk3STzdFItTsaCNJgA==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "325" + "364" ], "x-ms-client-request-id": [ - "c7a7d625-72ea-4460-859d-aae0ef871f12" + "a1ebdbea-791c-462d-80be-c385dc3a8b6d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry8837\",\r\n \"name\": \"acrregistry8837\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8837-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:31:15.6380515Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4122\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry3319\",\r\n \"name\": \"acrregistry3319\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry3319.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:46:39.5322797Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5985\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -477,7 +465,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:31:16 GMT" + "Thu, 16 Mar 2017 22:47:04 GMT" ], "Pragma": [ "no-cache" @@ -486,53 +474,47 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1194" ], "x-ms-request-id": [ - "bcd7f683-fe96-4df1-bb48-080451912d65" + "bbbaad0c-d636-44be-99fc-c3d16d9be2a1" ], "x-ms-correlation-request-id": [ - "bcd7f683-fe96-4df1-bb48-080451912d65" + "bbbaad0c-d636-44be-99fc-c3d16d9be2a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033116Z:bcd7f683-fe96-4df1-bb48-080451912d65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T224705Z:bbbaad0c-d636-44be-99fc-c3d16d9be2a1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry8837?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzkwOTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODgzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry3319?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MzMxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd0bea5e-cea0-45f4-9d99-8a19e8f7ed0d" + "def4c9bb-05e6-479f-8806-b07dcfc75e32" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg9093/providers/Microsoft.ContainerRegistry/registries/acrregistry8837\",\r\n \"name\": \"acrregistry8837\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8837-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:31:16.2836556Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4122\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg9843/providers/Microsoft.ContainerRegistry/registries/acrregistry3319\",\r\n \"name\": \"acrregistry3319\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry3319.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:47:05.5229154Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5985\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -544,7 +526,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:31:16 GMT" + "Thu, 16 Mar 2017 22:47:05 GMT" ], "Pragma": [ "no-cache" @@ -553,31 +535,25 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14993" ], "x-ms-request-id": [ - "13ab304b-f1ab-4721-bcc7-f9b8ae6965de" + "b84695df-cebe-40e2-b5b8-f0530e1a12e7" ], "x-ms-correlation-request-id": [ - "13ab304b-f1ab-4721-bcc7-f9b8ae6965de" + "b84695df-cebe-40e2-b5b8-f0530e1a12e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20161206T033116Z:13ab304b-f1ab-4721-bcc7-f9b8ae6965de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T224705Z:b84695df-cebe-40e2-b5b8-f0530e1a12e7" ] }, "StatusCode": 200 @@ -585,17 +561,17 @@ ], "Names": { "CreateResourceGroup": [ - "acr_rg9093" + "acr_rg9843" ], "CreateStorageAccount": [ - "acrstorage4122" + "acrstorage5985" ], "ContainerRegistryGetTest": [ - "acrregistry6754", - "acrregistry8837" + "acrregistry86", + "acrregistry3319" ] }, "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListByResourceGroupTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListByResourceGroupTest.json index 17db5a699e0c..fbe2da3e8cb9 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListByResourceGroupTest.json +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListByResourceGroupTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "610d0ce8-0318-4a8f-8912-a981f7f65a79" + "fe2f4482-5e22-4253-af96-0d71a6e61e31" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:18 GMT" + "Thu, 16 Mar 2017 22:50:35 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14992" ], "x-ms-request-id": [ - "dd7a000d-ea80-4fd0-af1f-f6ff1771b5e1" + "e7c70ac7-f396-4869-8b9f-9b7e24a49de2" ], "x-ms-correlation-request-id": [ - "dd7a000d-ea80-4fd0-af1f-f6ff1771b5e1" + "e7c70ac7-f396-4869-8b9f-9b7e24a49de2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033519Z:dd7a000d-ea80-4fd0-af1f-f6ff1771b5e1" + "WESTUS2:20170316T225036Z:e7c70ac7-f396-4869-8b9f-9b7e24a49de2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,8 +56,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg5427?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzU0Mjc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg4701?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzQ3MDE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -68,7 +68,7 @@ "28" ], "x-ms-client-request-id": [ - "c392cd48-f0a6-4ad5-80d2-3093c9e66d13" + "0a8cb82b-5bbe-4e03-9ff3-63e3b0432d2d" ], "accept-language": [ "en-US" @@ -78,7 +78,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg5427\",\r\n \"name\": \"acr_rg5427\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg4701\",\r\n \"name\": \"acr_rg4701\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -93,22 +93,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:19 GMT" + "Thu, 16 Mar 2017 22:50:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "1c491fc9-e403-4780-b1e8-e3e88ffa85a1" + "03b6bccb-70e0-4a38-a2ea-e7fb117c1e6a" ], "x-ms-correlation-request-id": [ - "1c491fc9-e403-4780-b1e8-e3e88ffa85a1" + "03b6bccb-70e0-4a38-a2ea-e7fb117c1e6a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033519Z:1c491fc9-e403-4780-b1e8-e3e88ffa85a1" + "WESTUS2:20170316T225036Z:03b6bccb-70e0-4a38-a2ea-e7fb117c1e6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg5427/providers/Microsoft.Storage/storageAccounts/acrstorage5309?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzU0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTMwOT9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg4701/providers/Microsoft.Storage/storageAccounts/acrstorage8876?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODg3Nj9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -129,7 +129,7 @@ "96" ], "x-ms-client-request-id": [ - "48109040-1810-4266-a1dd-4eb36ec83124" + "b15b747e-ea75-4b61-beab-1ab67651e48e" ], "accept-language": [ "en-US" @@ -151,13 +151,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:19 GMT" + "Thu, 16 Mar 2017 22:50:36 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/48d16461-d1ac-4e47-8475-622b802192ba?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/a126c5db-2717-4758-91a0-df9db6e226fe?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -167,16 +167,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-request-id": [ - "5816f235-035c-4ea8-8e76-522d80f5277a" + "31753bdc-596a-490f-8a89-ddaf3416d33d" ], "x-ms-correlation-request-id": [ - "5816f235-035c-4ea8-8e76-522d80f5277a" + "31753bdc-596a-490f-8a89-ddaf3416d33d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033520Z:5816f235-035c-4ea8-8e76-522d80f5277a" + "WESTUS2:20170316T225037Z:31753bdc-596a-490f-8a89-ddaf3416d33d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/48d16461-d1ac-4e47-8475-622b802192ba?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQ4ZDE2NDYxLWQxYWMtNGU0Ny04NDc1LTYyMmI4MDIxOTJiYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/a126c5db-2717-4758-91a0-df9db6e226fe?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2ExMjZjNWRiLTI3MTctNDc1OC05MWEwLWRmOWRiNmUyMjZmZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,7 +195,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg5427/providers/Microsoft.Storage/storageAccounts/acrstorage5309\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage5309\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:35:20.6318523Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage5309.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage5309.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage5309.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage5309.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg4701/providers/Microsoft.Storage/storageAccounts/acrstorage8876\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage8876\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:50:37.4409786Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage8876.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage8876.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage8876.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage8876.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -207,7 +207,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:49 GMT" + "Thu, 16 Mar 2017 22:51:07 GMT" ], "Pragma": [ "no-cache" @@ -223,16 +223,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "839d39f4-eb93-4ebc-974a-d837696b1d2f" + "96789ba5-32c0-41f7-9b47-7148d48d1e94" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14991" ], "x-ms-correlation-request-id": [ - "839d39f4-eb93-4ebc-974a-d837696b1d2f" + "96789ba5-32c0-41f7-9b47-7148d48d1e94" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033550Z:839d39f4-eb93-4ebc-974a-d837696b1d2f" + "WESTUS2:20170316T225107Z:96789ba5-32c0-41f7-9b47-7148d48d1e94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,13 +241,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg5427/providers/Microsoft.Storage/storageAccounts/acrstorage5309/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzU0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTMwOS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg4701/providers/Microsoft.Storage/storageAccounts/acrstorage8876/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODg3Ni9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a30d230-a4a8-4561-a664-2d5da4ec54e3" + "25e00b70-37ce-4af5-86a4-743d40b8d0a3" ], "accept-language": [ "en-US" @@ -257,7 +257,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"MJ6dZCYzr4QMtFmL+KpoQgnWiZGiwRQbR7z4B31NNyiEi+fpiVbRP7C9UFpUsB90siXVDAFyCvxkAfICt7AY4A==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"r7k8DW3yy96IUEx1yvxLopHpcY9E0wJ1D+7HKMmtLs8ag0KKtVoIfubGKv88HsJ+e1dua35rzIMnwURcxnSafw==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"9IDINDecbc1h/EN8LpAcyoLw3n/HI8goIJQ2hMsNrZ2R/MBwsZ+IW9JcAo2FW6pVZW4rRNzW8mf24nz+fw8HVw==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"FPaTF1xzLyRyP/OT0SBW6Kwqznk0WfYhe+SSldVQ0yE3S4QBd/zNnd6roYFlqmIXSZj5NMYofzoy0LVc8gA1rA==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -269,7 +269,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:49 GMT" + "Thu, 16 Mar 2017 22:51:07 GMT" ], "Pragma": [ "no-cache" @@ -285,16 +285,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e8ca0fbe-78dc-4067-9d40-a36245b36e2e" + "a940a0df-0456-499b-8b94-3b6bfc4e7b0d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "e8ca0fbe-78dc-4067-9d40-a36245b36e2e" + "a940a0df-0456-499b-8b94-3b6bfc4e7b0d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033550Z:e8ca0fbe-78dc-4067-9d40-a36245b36e2e" + "WESTUS2:20170316T225107Z:a940a0df-0456-499b-8b94-3b6bfc4e7b0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,29 +303,29 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg5427/providers/Microsoft.ContainerRegistry/registries/acrregistry3581?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzU0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MzU4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg4701/providers/Microsoft.ContainerRegistry/registries/acrregistry8286?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODI4Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5309\",\r\n \"accessKey\": \"MJ6dZCYzr4QMtFmL+KpoQgnWiZGiwRQbR7z4B31NNyiEi+fpiVbRP7C9UFpUsB90siXVDAFyCvxkAfICt7AY4A==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8876\",\r\n \"accessKey\": \"9IDINDecbc1h/EN8LpAcyoLw3n/HI8goIJQ2hMsNrZ2R/MBwsZ+IW9JcAo2FW6pVZW4rRNzW8mf24nz+fw8HVw==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "332" ], "x-ms-client-request-id": [ - "d41bb774-a9e5-4ca4-800e-a0cc45405b30" + "28f9b49a-a5fa-45c1-88da-0bc7fc9f432c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg5427/providers/Microsoft.ContainerRegistry/registries/acrregistry3581\",\r\n \"name\": \"acrregistry3581\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry3581-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:35:53.0178633Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5309\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg4701/providers/Microsoft.ContainerRegistry/registries/acrregistry8286\",\r\n \"name\": \"acrregistry8286\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8286.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:51:29.0179786Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8876\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -337,7 +337,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:53 GMT" + "Thu, 16 Mar 2017 22:51:54 GMT" ], "Pragma": [ "no-cache" @@ -346,59 +346,53 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-request-id": [ - "f736a833-5893-4103-a615-ecfadb70206f" + "c5656653-459a-4053-8c4a-fdb52734adcc" ], "x-ms-correlation-request-id": [ - "f736a833-5893-4103-a615-ecfadb70206f" + "c5656653-459a-4053-8c4a-fdb52734adcc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033553Z:f736a833-5893-4103-a615-ecfadb70206f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225154Z:c5656653-459a-4053-8c4a-fdb52734adcc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg5427/providers/Microsoft.ContainerRegistry/registries/acrregistry282?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzU0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MjgyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMjctcHJldmlldw==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg4701/providers/Microsoft.ContainerRegistry/registries/acrregistry7868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5309\",\r\n \"accessKey\": \"MJ6dZCYzr4QMtFmL+KpoQgnWiZGiwRQbR7z4B31NNyiEi+fpiVbRP7C9UFpUsB90siXVDAFyCvxkAfICt7AY4A==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8876\",\r\n \"accessKey\": \"9IDINDecbc1h/EN8LpAcyoLw3n/HI8goIJQ2hMsNrZ2R/MBwsZ+IW9JcAo2FW6pVZW4rRNzW8mf24nz+fw8HVw==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "332" ], "x-ms-client-request-id": [ - "851bba82-7840-4927-98f6-77c1edb5f93e" + "bbff414e-6ab0-4e48-9ff5-6a321edbc941" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg5427/providers/Microsoft.ContainerRegistry/registries/acrregistry282\",\r\n \"name\": \"acrregistry282\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry282-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:35:55.0647124Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5309\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg4701/providers/Microsoft.ContainerRegistry/registries/acrregistry7868\",\r\n \"name\": \"acrregistry7868\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7868.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:51:55.9662416Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8876\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -410,7 +404,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:55 GMT" + "Thu, 16 Mar 2017 22:52:21 GMT" ], "Pragma": [ "no-cache" @@ -419,53 +413,47 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-request-id": [ - "14d19351-18c8-4264-99bb-cf7fc7f5ffd8" + "5691500f-daab-409c-8060-27f9336a467a" ], "x-ms-correlation-request-id": [ - "14d19351-18c8-4264-99bb-cf7fc7f5ffd8" + "5691500f-daab-409c-8060-27f9336a467a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033555Z:14d19351-18c8-4264-99bb-cf7fc7f5ffd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225222Z:5691500f-daab-409c-8060-27f9336a467a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg5427/providers/Microsoft.ContainerRegistry/registries?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzU0MjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMjctcHJldmlldw==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg4701/providers/Microsoft.ContainerRegistry/registries?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c508076f-2aa1-474f-a319-35a4ff119d3a" + "58e6529d-d04d-4943-b94f-475c98536ddf" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg5427/providers/Microsoft.ContainerRegistry/registries/acrregistry282\",\r\n \"name\": \"acrregistry282\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry282-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:35:55.6159918Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5309\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg5427/providers/Microsoft.ContainerRegistry/registries/acrregistry3581\",\r\n \"name\": \"acrregistry3581\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry3581-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:35:53.6616112Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5309\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg4701/providers/Microsoft.ContainerRegistry/registries/acrregistry7868\",\r\n \"name\": \"acrregistry7868\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7868.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:52:22.1088397Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8876\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg4701/providers/Microsoft.ContainerRegistry/registries/acrregistry8286\",\r\n \"name\": \"acrregistry8286\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8286.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:51:30.5921302Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8876\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -477,7 +465,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:35:56 GMT" + "Thu, 16 Mar 2017 22:52:21 GMT" ], "Pragma": [ "no-cache" @@ -486,31 +474,25 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14990" ], "x-ms-request-id": [ - "2d37f61f-0dcd-4523-acc7-9d0d8932119a" + "e17dfcc5-366c-4b6c-af66-04b4ebe5980b" ], "x-ms-correlation-request-id": [ - "2d37f61f-0dcd-4523-acc7-9d0d8932119a" + "e17dfcc5-366c-4b6c-af66-04b4ebe5980b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033556Z:2d37f61f-0dcd-4523-acc7-9d0d8932119a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T225222Z:e17dfcc5-366c-4b6c-af66-04b4ebe5980b" ] }, "StatusCode": 200 @@ -518,17 +500,17 @@ ], "Names": { "CreateResourceGroup": [ - "acr_rg5427" + "acr_rg4701" ], "CreateStorageAccount": [ - "acrstorage5309" + "acrstorage8876" ], "CreateContainerRegistry": [ - "acrregistry3581", - "acrregistry282" + "acrregistry8286", + "acrregistry7868" ] }, "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListBySubscriptionTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListBySubscriptionTest.json index 70a0bbcfb030..abfee1ee088f 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListBySubscriptionTest.json +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListBySubscriptionTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ca60429-373a-496a-a1ce-20388cd699cd" + "64abe80b-6390-433a-8729-6aabe018fce6" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:21 GMT" + "Thu, 16 Mar 2017 22:47:11 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14988" ], "x-ms-request-id": [ - "85bc72a2-1c9e-4fb9-aa12-9b64cf34eec5" + "b9eed7cb-206e-4ed4-bee9-a924cbf4efb8" ], "x-ms-correlation-request-id": [ - "85bc72a2-1c9e-4fb9-aa12-9b64cf34eec5" + "b9eed7cb-206e-4ed4-bee9-a924cbf4efb8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033321Z:85bc72a2-1c9e-4fb9-aa12-9b64cf34eec5" + "WESTUS2:20170316T224711Z:b9eed7cb-206e-4ed4-bee9-a924cbf4efb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,13 +56,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "affafa16-fc63-4409-84f8-4859dc0fba1b" + "1ff71a2b-73dc-4926-9315-37596b7db49d" ], "accept-language": [ "en-US" @@ -72,7 +72,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +84,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:55 GMT" + "Thu, 16 Mar 2017 22:48:11 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +93,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14986" ], "x-ms-request-id": [ - "48fcb075-5393-4a35-b95e-2a4f84e33b0b" + "c8b972ef-213c-4240-9bd4-2989e4392da1" ], "x-ms-correlation-request-id": [ - "48fcb075-5393-4a35-b95e-2a4f84e33b0b" + "c8b972ef-213c-4240-9bd4-2989e4392da1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033355Z:48fcb075-5393-4a35-b95e-2a4f84e33b0b" + "WESTUS2:20170316T224811Z:c8b972ef-213c-4240-9bd4-2989e4392da1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,8 +111,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2558?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzI1NTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg2340?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzIzNDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -123,7 +123,7 @@ "28" ], "x-ms-client-request-id": [ - "1692d901-fe09-4091-974c-c800ee5b97ec" + "0cc79db5-18a8-4d72-a5cd-8b4d1f428354" ], "accept-language": [ "en-US" @@ -133,7 +133,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2558\",\r\n \"name\": \"acr_rg2558\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg2340\",\r\n \"name\": \"acr_rg2340\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -148,22 +148,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:21 GMT" + "Thu, 16 Mar 2017 22:47:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-request-id": [ - "6285a8f6-521c-4854-b542-10e826207705" + "e161d2e2-0c34-4bb0-ac15-135481027428" ], "x-ms-correlation-request-id": [ - "6285a8f6-521c-4854-b542-10e826207705" + "e161d2e2-0c34-4bb0-ac15-135481027428" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033321Z:6285a8f6-521c-4854-b542-10e826207705" + "WESTUS2:20170316T224712Z:e161d2e2-0c34-4bb0-ac15-135481027428" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,8 +172,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2558/providers/Microsoft.Storage/storageAccounts/acrstorage6769?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzI1NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjc2OT9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg2340/providers/Microsoft.Storage/storageAccounts/acrstorage3754?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlMzc1ND9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -184,7 +184,7 @@ "96" ], "x-ms-client-request-id": [ - "e1e7cd28-1d4a-467d-8bbc-1cea8aa00c5f" + "c1eb7ad5-d579-482c-94ca-0260cae288a8" ], "accept-language": [ "en-US" @@ -206,13 +206,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:22 GMT" + "Thu, 16 Mar 2017 22:47:12 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/7c7bc9a8-ca72-4d67-abb1-8fba675a180a?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/c5353d5d-2a20-4ec2-b331-4c02451c9e05?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -222,16 +222,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-request-id": [ - "d6816e16-3650-47cb-be96-5f40553eb776" + "4580cf76-7a45-4f0e-8f46-c92ddde55d31" ], "x-ms-correlation-request-id": [ - "d6816e16-3650-47cb-be96-5f40553eb776" + "4580cf76-7a45-4f0e-8f46-c92ddde55d31" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033322Z:d6816e16-3650-47cb-be96-5f40553eb776" + "WESTUS2:20170316T224712Z:4580cf76-7a45-4f0e-8f46-c92ddde55d31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,8 +240,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/7c7bc9a8-ca72-4d67-abb1-8fba675a180a?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzdjN2JjOWE4LWNhNzItNGQ2Ny1hYmIxLThmYmE2NzVhMTgwYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/c5353d5d-2a20-4ec2-b331-4c02451c9e05?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2M1MzUzZDVkLTJhMjAtNGVjMi1iMzMxLTRjMDI0NTFjOWUwNT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -250,7 +250,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2558/providers/Microsoft.Storage/storageAccounts/acrstorage6769\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage6769\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:33:22.7429991Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage6769.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage6769.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage6769.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage6769.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg2340/providers/Microsoft.Storage/storageAccounts/acrstorage3754\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage3754\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:47:13.1223613Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage3754.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage3754.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage3754.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage3754.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -262,7 +262,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:52 GMT" + "Thu, 16 Mar 2017 22:47:42 GMT" ], "Pragma": [ "no-cache" @@ -278,16 +278,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3cd227d4-4453-478c-88f4-c116c15ec87f" + "c7403d6a-d1af-48c1-9126-590b2ed6e9f1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14987" ], "x-ms-correlation-request-id": [ - "3cd227d4-4453-478c-88f4-c116c15ec87f" + "c7403d6a-d1af-48c1-9126-590b2ed6e9f1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033352Z:3cd227d4-4453-478c-88f4-c116c15ec87f" + "WESTUS2:20170316T224743Z:c7403d6a-d1af-48c1-9126-590b2ed6e9f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -296,13 +296,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2558/providers/Microsoft.Storage/storageAccounts/acrstorage6769/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzI1NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjc2OS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg2340/providers/Microsoft.Storage/storageAccounts/acrstorage3754/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlMzc1NC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de672332-e881-4906-90e4-858e63574fe2" + "d74e62aa-7065-456a-b121-c51b2b925572" ], "accept-language": [ "en-US" @@ -312,7 +312,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"lpezYnfX5FrT55B88snk/3du4Ed7jJ9rtoURMtaipdUM7n/aAiiUBXX5N8jR/awNSyLgaclUP6bvfizhEnrCmA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"A/HZk4KoV+ku+rzvQBiiDZvyqgRSFI5KgN8dtSYNhNPz5hSORD+/CJzzbAQnpw0ME/wKW02iRzhiWJIx0pdP0g==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"ZGudPqJXjh3yawc9pQq7+8UKTNo/wC4X9Qfkj461E3qYaYK9hQ2QNui0cwvH1H+POUKfeIjp+6xuFt88IYzvsQ==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"ZKiBjGl7gkmZ3NKHSwRIts8cAqNAr5qwv/zgL8HW5Ey5aH3cAM8zWDRlcFDBXNuxdfUAaX3oiemthvyTncbiLw==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -324,7 +324,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:52 GMT" + "Thu, 16 Mar 2017 22:47:42 GMT" ], "Pragma": [ "no-cache" @@ -340,16 +340,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "600ae156-39c0-49f3-a676-0b44d2dcbe9e" + "14b525cb-5b25-4166-bba2-c710539b621f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1188" ], "x-ms-correlation-request-id": [ - "600ae156-39c0-49f3-a676-0b44d2dcbe9e" + "14b525cb-5b25-4166-bba2-c710539b621f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033353Z:600ae156-39c0-49f3-a676-0b44d2dcbe9e" + "WESTUS2:20170316T224743Z:14b525cb-5b25-4166-bba2-c710539b621f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -358,29 +358,29 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2558/providers/Microsoft.ContainerRegistry/registries/acrregistry7989?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzI1NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzk4OT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg2340/providers/Microsoft.ContainerRegistry/registries/acrregistry3911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MzkxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6769\",\r\n \"accessKey\": \"lpezYnfX5FrT55B88snk/3du4Ed7jJ9rtoURMtaipdUM7n/aAiiUBXX5N8jR/awNSyLgaclUP6bvfizhEnrCmA==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage3754\",\r\n \"accessKey\": \"ZGudPqJXjh3yawc9pQq7+8UKTNo/wC4X9Qfkj461E3qYaYK9hQ2QNui0cwvH1H+POUKfeIjp+6xuFt88IYzvsQ==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "332" ], "x-ms-client-request-id": [ - "05902a5b-c59c-4def-838d-def4889c2cab" + "7ac39e12-38c6-452c-a9f3-a5c4d12e004d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2558/providers/Microsoft.ContainerRegistry/registries/acrregistry7989\",\r\n \"name\": \"acrregistry7989\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7989-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:33:55.0018863Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6769\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg2340/providers/Microsoft.ContainerRegistry/registries/acrregistry3911\",\r\n \"name\": \"acrregistry3911\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry3911.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:47:44.6019628Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage3754\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -392,7 +392,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:55 GMT" + "Thu, 16 Mar 2017 22:48:11 GMT" ], "Pragma": [ "no-cache" @@ -401,38 +401,32 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1187" ], "x-ms-request-id": [ - "86b9eebf-5e6e-4f9d-87a3-64e22b00f3d2" + "a161a51d-2afe-43be-8ffc-3532ae5f7001" ], "x-ms-correlation-request-id": [ - "86b9eebf-5e6e-4f9d-87a3-64e22b00f3d2" + "a161a51d-2afe-43be-8ffc-3532ae5f7001" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033355Z:86b9eebf-5e6e-4f9d-87a3-64e22b00f3d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T224811Z:a161a51d-2afe-43be-8ffc-3532ae5f7001" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg4708?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzQ3MDg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg6006?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzYwMDY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -443,7 +437,7 @@ "28" ], "x-ms-client-request-id": [ - "a7963f8b-3e39-4093-ba05-4898e80f4cff" + "68adf39d-617a-4db5-9f86-d0eed3860672" ], "accept-language": [ "en-US" @@ -453,7 +447,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4708\",\r\n \"name\": \"acr_rg4708\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg6006\",\r\n \"name\": \"acr_rg6006\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -468,22 +462,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:55 GMT" + "Thu, 16 Mar 2017 22:48:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1186" ], "x-ms-request-id": [ - "2d7f5948-0058-44ee-8e65-e57ec32020e9" + "e5c97fee-4581-43cd-acf6-484b2d1fc440" ], "x-ms-correlation-request-id": [ - "2d7f5948-0058-44ee-8e65-e57ec32020e9" + "e5c97fee-4581-43cd-acf6-484b2d1fc440" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033356Z:2d7f5948-0058-44ee-8e65-e57ec32020e9" + "WESTUS2:20170316T224811Z:e5c97fee-4581-43cd-acf6-484b2d1fc440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,8 +486,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4708/providers/Microsoft.Storage/storageAccounts/acrstorage4138?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDEzOD9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg6006/providers/Microsoft.Storage/storageAccounts/acrstorage3046?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlMzA0Nj9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -504,7 +498,7 @@ "96" ], "x-ms-client-request-id": [ - "2e184518-fc9b-47e6-80e9-1865856fdf5f" + "629eb358-5cb9-4aea-a0c5-9346afb2c7d9" ], "accept-language": [ "en-US" @@ -526,13 +520,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:33:56 GMT" + "Thu, 16 Mar 2017 22:48:12 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/51001af2-3fc6-4a66-9a51-88ddf2f9f58e?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/bdeb3a65-1562-4be5-b2ef-39c1b54e225a?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -542,16 +536,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1185" ], "x-ms-request-id": [ - "f8f4d3dd-3b60-4c95-b60b-6305b40c597e" + "48d5dbf2-f052-4173-9a68-d853f2199365" ], "x-ms-correlation-request-id": [ - "f8f4d3dd-3b60-4c95-b60b-6305b40c597e" + "48d5dbf2-f052-4173-9a68-d853f2199365" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033356Z:f8f4d3dd-3b60-4c95-b60b-6305b40c597e" + "WESTUS2:20170316T224812Z:48d5dbf2-f052-4173-9a68-d853f2199365" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +554,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/51001af2-3fc6-4a66-9a51-88ddf2f9f58e?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzUxMDAxYWYyLTNmYzYtNGE2Ni05YTUxLTg4ZGRmMmY5ZjU4ZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/bdeb3a65-1562-4be5-b2ef-39c1b54e225a?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2JkZWIzYTY1LTE1NjItNGJlNS1iMmVmLTM5YzFiNTRlMjI1YT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -570,7 +564,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4708/providers/Microsoft.Storage/storageAccounts/acrstorage4138\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage4138\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:33:56.9359698Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage4138.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage4138.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage4138.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage4138.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg6006/providers/Microsoft.Storage/storageAccounts/acrstorage3046\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage3046\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:48:11.9667117Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage3046.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage3046.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage3046.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage3046.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -582,7 +576,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:34:26 GMT" + "Thu, 16 Mar 2017 22:48:42 GMT" ], "Pragma": [ "no-cache" @@ -598,16 +592,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "52785ad3-c20e-42e8-ba8a-1d743e94ce98" + "0910518c-67ac-4b45-bfab-3e1cad60cd3a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14985" ], "x-ms-correlation-request-id": [ - "52785ad3-c20e-42e8-ba8a-1d743e94ce98" + "0910518c-67ac-4b45-bfab-3e1cad60cd3a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033427Z:52785ad3-c20e-42e8-ba8a-1d743e94ce98" + "WESTUS2:20170316T224842Z:0910518c-67ac-4b45-bfab-3e1cad60cd3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -616,13 +610,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4708/providers/Microsoft.Storage/storageAccounts/acrstorage4138/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDEzOC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg6006/providers/Microsoft.Storage/storageAccounts/acrstorage3046/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlMzA0Ni9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82894e1c-506f-4bc6-a5ea-5d7774454a6b" + "b866f0e3-b58c-493b-9587-a3e788d4dff7" ], "accept-language": [ "en-US" @@ -632,7 +626,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"m5VDL7sm+xt1NPBZpGquw7GtBt8u06xRaO29xkTz6CuIuCxmytFBA6e4TfqCjgYE2OqFTZJ5zjdCWDev7nnekw==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"iPpsye4bD9N/WYoH2+aBWKaUWg5tDdMG+E6NG7yY/iB8H8gD7o6n6K5YVhUF5FVliqpB1r878PCnn8E61xNDaw==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"7sVrGcwBj7Qw8TKHlmvhBjNCCWYNGBe4blQLarX7/BrsDCqCJDYK9mlEWcIivS+Li3ewRdFTGDvr3ANnsLTL2Q==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"Q86Ci1yM7RSuKt7XymP9QyvDPaDd1yFsTjBSIzXdAKJJTc4I14OPEjB5krbRZA/hRAqL0VXfAjYsj6TOztK8sw==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -644,7 +638,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:34:26 GMT" + "Thu, 16 Mar 2017 22:48:42 GMT" ], "Pragma": [ "no-cache" @@ -660,16 +654,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f21e7e01-fa83-4a37-bf78-3404938e7934" + "392d8bc1-6433-45a3-9a2d-0636814d21b1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1184" ], "x-ms-correlation-request-id": [ - "f21e7e01-fa83-4a37-bf78-3404938e7934" + "392d8bc1-6433-45a3-9a2d-0636814d21b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033427Z:f21e7e01-fa83-4a37-bf78-3404938e7934" + "WESTUS2:20170316T224842Z:392d8bc1-6433-45a3-9a2d-0636814d21b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,29 +672,29 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg4708/providers/Microsoft.ContainerRegistry/registries/acrregistry6125?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzQ3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NjEyNT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg6006/providers/Microsoft.ContainerRegistry/registries/acrregistry6626?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5NjYyNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4138\",\r\n \"accessKey\": \"m5VDL7sm+xt1NPBZpGquw7GtBt8u06xRaO29xkTz6CuIuCxmytFBA6e4TfqCjgYE2OqFTZJ5zjdCWDev7nnekw==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage3046\",\r\n \"accessKey\": \"7sVrGcwBj7Qw8TKHlmvhBjNCCWYNGBe4blQLarX7/BrsDCqCJDYK9mlEWcIivS+Li3ewRdFTGDvr3ANnsLTL2Q==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "332" ], "x-ms-client-request-id": [ - "660632a6-85b3-42dd-93d0-f841e8f12431" + "fd8f3f9d-fcf0-4a04-b6d4-eef4a040100e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg4708/providers/Microsoft.ContainerRegistry/registries/acrregistry6125\",\r\n \"name\": \"acrregistry6125\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry6125-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:34:28.5229021Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4138\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg6006/providers/Microsoft.ContainerRegistry/registries/acrregistry6626\",\r\n \"name\": \"acrregistry6626\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry6626.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:48:43.431155Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage3046\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -712,7 +706,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:34:28 GMT" + "Thu, 16 Mar 2017 22:48:44 GMT" ], "Pragma": [ "no-cache" @@ -721,53 +715,47 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1183" ], "x-ms-request-id": [ - "4313e6d8-bdc3-4a1c-b3cc-c16eb523d126" + "544ad12e-44ca-4619-8af7-d26a9c51387e" ], "x-ms-correlation-request-id": [ - "4313e6d8-bdc3-4a1c-b3cc-c16eb523d126" + "544ad12e-44ca-4619-8af7-d26a9c51387e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033429Z:4313e6d8-bdc3-4a1c-b3cc-c16eb523d126" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T224844Z:544ad12e-44ca-4619-8af7-d26a9c51387e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry/registries?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvcmVnaXN0cmllcz9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry/registries?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnkvcmVnaXN0cmllcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc8a0915-2310-4351-b2a1-1771619bde9c" + "b8babf3c-4873-4d6d-9222-2b51e47bb94d" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg1695/providers/Microsoft.ContainerRegistry/registries/acrregistry7475\",\r\n \"name\": \"acrregistry7475\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7475-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-05T20:02:00.8308337Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage224\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2558/providers/Microsoft.ContainerRegistry/registries/acrregistry7989\",\r\n \"name\": \"acrregistry7989\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7989-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:33:55.6113202Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6769\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg4708/providers/Microsoft.ContainerRegistry/registries/acrregistry6125\",\r\n \"name\": \"acrregistry6125\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry6125-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:34:29.1930139Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4138\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg9138/providers/Microsoft.ContainerRegistry/registries/acrregistry9053\",\r\n \"name\": \"acrregistry9053\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry9053-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-05T20:39:34.0787015Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage7946\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acrcommonimages/providers/Microsoft.ContainerRegistry/registries/prime\",\r\n \"name\": \"prime\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"prime-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T02:42:16.8859974Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrcommonlayers\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/martinpfacrtestwus/providers/Microsoft.ContainerRegistry/registries/martinpfTestRegWus1\",\r\n \"name\": \"martinpfTestRegWus1\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"martinpftestregwus1-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-18T16:55:23.74159Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"martinpfacrtestwus\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/moveregistryRg/providers/Microsoft.ContainerRegistry/registries/sourceregistry\",\r\n \"name\": \"sourceregistry\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"sourceregistry-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-17T02:47:15.6699584Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"registrydata\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/moveregistryRg/providers/Microsoft.ContainerRegistry/registries/targetregistry\",\r\n \"name\": \"targetregistry\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"targetregistry-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-17T02:48:08.2059581Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"registrydata\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/ComplianceWebScout/providers/Microsoft.ContainerRegistry/registries/webscoutregistry\",\r\n \"name\": \"webscoutregistry\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"webscoutregistry-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-12T08:03:55.2993849Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"ybi1sqenv18od7kr7g5jxku5\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyouRG/providers/Microsoft.ContainerRegistry/registries/azcrci\",\r\n \"name\": \"azcrci\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"azcrci-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-29T22:12:39.1304237Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoustorage\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyouRG/providers/Microsoft.ContainerRegistry/registries/doyoudoyoudoyou\",\r\n \"name\": \"doyoudoyoudoyou\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoudoyoudoyou-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-30T00:37:39.2642708Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"3cf67818b58a4443bd09772c\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyouRG/providers/Microsoft.ContainerRegistry/registries/doyouregistry\",\r\n \"name\": \"doyouregistry\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyouregistry-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-18T18:11:48.5606407Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoustorage\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyourg/providers/Microsoft.ContainerRegistry/registries/doyoutest\",\r\n \"name\": \"doyoutest\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-22T22:18:53.0902931Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoutest1122221815\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyourg/providers/Microsoft.ContainerRegistry/registries/doyoutest1test2test3test4test5test6test7test8\",\r\n \"name\": \"doyoutest1test2test3test4test5test6test7test8\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest1test2test3test4test5test6test7test8-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-22T22:27:58.401606Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoutest1test1122222723\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyourg/providers/Microsoft.ContainerRegistry/registries/doyoutest2\",\r\n \"name\": \"doyoutest2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest2-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-29T18:25:06.0380789Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoustorage\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyouRG/providers/Microsoft.ContainerRegistry/registries/doyoutest3\",\r\n \"name\": \"doyoutest3\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest3-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-19T00:41:13.8875597Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoustorage\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyourg/providers/Microsoft.ContainerRegistry/registries/doyoutest4\",\r\n \"name\": \"doyoutest4\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest4-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-23T01:18:37.0905322Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoutest4011759\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyourg/providers/Microsoft.ContainerRegistry/registries/doyoutest5\",\r\n \"name\": \"doyoutest5\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest5-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-23T01:32:45.1069472Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoutest5013210\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyourg/providers/Microsoft.ContainerRegistry/registries/doyoutest6\",\r\n \"name\": \"doyoutest6\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest6-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-30T00:26:40.286073Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"3cf67818b58a4443bd09772c\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyourg/providers/Microsoft.ContainerRegistry/registries/doyoutest7\",\r\n \"name\": \"doyoutest7\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"doyoutest7-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-30T00:28:30.985204Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"doyoutest7002758\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/doyouRG/providers/Microsoft.ContainerRegistry/registries/helloworld\",\r\n \"name\": \"helloworld\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"helloworld-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-30T00:24:59.5516776Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"helloworld02424\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/emptyrg/providers/Microsoft.ContainerRegistry/registries/emptyrgregistry\",\r\n \"name\": \"emptyrgregistry\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"emptyrgregistry-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-15T21:00:02.2823788Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"326da2796ae34436a2dc1c49\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/kevinrg/providers/Microsoft.ContainerRegistry/registries/kevinregistry3\",\r\n \"name\": \"kevinregistry3\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"b2\": \"b2\",\r\n \"a1\": \"f\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"kevinregistry3-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-03T17:15:57.7357909Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"14feb0d80746415f9a8b4f03\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/kevinrg/providers/Microsoft.ContainerRegistry/registries/kevinregistry4\",\r\n \"name\": \"kevinregistry4\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"kevinregistry4-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-03T17:32:58.4030661Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"c9b0489750f64ff1aef92a3e\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/nathana-dyad/providers/Microsoft.ContainerRegistry/registries/nathanaCastor\",\r\n \"name\": \"nathanaCastor\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"nathanacastor-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-30T17:09:40.0862444Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"nathanacastorstore\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/nathana-dyad/providers/Microsoft.ContainerRegistry/registries/nathanaleda\",\r\n \"name\": \"nathanaleda\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"nathanaleda-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-30T00:24:50.2186034Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"nathanaledastore\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/ReservedRegistries/providers/Microsoft.ContainerRegistry/registries/perfregdgldVgQ\",\r\n \"name\": \"perfregdgldVgQ\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"storageaccount\": \"perfregdgldvgq\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"perfregdgldvgq-exp.azurecr.io\",\r\n \"creationDate\": \"2016-10-09T03:37:49.8430742Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"perfregdgldvgq\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/ReservedRegistries/providers/Microsoft.ContainerRegistry/registries/sivagtest1\",\r\n \"name\": \"sivagtest1\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"storageaccount\": \"ya2j3nkadrfs2tv4bdq95ay6\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"sivagtest1-exp.azurecr.io\",\r\n \"creationDate\": \"2016-10-21T00:50:00.8866035Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"ya2j3nkadrfs2tv4bdq95ay6\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/reservedregistries/providers/Microsoft.ContainerRegistry/registries/sivagtest2\",\r\n \"name\": \"sivagtest2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"storageaccount\": \"9abf2dba4f5b457b8fba1646\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"sivagtest2-exp.azurecr.io\",\r\n \"creationDate\": \"2016-10-25T06:51:02.9935447Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"9abf2dba4f5b457b8fba1646\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/ReservedRegistries/providers/Microsoft.ContainerRegistry/registries/tryacr\",\r\n \"name\": \"tryacr\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"storageaccount\": \"tryacrstorenew\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"tryacr.azurecr.io\",\r\n \"creationDate\": \"2016-10-27T19:14:08.6893909Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"tryacrstorenew\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/sajayaAdminTest/providers/Microsoft.ContainerRegistry/registries/sajayadmintestregistry\",\r\n \"name\": \"sajayadmintestregistry\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"sajayadmintestregistry-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-25T07:24:18.2633344Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"01dbc888a9184fe28491d666\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/testrg/providers/Microsoft.ContainerRegistry/registries/sivagtest12\",\r\n \"name\": \"sivagtest12\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"sivagtest12-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-09T21:13:55.2655624Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"wc8583z08x43wyxps4evmgtz\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/testrg/providers/Microsoft.ContainerRegistry/registries/testregistry\",\r\n \"name\": \"testregistry\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"testregistry-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-01T21:06:19.091022Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"testwestcentralstorage\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/testrg/providers/Microsoft.ContainerRegistry/registries/testregistry1\",\r\n \"name\": \"testregistry1\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"testregistry1-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-01T20:08:59.714696Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"testwestcentralstorage\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/testrg/providers/Microsoft.ContainerRegistry/registries/testregistryprod\",\r\n \"name\": \"testregistryprod\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"testregistryprod-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-02T07:07:25.7717768Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"100a5c18c4e44326b19caa9c\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/yuwatestreg/providers/Microsoft.ContainerRegistry/registries/yuwatest2\",\r\n \"name\": \"yuwatest2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"storageaccount\": \"f73216ebb0fe4e9eae923934\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"yuwatest2-exp.azurecr.io\",\r\n \"creationDate\": \"2016-10-07T23:12:52.9546535Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"f73216ebb0fe4e9eae923934\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/yuwatestrg/providers/Microsoft.ContainerRegistry/registries/yuwatest3\",\r\n \"name\": \"yuwatest3\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"storageaccount\": \"74737d939463408a9ebd4d7f\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"yuwatest3-exp.azurecr.io\",\r\n \"creationDate\": \"2016-10-08T00:17:24.4194081Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"74737d939463408a9ebd4d7f\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acrunittest/providers/Microsoft.ContainerRegistry/registries/testnaduggar\",\r\n \"name\": \"testnaduggar\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"Value1\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"testnaduggar-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-08T05:58:38.4203417Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"d256eab2b1fb48b3a263a4f7\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/kevinrg/providers/Microsoft.ContainerRegistry/registries/kevinregistry\",\r\n \"name\": \"kevinregistry\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"kevinregistry-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-23T00:39:33.5357482Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"bcrh19dc0h0rm60ofnosdwnf\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/kevinrg/providers/Microsoft.ContainerRegistry/registries/kevinregistry2\",\r\n \"name\": \"kevinregistry2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"test\": \"5\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"kevinregistry2-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-02T01:26:09.4028525Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"0138b0ee3a0e4de48fe6560b\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/testrg/providers/Microsoft.ContainerRegistry/registries/kiranreg\",\r\n \"name\": \"kiranreg\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"kiranreg-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-10T18:37:28.6287186Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"lozhm2bhbevvkekz0s4bo98t\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/testrg/providers/Microsoft.ContainerRegistry/registries/sivagtest876\",\r\n \"name\": \"sivagtest876\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"sivagtest876-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-11-11T17:14:19.948662Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"zjqylwq4kd2za35gzseifrlp\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/testrg/providers/Microsoft.ContainerRegistry/registries/testnewregistry\",\r\n \"name\": \"testnewregistry\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tag2\": \"Value1\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"testnewregistry-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-01T20:56:44.7534143Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"testwestcentralstorage\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/yuwatestreg/providers/Microsoft.ContainerRegistry/registries/yuwatest5\",\r\n \"name\": \"yuwatest5\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"yuwatest5-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-04T22:37:51.0439803Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"2a06r7s4dabcwp84b3lckdgw\"\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/yuwatestreg/providers/Microsoft.ContainerRegistry/registries/yuwatest6\",\r\n \"name\": \"yuwatest6\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"loginServer\": \"yuwatest6-exp.azurecr.io\",\r\n \"creationDate\": \"2016-11-04T22:38:11.2737636Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"zfhcs8m0rtaxcttmb0qzo2o9\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg2340/providers/Microsoft.ContainerRegistry/registries/acrregistry3911\",\r\n \"name\": \"acrregistry3911\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry3911.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:48:11.1108569Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage3754\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg6006/providers/Microsoft.ContainerRegistry/registries/acrregistry6626\",\r\n \"name\": \"acrregistry6626\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry6626.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:48:44.65611Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage3046\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -779,34 +767,34 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:34:29 GMT" + "Thu, 16 Mar 2017 22:48:44 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Vary": [ "Accept-Encoding" ], - "x-ms-original-request-ids": [ - "", - "", - "", - "" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14984" ], "x-ms-request-id": [ - "cf75189a-aaa8-4461-8654-ecc3cc6ec77e" + "c2c5d389-b617-4245-8d05-5cf3fd43f42c" ], "x-ms-correlation-request-id": [ - "cf75189a-aaa8-4461-8654-ecc3cc6ec77e" + "c2c5d389-b617-4245-8d05-5cf3fd43f42c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033430Z:cf75189a-aaa8-4461-8654-ecc3cc6ec77e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS2:20170316T224844Z:c2c5d389-b617-4245-8d05-5cf3fd43f42c" ] }, "StatusCode": 200 @@ -814,19 +802,19 @@ ], "Names": { "CreateResourceGroup": [ - "acr_rg2558", - "acr_rg4708" + "acr_rg2340", + "acr_rg6006" ], "CreateStorageAccount": [ - "acrstorage6769", - "acrstorage4138" + "acrstorage3754", + "acrstorage3046" ], "CreateContainerRegistry": [ - "acrregistry7989", - "acrregistry6125" + "acrregistry3911", + "acrregistry6626" ] }, "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListCredentialsTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListCredentialsTest.json new file mode 100644 index 000000000000..edbbc8e6276d --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryListCredentialsTest.json @@ -0,0 +1,573 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa6d40e9-d7b2-4f6f-b032-b22a10a2e6c9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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, 16 Mar 2017 22:49:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "059bda0b-d7ec-49a5-b6b6-0479bf1a821c" + ], + "x-ms-correlation-request-id": [ + "059bda0b-d7ec-49a5-b6b6-0479bf1a821c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224930Z:059bda0b-d7ec-49a5-b6b6-0479bf1a821c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5198?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzUxOTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ], + "x-ms-client-request-id": [ + "c74c0263-a7c0-4a74-996f-da24cae77d36" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198\",\r\n \"name\": \"acr_rg5198\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "548a819c-8c08-45c4-b1a5-82ccd44885b1" + ], + "x-ms-correlation-request-id": [ + "548a819c-8c08-45c4-b1a5-82ccd44885b1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224931Z:548a819c-8c08-45c4-b1a5-82ccd44885b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198/providers/Microsoft.Storage/storageAccounts/acrstorage9033?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlOTAzMz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "96" + ], + "x-ms-client-request-id": [ + "80343310-7b33-4911-a694-f1aa7c374af7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/19c56fa3-be92-4f73-8b0f-46c7f76dbdaf?monitor=true&api-version=2016-01-01" + ], + "Retry-After": [ + "17" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "3d3ce249-7611-4548-8bfd-eae2cedb893c" + ], + "x-ms-correlation-request-id": [ + "3d3ce249-7611-4548-8bfd-eae2cedb893c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224932Z:3d3ce249-7611-4548-8bfd-eae2cedb893c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/19c56fa3-be92-4f73-8b0f-46c7f76dbdaf?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzE5YzU2ZmEzLWJlOTItNGY3My04YjBmLTQ2YzdmNzZkYmRhZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198/providers/Microsoft.Storage/storageAccounts/acrstorage9033\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage9033\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:49:32.0674825Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage9033.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage9033.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage9033.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage9033.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:50:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a053ad1f-ad19-43fe-b663-094045ddb331" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "a053ad1f-ad19-43fe-b663-094045ddb331" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T225002Z:a053ad1f-ad19-43fe-b663-094045ddb331" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198/providers/Microsoft.Storage/storageAccounts/acrstorage9033/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlOTAzMy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "153905ae-4feb-4b35-ac55-fec628c3d62e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"dnyiClPzMsKQSbo6nfc9xPP9cfMe0Zsm6pr2kmaq9D/rlG810GN7LfvYE0drPvX8eKwiwkq4kRAgcmmz7rjsQA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"t+Zxptimlm0pKrIUW5ZnOKWWIEz3oPPC7ArjrP8cfTUB1qxCE3HtTKZmjc/ZsEdVroU8ZQoRtvIwOFpywbXYlg==\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:50:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c6f4f6f7-8ee7-4bea-8c64-c7db36714950" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "c6f4f6f7-8ee7-4bea-8c64-c7db36714950" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T225002Z:c6f4f6f7-8ee7-4bea-8c64-c7db36714950" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198/providers/Microsoft.ContainerRegistry/registries/acrregistry7866?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage9033\",\r\n \"accessKey\": \"dnyiClPzMsKQSbo6nfc9xPP9cfMe0Zsm6pr2kmaq9D/rlG810GN7LfvYE0drPvX8eKwiwkq4kRAgcmmz7rjsQA==\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "332" + ], + "x-ms-client-request-id": [ + "3c9d90a2-3361-4852-94fa-e7181340dba8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5198/providers/Microsoft.ContainerRegistry/registries/acrregistry7866\",\r\n \"name\": \"acrregistry7866\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7866.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:50:25.9915269Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage9033\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:50:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "5c0fb8bf-832a-4d5e-aeec-171f71b00322" + ], + "x-ms-correlation-request-id": [ + "5c0fb8bf-832a-4d5e-aeec-171f71b00322" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T225027Z:5c0fb8bf-832a-4d5e-aeec-171f71b00322" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198/providers/Microsoft.ContainerRegistry/registries/acrregistry7866/listCredentials?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2Ni9saXN0Q3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "690c5a35-0cfa-4457-8efd-d5c986f17c7e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"message\": \"Cannot perform credential operations for /subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5198/providers/Microsoft.ContainerRegistry/registries/acrregistry7866 as Admin user is disabled. Enable Admin user feature and try again.\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:50:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "17b9958b-2e49-4393-90c7-2f410996dfab" + ], + "x-ms-correlation-request-id": [ + "17b9958b-2e49-4393-90c7-2f410996dfab" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T225027Z:17b9958b-2e49-4393-90c7-2f410996dfab" + ] + }, + "StatusCode": 400 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198/providers/Microsoft.ContainerRegistry/registries/acrregistry7866/listCredentials?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2Ni9saXN0Q3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "43907cc0-40ba-49c9-b867-255dfd01264f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"username\": \"acrregistry7866\",\r\n \"passwords\": [\r\n {\r\n \"name\": \"password\",\r\n \"value\": \"++AS+pkNIn1v3v6crckk+rUyLwMpS95F\"\r\n },\r\n {\r\n \"name\": \"password2\",\r\n \"value\": \"3=/a=x/vd9V=nhT+J=/X/j/Mfp5dE7=f\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:50:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-request-id": [ + "46f2cd74-18f2-4181-b66e-be4280b417de" + ], + "x-ms-correlation-request-id": [ + "46f2cd74-18f2-4181-b66e-be4280b417de" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T225027Z:46f2cd74-18f2-4181-b66e-be4280b417de" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5198/providers/Microsoft.ContainerRegistry/registries/acrregistry7866?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUxOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "58" + ], + "x-ms-client-request-id": [ + "24c9f5bf-0f57-4308-ad75-aa927dbf9587" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5198/providers/Microsoft.ContainerRegistry/registries/acrregistry7866\",\r\n \"name\": \"acrregistry7866\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7866.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:50:26.8911106Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage9033\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:50:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-request-id": [ + "59c91f84-f9f1-4a81-b05d-021c0a71f302" + ], + "x-ms-correlation-request-id": [ + "59c91f84-f9f1-4a81-b05d-021c0a71f302" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T225027Z:59c91f84-f9f1-4a81-b05d-021c0a71f302" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateResourceGroup": [ + "acr_rg5198" + ], + "CreateStorageAccount": [ + "acrstorage9033" + ], + "CreateContainerRegistry": [ + "acrregistry7866" + ] + }, + "Variables": { + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialTest.json new file mode 100644 index 000000000000..a5efae50dd37 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialTest.json @@ -0,0 +1,582 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7cc8d7ef-1d10-4463-864d-861b0f443308" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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, 16 Mar 2017 22:48:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "357fc767-c0d8-4fc7-bdaa-7c6cb5f06586" + ], + "x-ms-correlation-request-id": [ + "357fc767-c0d8-4fc7-bdaa-7c6cb5f06586" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224851Z:357fc767-c0d8-4fc7-bdaa-7c6cb5f06586" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg9767?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzk3Njc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ], + "x-ms-client-request-id": [ + "6059c327-6739-4f32-b2e8-fa8abf2d0947" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767\",\r\n \"name\": \"acr_rg9767\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "173" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:48:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "32d35ed6-851b-4934-9858-160def387d76" + ], + "x-ms-correlation-request-id": [ + "32d35ed6-851b-4934-9858-160def387d76" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224851Z:32d35ed6-851b-4934-9858-160def387d76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767/providers/Microsoft.Storage/storageAccounts/acrstorage5504?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk3NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTUwND9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "96" + ], + "x-ms-client-request-id": [ + "74d7bc92-787d-4fe0-901e-aadcb30621b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:48:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/5176cb5c-109a-4baa-9fdf-8c67426a0f61?monitor=true&api-version=2016-01-01" + ], + "Retry-After": [ + "17" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "9a0592a3-0ef5-404a-befe-56157069c193" + ], + "x-ms-correlation-request-id": [ + "9a0592a3-0ef5-404a-befe-56157069c193" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224852Z:9a0592a3-0ef5-404a-befe-56157069c193" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/5176cb5c-109a-4baa-9fdf-8c67426a0f61?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzUxNzZjYjVjLTEwOWEtNGJhYS05ZmRmLThjNjc0MjZhMGY2MT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767/providers/Microsoft.Storage/storageAccounts/acrstorage5504\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage5504\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:48:52.7295809Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage5504.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage5504.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage5504.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage5504.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "a44bf636-6341-48f7-9469-8ac0bc15fb07" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "a44bf636-6341-48f7-9469-8ac0bc15fb07" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224923Z:a44bf636-6341-48f7-9469-8ac0bc15fb07" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767/providers/Microsoft.Storage/storageAccounts/acrstorage5504/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk3NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTUwNC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e4327f3-9e8f-459c-96b9-fdcfb6bb8ec3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"CcTarFkBAdmkq2hr+e5XhRnbVSbAXRJEqgqShcRIIuoVRTiwm3XQakQZO41t6ORwx1eW/GAnOhAhBwwhsL1+ZA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"kWJ+C77dxcIvrLTU34jqwmA9ikgwu089cYQ/YK9Uc7QtiOWouI61dNEVkkYebuUoSwJ6/4aqNKsbB16Jx5Fbdw==\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "764eb048-0ba4-453b-99e4-69537a258557" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "764eb048-0ba4-453b-99e4-69537a258557" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224923Z:764eb048-0ba4-453b-99e4-69537a258557" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767/providers/Microsoft.ContainerRegistry/registries/acrregistry7860?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk3NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5504\",\r\n \"accessKey\": \"CcTarFkBAdmkq2hr+e5XhRnbVSbAXRJEqgqShcRIIuoVRTiwm3XQakQZO41t6ORwx1eW/GAnOhAhBwwhsL1+ZA==\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "363" + ], + "x-ms-client-request-id": [ + "419a2c64-5f87-4bef-83de-b45bf61cd020" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg9767/providers/Microsoft.ContainerRegistry/registries/acrregistry7860\",\r\n \"name\": \"acrregistry7860\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry7860.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:49:24.046258Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5504\"\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "08e44122-b633-4a9f-b7ce-f098fd90b06b" + ], + "x-ms-correlation-request-id": [ + "08e44122-b633-4a9f-b7ce-f098fd90b06b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224925Z:08e44122-b633-4a9f-b7ce-f098fd90b06b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767/providers/Microsoft.ContainerRegistry/registries/acrregistry7860/listCredentials?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk3NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2MC9saXN0Q3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47c12f2d-2ab3-4272-b913-f79231c5c559" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"username\": \"acrregistry7860\",\r\n \"passwords\": [\r\n {\r\n \"name\": \"password\",\r\n \"value\": \"Bd+hJVF=i7dBCF12/r/p8=hRxXuUL+2R\"\r\n },\r\n {\r\n \"name\": \"password2\",\r\n \"value\": \"/L/09Og4HHkNaYQKScvKbJ8c=NPhdVCq\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "f0af3d4c-647e-4a84-ae7f-ac1a046e8e2b" + ], + "x-ms-correlation-request-id": [ + "f0af3d4c-647e-4a84-ae7f-ac1a046e8e2b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224925Z:f0af3d4c-647e-4a84-ae7f-ac1a046e8e2b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767/providers/Microsoft.ContainerRegistry/registries/acrregistry7860/regenerateCredential?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk3NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2MC9yZWdlbmVyYXRlQ3JlZGVudGlhbD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"password\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "26" + ], + "x-ms-client-request-id": [ + "15401c4f-e3cc-4c1f-a545-11d3f2f7f379" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"username\": \"acrregistry7860\",\r\n \"passwords\": [\r\n {\r\n \"name\": \"password\",\r\n \"value\": \"On=E=3/+=/G+q+b5o70/J5+S9Hmc9+WG\"\r\n },\r\n {\r\n \"name\": \"password2\",\r\n \"value\": \"/L/09Og4HHkNaYQKScvKbJ8c=NPhdVCq\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "1e66959d-6110-4476-96a6-4618437ff956" + ], + "x-ms-correlation-request-id": [ + "1e66959d-6110-4476-96a6-4618437ff956" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224926Z:1e66959d-6110-4476-96a6-4618437ff956" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg9767/providers/Microsoft.ContainerRegistry/registries/acrregistry7860/regenerateCredential?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzk3NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5Nzg2MC9yZWdlbmVyYXRlQ3JlZGVudGlhbD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"password2\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "27" + ], + "x-ms-client-request-id": [ + "40133206-7312-49b7-aaa5-67213f5ba086" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" + ] + }, + "ResponseBody": "{\r\n \"username\": \"acrregistry7860\",\r\n \"passwords\": [\r\n {\r\n \"name\": \"password\",\r\n \"value\": \"On=E=3/+=/G+q+b5o70/J5+S9Hmc9+WG\"\r\n },\r\n {\r\n \"name\": \"password2\",\r\n \"value\": \"=K+F++=W/=Yj+MoHtkix=7+e5Md3h=LW\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 22:49:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "f47fc31f-ef0b-46af-bd72-1bfb3ba4cdf2" + ], + "x-ms-correlation-request-id": [ + "f47fc31f-ef0b-46af-bd72-1bfb3ba4cdf2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170316T224926Z:f47fc31f-ef0b-46af-bd72-1bfb3ba4cdf2" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateResourceGroup": [ + "acr_rg9767" + ], + "CreateStorageAccount": [ + "acrstorage5504" + ], + "ContainerRegistryRegenerateCredentialTest": [ + "acrregistry7860" + ] + }, + "Variables": { + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialsTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialsTest.json deleted file mode 100644 index b6cb5bfbe0a9..000000000000 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryRegenerateCredentialsTest.json +++ /dev/null @@ -1,527 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0efd5d74-31e8-4758-995a-ea55161278b3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\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": [ - "Tue, 06 Dec 2016 03:32:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-request-id": [ - "d7c50e1b-d742-4523-affa-759449e43d56" - ], - "x-ms-correlation-request-id": [ - "d7c50e1b-d742-4523-affa-759449e43d56" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033239Z:d7c50e1b-d742-4523-affa-759449e43d56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg3296?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzMyOTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "x-ms-client-request-id": [ - "df344eff-cbd5-49e6-90d0-4a023cbd0722" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg3296\",\r\n \"name\": \"acr_rg3296\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "b3778f66-25b7-4618-b313-f824e5bb2c73" - ], - "x-ms-correlation-request-id": [ - "b3778f66-25b7-4618-b313-f824e5bb2c73" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033239Z:b3778f66-25b7-4618-b313-f824e5bb2c73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg3296/providers/Microsoft.Storage/storageAccounts/acrstorage8899?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzMyOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODg5OT9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "96" - ], - "x-ms-client-request-id": [ - "b3752116-9c2f-4192-815f-85c4ad2e4ecb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:40 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/180b6585-bcf9-450b-971d-8aa7584b8002?monitor=true&api-version=2016-01-01" - ], - "Retry-After": [ - "17" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "14c689f9-7722-4497-b055-06f45b044a4c" - ], - "x-ms-correlation-request-id": [ - "14c689f9-7722-4497-b055-06f45b044a4c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033240Z:14c689f9-7722-4497-b055-06f45b044a4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/180b6585-bcf9-450b-971d-8aa7584b8002?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzE4MGI2NTg1LWJjZjktNDUwYi05NzFkLThhYTc1ODRiODAwMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg3296/providers/Microsoft.Storage/storageAccounts/acrstorage8899\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage8899\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:32:40.6152367Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage8899.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage8899.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage8899.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage8899.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:33:10 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f211880e-436d-4523-811c-5753484d5187" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "f211880e-436d-4523-811c-5753484d5187" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033310Z:f211880e-436d-4523-811c-5753484d5187" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg3296/providers/Microsoft.Storage/storageAccounts/acrstorage8899/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzMyOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODg5OS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "acb62038-d116-4914-9aee-ed13afe86264" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"oFYeMKMGyEYzQYG/AjpRCZxxveTKFpTE2bbsyki3jDL3IOXMjZTLEQvUvn/NNnkQkLUvkXNtoVzR3u6ep3V8yA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"vfP++CetDaNFVwV/ZDaIupfBSNuf81RSXu3DP6xsIiRJBRrkrRc6WT3pP2ei2E/OXcg31SJQtLK5Ub/+mTxBtg==\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:33:10 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "56dbd2d1-1204-4de7-b515-fa9f5e747560" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "56dbd2d1-1204-4de7-b515-fa9f5e747560" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033310Z:56dbd2d1-1204-4de7-b515-fa9f5e747560" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg3296/providers/Microsoft.ContainerRegistry/registries/acrregistry8605?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzMyOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODYwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8899\",\r\n \"accessKey\": \"oFYeMKMGyEYzQYG/AjpRCZxxveTKFpTE2bbsyki3jDL3IOXMjZTLEQvUvn/NNnkQkLUvkXNtoVzR3u6ep3V8yA==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "324" - ], - "x-ms-client-request-id": [ - "a819f9b2-896a-427d-816d-da134a51771a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg3296/providers/Microsoft.ContainerRegistry/registries/acrregistry8605\",\r\n \"name\": \"acrregistry8605\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8605-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:33:12.6138877Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8899\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:33:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "417ab524-9e94-4ce2-9607-09d29a4677b3" - ], - "x-ms-correlation-request-id": [ - "417ab524-9e94-4ce2-9607-09d29a4677b3" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033313Z:417ab524-9e94-4ce2-9607-09d29a4677b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg3296/providers/Microsoft.ContainerRegistry/registries/acrregistry8605/getCredentials?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzMyOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODYwNS9nZXRDcmVkZW50aWFscz9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "633dde90-5963-46dd-aa5e-a79df21aeacb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"username\": \"acrregistry8605\",\r\n \"password\": \"/=l/Bj=d/O4//qB/iZx=yW+HB0BvAfVy\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:33:13 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "b627e38d-2d3a-40a4-a442-71559ed53301" - ], - "x-ms-correlation-request-id": [ - "b627e38d-2d3a-40a4-a442-71559ed53301" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033314Z:b627e38d-2d3a-40a4-a442-71559ed53301" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg3296/providers/Microsoft.ContainerRegistry/registries/acrregistry8605/regenerateCredentials?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzMyOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODYwNS9yZWdlbmVyYXRlQ3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNi0wNi0yNy1wcmV2aWV3", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6eb8795-cfac-4929-8f1c-4e69fce87955" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"username\": \"acrregistry8605\",\r\n \"password\": \"P/yr/L0jvZ3lZxMt/qTyJGgaBVn48KHX\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:33:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-request-id": [ - "633e50d5-9f8e-45e0-9bbb-7df814c0a7d5" - ], - "x-ms-correlation-request-id": [ - "633e50d5-9f8e-45e0-9bbb-7df814c0a7d5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033314Z:633e50d5-9f8e-45e0-9bbb-7df814c0a7d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "CreateResourceGroup": [ - "acr_rg3296" - ], - "CreateStorageAccount": [ - "acrstorage8899" - ], - "ContainerRegistryRegenerateCredentialsTest": [ - "acrregistry8605" - ] - }, - "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" - } -} \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateTest.json index cd2b97d76276..2633cb759a16 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateTest.json +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6e00d85-e2c7-4208-b863-3f3613afc065" + "867e8947-6783-43b8-9483-3e526f4be40b" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:36:02 GMT" + "Thu, 16 Mar 2017 22:52:31 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14986" ], "x-ms-request-id": [ - "d95acf7a-5155-4560-ba84-869416ac075f" + "94e45637-2897-4c96-903a-c1cbd1fc483d" ], "x-ms-correlation-request-id": [ - "d95acf7a-5155-4560-ba84-869416ac075f" + "94e45637-2897-4c96-903a-c1cbd1fc483d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033602Z:d95acf7a-5155-4560-ba84-869416ac075f" + "CENTRALUS:20170316T225232Z:94e45637-2897-4c96-903a-c1cbd1fc483d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,8 +56,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzYwMDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzUwNDM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -68,7 +68,7 @@ "28" ], "x-ms-client-request-id": [ - "80550743-1da7-4921-8132-7f12e8fe4dbb" + "245a2b4c-f0aa-42f9-b9ca-395776af1aac" ], "accept-language": [ "en-US" @@ -78,7 +78,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000\",\r\n \"name\": \"acr_rg6000\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043\",\r\n \"name\": \"acr_rg5043\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "173" @@ -93,22 +93,22 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:36:02 GMT" + "Thu, 16 Mar 2017 22:52:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-request-id": [ - "934a9bb6-1f4f-4aee-ba94-5271019cd1e2" + "9773bfae-7ff8-498f-b4c8-76791b5aa3a3" ], "x-ms-correlation-request-id": [ - "934a9bb6-1f4f-4aee-ba94-5271019cd1e2" + "9773bfae-7ff8-498f-b4c8-76791b5aa3a3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033602Z:934a9bb6-1f4f-4aee-ba94-5271019cd1e2" + "CENTRALUS:20170316T225233Z:9773bfae-7ff8-498f-b4c8-76791b5aa3a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.Storage/storageAccounts/acrstorage5445?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTQ0NT9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.Storage/storageAccounts/acrstorage4157?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDE1Nz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -129,7 +129,7 @@ "96" ], "x-ms-client-request-id": [ - "f0d2c2c6-b9f1-4a37-aff7-1c7ad07be743" + "8b95ddc1-a5d0-4b66-ba5c-773cbd7f293d" ], "accept-language": [ "en-US" @@ -151,13 +151,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:36:03 GMT" + "Thu, 16 Mar 2017 22:52:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/87103204-ca6a-4dde-a5bb-c970cc22d6b9?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/79595b7e-15a5-4551-bbe6-eb6bf2aefe74?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -167,16 +167,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1193" ], "x-ms-request-id": [ - "c6d61268-9eab-4632-a544-610020863bd2" + "c12f0539-9f8a-4471-a9a2-8b72fde12dbb" ], "x-ms-correlation-request-id": [ - "c6d61268-9eab-4632-a544-610020863bd2" + "c12f0539-9f8a-4471-a9a2-8b72fde12dbb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033603Z:c6d61268-9eab-4632-a544-610020863bd2" + "CENTRALUS:20170316T225234Z:c12f0539-9f8a-4471-a9a2-8b72fde12dbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/87103204-ca6a-4dde-a5bb-c970cc22d6b9?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzg3MTAzMjA0LWNhNmEtNGRkZS1hNWJiLWM5NzBjYzIyZDZiOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/79595b7e-15a5-4551-bbe6-eb6bf2aefe74?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzc5NTk1YjdlLTE1YTUtNDU1MS1iYmU2LWViNmJmMmFlZmU3ND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,7 +195,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.Storage/storageAccounts/acrstorage5445\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage5445\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:36:03.4180873Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage5445.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage5445.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage5445.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage5445.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.Storage/storageAccounts/acrstorage4157\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage4157\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:52:34.5321114Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage4157.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage4157.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage4157.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage4157.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -207,7 +207,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:36:33 GMT" + "Thu, 16 Mar 2017 22:53:04 GMT" ], "Pragma": [ "no-cache" @@ -223,16 +223,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6879a83c-b4bc-47da-8562-83f39e5aaa28" + "6e3a2784-3bee-47b5-9dec-bf84aad3bdd2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14985" ], "x-ms-correlation-request-id": [ - "6879a83c-b4bc-47da-8562-83f39e5aaa28" + "6e3a2784-3bee-47b5-9dec-bf84aad3bdd2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033633Z:6879a83c-b4bc-47da-8562-83f39e5aaa28" + "CENTRALUS:20170316T225304Z:6e3a2784-3bee-47b5-9dec-bf84aad3bdd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -241,13 +241,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.Storage/storageAccounts/acrstorage5445/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNTQ0NS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.Storage/storageAccounts/acrstorage4157/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNDE1Ny9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82b2823a-f171-4a34-a79a-0680d343ecf0" + "67b80cc7-7078-4eec-94fa-76b46fa1a0da" ], "accept-language": [ "en-US" @@ -257,7 +257,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"Wokwj1C0Dzbdlisi3Ekz3qOBcUzaMT1ZRXDhsixv/gUqexj1KSkEt2B+E07L0n6jXO9nJXupzEAlxuEOCaRDIA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"MMcQIFXJBWeSaEylJp6CzOZWRcKKjyJy046nG++xw/xRk/5aQfgl7agpx3NzUlCL1TOVagUzsazrREfmMOpmTA==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"9bhNt87DdLdgaZ7096JMmv5Yi2TaJsniovbvQ+v83dnS5/F9SXuTrSfzpn4j1w0TFQF/rC2m0tL00hM+wQYGwA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"kztjPf+VNTsW0UAIX2VE1tbyCs/R+/38T8iWD0btzxsrQZWq+vswi9nA06ySz6t33VTPhCl3lROOXOZWBQtnHg==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -269,7 +269,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:36:33 GMT" + "Thu, 16 Mar 2017 22:53:04 GMT" ], "Pragma": [ "no-cache" @@ -285,16 +285,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4d402848-a685-43e8-bd7f-a5a837b63950" + "f210b42f-2903-48b9-90c4-e3aa646cb89f" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1192" ], "x-ms-correlation-request-id": [ - "4d402848-a685-43e8-bd7f-a5a837b63950" + "f210b42f-2903-48b9-90c4-e3aa646cb89f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033633Z:4d402848-a685-43e8-bd7f-a5a837b63950" + "CENTRALUS:20170316T225304Z:f210b42f-2903-48b9-90c4-e3aa646cb89f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,8 +303,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.Storage/storageAccounts/acrstorage7022?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNzAyMj9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.Storage/storageAccounts/acrstorage8166?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODE2Nj9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -315,7 +315,7 @@ "96" ], "x-ms-client-request-id": [ - "8ba88d22-497f-4de0-9bfb-a5b93f6b5be5" + "c4a342d2-1245-4b7d-99c0-86e969964d7b" ], "accept-language": [ "en-US" @@ -337,13 +337,13 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:36:33 GMT" + "Thu, 16 Mar 2017 22:53:05 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/26393c6b-cc13-4bc2-84fe-44055489d8f3?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/af8a6249-23dc-4aa8-8ed6-ad3471047460?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -353,16 +353,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1191" ], "x-ms-request-id": [ - "9aab5759-5ee5-47fc-b2c1-e489baab45d5" + "6b4fb9d2-eed3-4732-9be5-feca59f23a10" ], "x-ms-correlation-request-id": [ - "9aab5759-5ee5-47fc-b2c1-e489baab45d5" + "6b4fb9d2-eed3-4732-9be5-feca59f23a10" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033634Z:9aab5759-5ee5-47fc-b2c1-e489baab45d5" + "CENTRALUS:20170316T225305Z:6b4fb9d2-eed3-4732-9be5-feca59f23a10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -371,8 +371,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/26393c6b-cc13-4bc2-84fe-44055489d8f3?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzI2MzkzYzZiLWNjMTMtNGJjMi04NGZlLTQ0MDU1NDg5ZDhmMz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/providers/Microsoft.Storage/operations/af8a6249-23dc-4aa8-8ed6-ad3471047460?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2FmOGE2MjQ5LTIzZGMtNGFhOC04ZWQ2LWFkMzQ3MTA0NzQ2MD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -381,7 +381,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.Storage/storageAccounts/acrstorage7022\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage7022\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:36:34.1814082Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage7022.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage7022.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage7022.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage7022.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.Storage/storageAccounts/acrstorage8166\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage8166\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-16T22:53:05.7132655Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage8166.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage8166.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage8166.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage8166.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -393,7 +393,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:03 GMT" + "Thu, 16 Mar 2017 22:53:34 GMT" ], "Pragma": [ "no-cache" @@ -409,16 +409,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "70d11717-8759-4f02-a1f1-afde0505518a" + "a229b466-ed56-4798-bec2-27b067794dc8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14984" ], "x-ms-correlation-request-id": [ - "70d11717-8759-4f02-a1f1-afde0505518a" + "a229b466-ed56-4798-bec2-27b067794dc8" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033704Z:70d11717-8759-4f02-a1f1-afde0505518a" + "CENTRALUS:20170316T225335Z:a229b466-ed56-4798-bec2-27b067794dc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,13 +427,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.Storage/storageAccounts/acrstorage7022/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNzAyMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.Storage/storageAccounts/acrstorage8166/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlODE2Ni9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e919fe0-79c2-4961-ae5f-e734777db737" + "21a832de-e2ec-4977-8983-ed08321525dc" ], "accept-language": [ "en-US" @@ -443,7 +443,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"rKJA+gDKgZOrGV7hcs1qhCUzsPbSWhI3DbTS9biK/6W0tq90kLqs68n8vDYkJu/PJv1snkTtRcnTmQmyqcUs1A==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"XRtz9FN/AVvGcMTC1xHTjXizDmO6l91ZVL03XRuJXxV1+RC5P8xmml0h28bmWoszbB6J+0mzyPshZ1p/Ek2VBA==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"dFTFkScyPclsrr6A38Jh63b5Xp+HvbYUARSCIyeicR21wb102wAYiB56SdHuOdlu/LtHBKy7ExuoWBtCH4RLaQ==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"fprEc7QQilhgljeRzpeIwGq1Hk2RT7/JIckos588ja8WiSyNwVoHmJ+IqkxdHv1xB8wps/R1PsqC59hpA3PdmA==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -455,7 +455,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:03 GMT" + "Thu, 16 Mar 2017 22:53:35 GMT" ], "Pragma": [ "no-cache" @@ -471,16 +471,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d6c78846-dd90-4feb-8650-7ce6a7aaa8ed" + "6d5da9e3-430d-48ae-9ac1-f1f7513b8fa4" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1190" ], "x-ms-correlation-request-id": [ - "d6c78846-dd90-4feb-8650-7ce6a7aaa8ed" + "6d5da9e3-430d-48ae-9ac1-f1f7513b8fa4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033704Z:d6c78846-dd90-4feb-8650-7ce6a7aaa8ed" + "CENTRALUS:20170316T225335Z:6d5da9e3-430d-48ae-9ac1-f1f7513b8fa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,29 +489,29 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODEwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTA4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5445\",\r\n \"accessKey\": \"Wokwj1C0Dzbdlisi3Ekz3qOBcUzaMT1ZRXDhsixv/gUqexj1KSkEt2B+E07L0n6jXO9nJXupzEAlxuEOCaRDIA==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4157\",\r\n \"accessKey\": \"9bhNt87DdLdgaZ7096JMmv5Yi2TaJsniovbvQ+v83dnS5/F9SXuTrSfzpn4j1w0TFQF/rC2m0tL00hM+wQYGwA==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "332" ], "x-ms-client-request-id": [ - "1dba6fb7-ed72-402c-ab09-562f855dc0fc" + "194e6fd4-b8dc-4e4c-a902-10b137e0c716" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100\",\r\n \"name\": \"acrregistry8100\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8100-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:06.1928615Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5445\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087\",\r\n \"name\": \"acrregistry1087\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1087.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:53:38.2330036Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4157\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -523,7 +523,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:06 GMT" + "Thu, 16 Mar 2017 22:53:38 GMT" ], "Pragma": [ "no-cache" @@ -532,38 +532,32 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1189" ], "x-ms-request-id": [ - "b92d5105-5a49-4564-9829-b138f6d29c54" + "43c40b84-0778-4aac-a4f8-2fbc11366414" ], "x-ms-correlation-request-id": [ - "b92d5105-5a49-4564-9829-b138f6d29c54" + "43c40b84-0778-4aac-a4f8-2fbc11366414" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033707Z:b92d5105-5a49-4564-9829-b138f6d29c54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225339Z:43c40b84-0778-4aac-a4f8-2fbc11366414" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODEwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTA4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true\r\n }\r\n}", "RequestHeaders": { @@ -574,17 +568,17 @@ "58" ], "x-ms-client-request-id": [ - "37161ead-e576-4983-a55e-7b0b405574f0" + "4319fce5-2e9d-4441-bc22-39871997580e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100\",\r\n \"name\": \"acrregistry8100\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8100-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:06.8422464Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5445\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087\",\r\n \"name\": \"acrregistry1087\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1087.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:53:39.6364043Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4157\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -596,7 +590,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:06 GMT" + "Thu, 16 Mar 2017 22:53:39 GMT" ], "Pragma": [ "no-cache" @@ -605,38 +599,32 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1188" ], "x-ms-request-id": [ - "7ce2c74d-fb77-4afe-9926-76d519410250" + "d63229d2-e79a-45fb-945c-d6ef160d4cf0" ], "x-ms-correlation-request-id": [ - "7ce2c74d-fb77-4afe-9926-76d519410250" + "d63229d2-e79a-45fb-945c-d6ef160d4cf0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033707Z:7ce2c74d-fb77-4afe-9926-76d519410250" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225339Z:d63229d2-e79a-45fb-945c-d6ef160d4cf0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODEwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTA4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n }\r\n}", "RequestHeaders": { @@ -647,17 +635,17 @@ "90" ], "x-ms-client-request-id": [ - "aca61a99-5be6-42f3-8172-8812be2f4dad" + "1fb96481-4c54-4725-b4ba-909fa6e374df" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100\",\r\n \"name\": \"acrregistry8100\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8100-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:07.2855916Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5445\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087\",\r\n \"name\": \"acrregistry1087\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1087.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:53:40.3335375Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4157\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -669,7 +657,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:08 GMT" + "Thu, 16 Mar 2017 22:53:39 GMT" ], "Pragma": [ "no-cache" @@ -678,40 +666,34 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1187" ], "x-ms-request-id": [ - "9259319e-3b4f-4a6b-a60e-774e728d3a0d" + "28e91691-3728-4524-8d7e-cd5b005e0641" ], "x-ms-correlation-request-id": [ - "9259319e-3b4f-4a6b-a60e-774e728d3a0d" + "28e91691-3728-4524-8d7e-cd5b005e0641" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033708Z:9259319e-3b4f-4a6b-a60e-774e728d3a0d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225340Z:28e91691-3728-4524-8d7e-cd5b005e0641" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODEwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTA4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage7022\",\r\n \"accessKey\": \"rKJA+gDKgZOrGV7hcs1qhCUzsPbSWhI3DbTS9biK/6W0tq90kLqs68n8vDYkJu/PJv1snkTtRcnTmQmyqcUs1A==\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8166\",\r\n \"accessKey\": \"dFTFkScyPclsrr6A38Jh63b5Xp+HvbYUARSCIyeicR21wb102wAYiB56SdHuOdlu/LtHBKy7ExuoWBtCH4RLaQ==\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -720,17 +702,17 @@ "204" ], "x-ms-client-request-id": [ - "c29953c6-1129-4390-a960-da93648223d0" + "672efab8-04f4-4193-885c-a4dffb6ec6ac" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100\",\r\n \"name\": \"acrregistry8100\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8100-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:08.1842306Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage7022\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087\",\r\n \"name\": \"acrregistry1087\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1087.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:53:40.7318181Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8166\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -742,7 +724,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:09 GMT" + "Thu, 16 Mar 2017 22:53:40 GMT" ], "Pragma": [ "no-cache" @@ -751,53 +733,47 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1186" ], "x-ms-request-id": [ - "8cd59b8b-a1b1-4159-a8e1-41a102534ad6" + "e1897ab9-c32c-4276-b4d5-72158e174d8b" ], "x-ms-correlation-request-id": [ - "8cd59b8b-a1b1-4159-a8e1-41a102534ad6" + "e1897ab9-c32c-4276-b4d5-72158e174d8b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033710Z:8cd59b8b-a1b1-4159-a8e1-41a102534ad6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225341Z:e1897ab9-c32c-4276-b4d5-72158e174d8b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODEwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTA4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d3c9657-5c16-4cdd-a000-ccad19f149b3" + "7c0393d3-3fce-4ce8-8527-6cb3c457d855" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100\",\r\n \"name\": \"acrregistry8100\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8100-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:07.2855916Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5445\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087\",\r\n \"name\": \"acrregistry1087\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1087.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:53:40.3335375Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4157\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -809,7 +785,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:07 GMT" + "Thu, 16 Mar 2017 22:53:39 GMT" ], "Pragma": [ "no-cache" @@ -818,53 +794,47 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14983" ], "x-ms-request-id": [ - "1edeac8a-2cf2-4d8b-969e-42fb84a5c428" + "c1572aac-bed8-424a-9132-eaa0b46c81f9" ], "x-ms-correlation-request-id": [ - "1edeac8a-2cf2-4d8b-969e-42fb84a5c428" + "c1572aac-bed8-424a-9132-eaa0b46c81f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033708Z:1edeac8a-2cf2-4d8b-969e-42fb84a5c428" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225340Z:c1572aac-bed8-424a-9132-eaa0b46c81f9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODEwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTA4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f333765-bf6d-4a6b-8450-bb74ca3e0cd3" + "ff52fe0d-8b1a-4760-b824-536cc41c73cf" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100\",\r\n \"name\": \"acrregistry8100\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8100-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:08.1842306Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage5445\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087\",\r\n \"name\": \"acrregistry1087\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1087.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:53:40.7318181Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage4157\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -876,7 +846,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:08 GMT" + "Thu, 16 Mar 2017 22:53:40 GMT" ], "Pragma": [ "no-cache" @@ -885,53 +855,47 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14982" ], "x-ms-request-id": [ - "c8180fdc-4a43-475b-b348-c88e0458a94a" + "badb73fe-7184-4608-8086-805dffb5e9d6" ], "x-ms-correlation-request-id": [ - "c8180fdc-4a43-475b-b348-c88e0458a94a" + "badb73fe-7184-4608-8086-805dffb5e9d6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033709Z:c8180fdc-4a43-475b-b348-c88e0458a94a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225340Z:badb73fe-7184-4608-8086-805dffb5e9d6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5ODEwMD9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", + "RequestUri": "/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourceGroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2ViMzFkOGQtMjg3OS00NzA2LTg5YjQtNGRjNDA0NzcyNmM2L3Jlc291cmNlR3JvdXBzL2Fjcl9yZzUwNDMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTA4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "900c2165-749e-4f46-bdde-71f76e2617dd" + "47c4b517-a846-4b77-a52a-23ada037e93b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" + "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.2.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg6000/providers/Microsoft.ContainerRegistry/registries/acrregistry8100\",\r\n \"name\": \"acrregistry8100\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry8100-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:37:10.082581Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage7022\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\"\r\n },\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/3eb31d8d-2879-4706-89b4-4dc4047726c6/resourcegroups/acr_rg5043/providers/Microsoft.ContainerRegistry/registries/acrregistry1087\",\r\n \"name\": \"acrregistry1087\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1087.azurecr.io\",\r\n \"creationDate\": \"2017-03-16T22:53:41.6154453Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage8166\"\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -943,7 +907,7 @@ "no-cache" ], "Date": [ - "Tue, 06 Dec 2016 03:37:09 GMT" + "Thu, 16 Mar 2017 22:53:40 GMT" ], "Pragma": [ "no-cache" @@ -952,31 +916,25 @@ "chunked" ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-HTTPAPI/2.0" ], "Vary": [ "Accept-Encoding" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14981" ], "x-ms-request-id": [ - "adcfd1ad-a4fa-4085-ad4f-78c4f9b53889" + "e2be2807-a8bb-4b10-9689-6798e3de57db" ], "x-ms-correlation-request-id": [ - "adcfd1ad-a4fa-4085-ad4f-78c4f9b53889" + "e2be2807-a8bb-4b10-9689-6798e3de57db" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161206T033710Z:adcfd1ad-a4fa-4085-ad4f-78c4f9b53889" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "CENTRALUS:20170316T225341Z:e2be2807-a8bb-4b10-9689-6798e3de57db" ] }, "StatusCode": 200 @@ -984,17 +942,17 @@ ], "Names": { "CreateResourceGroup": [ - "acr_rg6000" + "acr_rg5043" ], "CreateStorageAccount": [ - "acrstorage5445", - "acrstorage7022" + "acrstorage4157", + "acrstorage8166" ], "CreateContainerRegistry": [ - "acrregistry8100" + "acrregistry1087" ] }, "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" + "SubscriptionId": "3eb31d8d-2879-4706-89b4-4dc4047726c6" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateWithCreateTest.json b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateWithCreateTest.json deleted file mode 100644 index 28a3e9b66d07..000000000000 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/SessionRecords/ContainerRegistry.Tests.ContainerRegistryTests/ContainerRegistryUpdateWithCreateTest.json +++ /dev/null @@ -1,1183 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2aac2611-dc10-43b2-9d13-518b54a28153" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\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": [ - "Tue, 06 Dec 2016 03:31:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" - ], - "x-ms-request-id": [ - "41e688a9-29b4-4225-a5db-72442c92bdae" - ], - "x-ms-correlation-request-id": [ - "41e688a9-29b4-4225-a5db-72442c92bdae" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033122Z:41e688a9-29b4-4225-a5db-72442c92bdae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVyUmVnaXN0cnk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9d984cd6-ed6f-45af-bbe4-9ff2413af7cc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorization\": {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"swagger\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\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": [ - "Tue, 06 Dec 2016 03:32:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" - ], - "x-ms-request-id": [ - "0c7b308e-7e64-47ba-9d5f-c071c4f34422" - ], - "x-ms-correlation-request-id": [ - "0c7b308e-7e64-47ba-9d5f-c071c4f34422" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033230Z:0c7b308e-7e64-47ba-9d5f-c071c4f34422" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlZ3JvdXBzL2Fjcl9yZzIzNTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], - "x-ms-client-request-id": [ - "36573522-6ab1-42b0-82f3-592037206de4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353\",\r\n \"name\": \"acr_rg2353\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:31:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" - ], - "x-ms-request-id": [ - "ebafcb2c-c176-4dc7-b9ae-c24dddd2d509" - ], - "x-ms-correlation-request-id": [ - "ebafcb2c-c176-4dc7-b9ae-c24dddd2d509" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033122Z:ebafcb2c-c176-4dc7-b9ae-c24dddd2d509" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.Storage/storageAccounts/acrstorage6138?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjEzOD9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "96" - ], - "x-ms-client-request-id": [ - "c77f7ff2-a010-43b2-9450-da705bf00d50" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:31:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/46235b35-8b66-4e2e-b1a7-b18b0a818368?monitor=true&api-version=2016-01-01" - ], - "Retry-After": [ - "17" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" - ], - "x-ms-request-id": [ - "92dd6404-0872-4505-be80-e53f3a405bf0" - ], - "x-ms-correlation-request-id": [ - "92dd6404-0872-4505-be80-e53f3a405bf0" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033123Z:92dd6404-0872-4505-be80-e53f3a405bf0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/46235b35-8b66-4e2e-b1a7-b18b0a818368?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQ2MjM1YjM1LThiNjYtNGUyZS1iMWE3LWIxOGIwYTgxODM2OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.Storage/storageAccounts/acrstorage6138\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage6138\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:31:23.3150138Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage6138.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage6138.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage6138.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage6138.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:31:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "37d1d21e-3575-48c0-9c95-cb6490561d2d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" - ], - "x-ms-correlation-request-id": [ - "37d1d21e-3575-48c0-9c95-cb6490561d2d" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033153Z:37d1d21e-3575-48c0-9c95-cb6490561d2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.Storage/storageAccounts/acrstorage6138/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjEzOC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7e624321-cdc4-43d8-bc44-49c8a7786f8f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"/IGp8GBGaZ+77lgUmqph4SJJdrT0Bg3R1wMT6dC0T8Dm+Dnjg3uDW309pVIQSJMZw3aL8S2NovGUAkiY0iClUA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"no3U/PgRqgL8MIysB8WGRRYuU8m/dW4PpguqXMy/CSrJ546RwpuKDYaBmE5wTQ5VyXE75ee0vSmd7jfi1xnzXw==\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:31:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "b0a0423f-a821-492d-b720-99b7045feac7" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" - ], - "x-ms-correlation-request-id": [ - "b0a0423f-a821-492d-b720-99b7045feac7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033153Z:b0a0423f-a821-492d-b720-99b7045feac7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.Storage/storageAccounts/acrstorage6419?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjQxOT9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "96" - ], - "x-ms-client-request-id": [ - "623f9443-cf8f-4948-9b26-66fca66a5179" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:31:53 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/8f8f5599-a6ba-4765-b637-ef3c2f2004ec?monitor=true&api-version=2016-01-01" - ], - "Retry-After": [ - "17" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" - ], - "x-ms-request-id": [ - "5477b33f-3bac-431c-87cf-fce9a40641c7" - ], - "x-ms-correlation-request-id": [ - "5477b33f-3bac-431c-87cf-fce9a40641c7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033154Z:5477b33f-3bac-431c-87cf-fce9a40641c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/providers/Microsoft.Storage/operations/8f8f5599-a6ba-4765-b637-ef3c2f2004ec?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzhmOGY1NTk5LWE2YmEtNDc2NS1iNjM3LWVmM2MyZjIwMDRlYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.Storage/storageAccounts/acrstorage6419\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"name\": \"acrstorage6419\",\r\n \"properties\": {\r\n \"creationTime\": \"2016-12-06T03:31:54.3552836Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://acrstorage6419.blob.core.windows.net/\",\r\n \"file\": \"https://acrstorage6419.file.core.windows.net/\",\r\n \"queue\": \"https://acrstorage6419.queue.core.windows.net/\",\r\n \"table\": \"https://acrstorage6419.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusOfPrimary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "9a364be6-9f47-430b-977c-bdeef6fd9dee" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" - ], - "x-ms-correlation-request-id": [ - "9a364be6-9f47-430b-977c-bdeef6fd9dee" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033224Z:9a364be6-9f47-430b-977c-bdeef6fd9dee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.Storage/storageAccounts/acrstorage6419/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9hY3JzdG9yYWdlNjQxOS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTAxLTAx", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "03af7e60-8dc0-4120-8123-b00fa07b7eae" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"Fp0UlFefutFC57Zh0uS2ubvDXrVbxwTVm2S+iwawqa8oqmoGbCKa+zZ4CWgtCRyk2HTUGuAwYLtpKX3oAwP0Iw==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"ePyhKlX+vM2WvLku4pZQYwtX8JPNYc7bcevlSjeaTzaZ/6WSbVz0XuMIts7jZtzVG7aQmm+YXAeRGaFTKxTEwg==\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c428d746-410a-4611-bd5a-de1464e8e067" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" - ], - "x-ms-correlation-request-id": [ - "c428d746-410a-4611-bd5a-de1464e8e067" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033224Z:c428d746-410a-4611-bd5a-de1464e8e067" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\",\r\n \"accessKey\": \"/IGp8GBGaZ+77lgUmqph4SJJdrT0Bg3R1wMT6dC0T8Dm+Dnjg3uDW309pVIQSJMZw3aL8S2NovGUAkiY0iClUA==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "293" - ], - "x-ms-client-request-id": [ - "934e4f52-79e3-4610-95ae-ef53585a850b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:27.1010595Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:27 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" - ], - "x-ms-request-id": [ - "bc34707e-a7cb-4189-baf4-c634e4380b5b" - ], - "x-ms-correlation-request-id": [ - "bc34707e-a7cb-4189-baf4-c634e4380b5b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033228Z:bc34707e-a7cb-4189-baf4-c634e4380b5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\",\r\n \"accessKey\": \"/IGp8GBGaZ+77lgUmqph4SJJdrT0Bg3R1wMT6dC0T8Dm+Dnjg3uDW309pVIQSJMZw3aL8S2NovGUAkiY0iClUA==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "324" - ], - "x-ms-client-request-id": [ - "beed6f75-27e5-4388-b008-355c7f4c3569" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:27.9774909Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:27 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" - ], - "x-ms-request-id": [ - "316b4cae-15e0-4161-a7d4-c76a1cd4362e" - ], - "x-ms-correlation-request-id": [ - "316b4cae-15e0-4161-a7d4-c76a1cd4362e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033228Z:316b4cae-15e0-4161-a7d4-c76a1cd4362e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\",\r\n \"accessKey\": \"/IGp8GBGaZ+77lgUmqph4SJJdrT0Bg3R1wMT6dC0T8Dm+Dnjg3uDW309pVIQSJMZw3aL8S2NovGUAkiY0iClUA==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "347" - ], - "x-ms-client-request-id": [ - "f1777dfe-0067-4188-9bc6-dee82e407e3c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:28.4803301Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:28 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" - ], - "x-ms-request-id": [ - "77caf0ca-61c9-46f6-834b-68e4e946a6aa" - ], - "x-ms-correlation-request-id": [ - "77caf0ca-61c9-46f6-834b-68e4e946a6aa" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033229Z:77caf0ca-61c9-46f6-834b-68e4e946a6aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6419\",\r\n \"accessKey\": \"Fp0UlFefutFC57Zh0uS2ubvDXrVbxwTVm2S+iwawqa8oqmoGbCKa+zZ4CWgtCRyk2HTUGuAwYLtpKX3oAwP0Iw==\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "347" - ], - "x-ms-client-request-id": [ - "7c705bd5-bd86-40e3-b679-f28d08f32e83" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:29.0147109Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6419\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" - ], - "x-ms-request-id": [ - "f8ea302a-dc01-4a4f-83de-d7c3e0220875" - ], - "x-ms-correlation-request-id": [ - "f8ea302a-dc01-4a4f-83de-d7c3e0220875" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033230Z:f8ea302a-dc01-4a4f-83de-d7c3e0220875" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6419\",\r\n \"accessKey\": \"Fp0UlFefutFC57Zh0uS2ubvDXrVbxwTVm2S+iwawqa8oqmoGbCKa+zZ4CWgtCRyk2HTUGuAwYLtpKX3oAwP0Iw==\"\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "347" - ], - "x-ms-client-request-id": [ - "50c3b008-d69a-4487-979d-fe083c728d4b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidResourceLocation\",\r\n \"message\": \"The resource 'acrregistry1001' already exists in location 'westus' in resource group 'acr_rg2353'. A resource with the same name cannot be created in location 'eastus'. Please select a new resource name.\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "260" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "50658b55-3f97-460d-bd50-954cd4d37822" - ], - "x-ms-correlation-request-id": [ - "50658b55-3f97-460d-bd50-954cd4d37822" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033230Z:50658b55-3f97-460d-bd50-954cd4d37822" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 409 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a0c7aaa8-7361-49ba-9099-f086bbac5da3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:27.9774909Z\",\r\n \"adminUserEnabled\": false,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:27 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" - ], - "x-ms-request-id": [ - "ef6386a8-f6fa-479a-9ff2-5217050a0c72" - ], - "x-ms-correlation-request-id": [ - "ef6386a8-f6fa-479a-9ff2-5217050a0c72" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033228Z:ef6386a8-f6fa-479a-9ff2-5217050a0c72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b3b55e98-e316-44bb-998b-05fc04ee04e3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:28.4803301Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:28 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" - ], - "x-ms-request-id": [ - "5cc34b64-462e-4cf5-8ad9-ff2c89ea4b03" - ], - "x-ms-correlation-request-id": [ - "5cc34b64-462e-4cf5-8ad9-ff2c89ea4b03" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033228Z:5cc34b64-462e-4cf5-8ad9-ff2c89ea4b03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "748fea59-f6d2-4787-b9bc-e57c7e93704f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:29.0147109Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6138\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:28 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" - ], - "x-ms-request-id": [ - "95ad94ef-851d-47cf-ac76-2f43465b972a" - ], - "x-ms-correlation-request-id": [ - "95ad94ef-851d-47cf-ac76-2f43465b972a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033229Z:95ad94ef-851d-47cf-ac76-2f43465b972a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourceGroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001?api-version=2016-06-27-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODRjNTU5YzYtMzBhMC00MTdjLWJhMDYtOGEyMjUzYjM4OGMzL3Jlc291cmNlR3JvdXBzL2Fjcl9yZzIzNTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJSZWdpc3RyeS9yZWdpc3RyaWVzL2FjcnJlZ2lzdHJ5MTAwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTI3LXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8dfc9ab7-fb3b-47df-9ab3-f48e6512e882" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ContainerRegistry.ContainerRegistryManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ContainerRegistry/registries\",\r\n \"id\": \"/subscriptions/84c559c6-30a0-417c-ba06-8a2253b388c3/resourcegroups/acr_rg2353/providers/Microsoft.ContainerRegistry/registries/acrregistry1001\",\r\n \"name\": \"acrregistry1001\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"loginServer\": \"acrregistry1001-microsoft.azurecr.io\",\r\n \"creationDate\": \"2016-12-06T03:32:30.0134203Z\",\r\n \"adminUserEnabled\": true,\r\n \"storageAccount\": {\r\n \"name\": \"acrstorage6419\"\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 06 Dec 2016 03:32:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" - ], - "x-ms-request-id": [ - "99de7365-0a0b-4ca1-894f-c9665701f00e" - ], - "x-ms-correlation-request-id": [ - "99de7365-0a0b-4ca1-894f-c9665701f00e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161206T033230Z:99de7365-0a0b-4ca1-894f-c9665701f00e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - } - ], - "Names": { - "CreateResourceGroup": [ - "acr_rg2353" - ], - "CreateStorageAccount": [ - "acrstorage6138", - "acrstorage6419" - ], - "CreateContainerRegistry": [ - "acrregistry1001" - ] - }, - "Variables": { - "SubscriptionId": "84c559c6-30a0-417c-ba06-8a2253b388c3" - } -} \ No newline at end of file diff --git a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Tests/ContainerRegistryTests.cs b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Tests/ContainerRegistryTests.cs index 0d515cf10aec..0a5361652236 100644 --- a/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Tests/ContainerRegistryTests.cs +++ b/src/ResourceManagement/ContainerRegistry/ContainerRegistry.Tests/Tests/ContainerRegistryTests.cs @@ -41,13 +41,12 @@ public void ContainerRegistryCheckNameTest() Assert.Null(checkNameRequest.Reason); Assert.Null(checkNameRequest.Message); - // Check invalid name - registryName = "CAPS"; + // Check disallowed name + registryName = "Microsoft"; checkNameRequest = registryClient.Registries.CheckNameAvailability(registryName); Assert.False(checkNameRequest.NameAvailable); Assert.Equal("Invalid", checkNameRequest.Reason); - Assert.Equal("Registry names may contain alpha numeric characters only and must be between 5 and 50 characters", - checkNameRequest.Message); + Assert.Equal("The specified registry name is disallowed", checkNameRequest.Message); // Check name of container registry that already exists registryName = ContainerRegistryTestUtilities.CreateContainerRegistry(registryClient, resourceGroup, storageName, storageKey); @@ -76,16 +75,20 @@ public void ContainerRegistryCreateTest() // Create container registry string registryName = TestUtilities.GenerateName("acrregistry"); - Registry registryProperties = ContainerRegistryTestUtilities.GetDefaultRegistryProperties(resourceGroup, storageName, storageKey); - Registry registry = registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); + RegistryCreateParameters parameters = ContainerRegistryTestUtilities.GetDefaultRegistryCreateParameters(resourceGroup, storageName, storageKey); + Registry registry = registryClient.Registries.Create(resourceGroup.Name, registryName, parameters); ContainerRegistryTestUtilities.VerifyRegistryProperties(registry, storageName, true); // Create container registry with optional parameters registryName = TestUtilities.GenerateName("acrregistry"); - registryProperties = new Registry + parameters = new RegistryCreateParameters { Location = resourceGroup.Location, - StorageAccount = new StorageAccountProperties + Sku = new Microsoft.Azure.Management.ContainerRegistry.Models.Sku + { + Name = "Basic" + }, + StorageAccount = new StorageAccountParameters { Name = storageName, AccessKey = storageKey @@ -93,7 +96,7 @@ public void ContainerRegistryCreateTest() Tags = ContainerRegistryTestUtilities.DefaultTags, AdminUserEnabled = true }; - registry = registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); + registry = registryClient.Registries.Create(resourceGroup.Name, registryName, parameters); ContainerRegistryTestUtilities.VerifyRegistryProperties(registry, storageName, false); Assert.True(registry.AdminUserEnabled); } @@ -179,21 +182,21 @@ public void ContainerRegistryGetTest() string storageKey = ContainerRegistryTestUtilities.GetStorageAccessKey(storageClient, resourceGroup, storageName); // Get default registry properties - Registry registryProperties = ContainerRegistryTestUtilities.GetDefaultRegistryProperties(resourceGroup, storageName, storageKey); + RegistryCreateParameters parameters = ContainerRegistryTestUtilities.GetDefaultRegistryCreateParameters(resourceGroup, storageName, storageKey); // Create container registry with admin enabled string registryName = TestUtilities.GenerateName("acrregistry"); - registryProperties.AdminUserEnabled = true; - registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); - Registry registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); + parameters.AdminUserEnabled = true; + registryClient.Registries.Create(resourceGroup.Name, registryName, parameters); + Registry registry = registryClient.Registries.Get(resourceGroup.Name, registryName); ContainerRegistryTestUtilities.VerifyRegistryProperties(registry, storageName, false); Assert.True(registry.AdminUserEnabled); // Create container registry with admin disabled registryName = TestUtilities.GenerateName("acrregistry"); - registryProperties.AdminUserEnabled = false; - registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); - registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); + parameters.AdminUserEnabled = false; + registryClient.Registries.Create(resourceGroup.Name, registryName, parameters); + registry = registryClient.Registries.Get(resourceGroup.Name, registryName); ContainerRegistryTestUtilities.VerifyRegistryProperties(registry, storageName, true); } } @@ -229,7 +232,7 @@ public void ContainerRegistryUpdateTest() registryClient.Registries.Update(resourceGroup.Name, registryName, registryUpdateParameters); // Validate - Registry registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); + Registry registry = registryClient.Registries.Get(resourceGroup.Name, registryName); Assert.True(registry.AdminUserEnabled); // Update tags @@ -245,7 +248,7 @@ public void ContainerRegistryUpdateTest() registryClient.Registries.Update(resourceGroup.Name, registryName, registryUpdateParameters); // Validate - registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); + registry = registryClient.Registries.Get(resourceGroup.Name, registryName); Assert.Equal(registry.Tags.Count, registryUpdateParameters.Tags.Count); Assert.Equal(registry.Tags["key2"], "value2"); Assert.Equal(registry.Tags["key3"], "value3"); @@ -254,7 +257,7 @@ public void ContainerRegistryUpdateTest() // Update storage account registryUpdateParameters = new RegistryUpdateParameters { - StorageAccount = new StorageAccountProperties + StorageAccount = new StorageAccountParameters { Name = storageName2, AccessKey = storageKey2 @@ -263,90 +266,13 @@ public void ContainerRegistryUpdateTest() registryClient.Registries.Update(resourceGroup.Name, registryName, registryUpdateParameters); // Validate - registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); - Assert.Equal(registry.StorageAccount.Name, storageName2); - } - } - - [Fact] - public void ContainerRegistryUpdateWithCreateTest() - { - var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; - - using (MockContext context = MockContext.Start(this.GetType().FullName)) - { - var resourceClient = ContainerRegistryTestUtilities.GetResourceManagementClient(context, handler); - var storageClient = ContainerRegistryTestUtilities.GetStorageManagementClient(context, handler); - var registryClient = ContainerRegistryTestUtilities.GetContainerRegistryManagementClient(context, handler); - - // Create resource group and storage account - ResourceGroup resourceGroup = ContainerRegistryTestUtilities.CreateResourceGroup(resourceClient); - string storageName1 = ContainerRegistryTestUtilities.CreateStorageAccount(storageClient, resourceGroup); - string storageKey1 = ContainerRegistryTestUtilities.GetStorageAccessKey(storageClient, resourceGroup, storageName1); - - // Create a different storage account - string storageName2 = ContainerRegistryTestUtilities.CreateStorageAccount(storageClient, resourceGroup); - string storageKey2 = ContainerRegistryTestUtilities.GetStorageAccessKey(storageClient, resourceGroup, storageName2); - - // Create container registry - string registryName = ContainerRegistryTestUtilities.CreateContainerRegistry(registryClient, resourceGroup, storageName1, storageKey1); - Registry registryProperties = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); - - // Enable admin - registryProperties.AdminUserEnabled = true; - registryProperties.StorageAccount.AccessKey = storageKey1; - registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); - - // Validate - Registry registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); - Assert.True(registry.AdminUserEnabled); - - // Update tags - registryProperties.Tags = new Dictionary - { - { "key2","value2" }, - { "key3","value3" }, - { "key4","value4" } - }; - registryProperties.StorageAccount.AccessKey = storageKey1; - registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); - - // Validate - registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); - Assert.Equal(registry.Tags.Count, registryProperties.Tags.Count); - Assert.Equal(registry.Tags["key2"], "value2"); - Assert.Equal(registry.Tags["key3"], "value3"); - Assert.Equal(registry.Tags["key4"], "value4"); - - // Update storage account - registryProperties.StorageAccount = new StorageAccountProperties - { - Name = storageName2, - AccessKey = storageKey2 - }; - registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); - - // Validate - registry = registryClient.Registries.GetProperties(resourceGroup.Name, registryName); + registry = registryClient.Registries.Get(resourceGroup.Name, registryName); Assert.Equal(registry.StorageAccount.Name, storageName2); - - // Update location should fail - registryProperties.Location = ContainerRegistryTestUtilities.GetNonDefaultRegistryLocation(resourceClient); - try - { - registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); - Assert.True(false); - } - catch (CloudException ex) - { - Assert.NotNull(ex); - Assert.Equal(HttpStatusCode.Conflict, ex.Response.StatusCode); - } } } [Fact] - public void ContainerRegistryGetCredentialsTest() + public void ContainerRegistryListCredentialsTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; @@ -367,7 +293,7 @@ public void ContainerRegistryGetCredentialsTest() // Get credentials should fail when admin is disabled try { - registryClient.Registries.GetCredentials(resourceGroup.Name, registryName); + registryClient.Registries.ListCredentials(resourceGroup.Name, registryName); Assert.True(false); } catch (CloudException ex) @@ -383,19 +309,22 @@ public void ContainerRegistryGetCredentialsTest() }; registryClient.Registries.Update(resourceGroup.Name, registryName, registryUpdateParameters); - RegistryCredentials credentials = registryClient.Registries.GetCredentials(resourceGroup.Name, registryName); + RegistryListCredentialsResult credentials = registryClient.Registries.ListCredentials(resourceGroup.Name, registryName); Assert.NotNull(credentials); // Validate username and password string username = credentials.Username; - string password = credentials.Password; + Assert.True(credentials.Passwords.Count > 1); + string password1 = credentials.Passwords[0].Value; + string password2 = credentials.Passwords[1].Value; Assert.NotNull(username); - Assert.NotNull(password); + Assert.NotNull(password1); + Assert.NotNull(password2); } } [Fact] - public void ContainerRegistryRegenerateCredentialsTest() + public void ContainerRegistryRegenerateCredentialTest() { var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; @@ -411,31 +340,55 @@ public void ContainerRegistryRegenerateCredentialsTest() string storageKey = ContainerRegistryTestUtilities.GetStorageAccessKey(storageClient, resourceGroup, storageName); string registryName = TestUtilities.GenerateName("acrregistry"); - Registry registryProperties = ContainerRegistryTestUtilities.GetDefaultRegistryProperties(resourceGroup, storageName, storageKey); - registryProperties.AdminUserEnabled = true; - Registry registry = registryClient.Registries.CreateOrUpdate(resourceGroup.Name, registryName, registryProperties); + RegistryCreateParameters parameters = ContainerRegistryTestUtilities.GetDefaultRegistryCreateParameters(resourceGroup, storageName, storageKey); + parameters.AdminUserEnabled = true; + Registry registry = registryClient.Registries.Create(resourceGroup.Name, registryName, parameters); - RegistryCredentials credentials = registryClient.Registries.GetCredentials(resourceGroup.Name, registryName); + RegistryListCredentialsResult credentials = registryClient.Registries.ListCredentials(resourceGroup.Name, registryName); Assert.NotNull(credentials); // Validate username and password - string username1 = credentials.Username; - string password1 = credentials.Password; - Assert.NotNull(username1); - Assert.NotNull(password1); + string username_1 = credentials.Username; + Assert.True(credentials.Passwords.Count > 1); + string password1_1 = credentials.Passwords[0].Value; + string password2_1 = credentials.Passwords[1].Value; + Assert.NotNull(username_1); + Assert.NotNull(password1_1); + Assert.NotNull(password2_1); + + credentials = registryClient.Registries.RegenerateCredential(resourceGroup.Name, registryName, PasswordName.Password); + Assert.NotNull(credentials); + + // Validate username and password + string username_2 = credentials.Username; + Assert.True(credentials.Passwords.Count > 1); + string password1_2 = credentials.Passwords[0].Value; + string password2_2 = credentials.Passwords[1].Value; + Assert.NotNull(username_2); + Assert.NotNull(password1_2); + Assert.NotNull(password2_2); - credentials = registryClient.Registries.RegenerateCredentials(resourceGroup.Name, registryName); + // Validate if generated password is different + Assert.Equal(username_1, username_2); + Assert.NotEqual(password1_1, password1_2); + Assert.Equal(password2_1, password2_2); + + credentials = registryClient.Registries.RegenerateCredential(resourceGroup.Name, registryName, PasswordName.Password2); Assert.NotNull(credentials); - // Validate regenerated username and password - string username2 = credentials.Username; - string password2 = credentials.Password; - Assert.NotNull(username2); - Assert.NotNull(password2); + // Validate username and password + string username_3 = credentials.Username; + Assert.True(credentials.Passwords.Count > 1); + string password1_3 = credentials.Passwords[0].Value; + string password2_3 = credentials.Passwords[1].Value; + Assert.NotNull(username_2); + Assert.NotNull(password1_2); + Assert.NotNull(password2_2); // Validate if generated password is different - Assert.Equal(username1, username2); - Assert.NotEqual(password1, password2); + Assert.Equal(username_2, username_3); + Assert.Equal(password1_2, password1_3); + Assert.NotEqual(password2_2, password2_3); } } diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/ContainerRegistryManagementClient.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/ContainerRegistryManagementClient.cs index 382b1224e849..56ba592f51c2 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/ContainerRegistryManagementClient.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/ContainerRegistryManagementClient.cs @@ -1,19 +1,27 @@ // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Serialization; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; - public partial class ContainerRegistryManagementClient : Microsoft.Rest.ServiceClient, IContainerRegistryManagementClient, IAzureClient + public partial class ContainerRegistryManagementClient : ServiceClient, IContainerRegistryManagementClient, IAzureClient { /// /// The base URI of the service. @@ -23,17 +31,17 @@ public partial class ContainerRegistryManagementClient : Microsoft.Rest.ServiceC /// /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. /// - public Microsoft.Rest.ServiceClientCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// /// The Microsoft Azure subscription ID. @@ -67,6 +75,11 @@ public partial class ContainerRegistryManagementClient : Microsoft.Rest.ServiceC /// public virtual IRegistriesOperations Registries { get; private set; } + /// + /// Gets the IOperations. + /// + public virtual IOperations Operations { get; private set; } + /// /// Initializes a new instance of the ContainerRegistryManagementClient class. /// @@ -75,7 +88,7 @@ public partial class ContainerRegistryManagementClient : Microsoft.Rest.ServiceC /// protected ContainerRegistryManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) { - this.Initialize(); + Initialize(); } /// @@ -89,7 +102,7 @@ protected ContainerRegistryManagementClient(params System.Net.Http.DelegatingHan /// protected ContainerRegistryManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) { - this.Initialize(); + Initialize(); } /// @@ -110,7 +123,7 @@ protected ContainerRegistryManagementClient(System.Uri baseUri, params System.Ne { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -134,7 +147,7 @@ protected ContainerRegistryManagementClient(System.Uri baseUri, System.Net.Http. { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -149,16 +162,16 @@ protected ContainerRegistryManagementClient(System.Uri baseUri, System.Net.Http. /// /// Thrown when a required parameter is null /// - public ContainerRegistryManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public ContainerRegistryManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -177,16 +190,16 @@ public ContainerRegistryManagementClient(Microsoft.Rest.ServiceClientCredentials /// /// Thrown when a required parameter is null /// - public ContainerRegistryManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public ContainerRegistryManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -205,7 +218,7 @@ public ContainerRegistryManagementClient(Microsoft.Rest.ServiceClientCredentials /// /// Thrown when a required parameter is null /// - public ContainerRegistryManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public ContainerRegistryManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -215,11 +228,11 @@ public ContainerRegistryManagementClient(System.Uri baseUri, Microsoft.Rest.Serv { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -241,7 +254,7 @@ public ContainerRegistryManagementClient(System.Uri baseUri, Microsoft.Rest.Serv /// /// Thrown when a required parameter is null /// - public ContainerRegistryManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public ContainerRegistryManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -251,11 +264,11 @@ public ContainerRegistryManagementClient(System.Uri baseUri, Microsoft.Rest.Serv { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -268,41 +281,43 @@ public ContainerRegistryManagementClient(System.Uri baseUri, Microsoft.Rest.Serv /// private void Initialize() { - this.Registries = new RegistriesOperations(this); - this.BaseUri = new System.Uri("https://management.azure.com"); - this.ApiVersion = "2016-06-27-preview"; - this.AcceptLanguage = "en-US"; - this.LongRunningOperationRetryTimeout = 30; - this.GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + Registries = new RegistriesOperations(this); + Operations = new Operations(this); + BaseUri = new System.Uri("https://management.azure.com"); + ApiVersion = "2017-03-01"; + AcceptLanguage = "en-US"; + LongRunningOperationRetryTimeout = 30; + GenerateClientRequestId = true; + SerializationSettings = new JsonSerializerSettings { - Formatting = Newtonsoft.Json.Formatting.Indented, - DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, - DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, - NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, - ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, - ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Formatting = Formatting.Indented, + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; - SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings = new JsonSerializerSettings { - DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, - DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, - NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, - ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, - ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; CustomInitialize(); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Azure.CloudErrorJsonConverter()); - } + DeserializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IContainerRegistryManagementClient.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IContainerRegistryManagementClient.cs index 124a098b58be..1c2fb24cbb56 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IContainerRegistryManagementClient.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IContainerRegistryManagementClient.cs @@ -1,16 +1,19 @@ // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry { - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using Newtonsoft.Json; /// /// @@ -24,17 +27,17 @@ public partial interface IContainerRegistryManagementClient : System.IDisposable /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. /// - Microsoft.Rest.ServiceClientCredentials Credentials { get; } + ServiceClientCredentials Credentials { get; } /// /// The Microsoft Azure subscription ID. @@ -58,8 +61,8 @@ public partial interface IContainerRegistryManagementClient : System.IDisposable int? LongRunningOperationRetryTimeout { get; set; } /// - /// When set to true a unique x-ms-client-request-id value is - /// generated and included in each request. Default is true. + /// When set to true a unique x-ms-client-request-id value is generated + /// and included in each request. Default is true. /// bool? GenerateClientRequestId { get; set; } @@ -69,5 +72,11 @@ public partial interface IContainerRegistryManagementClient : System.IDisposable /// IRegistriesOperations Registries { get; } + /// + /// Gets the IOperations. + /// + IOperations Operations { get; } + } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IOperations.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IOperations.cs new file mode 100644 index 000000000000..fe492faa736b --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IOperations.cs @@ -0,0 +1,71 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Operations operations. + /// + public partial interface IOperations + { + /// + /// Lists all of the available Azure Container Registry REST API + /// operations. + /// + /// + /// 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(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the available Azure Container Registry REST API + /// operations. + /// + /// + /// 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/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IRegistriesOperations.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IRegistriesOperations.cs index 236cec3205d4..f6bd71c4c17b 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IRegistriesOperations.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/IRegistriesOperations.cs @@ -1,15 +1,22 @@ // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry { - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// RegistriesOperations operations. @@ -39,7 +46,7 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CheckNameAvailabilityWithHttpMessagesAsync(string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CheckNameAvailabilityWithHttpMessagesAsync(string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the properties of the specified container registry. /// @@ -65,10 +72,9 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetPropertiesWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string registryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates or updates a container registry with the specified - /// parameters. + /// Creates a container registry with the specified parameters. /// /// /// The name of the resource group to which the container registry @@ -77,8 +83,8 @@ public partial interface IRegistriesOperations /// /// The name of the container registry. /// - /// - /// The parameters for creating or updating a container registry. + /// + /// The parameters for creating a container registry. /// /// /// The headers that will be added to request. @@ -95,7 +101,7 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string registryName, Registry registry, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a container registry. /// @@ -118,7 +124,7 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string registryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates a container registry with the specified parameters. /// @@ -147,10 +153,10 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryUpdateParameters registryUpdateParameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryUpdateParameters registryUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the available container registries under the specified - /// resource group. + /// Lists all the container registries under the specified resource + /// group. /// /// /// The name of the resource group to which the container registry @@ -171,9 +177,9 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the available container registries under the specified + /// Lists all the container registries under the specified /// subscription. /// /// @@ -191,10 +197,9 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the administrator login credentials for the specified - /// container registry. + /// Lists the login credentials for the specified container registry. /// /// /// The name of the resource group to which the container registry @@ -218,9 +223,9 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetCredentialsWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> ListCredentialsWithHttpMessagesAsync(string resourceGroupName, string registryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Regenerates the administrator login credentials for the specified + /// Regenerates one of the login credentials for the specified /// container registry. /// /// @@ -230,6 +235,11 @@ public partial interface IRegistriesOperations /// /// The name of the container registry. /// + /// + /// Specifies name of the password which should be regenerated -- + /// password or password2. Possible values include: 'password', + /// 'password2' + /// /// /// The headers that will be added to request. /// @@ -245,10 +255,39 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> RegenerateCredentialsWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> RegenerateCredentialWithHttpMessagesAsync(string resourceGroupName, string registryName, PasswordName name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the available container registries under the specified - /// resource group. + /// Creates a container registry with the specified parameters. + /// + /// + /// The name of the resource group to which the container registry + /// belongs. + /// + /// + /// The name of the container registry. + /// + /// + /// The parameters for creating a container registry. + /// + /// + /// 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> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all the container registries under the specified resource + /// group. /// /// /// The NextLink from the previous successful call to List operation. @@ -268,9 +307,9 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists all the available container registries under the specified + /// Lists all the container registries under the specified /// subscription. /// /// @@ -291,6 +330,7 @@ public partial interface IRegistriesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDefinition.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDefinition.cs new file mode 100644 index 000000000000..cd62c95514d2 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDefinition.cs @@ -0,0 +1,55 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The definition of a container registry operation. + /// + public partial class OperationDefinition + { + /// + /// Initializes a new instance of the OperationDefinition class. + /// + public OperationDefinition() { } + + /// + /// Initializes a new instance of the OperationDefinition class. + /// + /// Operation name: + /// {provider}/{resource}/{operation}. + /// The display information for the container + /// registry operation. + public OperationDefinition(string name = default(string), OperationDisplayDefinition display = default(OperationDisplayDefinition)) + { + Name = name; + Display = display; + } + + /// + /// Gets or sets operation name: {provider}/{resource}/{operation}. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the display information for the container registry + /// operation. + /// + [JsonProperty(PropertyName = "display")] + public OperationDisplayDefinition Display { get; set; } + + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDisplayDefinition.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDisplayDefinition.cs new file mode 100644 index 000000000000..2fa2ea440fae --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/OperationDisplayDefinition.cs @@ -0,0 +1,73 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The display information for a container registry operation. + /// + public partial class OperationDisplayDefinition + { + /// + /// Initializes a new instance of the OperationDisplayDefinition class. + /// + public OperationDisplayDefinition() { } + + /// + /// Initializes a new instance of the OperationDisplayDefinition class. + /// + /// The resource provider name: + /// Microsoft.ContainerRegistry. + /// The resource on which the operation is + /// performed. + /// The operation that users can + /// perform. + /// The description for the + /// operation. + public OperationDisplayDefinition(string provider = default(string), string resource = default(string), string operation = default(string), string description = default(string)) + { + Provider = provider; + Resource = resource; + Operation = operation; + Description = description; + } + + /// + /// Gets or sets the resource provider name: + /// Microsoft.ContainerRegistry. + /// + [JsonProperty(PropertyName = "provider")] + public string Provider { get; set; } + + /// + /// Gets or sets the resource on which the operation is performed. + /// + [JsonProperty(PropertyName = "resource")] + public string Resource { get; set; } + + /// + /// Gets or sets the operation that users can perform. + /// + [JsonProperty(PropertyName = "operation")] + public string Operation { get; set; } + + /// + /// Gets or sets the description for the operation. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Page.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Page.cs index cd47ec6dec14..340cb48bfbf3 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Page.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Page.cs @@ -1,46 +1,55 @@ // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry.Models { + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; /// /// Defines a page in Azure responses. /// /// Type of the page content items - [Newtonsoft.Json.JsonObject] - public class Page : Microsoft.Rest.Azure.IPage + [JsonObject] + public class Page : IPage { /// /// Gets the link to the next page. /// - [Newtonsoft.Json.JsonProperty("nextLink")] - public System.String NextPageLink { get; private set; } + [JsonProperty("nextLink")] + public string NextPageLink { get; private set; } - [Newtonsoft.Json.JsonProperty("value")] - private System.Collections.Generic.IList Items{ get; set; } + [JsonProperty("value")] + private IList Items{ get; set; } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - public System.Collections.Generic.IEnumerator GetEnumerator() + public IEnumerator GetEnumerator() { - return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/PasswordName.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/PasswordName.cs new file mode 100644 index 000000000000..ff0a1e4a001b --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/PasswordName.cs @@ -0,0 +1,31 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for PasswordName. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum PasswordName + { + [EnumMember(Value = "password")] + Password, + [EnumMember(Value = "password2")] + Password2 + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/ProvisioningState.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/ProvisioningState.cs new file mode 100644 index 000000000000..55732aafd329 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/ProvisioningState.cs @@ -0,0 +1,31 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for ProvisioningState. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum ProvisioningState + { + [EnumMember(Value = "Creating")] + Creating, + [EnumMember(Value = "Succeeded")] + Succeeded + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegenerateCredentialParameters.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegenerateCredentialParameters.cs new file mode 100644 index 000000000000..59380552d62d --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegenerateCredentialParameters.cs @@ -0,0 +1,59 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The parameters used to regenerate the login credential. + /// + public partial class RegenerateCredentialParameters + { + /// + /// Initializes a new instance of the RegenerateCredentialParameters + /// class. + /// + public RegenerateCredentialParameters() { } + + /// + /// Initializes a new instance of the RegenerateCredentialParameters + /// class. + /// + /// Specifies name of the password which should be + /// regenerated -- password or password2. Possible values include: + /// 'password', 'password2' + public RegenerateCredentialParameters(PasswordName name) + { + Name = name; + } + + /// + /// Gets or sets specifies name of the password which should be + /// regenerated -- password or password2. Possible values include: + /// 'password', 'password2' + /// + [JsonProperty(PropertyName = "name")] + public PasswordName Name { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Registry.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Registry.cs index e5d99d02e051..b9d67624db26 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Registry.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Registry.cs @@ -1,19 +1,27 @@ // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry.Models { + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// An object that represents a container registry. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class Registry : Resource { /// @@ -24,12 +32,9 @@ public Registry() { } /// /// Initializes a new instance of the Registry class. /// - /// The location of the resource. This cannot - /// be changed after the resource is created. - /// The properties of the storage account - /// for the container registry. If specified, the storage account - /// must be in the same physical location as the container - /// registry. + /// The location of the resource. This cannot be + /// changed after the resource is created. + /// The SKU of the container registry. /// The resource ID. /// The name of the resource. /// The type of the resource. @@ -38,61 +43,81 @@ public Registry() { } /// container registry. /// The creation date of the container /// registry in ISO8601 format. - /// The value that indicates whether - /// the admin user is enabled. This value is false by default. - public Registry(string location, StorageAccountProperties storageAccount, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string loginServer = default(string), System.DateTime? creationDate = default(System.DateTime?), bool? adminUserEnabled = default(bool?)) + /// The status of the container + /// registry at the time the operation was called. Possible values + /// include: 'Creating', 'Succeeded' + /// The value that indicates whether the + /// admin user is enabled. This value is false by default. + /// The properties of the storage account + /// for the container registry. + public Registry(string location, Sku sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string loginServer = default(string), System.DateTime? creationDate = default(System.DateTime?), ProvisioningState? provisioningState = default(ProvisioningState?), bool? adminUserEnabled = default(bool?), StorageAccountProperties storageAccount = default(StorageAccountProperties)) : base(location, id, name, type, tags) { + Sku = sku; LoginServer = loginServer; CreationDate = creationDate; + ProvisioningState = provisioningState; AdminUserEnabled = adminUserEnabled; StorageAccount = storageAccount; } + /// + /// Gets or sets the SKU of the container registry. + /// + [JsonProperty(PropertyName = "sku")] + public Sku Sku { get; set; } + /// /// Gets the URL that can be used to log into the container registry. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.loginServer")] - public string LoginServer { get; private set; } + [JsonProperty(PropertyName = "properties.loginServer")] + public string LoginServer { get; protected set; } /// /// Gets the creation date of the container registry in ISO8601 format. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.creationDate")] - public System.DateTime? CreationDate { get; private set; } + [JsonProperty(PropertyName = "properties.creationDate")] + public System.DateTime? CreationDate { get; protected set; } + + /// + /// Gets the status of the container registry at the time the operation + /// was called. Possible values include: 'Creating', 'Succeeded' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public ProvisioningState? ProvisioningState { get; protected set; } /// /// Gets or sets the value that indicates whether the admin user is /// enabled. This value is false by default. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.adminUserEnabled")] + [JsonProperty(PropertyName = "properties.adminUserEnabled")] public bool? AdminUserEnabled { get; set; } /// /// Gets or sets the properties of the storage account for the - /// container registry. If specified, the storage account must be in - /// the same physical location as the container registry. + /// container registry. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageAccount")] + [JsonProperty(PropertyName = "properties.storageAccount")] public StorageAccountProperties StorageAccount { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() { base.Validate(); - if (StorageAccount == null) + if (Sku == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "StorageAccount"); + throw new ValidationException(ValidationRules.CannotBeNull, "Sku"); } - if (this.StorageAccount != null) + if (Sku != null) { - this.StorageAccount.Validate(); + Sku.Validate(); } } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCreateParameters.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCreateParameters.cs new file mode 100644 index 000000000000..e276ab32cad2 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCreateParameters.cs @@ -0,0 +1,118 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The parameters for creating a container registry. + /// + [JsonTransformation] + public partial class RegistryCreateParameters + { + /// + /// Initializes a new instance of the RegistryCreateParameters class. + /// + public RegistryCreateParameters() { } + + /// + /// Initializes a new instance of the RegistryCreateParameters class. + /// + /// The location of the container registry. This + /// cannot be changed after the resource is created. + /// The SKU of the container registry. + /// The parameters of a storage account + /// for the container registry. If specified, the storage account must + /// be in the same physical location as the container registry. + /// The tags for the container registry. + /// The value that indicates whether the + /// admin user is enabled. This value is false by default. + public RegistryCreateParameters(string location, Sku sku, StorageAccountParameters storageAccount, IDictionary tags = default(IDictionary), bool? adminUserEnabled = default(bool?)) + { + Tags = tags; + Location = location; + Sku = sku; + AdminUserEnabled = adminUserEnabled; + StorageAccount = storageAccount; + } + + /// + /// Gets or sets the tags for the container registry. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Gets or sets the location of the container registry. This cannot be + /// changed after the resource is created. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets or sets the SKU of the container registry. + /// + [JsonProperty(PropertyName = "sku")] + public Sku Sku { get; set; } + + /// + /// Gets or sets the value that indicates whether the admin user is + /// enabled. This value is false by default. + /// + [JsonProperty(PropertyName = "properties.adminUserEnabled")] + public bool? AdminUserEnabled { get; set; } + + /// + /// Gets or sets the parameters of a storage account for the container + /// registry. If specified, the storage account must be in the same + /// physical location as the container registry. + /// + [JsonProperty(PropertyName = "properties.storageAccount")] + public StorageAccountParameters StorageAccount { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); + } + if (Sku == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Sku"); + } + if (StorageAccount == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "StorageAccount"); + } + if (Sku != null) + { + Sku.Validate(); + } + if (StorageAccount != null) + { + StorageAccount.Validate(); + } + } + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCredentials.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCredentials.cs deleted file mode 100644 index 982393fd0a38..000000000000 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryCredentials.cs +++ /dev/null @@ -1,48 +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 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.ContainerRegistry.Models -{ - using System.Linq; - - /// - /// The result of a request to get the administrator login credentials for - /// a container registry. - /// - public partial class RegistryCredentials - { - /// - /// Initializes a new instance of the RegistryCredentials class. - /// - public RegistryCredentials() { } - - /// - /// Initializes a new instance of the RegistryCredentials class. - /// - /// The administrator username. - /// The administrator password. - public RegistryCredentials(string username = default(string), string password = default(string)) - { - Username = username; - Password = password; - } - - /// - /// Gets or sets the administrator username. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "username")] - public string Username { get; set; } - - /// - /// Gets or sets the administrator password. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "password")] - public string Password { get; set; } - - } -} diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryListCredentialsResult.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryListCredentialsResult.cs new file mode 100644 index 000000000000..401d552b21c6 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryListCredentialsResult.cs @@ -0,0 +1,58 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The response from the ListCredentials operation. + /// + public partial class RegistryListCredentialsResult + { + /// + /// Initializes a new instance of the RegistryListCredentialsResult + /// class. + /// + public RegistryListCredentialsResult() { } + + /// + /// Initializes a new instance of the RegistryListCredentialsResult + /// class. + /// + /// The username for a container + /// registry. + /// The list of passwords for a container + /// registry. + public RegistryListCredentialsResult(string username = default(string), IList passwords = default(IList)) + { + Username = username; + Passwords = passwords; + } + + /// + /// Gets or sets the username for a container registry. + /// + [JsonProperty(PropertyName = "username")] + public string Username { get; set; } + + /// + /// Gets or sets the list of passwords for a container registry. + /// + [JsonProperty(PropertyName = "passwords")] + public IList Passwords { get; set; } + + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameCheckRequest.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameCheckRequest.cs index 5c1457e6f4ef..17b2aaba2f98 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameCheckRequest.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameCheckRequest.cs @@ -1,17 +1,22 @@ // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry.Models { + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Newtonsoft.Json; using System.Linq; /// - /// A request to check whether the container registry name is available. + /// A request to check whether a container registry name is available. /// public partial class RegistryNameCheckRequest { @@ -39,28 +44,44 @@ static RegistryNameCheckRequest() /// /// Gets or sets the name of the container registry. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// - /// The resource type of the container registry. This field must be - /// set to "Microsoft.ContainerRegistry/registries". + /// The resource type of the container registry. This field must be set + /// to "Microsoft.ContainerRegistry/registries". /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public static string Type { get; private set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Name != null) + { + if (Name.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "Name", 50); + } + if (Name.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "Name", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(Name, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "Name", "^[a-zA-Z0-9]*$"); + } } } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameStatus.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameStatus.cs index 46cb01d3d47f..274e4470eac4 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameStatus.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryNameStatus.cs @@ -1,13 +1,17 @@ // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry.Models { + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; using System.Linq; /// @@ -41,21 +45,22 @@ public RegistryNameStatus() { } /// Gets or sets the value that indicates whether the name is /// available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "nameAvailable")] + [JsonProperty(PropertyName = "nameAvailable")] public bool? NameAvailable { get; set; } /// /// Gets or sets if any, the reason that the name is not available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "reason")] + [JsonProperty(PropertyName = "reason")] public string Reason { get; set; } /// /// Gets or sets if any, the error message that provides more detail /// for the reason that the name is not available. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "message")] + [JsonProperty(PropertyName = "message")] public string Message { get; set; } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryPassword.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryPassword.cs new file mode 100644 index 000000000000..2ac4f6c4dbc8 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryPassword.cs @@ -0,0 +1,54 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The login password for the container registry. + /// + public partial class RegistryPassword + { + /// + /// Initializes a new instance of the RegistryPassword class. + /// + public RegistryPassword() { } + + /// + /// Initializes a new instance of the RegistryPassword class. + /// + /// The password name. Possible values include: + /// 'password', 'password2' + /// The password value. + public RegistryPassword(PasswordName? name = default(PasswordName?), string value = default(string)) + { + Name = name; + Value = value; + } + + /// + /// Gets or sets the password name. Possible values include: + /// 'password', 'password2' + /// + [JsonProperty(PropertyName = "name")] + public PasswordName? Name { get; set; } + + /// + /// Gets or sets the password value. + /// + [JsonProperty(PropertyName = "value")] + public string Value { get; set; } + + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryUpdateParameters.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryUpdateParameters.cs index e45ade2452c4..932bf9cd3763 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryUpdateParameters.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/RegistryUpdateParameters.cs @@ -1,19 +1,27 @@ // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry.Models { + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// The parameters for updating a container registry. /// - [Microsoft.Rest.Serialization.JsonTransformation] + [JsonTransformation] public partial class RegistryUpdateParameters { /// @@ -24,15 +32,13 @@ public RegistryUpdateParameters() { } /// /// Initializes a new instance of the RegistryUpdateParameters class. /// - /// The resource tags for the container - /// registry. - /// The value that indicates whether - /// the admin user is enabled. This value is false by default. - /// The properties of a storage account - /// for the container registry. If specified, the storage account - /// must be in the same physical location as the container - /// registry. - public RegistryUpdateParameters(System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), bool? adminUserEnabled = default(bool?), StorageAccountProperties storageAccount = default(StorageAccountProperties)) + /// The tags for the container registry. + /// The value that indicates whether the + /// admin user is enabled. This value is false by default. + /// The parameters of a storage account + /// for the container registry. If specified, the storage account must + /// be in the same physical location as the container registry. + public RegistryUpdateParameters(IDictionary tags = default(IDictionary), bool? adminUserEnabled = default(bool?), StorageAccountParameters storageAccount = default(StorageAccountParameters)) { Tags = tags; AdminUserEnabled = adminUserEnabled; @@ -40,38 +46,39 @@ public RegistryUpdateParameters() { } } /// - /// Gets or sets the resource tags for the container registry. + /// Gets or sets the tags for the container registry. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] - public System.Collections.Generic.IDictionary Tags { get; set; } + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } /// /// Gets or sets the value that indicates whether the admin user is /// enabled. This value is false by default. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.adminUserEnabled")] + [JsonProperty(PropertyName = "properties.adminUserEnabled")] public bool? AdminUserEnabled { get; set; } /// - /// Gets or sets the properties of a storage account for the container + /// Gets or sets the parameters of a storage account for the container /// registry. If specified, the storage account must be in the same /// physical location as the container registry. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties.storageAccount")] - public StorageAccountProperties StorageAccount { get; set; } + [JsonProperty(PropertyName = "properties.storageAccount")] + public StorageAccountParameters StorageAccount { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (this.StorageAccount != null) + if (StorageAccount != null) { - this.StorageAccount.Validate(); + StorageAccount.Validate(); } } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Resource.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Resource.cs index 700d240680c2..b4439285a546 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Resource.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Resource.cs @@ -1,19 +1,27 @@ // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry.Models { + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// /// An Azure resource. /// - public partial class Resource : Microsoft.Rest.Azure.IResource + public partial class Resource : IResource { /// /// Initializes a new instance of the Resource class. @@ -23,13 +31,13 @@ public Resource() { } /// /// Initializes a new instance of the Resource class. /// - /// The location of the resource. This cannot - /// be changed after the resource is created. + /// The location of the resource. This cannot be + /// changed after the resource is created. /// The resource ID. /// The name of the resource. /// The type of the resource. /// The tags of the resource. - public Resource(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + public Resource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) { Id = id; Name = name; @@ -41,46 +49,47 @@ public Resource() { } /// /// Gets the resource ID. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] - public string Id { get; private set; } + [JsonProperty(PropertyName = "id")] + public string Id { get; protected set; } /// /// Gets the name of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] - public string Name { get; private set; } + [JsonProperty(PropertyName = "name")] + public string Name { get; protected set; } /// /// Gets the type of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] - public string Type { get; private set; } + [JsonProperty(PropertyName = "type")] + public string Type { get; protected set; } /// /// Gets or sets the location of the resource. This cannot be changed /// after the resource is created. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "location")] + [JsonProperty(PropertyName = "location")] public string Location { get; set; } /// /// Gets or sets the tags of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] - public System.Collections.Generic.IDictionary Tags { get; set; } + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Location == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Location"); + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); } } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Sku.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Sku.cs new file mode 100644 index 000000000000..f5277084f27e --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/Sku.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 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The SKU of a container registry. + /// + public partial class Sku + { + /// + /// Initializes a new instance of the Sku class. + /// + public Sku() { } + + /// + /// Initializes a new instance of the Sku class. + /// + /// The SKU name of the the container registry. + /// Required for registry creation. Allowed value: Basic. + /// The SKU tier based on the SKU name. Possible + /// values include: 'Basic' + public Sku(string name, string tier = default(string)) + { + Name = name; + Tier = tier; + } + + /// + /// Gets or sets the SKU name of the the container registry. Required + /// for registry creation. Allowed value: Basic. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets the SKU tier based on the SKU name. Possible values include: + /// 'Basic' + /// + [JsonProperty(PropertyName = "tier")] + public string Tier { get; protected set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + } + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/SkuTier.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/SkuTier.cs new file mode 100644 index 000000000000..ae2956290ea9 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/SkuTier.cs @@ -0,0 +1,23 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + + /// + /// Defines values for SkuTier. + /// + public static class SkuTier + { + public const string Basic = "Basic"; + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountParameters.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountParameters.cs new file mode 100644 index 000000000000..16b63a13e41e --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountParameters.cs @@ -0,0 +1,71 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry.Models +{ + using Azure; + using Management; + using ContainerRegistry; + using Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The parameters of a storage account for a container registry. + /// + public partial class StorageAccountParameters + { + /// + /// Initializes a new instance of the StorageAccountParameters class. + /// + public StorageAccountParameters() { } + + /// + /// Initializes a new instance of the StorageAccountParameters class. + /// + /// The name of the storage account. + /// The access key to the storage + /// account. + public StorageAccountParameters(string name, string accessKey) + { + Name = name; + AccessKey = accessKey; + } + + /// + /// Gets or sets the name of the storage account. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the access key to the storage account. + /// + [JsonProperty(PropertyName = "accessKey")] + public string AccessKey { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (AccessKey == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AccessKey"); + } + } + } +} + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountProperties.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountProperties.cs index 219e5f13521e..2bab8ed7def9 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountProperties.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Models/StorageAccountProperties.cs @@ -1,13 +1,17 @@ // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry.Models { + using Azure; + using Management; + using ContainerRegistry; + using Newtonsoft.Json; using System.Linq; /// @@ -24,42 +28,17 @@ public StorageAccountProperties() { } /// Initializes a new instance of the StorageAccountProperties class. /// /// The name of the storage account. - /// The access key to the storage - /// account. - public StorageAccountProperties(string name, string accessKey) + public StorageAccountProperties(string name = default(string)) { Name = name; - AccessKey = accessKey; } /// /// Gets or sets the name of the storage account. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; set; } - /// - /// Gets or sets the access key to the storage account. - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "accessKey")] - public string AccessKey { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Name == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); - } - if (AccessKey == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "AccessKey"); - } - } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Operations.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Operations.cs new file mode 100644 index 000000000000..b5e1430067cd --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/Operations.cs @@ -0,0 +1,401 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry +{ + using Azure; + using Management; + using Rest; + using 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; + + /// + /// Operations operations. + /// + internal partial class Operations : IServiceOperations, IOperations + { + /// + /// Initializes a new instance of the Operations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal Operations(ContainerRegistryManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ContainerRegistryManagementClient + /// + public ContainerRegistryManagementClient Client { get; private set; } + + /// + /// Lists all of the available Azure Container Registry REST API operations. + /// + /// + /// 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(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + 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("/") ? "" : "/")), "providers/Microsoft.ContainerRegistry/operations").ToString(); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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; + } + + /// + /// Lists all of the available Azure Container Registry REST API operations. + /// + /// + /// 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/OperationsExtensions.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/OperationsExtensions.cs new file mode 100644 index 000000000000..20d1611c0215 --- /dev/null +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/OperationsExtensions.cs @@ -0,0 +1,88 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ContainerRegistry +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for Operations. + /// + public static partial class OperationsExtensions + { + /// + /// Lists all of the available Azure Container Registry REST API operations. + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this IOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available Azure Container Registry REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the available Azure Container Registry REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available Azure Container Registry REST API operations. + /// + /// + /// 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 IOperations 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/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperations.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperations.cs index 901e438f7928..82e665821d49 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperations.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperations.cs @@ -1,22 +1,31 @@ // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry { - using System.Linq; - using Microsoft.Rest; - using Microsoft.Rest.Azure; + using Azure; + using Management; + using Rest; + using 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; /// /// RegistriesOperations operations. /// - internal partial class RegistriesOperations : Microsoft.Rest.IServiceOperations, IRegistriesOperations + internal partial class RegistriesOperations : IServiceOperations, IRegistriesOperations { /// /// Initializes a new instance of the RegistriesOperations class. @@ -29,11 +38,11 @@ internal partial class RegistriesOperations : Microsoft.Rest.IServiceOperations< /// internal RegistriesOperations(ContainerRegistryManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -43,8 +52,8 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// Checks whether the container registry name is available for use. The name - /// must contain only alphanumeric characters, be globally unique, and - /// between 5 and 60 characters in length. + /// must contain only alphanumeric characters, be globally unique, and between + /// 5 and 60 characters in length. /// /// /// The name of the container registry. @@ -55,31 +64,49 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// 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 System.Threading.Tasks.Task> CheckNameAvailabilityWithHttpMessagesAsync(string name, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CheckNameAvailabilityWithHttpMessagesAsync(string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "name"); + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (name != null) + { + if (name.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "name", 50); + } + if (name.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "name", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(name, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "name", "^[a-zA-Z0-9]*$"); + } } RegistryNameCheckRequest registryNameCheckRequest = new RegistryNameCheckRequest(); if (name != null) @@ -87,47 +114,49 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) registryNameCheckRequest.Name = name; } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("registryNameCheckRequest", registryNameCheckRequest); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.ContainerRegistry/checkNameAvailability").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -144,56 +173,56 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) string _requestContent = null; if(registryNameCheckRequest != null) { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(registryNameCheckRequest, this.Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(registryNameCheckRequest, Client.SerializationSettings); _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -203,7 +232,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -216,21 +245,21 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -250,81 +279,101 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// 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 System.Threading.Tasks.Task> GetPropertiesWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string registryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (registryName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registryName"); + throw new ValidationException(ValidationRules.CannotBeNull, "registryName"); + } + if (registryName != null) + { + if (registryName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "registryName", 50); + } + if (registryName.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "registryName", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(registryName, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "registryName", "^[a-zA-Z0-9]*$"); + } } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("registryName", registryName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetProperties", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{registryName}", System.Uri.EscapeDataString(registryName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -340,51 +389,51 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -394,7 +443,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -407,27 +456,27 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Creates or updates a container registry with the specified parameters. + /// Creates a container registry with the specified parameters. /// /// /// The name of the resource group to which the container registry belongs. @@ -435,8 +484,30 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// The name of the container registry. /// - /// - /// The parameters for creating or updating a container registry. + /// + /// The parameters for creating a container registry. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, registryName, registryCreateParameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a container registry. + /// + /// + /// The name of the resource group to which the container registry belongs. + /// + /// + /// The name of the container registry. /// /// /// Headers that will be added to request. @@ -444,90 +515,98 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// 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 System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string registryName, Registry registry, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string registryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (registryName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registryName"); + throw new ValidationException(ValidationRules.CannotBeNull, "registryName"); } - if (registry == null) + if (registryName != null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registry"); - } - if (registry != null) - { - registry.Validate(); + if (registryName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "registryName", 50); + } + if (registryName.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "registryName", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(registryName, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "registryName", "^[a-zA-Z0-9]*$"); + } } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("registryName", registryName); - tracingParameters.Add("registry", registry); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{registryName}", System.Uri.EscapeDataString(registryName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -542,58 +621,44 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; - if(registry != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(registry, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + if (_httpResponse.Content != null) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - if (_errorBody != null) - { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); - ex.Body = _errorBody; - } } - catch (Newtonsoft.Json.JsonException) - { - // Ignore the exception + else { + _responseContent = string.Empty; } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -603,40 +668,22 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + 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 = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Deletes a container registry. + /// Updates a container registry with the specified parameters. /// /// /// The name of the resource group to which the container registry belongs. @@ -644,84 +691,115 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// The name of the container registry. /// + /// + /// The parameters for updating a container registry. + /// /// /// 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 System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryUpdateParameters registryUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (registryName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registryName"); + throw new ValidationException(ValidationRules.CannotBeNull, "registryName"); + } + if (registryName != null) + { + if (registryName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "registryName", 50); + } + if (registryName.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "registryName", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(registryName, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "registryName", "^[a-zA-Z0-9]*$"); + } + } + if (registryUpdateParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "registryUpdateParameters"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("registryName", registryName); + tracingParameters.Add("registryUpdateParameters", registryUpdateParameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{registryName}", System.Uri.EscapeDataString(registryName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -736,44 +814,58 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; + if(registryUpdateParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(registryUpdateParameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -783,118 +875,124 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + 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) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Updates a container registry with the specified parameters. + /// Lists all the container registries under the specified resource group. /// /// /// The name of the resource group to which the container registry belongs. /// - /// - /// The name of the container registry. - /// - /// - /// The parameters for updating a container registry. - /// /// /// 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 System.Threading.Tasks.Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryUpdateParameters registryUpdateParameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (registryName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registryName"); - } - if (registryUpdateParameters == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registryUpdateParameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("registryName", registryName); - tracingParameters.Add("registryUpdateParameters", registryUpdateParameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{registryName}", System.Uri.EscapeDataString(registryName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -909,58 +1007,52 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; - if(registryUpdateParameters != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(registryUpdateParameters, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -970,7 +1062,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -983,107 +1075,102 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Lists all the available container registries under the specified resource - /// group. + /// Lists all the container registries under the specified subscription. /// - /// - /// The name of the resource group to which the container registry belongs. - /// /// /// 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 System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.ContainerRegistry/registries").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1099,51 +1186,51 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1153,7 +1240,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1166,98 +1253,135 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Lists all the available container registries under the specified - /// subscription. + /// Lists the login credentials for the specified container registry. /// + /// + /// The name of the resource group to which the container registry belongs. + /// + /// + /// The name of the container registry. + /// /// /// 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 System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> ListCredentialsWithHttpMessagesAsync(string resourceGroupName, string registryName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (registryName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "registryName"); + } + if (registryName != null) + { + if (registryName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "registryName", 50); + } + if (registryName.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "registryName", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(registryName, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "registryName", "^[a-zA-Z0-9]*$"); + } } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("registryName", registryName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListCredentials", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.ContainerRegistry/registries").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}/listCredentials").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{registryName}", System.Uri.EscapeDataString(registryName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1273,51 +1397,51 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1327,7 +1451,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1340,27 +1464,27 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the administrator login credentials for the specified container + /// Regenerates one of the login credentials for the specified container /// registry. /// /// @@ -1369,87 +1493,114 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// The name of the container registry. /// + /// + /// Specifies name of the password which should be regenerated -- password or + /// password2. Possible values include: 'password', 'password2' + /// /// /// 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 System.Threading.Tasks.Task> GetCredentialsWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> RegenerateCredentialWithHttpMessagesAsync(string resourceGroupName, string registryName, PasswordName name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (registryName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registryName"); + throw new ValidationException(ValidationRules.CannotBeNull, "registryName"); + } + if (registryName != null) + { + if (registryName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "registryName", 50); + } + if (registryName.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "registryName", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(registryName, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "registryName", "^[a-zA-Z0-9]*$"); + } } + RegenerateCredentialParameters regenerateCredentialParameters = new RegenerateCredentialParameters(); + regenerateCredentialParameters.Name = name; // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("registryName", registryName); + tracingParameters.Add("regenerateCredentialParameters", regenerateCredentialParameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetCredentials", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "RegenerateCredential", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}/getCredentials").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}/regenerateCredential").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{registryName}", System.Uri.EscapeDataString(registryName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1464,52 +1615,58 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; + if(regenerateCredentialParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(regenerateCredentialParameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1519,7 +1676,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1532,28 +1689,27 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Regenerates the administrator login credentials for the specified - /// container registry. + /// Creates a container registry with the specified parameters. /// /// /// The name of the resource group to which the container registry belongs. @@ -1561,87 +1717,119 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// The name of the container registry. /// + /// + /// The parameters for creating a container registry. + /// /// /// 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 System.Threading.Tasks.Task> RegenerateCredentialsWithHttpMessagesAsync(string resourceGroupName, string registryName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (registryName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "registryName"); + throw new ValidationException(ValidationRules.CannotBeNull, "registryName"); + } + if (registryName != null) + { + if (registryName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "registryName", 50); + } + if (registryName.Length < 5) + { + throw new ValidationException(ValidationRules.MinLength, "registryName", 5); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(registryName, "^[a-zA-Z0-9]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "registryName", "^[a-zA-Z0-9]*$"); + } + } + if (registryCreateParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "registryCreateParameters"); + } + if (registryCreateParameters != null) + { + registryCreateParameters.Validate(); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("registryName", registryName); + tracingParameters.Add("registryCreateParameters", registryCreateParameters); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "RegenerateCredentials", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}/regenerateCredentials").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerRegistry/registries/{registryName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{registryName}", System.Uri.EscapeDataString(registryName)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1656,52 +1844,58 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; + if(registryCreateParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(registryCreateParameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 202) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1711,7 +1905,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1724,28 +1918,27 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Lists all the available container registries under the specified resource - /// group. + /// Lists all the container registries under the specified resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -1756,61 +1949,66 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// 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 System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1826,51 +2024,51 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1880,7 +2078,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1893,28 +2091,27 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Lists all the available container registries under the specified - /// subscription. + /// Lists all the container registries under the specified subscription. /// /// /// The NextLink from the previous successful call to List operation. @@ -1925,61 +2122,66 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) /// /// 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 System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); + var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1995,51 +2197,51 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -2049,7 +2251,7 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -2062,24 +2264,25 @@ internal RegistriesOperations(ContainerRegistryManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperationsExtensions.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperationsExtensions.cs index d2f8ed7e5491..9bbc03855c49 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperationsExtensions.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Generated/RegistriesOperationsExtensions.cs @@ -1,16 +1,20 @@ // 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 0.17.0.0 +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ContainerRegistry { + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for RegistriesOperations. @@ -19,8 +23,8 @@ public static partial class RegistriesOperationsExtensions { /// /// Checks whether the container registry name is available for use. The name - /// must contain only alphanumeric characters, be globally unique, and - /// between 5 and 60 characters in length. + /// must contain only alphanumeric characters, be globally unique, and between + /// 5 and 60 characters in length. /// /// /// The operations group for this extension method. @@ -30,13 +34,13 @@ public static partial class RegistriesOperationsExtensions /// public static RegistryNameStatus CheckNameAvailability(this IRegistriesOperations operations, string name) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).CheckNameAvailabilityAsync(name), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CheckNameAvailabilityAsync(name).GetAwaiter().GetResult(); } /// /// Checks whether the container registry name is available for use. The name - /// must contain only alphanumeric characters, be globally unique, and - /// between 5 and 60 characters in length. + /// must contain only alphanumeric characters, be globally unique, and between + /// 5 and 60 characters in length. /// /// /// The operations group for this extension method. @@ -47,7 +51,7 @@ public static RegistryNameStatus CheckNameAvailability(this IRegistriesOperation /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CheckNameAvailabilityAsync(this IRegistriesOperations operations, string name, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CheckNameAvailabilityAsync(this IRegistriesOperations operations, string name, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CheckNameAvailabilityWithHttpMessagesAsync(name, null, cancellationToken).ConfigureAwait(false)) { @@ -67,9 +71,9 @@ public static RegistryNameStatus CheckNameAvailability(this IRegistriesOperation /// /// The name of the container registry. /// - public static Registry GetProperties(this IRegistriesOperations operations, string resourceGroupName, string registryName) + public static Registry Get(this IRegistriesOperations operations, string resourceGroupName, string registryName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).GetPropertiesAsync(resourceGroupName, registryName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, registryName).GetAwaiter().GetResult(); } /// @@ -87,16 +91,16 @@ public static Registry GetProperties(this IRegistriesOperations operations, stri /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetPropertiesAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetPropertiesWithHttpMessagesAsync(resourceGroupName, registryName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, registryName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Creates or updates a container registry with the specified parameters. + /// Creates a container registry with the specified parameters. /// /// /// The operations group for this extension method. @@ -107,16 +111,16 @@ public static Registry GetProperties(this IRegistriesOperations operations, stri /// /// The name of the container registry. /// - /// - /// The parameters for creating or updating a container registry. + /// + /// The parameters for creating a container registry. /// - public static Registry CreateOrUpdate(this IRegistriesOperations operations, string resourceGroupName, string registryName, Registry registry) + public static Registry Create(this IRegistriesOperations operations, string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).CreateOrUpdateAsync(resourceGroupName, registryName, registry), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateAsync(resourceGroupName, registryName, registryCreateParameters).GetAwaiter().GetResult(); } /// - /// Creates or updates a container registry with the specified parameters. + /// Creates a container registry with the specified parameters. /// /// /// The operations group for this extension method. @@ -127,15 +131,15 @@ public static Registry CreateOrUpdate(this IRegistriesOperations operations, str /// /// The name of the container registry. /// - /// - /// The parameters for creating or updating a container registry. + /// + /// The parameters for creating a container registry. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, Registry registry, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, registryName, registry, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, registryName, registryCreateParameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -155,7 +159,7 @@ public static Registry CreateOrUpdate(this IRegistriesOperations operations, str /// public static void Delete(this IRegistriesOperations operations, string resourceGroupName, string registryName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).DeleteAsync(resourceGroupName, registryName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, registryName).GetAwaiter().GetResult(); } /// @@ -173,7 +177,7 @@ public static void Delete(this IRegistriesOperations operations, string resource /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task DeleteAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task DeleteAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, CancellationToken cancellationToken = default(CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(resourceGroupName, registryName, null, cancellationToken).ConfigureAwait(false); } @@ -195,7 +199,7 @@ public static void Delete(this IRegistriesOperations operations, string resource /// public static Registry Update(this IRegistriesOperations operations, string resourceGroupName, string registryName, RegistryUpdateParameters registryUpdateParameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).UpdateAsync(resourceGroupName, registryName, registryUpdateParameters), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.UpdateAsync(resourceGroupName, registryName, registryUpdateParameters).GetAwaiter().GetResult(); } /// @@ -216,7 +220,7 @@ public static Registry Update(this IRegistriesOperations operations, string reso /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task UpdateAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, RegistryUpdateParameters registryUpdateParameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task UpdateAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, RegistryUpdateParameters registryUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, registryName, registryUpdateParameters, null, cancellationToken).ConfigureAwait(false)) { @@ -225,8 +229,7 @@ public static Registry Update(this IRegistriesOperations operations, string reso } /// - /// Lists all the available container registries under the specified resource - /// group. + /// Lists all the container registries under the specified resource group. /// /// /// The operations group for this extension method. @@ -234,14 +237,13 @@ public static Registry Update(this IRegistriesOperations operations, string reso /// /// The name of the resource group to which the container registry belongs. /// - public static Microsoft.Rest.Azure.IPage ListByResourceGroup(this IRegistriesOperations operations, string resourceGroupName) + public static IPage ListByResourceGroup(this IRegistriesOperations operations, string resourceGroupName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).ListByResourceGroupAsync(resourceGroupName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); } /// - /// Lists all the available container registries under the specified resource - /// group. + /// Lists all the container registries under the specified resource group. /// /// /// The operations group for this extension method. @@ -252,7 +254,7 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroup(this IReg /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IRegistriesOperations operations, string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByResourceGroupAsync(this IRegistriesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) { @@ -261,20 +263,18 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroup(this IReg } /// - /// Lists all the available container registries under the specified - /// subscription. + /// Lists all the container registries under the specified subscription. /// /// /// The operations group for this extension method. /// - public static Microsoft.Rest.Azure.IPage List(this IRegistriesOperations operations) + public static IPage List(this IRegistriesOperations operations) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).ListAsync(), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListAsync().GetAwaiter().GetResult(); } /// - /// Lists all the available container registries under the specified - /// subscription. + /// Lists all the container registries under the specified subscription. /// /// /// The operations group for this extension method. @@ -282,7 +282,7 @@ public static Microsoft.Rest.Azure.IPage List(this IRegistriesOperatio /// /// The cancellation token. /// - public static async Task> ListAsync(this IRegistriesOperations operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListAsync(this IRegistriesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { @@ -291,7 +291,47 @@ public static Microsoft.Rest.Azure.IPage List(this IRegistriesOperatio } /// - /// Gets the administrator login credentials for the specified container + /// Lists the login credentials for the specified container registry. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the container registry belongs. + /// + /// + /// The name of the container registry. + /// + public static RegistryListCredentialsResult ListCredentials(this IRegistriesOperations operations, string resourceGroupName, string registryName) + { + return operations.ListCredentialsAsync(resourceGroupName, registryName).GetAwaiter().GetResult(); + } + + /// + /// Lists the login credentials for the specified container registry. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the container registry belongs. + /// + /// + /// The name of the container registry. + /// + /// + /// The cancellation token. + /// + public static async Task ListCredentialsAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListCredentialsWithHttpMessagesAsync(resourceGroupName, registryName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Regenerates one of the login credentials for the specified container /// registry. /// /// @@ -303,13 +343,17 @@ public static Microsoft.Rest.Azure.IPage List(this IRegistriesOperatio /// /// The name of the container registry. /// - public static RegistryCredentials GetCredentials(this IRegistriesOperations operations, string resourceGroupName, string registryName) + /// + /// Specifies name of the password which should be regenerated -- password or + /// password2. Possible values include: 'password', 'password2' + /// + public static RegistryListCredentialsResult RegenerateCredential(this IRegistriesOperations operations, string resourceGroupName, string registryName, PasswordName name) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).GetCredentialsAsync(resourceGroupName, registryName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.RegenerateCredentialAsync(resourceGroupName, registryName, name).GetAwaiter().GetResult(); } /// - /// Gets the administrator login credentials for the specified container + /// Regenerates one of the login credentials for the specified container /// registry. /// /// @@ -321,20 +365,23 @@ public static RegistryCredentials GetCredentials(this IRegistriesOperations oper /// /// The name of the container registry. /// + /// + /// Specifies name of the password which should be regenerated -- password or + /// password2. Possible values include: 'password', 'password2' + /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetCredentialsAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task RegenerateCredentialAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, PasswordName name, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetCredentialsWithHttpMessagesAsync(resourceGroupName, registryName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.RegenerateCredentialWithHttpMessagesAsync(resourceGroupName, registryName, name, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Regenerates the administrator login credentials for the specified - /// container registry. + /// Creates a container registry with the specified parameters. /// /// /// The operations group for this extension method. @@ -345,14 +392,16 @@ public static RegistryCredentials GetCredentials(this IRegistriesOperations oper /// /// The name of the container registry. /// - public static RegistryCredentials RegenerateCredentials(this IRegistriesOperations operations, string resourceGroupName, string registryName) + /// + /// The parameters for creating a container registry. + /// + public static Registry BeginCreate(this IRegistriesOperations operations, string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).RegenerateCredentialsAsync(resourceGroupName, registryName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.BeginCreateAsync(resourceGroupName, registryName, registryCreateParameters).GetAwaiter().GetResult(); } /// - /// Regenerates the administrator login credentials for the specified - /// container registry. + /// Creates a container registry with the specified parameters. /// /// /// The operations group for this extension method. @@ -363,20 +412,22 @@ public static RegistryCredentials RegenerateCredentials(this IRegistriesOperatio /// /// The name of the container registry. /// + /// + /// The parameters for creating a container registry. + /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task RegenerateCredentialsAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginCreateAsync(this IRegistriesOperations operations, string resourceGroupName, string registryName, RegistryCreateParameters registryCreateParameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.RegenerateCredentialsWithHttpMessagesAsync(resourceGroupName, registryName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, registryName, registryCreateParameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Lists all the available container registries under the specified resource - /// group. + /// Lists all the container registries under the specified resource group. /// /// /// The operations group for this extension method. @@ -384,14 +435,13 @@ public static RegistryCredentials RegenerateCredentials(this IRegistriesOperatio /// /// The NextLink from the previous successful call to List operation. /// - public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(this IRegistriesOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this IRegistriesOperations operations, string nextPageLink) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).ListByResourceGroupNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all the available container registries under the specified resource - /// group. + /// Lists all the container registries under the specified resource group. /// /// /// The operations group for this extension method. @@ -402,7 +452,7 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(this /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this IRegistriesOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this IRegistriesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { @@ -411,8 +461,7 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(this } /// - /// Lists all the available container registries under the specified - /// subscription. + /// Lists all the container registries under the specified subscription. /// /// /// The operations group for this extension method. @@ -420,14 +469,13 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(this /// /// The NextLink from the previous successful call to List operation. /// - public static Microsoft.Rest.Azure.IPage ListNext(this IRegistriesOperations operations, string nextPageLink) + public static IPage ListNext(this IRegistriesOperations operations, string nextPageLink) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IRegistriesOperations)s).ListNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Lists all the available container registries under the specified - /// subscription. + /// Lists all the container registries under the specified subscription. /// /// /// The operations group for this extension method. @@ -438,7 +486,7 @@ public static Microsoft.Rest.Azure.IPage ListNext(this IRegistriesOper /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IRegistriesOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListNextAsync(this IRegistriesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { @@ -448,3 +496,4 @@ public static Microsoft.Rest.Azure.IPage ListNext(this IRegistriesOper } } + diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Properties/AssemblyInfo.cs b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Properties/AssemblyInfo.cs index 49dbc5dda5a0..a294c3d6e03d 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Container Registry.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.1.0.0")] +[assembly: AssemblyFileVersion("1.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd index 3ed8dbb46267..60ff98f79d34 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd @@ -4,9 +4,9 @@ :: @echo off -set autoRestVersion=0.17.0-Nightly20161012 +set autoRestVersion=1.0.0-Nightly20170212 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-containerregistry/2016-06-27-preview/swagger/containerregistry.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-containerregistry/2017-03-01/swagger/containerregistry.json" ) else ( set specFile="%1" ) diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json index 63b04956045b..95c434d19a41 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json @@ -1,5 +1,5 @@ { - "version": "1.1.0-preview", + "version": "1.2.0", "description": "Microsoft Azure Container Registry Management Library", "authors": [ "Microsoft" ], From 3fb91e645d6579bc94f5447e3fb24c8de4988243 Mon Sep 17 00:00:00 2001 From: shahabhijeet Date: Thu, 16 Mar 2017 21:19:43 -0700 Subject: [PATCH 10/56] Addressing PR feedback, re-recording test after addressing feedback --- src/ClientRuntime/ClientRuntime.sln | 6 - .../ScenarioTests/E2ETestBase.cs | 116 +-- .../ScenarioTests/VMTests.cs | 18 +- .../UpdateVM_DoNotSerializeProtected.json | 913 +++++++++--------- .../TestAssets/ExtendingTypes.cs | 13 +- .../TestAssets/RecordedDelegatingHandler.cs | 12 +- 6 files changed, 514 insertions(+), 564 deletions(-) diff --git a/src/ClientRuntime/ClientRuntime.sln b/src/ClientRuntime/ClientRuntime.sln index 26d514f45335..65c50d6c50cb 100644 --- a/src/ClientRuntime/ClientRuntime.sln +++ b/src/ClientRuntime/ClientRuntime.sln @@ -25,8 +25,6 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HttpRecorder", "..\TestFram EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "TestFramework", "..\TestFramework\Microsoft.Rest.ClientRuntime.Azure.TestFramework\TestFramework.xproj", "{C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Azure.Management.Compute", "..\ResourceManagement\Compute\Microsoft.Azure.Management.Compute\Microsoft.Azure.Management.Compute.xproj", "{CBE97730-45F5-448E-88E9-55DF94D65B77}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -77,10 +75,6 @@ Global {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Debug|Any CPU.Build.0 = Debug|Any CPU {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.ActiveCfg = Release|Any CPU {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.Build.0 = Release|Any CPU - {CBE97730-45F5-448E-88E9-55DF94D65B77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CBE97730-45F5-448E-88E9-55DF94D65B77}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CBE97730-45F5-448E-88E9-55DF94D65B77}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CBE97730-45F5-448E-88E9-55DF94D65B77}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs index f6b9921e991f..130b4c94707d 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/E2ETestBase.cs @@ -1,4 +1,7 @@ -namespace Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests { using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; @@ -17,7 +20,6 @@ using System.Linq; using System.Net; using System.Reflection; - using System.Threading.Tasks; using Xunit; public class E2ETestBase @@ -28,13 +30,16 @@ public class E2ETestBase MockContext _mockContext; ResourceManagementClient _resourceClient; - //ComputeManagementClient _computeClient; MyComputeClient _computeClient; StorageManagementClient _storageClient; NetworkManagementClient _networkClient; ImageReference m_windowsImageReference, m_linuxImageReference; + /// + /// Constructor for E2ETestBase class + /// + /// public E2ETestBase(string testPrefix = "") { TEST_PREFIX = testPrefix; @@ -136,46 +141,38 @@ protected StorageAccount CreateStorageAccount(ResourceGroup resGroup, string sto try { var storageAccountList = StorageClient.StorageAccounts.ListByResourceGroup(rgName); - if(storageAccountList.Any()) + if (storageAccountList.Any()) { storageAccountOutput = storageAccountList.Where((sa) => sa.Name.Equals(storageAccountName, StringComparison.OrdinalIgnoreCase)).FirstOrDefault(); } } catch { } - try + if (storageAccountOutput == null) { - if(storageAccountOutput == null) + var stoInput = new StorageAccountCreateParameters { - var stoInput = new StorageAccountCreateParameters - { - Location = DEFAULT_LOCATION, - AccountType = AccountType.StandardGRS - }; - - storageAccountOutput = StorageClient.StorageAccounts.Create(rgName, - storageAccountName, stoInput); - bool created = false; - while (!created) - { - System.Threading.Thread.Sleep(TimeSpan.FromSeconds(10)); - var stos = StorageClient.StorageAccounts.ListByResourceGroup(rgName); - created = - stos.Any( - t => - StringComparer.OrdinalIgnoreCase.Equals(t.Name, storageAccountName)); - } + Location = DEFAULT_LOCATION, + AccountType = AccountType.StandardGRS + }; - storageAccountOutput = StorageClient.StorageAccounts.GetProperties(rgName, storageAccountName); + storageAccountOutput = StorageClient.StorageAccounts.Create(rgName, + storageAccountName, stoInput); + bool created = false; + while (!created) + { + Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities.Wait(TimeSpan.FromSeconds(10)); + var stos = StorageClient.StorageAccounts.ListByResourceGroup(rgName); + created = + stos.Any( + t => + StringComparer.OrdinalIgnoreCase.Equals(t.Name, storageAccountName)); } - return storageAccountOutput; - } - catch - { - //ResourceClient.ResourceGroups.Delete(rgName); - throw; + storageAccountOutput = StorageClient.StorageAccounts.GetProperties(rgName, storageAccountName); } + + return storageAccountOutput; } protected ResourceGroup CreateResourceGroup(string rgName) @@ -184,28 +181,19 @@ protected ResourceGroup CreateResourceGroup(string rgName) try { resourceGroup = ResourceClient.ResourceGroups.Get(rgName); - //ResourceClient.ResourceGroups.Delete(rgName); } catch { } - try - { - if (resourceGroup == null) - { - resourceGroup = ResourceClient.ResourceGroups.CreateOrUpdate( - rgName, - new ResourceGroup - { - Location = DEFAULT_LOCATION, - Tags = new Dictionary() { { rgName, DateTime.UtcNow.ToString("u") } } - }); - } - } - catch + if (resourceGroup == null) { - throw; + resourceGroup = ResourceClient.ResourceGroups.CreateOrUpdate( + rgName, + new ResourceGroup + { + Location = DEFAULT_LOCATION, + Tags = new Dictionary() { { rgName, DateTime.UtcNow.ToString("u") } } + }); } - return resourceGroup; } @@ -253,19 +241,7 @@ protected ImageReference FindVMImage(string publisher, string offer, string sku) }; } - protected VirtualMachine CreateVM_NoAsyncTracking( - string rgName, string vmName, string asName, StorageAccount storageAccount, ImageReference imageRef, - out VirtualMachine inputVM, - Action vmCustomizer = null, - bool createWithPublicIpAddress = false, - bool waitOperation = true, - bool hasManagedDisks = false) - { - return CreateVM_NoAsyncTracking(rgName, vmName, asName, storageAccount.Name, imageRef, out inputVM, vmCustomizer, - createWithPublicIpAddress, waitOperation, hasManagedDisks); - } - - protected VirtualMachine CreateVM_NoAsyncTracking( + protected VirtualMachine CreateVirtualMachine( string rgName, string vmName, string asName, string storageAccountName, ImageReference imageRef, out VirtualMachine inputVM, Action vmCustomizer = null, @@ -308,10 +284,6 @@ protected VirtualMachine CreateVM_NoAsyncTracking( string asetId = CreateAvailabilitySet(rgName, asName, hasManagedDisks); inputVM = CreateDefaultVMInput(rgName, vmName, storageAccountName, imageRef, asetId, nicResponse.Id, hasManagedDisks); - //if (vmCustomizer != null) - //{ - // vmCustomizer(inputVM); - //} string expectedVMReferenceId = GetVMReferenceId(ComputeClient.SubscriptionId, rgName, inputVM.Name); @@ -717,20 +689,6 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string vmName, stri Uri = osVhduri } } - //DataDisks = !hasManagedDisks ? null : new List() - //{ - // new DataDisk() - // { - // Caching = CachingTypes.None, - // CreateOption = DiskCreateOptionTypes.Empty, - // Lun = 0, - // DiskSizeGB = 30, - // ManagedDisk = new ManagedDiskParameters() - // { - // StorageAccountType = StorageAccountTypes.StandardLRS - // } - // } - //}, }, NetworkProfile = new NetworkProfile { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs index ee9b9185f04a..705f0486f099 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/ScenarioTests/VMTests.cs @@ -1,4 +1,7 @@ -namespace Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests { using Microsoft.Azure.Management.Compute; using Microsoft.Azure.Management.Compute.Models; @@ -24,12 +27,10 @@ public class VMTests : E2ETestBase const string vmPrefix = "vm"; /// - /// Constructor + /// Constructor for Test class /// public VMTests() : base(prefix) - { - - } + { } [Fact] public void UpdateVM_DoNotSerializeProtected() @@ -51,7 +52,7 @@ public void UpdateVM_DoNotSerializeProtected() resGroup = CreateResourceGroup(resourceGroupName); StorageAccount storageAccount = CreateStorageAccount(resGroup, storageName); ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); - VirtualMachine vm = CreateVM_NoAsyncTracking(resGroup.Name, vmName, asName, storageAccount, imageRef, out vm1); + VirtualMachine vm = CreateVirtualMachine(resGroup.Name, vmName, asName, storageAccount.Name, imageRef, out vm1); //Create a new VM and Update VmId protected Property MyVm myNewVm = new MyVm(vm); @@ -59,7 +60,7 @@ public void UpdateVM_DoNotSerializeProtected() VirtualMachine updatedVm = myNewVm as VirtualMachine; // Update VM - AzureOperationResponse res = Task>.Run(async () => + AzureOperationResponse putResponse = Task>.Run(async () => { return await ComputeClient.VirtualMachines.BeginCreateOrUpdateWithHttpMessagesAsync(resGroup.Name, updatedVm.Name, updatedVm).ConfigureAwait(false); }).GetAwaiter().GetResult(); @@ -69,7 +70,7 @@ public void UpdateVM_DoNotSerializeProtected() Assert.False(requestContentStr.Contains("VmId")); //Get VM Object - VirtualMachine getVm = res.Body; + VirtualMachine getVm = putResponse.Body; // Verify the vmPutResponse does not contain updated VmId Assert.NotEqual(newVmId, getVm.VmId); @@ -77,6 +78,7 @@ public void UpdateVM_DoNotSerializeProtected() catch(Exception ex) { Debug.WriteLine(ex.ToString()); + throw; } finally { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json index a1df7c3f975f..a4008aa32025 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/SessionRecords/Microsoft.Rest.ClientRuntime.E2E.Tests.ScenarioTests.VMTests/UpdateVM_DoNotSerializeProtected.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5954cea2-0adc-4ec3-bf29-553565f7efcb" + "fd14f653-a6e8-49e5-be09-a18b1ce1046b" ], "accept-language": [ "en-US" @@ -32,7 +32,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:33:28 GMT" + "Thu, 16 Mar 2017 23:53:26 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +41,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14999" ], "x-ms-request-id": [ - "103a4b62-0ffd-4cd3-8d32-113d8b5a16f7" + "6eb02ac9-4ed7-43e8-8abc-c0d6732c6eda" ], "x-ms-correlation-request-id": [ - "103a4b62-0ffd-4cd3-8d32-113d8b5a16f7" + "6eb02ac9-4ed7-43e8-8abc-c0d6732c6eda" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153329Z:103a4b62-0ffd-4cd3-8d32-113d8b5a16f7" + "CENTRALUS:20170316T235326Z:6eb02ac9-4ed7-43e8-8abc-c0d6732c6eda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -65,7 +65,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "792b5bc8-bbb8-4975-9f09-f923d8396902" + "4574e0cc-0be4-4548-ab90-938fb89a2dc2" ], "accept-language": [ "en-US" @@ -75,7 +75,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9\",\r\n \"name\": \"e2etests-res-f978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 15:33:29Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9\",\r\n \"name\": \"e2etests-res-f978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 23:53:26Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -87,7 +87,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:21 GMT" + "Thu, 16 Mar 2017 23:54:53 GMT" ], "Pragma": [ "no-cache" @@ -96,16 +96,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14995" ], "x-ms-request-id": [ - "b3e84152-d2aa-4401-bae1-e08f6a5d29e1" + "78d08f1f-ecf4-4c09-97cb-e85d24b61ed3" ], "x-ms-correlation-request-id": [ - "b3e84152-d2aa-4401-bae1-e08f6a5d29e1" + "78d08f1f-ecf4-4c09-97cb-e85d24b61ed3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153422Z:b3e84152-d2aa-4401-bae1-e08f6a5d29e1" + "CENTRALUS:20170316T235453Z:78d08f1f-ecf4-4c09-97cb-e85d24b61ed3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,7 +117,7 @@ "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourcegroups/e2etests-res-f978ade9?api-version=2015-11-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlZ3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 15:33:29Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 23:53:26Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -126,7 +126,7 @@ "107" ], "x-ms-client-request-id": [ - "2693c761-c7bd-41f0-be26-6cecd3a6d67a" + "19abaaa0-6abf-4907-b0e9-cbe9a8ad44b9" ], "accept-language": [ "en-US" @@ -136,7 +136,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9\",\r\n \"name\": \"e2etests-res-f978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 15:33:29Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9\",\r\n \"name\": \"e2etests-res-f978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"e2etests-res-f978ade9\": \"2017-03-16 23:53:26Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -151,7 +151,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:33:31 GMT" + "Thu, 16 Mar 2017 23:53:29 GMT" ], "Pragma": [ "no-cache" @@ -160,13 +160,13 @@ "1199" ], "x-ms-request-id": [ - "d3c44c97-2eaf-4312-b5b1-850f55aaf200" + "f65b60b5-87e1-4c4b-9ac4-27bc4c357940" ], "x-ms-correlation-request-id": [ - "d3c44c97-2eaf-4312-b5b1-850f55aaf200" + "f65b60b5-87e1-4c4b-9ac4-27bc4c357940" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153332Z:d3c44c97-2eaf-4312-b5b1-850f55aaf200" + "CENTRALUS:20170316T235330Z:f65b60b5-87e1-4c4b-9ac4-27bc4c357940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,7 +181,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac4e8e0d-fe2e-48bd-b82a-3b39327187d2" + "b70fec28-5665-46b6-a1c9-4c36ba6dfc14" ], "accept-language": [ "en-US" @@ -203,7 +203,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:33:33 GMT" + "Thu, 16 Mar 2017 23:53:32 GMT" ], "Pragma": [ "no-cache" @@ -219,16 +219,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3fcf20ac-11aa-45fb-b977-96432c983e8a" + "d6a4350c-4444-4959-8092-16a1f04bfb23" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14997" ], "x-ms-correlation-request-id": [ - "3fcf20ac-11aa-45fb-b977-96432c983e8a" + "d6a4350c-4444-4959-8092-16a1f04bfb23" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153334Z:3fcf20ac-11aa-45fb-b977-96432c983e8a" + "CENTRALUS:20170316T235332Z:d6a4350c-4444-4959-8092-16a1f04bfb23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,7 +243,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4610d918-d3c6-4781-8e71-796a1c9cf744" + "f69a9bb9-e80a-440c-879e-8619cecf124d" ], "accept-language": [ "en-US" @@ -253,7 +253,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e2etestsstof978ade9\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-03-16T15:33:37.2060922Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://e2etestsstof978ade9.blob.core.windows.net/\",\r\n \"file\": \"https://e2etestsstof978ade9.file.core.windows.net/\",\r\n \"queue\": \"https://e2etestsstof978ade9.queue.core.windows.net/\",\r\n \"table\": \"https://e2etestsstof978ade9.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e2etestsstof978ade9\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-03-16T23:53:36.5990647Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://e2etestsstof978ade9.blob.core.windows.net/\",\r\n \"file\": \"https://e2etestsstof978ade9.file.core.windows.net/\",\r\n \"queue\": \"https://e2etestsstof978ade9.queue.core.windows.net/\",\r\n \"table\": \"https://e2etestsstof978ade9.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -265,7 +265,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:18 GMT" + "Thu, 16 Mar 2017 23:54:46 GMT" ], "Pragma": [ "no-cache" @@ -281,16 +281,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1f7addc2-86e9-48de-aede-1c6432ecacd5" + "ebe82478-d0c6-408e-b5a0-2bbee1c2761d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14994" ], "x-ms-correlation-request-id": [ - "1f7addc2-86e9-48de-aede-1c6432ecacd5" + "ebe82478-d0c6-408e-b5a0-2bbee1c2761d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153418Z:1f7addc2-86e9-48de-aede-1c6432ecacd5" + "CENTRALUS:20170316T235447Z:ebe82478-d0c6-408e-b5a0-2bbee1c2761d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -311,7 +311,7 @@ "95" ], "x-ms-client-request-id": [ - "2a916740-2551-4705-8e18-1c480963194a" + "f19d9318-0d20-4206-a663-588881290e8a" ], "accept-language": [ "en-US" @@ -333,13 +333,13 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:33:37 GMT" + "Thu, 16 Mar 2017 23:53:36 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/0d1d1a0c-6124-429b-990d-2559bd9f83fd?monitor=true&api-version=2015-06-15" + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/a04bce7c-3d8e-457b-a3c9-d7f09a15a7cc?monitor=true&api-version=2015-06-15" ], "Retry-After": [ "17" @@ -352,13 +352,69 @@ "1199" ], "x-ms-request-id": [ - "7301374d-633d-490a-8cec-9a5dbb23dbb5" + "aeeb0050-14db-43fc-a850-5d8102c3489b" + ], + "x-ms-correlation-request-id": [ + "aeeb0050-14db-43fc-a850-5d8102c3489b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170316T235336Z:aeeb0050-14db-43fc-a850-5d8102c3489b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/a04bce7c-3d8e-457b-a3c9-d7f09a15a7cc?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2EwNGJjZTdjLTNkOGUtNDU3Yi1hM2M5LWQ3ZjA5YTE1YTdjYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Mar 2017 23:54:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/a04bce7c-3d8e-457b-a3c9-d7f09a15a7cc?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "be3388d8-aadf-46a1-98d9-faaeb2b44be9" ], "x-ms-correlation-request-id": [ - "7301374d-633d-490a-8cec-9a5dbb23dbb5" + "be3388d8-aadf-46a1-98d9-faaeb2b44be9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153337Z:7301374d-633d-490a-8cec-9a5dbb23dbb5" + "CENTRALUS:20170316T235406Z:be3388d8-aadf-46a1-98d9-faaeb2b44be9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -367,8 +423,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/0d1d1a0c-6124-429b-990d-2559bd9f83fd?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzBkMWQxYTBjLTYxMjQtNDI5Yi05OTBkLTI1NTliZDlmODNmZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Storage/operations/a04bce7c-3d8e-457b-a3c9-d7f09a15a7cc?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2EwNGJjZTdjLTNkOGUtNDU3Yi1hM2M5LWQ3ZjA5YTE1YTdjYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -389,7 +445,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:08 GMT" + "Thu, 16 Mar 2017 23:54:36 GMT" ], "Pragma": [ "no-cache" @@ -405,16 +461,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4e392d2b-332f-460a-920f-0b66a12b4d3b" + "05284167-ecfe-442a-97c1-578d0df19c86" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14995" ], "x-ms-correlation-request-id": [ - "4e392d2b-332f-460a-920f-0b66a12b4d3b" + "05284167-ecfe-442a-97c1-578d0df19c86" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153408Z:4e392d2b-332f-460a-920f-0b66a12b4d3b" + "CENTRALUS:20170316T235437Z:05284167-ecfe-442a-97c1-578d0df19c86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,7 +485,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8825bfb5-d522-4e06-ab25-24c0376025a8" + "1f53a235-7673-45a3-b83a-066992ba35cb" ], "accept-language": [ "en-US" @@ -439,7 +495,7 @@ "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e2etestsstof978ade9\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-03-16T15:33:37.2060922Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://e2etestsstof978ade9.blob.core.windows.net/\",\r\n \"file\": \"https://e2etestsstof978ade9.file.core.windows.net/\",\r\n \"queue\": \"https://e2etestsstof978ade9.queue.core.windows.net/\",\r\n \"table\": \"https://e2etestsstof978ade9.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Storage/storageAccounts/e2etestsstof978ade9\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"e2etestsstof978ade9\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-03-16T23:53:36.5990647Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://e2etestsstof978ade9.blob.core.windows.net/\",\r\n \"file\": \"https://e2etestsstof978ade9.file.core.windows.net/\",\r\n \"queue\": \"https://e2etestsstof978ade9.queue.core.windows.net/\",\r\n \"table\": \"https://e2etestsstof978ade9.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -451,7 +507,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:18 GMT" + "Thu, 16 Mar 2017 23:54:47 GMT" ], "Pragma": [ "no-cache" @@ -467,16 +523,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "07196a4a-cf03-4d44-bc6b-cd9593240d21" + "108d1403-72e3-42f8-a8b1-cfe14ae3b69b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14993" ], "x-ms-correlation-request-id": [ - "07196a4a-cf03-4d44-bc6b-cd9593240d21" + "108d1403-72e3-42f8-a8b1-cfe14ae3b69b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153418Z:07196a4a-cf03-4d44-bc6b-cd9593240d21" + "CENTRALUS:20170316T235448Z:108d1403-72e3-42f8-a8b1-cfe14ae3b69b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -491,7 +547,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcf2cfd2-32dd-4b54-bcda-7887fda0a87b" + "08068cc0-24e1-4b4a-a5e5-56ccb0d89df9" ], "accept-language": [ "en-US" @@ -513,7 +569,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:20 GMT" + "Thu, 16 Mar 2017 23:54:51 GMT" ], "Pragma": [ "no-cache" @@ -535,16 +591,16 @@ "9fc414ea-410e-4600-9f7c-71bc36416f3f_131147224964182697" ], "x-ms-request-id": [ - "fc9bbf56-7a4f-49df-9468-35b1dcc92631" + "2f06eef1-8fba-4b8a-976d-891a0d46b1a8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14995" ], "x-ms-correlation-request-id": [ - "3f7c05ae-2909-4dc6-a354-85b4f557f865" + "078bb14e-187f-40fb-b97c-34478a4dbf10" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153421Z:3f7c05ae-2909-4dc6-a354-85b4f557f865" + "CENTRALUS:20170316T235451Z:078bb14e-187f-40fb-b97c-34478a4dbf10" ] }, "StatusCode": 200 @@ -556,7 +612,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd4c4b15-852f-4045-bf81-9f62f9e26de9" + "03e64c28-2874-46f3-a3b8-df129cd564c4" ], "accept-language": [ "en-US" @@ -581,7 +637,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:21 GMT" + "Thu, 16 Mar 2017 23:54:53 GMT" ], "Pragma": [ "no-cache" @@ -590,13 +646,13 @@ "gateway" ], "x-ms-request-id": [ - "20a78d0d-836d-4e37-b019-0adc476b1161" + "df2a3a93-d338-4899-91c2-7bb8e06fe4b7" ], "x-ms-correlation-request-id": [ - "20a78d0d-836d-4e37-b019-0adc476b1161" + "df2a3a93-d338-4899-91c2-7bb8e06fe4b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153422Z:20a78d0d-836d-4e37-b019-0adc476b1161" + "CENTRALUS:20170316T235453Z:df2a3a93-d338-4899-91c2-7bb8e06fe4b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,7 +671,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"9700a314-4905-4f85-b1d2-6a3095bfa18e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -627,7 +683,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:44:24 GMT" + "Fri, 17 Mar 2017 00:04:36 GMT" ], "Pragma": [ "no-cache" @@ -649,16 +705,16 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "a039c1c1-3bad-4d74-adaa-1f5c178c0b59" + "4a425c21-7fef-4be3-ae6f-7d7ab868ac98" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14976" ], "x-ms-correlation-request-id": [ - "cc7aaff7-6eda-48b3-bcfe-1aac7b017696" + "f82c43eb-a0a7-4d1f-8055-0f37e781b64f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154424Z:cc7aaff7-6eda-48b3-bcfe-1aac7b017696" + "CENTRALUS:20170317T000436Z:f82c43eb-a0a7-4d1f-8055-0f37e781b64f" ] }, "StatusCode": 200 @@ -670,7 +726,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0debd1f-1b6d-4f26-bbe3-09fc161cfd26" + "9e54b3d1-627f-47e4-86c1-45ba3a4a708d" ], "accept-language": [ "en-US" @@ -680,7 +736,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"9700a314-4905-4f85-b1d2-6a3095bfa18e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -692,7 +748,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:44:24 GMT" + "Fri, 17 Mar 2017 00:04:36 GMT" ], "Pragma": [ "no-cache" @@ -714,16 +770,16 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "0759e33f-992d-4016-8ede-b50f976842fa" + "5f3880de-3019-43d1-a3ca-1a37140019cc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14975" ], "x-ms-correlation-request-id": [ - "ff5c2e00-ff69-43be-be85-e54b8d27f3e4" + "4b9d50c9-07bd-4bd2-9f73-52e4541632ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154424Z:ff5c2e00-ff69-43be-be85-e54b8d27f3e4" + "CENTRALUS:20170317T000436Z:4b9d50c9-07bd-4bd2-9f73-52e4541632ee" ] }, "StatusCode": 200 @@ -735,7 +791,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1fcce22-63cc-4af1-92aa-1196d66fd13e" + "dea3f7eb-2521-415c-95ce-159f421fcab2" ], "accept-language": [ "en-US" @@ -760,7 +816,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:24 GMT" + "Thu, 16 Mar 2017 23:54:56 GMT" ], "Pragma": [ "no-cache" @@ -769,13 +825,13 @@ "gateway" ], "x-ms-request-id": [ - "baf238f9-d309-4992-b3b8-19c301b15514" + "60e7642b-0480-47a1-adac-afd4ff337879" ], "x-ms-correlation-request-id": [ - "baf238f9-d309-4992-b3b8-19c301b15514" + "60e7642b-0480-47a1-adac-afd4ff337879" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153425Z:baf238f9-d309-4992-b3b8-19c301b15514" + "CENTRALUS:20170316T235457Z:60e7642b-0480-47a1-adac-afd4ff337879" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -794,7 +850,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"caeed610-eeef-44b4-a08a-95fbee2b11ca\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"271e3be2-6a59-49ab-9056-9cc785cc45ca\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"89e4f50c-c92d-4753-b36e-498e0b42554d\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d5452f06-589b-4bfc-9daa-e5104055d5b1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -806,7 +862,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:01 GMT" + "Thu, 16 Mar 2017 23:55:34 GMT" ], "Pragma": [ "no-cache" @@ -815,7 +871,7 @@ "chunked" ], "ETag": [ - "W/\"caeed610-eeef-44b4-a08a-95fbee2b11ca\"" + "W/\"89e4f50c-c92d-4753-b36e-498e0b42554d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -825,19 +881,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "639adec6-5e9a-444c-ac04-b883931868b7" + "66820dfc-9ab4-4213-a4c4-4aa6b37fcd44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14997" ], "x-ms-correlation-request-id": [ - "f84c8d73-45d8-4d0a-b5e0-82cde333892a" + "eedac66a-5f2a-41ae-962c-b5e42e431938" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153502Z:f84c8d73-45d8-4d0a-b5e0-82cde333892a" + "CENTRALUS:20170316T235535Z:eedac66a-5f2a-41ae-962c-b5e42e431938" ] }, "StatusCode": 200 @@ -849,7 +905,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0527fd56-c0bb-4a8c-949b-cf63a2876b64" + "86c8f88b-d06a-4d8a-b59e-80752558c6a7" ], "accept-language": [ "en-US" @@ -859,7 +915,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"caeed610-eeef-44b4-a08a-95fbee2b11ca\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"271e3be2-6a59-49ab-9056-9cc785cc45ca\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"89e4f50c-c92d-4753-b36e-498e0b42554d\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d5452f06-589b-4bfc-9daa-e5104055d5b1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -871,7 +927,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:01 GMT" + "Thu, 16 Mar 2017 23:55:35 GMT" ], "Pragma": [ "no-cache" @@ -880,7 +936,7 @@ "chunked" ], "ETag": [ - "W/\"caeed610-eeef-44b4-a08a-95fbee2b11ca\"" + "W/\"89e4f50c-c92d-4753-b36e-498e0b42554d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -890,19 +946,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "83bddc95-be76-408b-bcbe-0f81f209180d" + "3e806a74-6d96-473b-9ef4-49421c79222e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14996" ], "x-ms-correlation-request-id": [ - "a2a982a8-0c45-43ae-8916-7a9129e32c0c" + "b4590799-6172-44b4-a682-9cbefefb5c33" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153502Z:a2a982a8-0c45-43ae-8916-7a9129e32c0c" + "CENTRALUS:20170316T235535Z:b4590799-6172-44b4-a682-9cbefefb5c33" ] }, "StatusCode": 200 @@ -920,7 +976,7 @@ "207" ], "x-ms-client-request-id": [ - "f18755ac-c196-4602-8304-777797768d7f" + "318439a5-c862-477f-9601-44dd02d2e74f" ], "accept-language": [ "en-US" @@ -930,7 +986,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"f7626243-4e30-4757-a7e1-d222ea938c29\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"271e3be2-6a59-49ab-9056-9cc785cc45ca\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/publicIPAddresses/pip5913\",\r\n \"etag\": \"W/\\\"d2c6b4c5-fd84-441e-aa8d-15ab61eda5d0\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d5452f06-589b-4bfc-9daa-e5104055d5b1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5913\",\r\n \"fqdn\": \"dn5913.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ "719" @@ -945,7 +1001,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:34:30 GMT" + "Thu, 16 Mar 2017 23:55:03 GMT" ], "Pragma": [ "no-cache" @@ -958,29 +1014,29 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8da38886-e9cd-47b4-b357-5fae8a3f0ed3" + "da38224c-7716-40c4-80c7-b5a23e2d3fd2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/8da38886-e9cd-47b4-b357-5fae8a3f0ed3?api-version=2016-06-01" + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/da38224c-7716-40c4-80c7-b5a23e2d3fd2?api-version=2016-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "1740ca82-fe1f-4350-abc7-017ef9d48b0c" + "d9692909-151f-4dda-be3c-e204df50b470" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153431Z:1740ca82-fe1f-4350-abc7-017ef9d48b0c" + "CENTRALUS:20170316T235503Z:d9692909-151f-4dda-be3c-e204df50b470" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/8da38886-e9cd-47b4-b357-5fae8a3f0ed3?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhkYTM4ODg2LWU5Y2QtNDdiNC1iMzU3LTVmYWU4YTNmMGVkMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/da38224c-7716-40c4-80c7-b5a23e2d3fd2?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhMzgyMjRjLTc3MTYtNDBjNC04MGM3LWI1YTIzZTJkM2ZkMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1001,7 +1057,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:00 GMT" + "Thu, 16 Mar 2017 23:55:34 GMT" ], "Pragma": [ "no-cache" @@ -1017,19 +1073,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f1f55caa-a929-4beb-b58e-82a59cb60ba4" + "4183fe67-52d8-47ad-b325-4afdc5deb0ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14998" ], "x-ms-correlation-request-id": [ - "e88c4b1c-769c-47d8-a1bf-299cb2b0ba9c" + "0599ffd8-956a-44c1-bb2b-551cde917f28" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153501Z:e88c4b1c-769c-47d8-a1bf-299cb2b0ba9c" + "CENTRALUS:20170316T235534Z:0599ffd8-956a-44c1-bb2b-551cde917f28" ] }, "StatusCode": 200 @@ -1041,7 +1097,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7890c050-2a1b-4b30-8ddb-21a2fbacbe20" + "441b8a63-d832-4eb8-a6fc-7e7e8b5ce2d8" ], "accept-language": [ "en-US" @@ -1066,7 +1122,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:01 GMT" + "Thu, 16 Mar 2017 23:55:35 GMT" ], "Pragma": [ "no-cache" @@ -1075,13 +1131,13 @@ "gateway" ], "x-ms-request-id": [ - "9f8316ba-bdcb-42f1-a2e9-adc096379d32" + "5f308394-43f0-4923-b78a-a92943a8142b" ], "x-ms-correlation-request-id": [ - "9f8316ba-bdcb-42f1-a2e9-adc096379d32" + "5f308394-43f0-4923-b78a-a92943a8142b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153502Z:9f8316ba-bdcb-42f1-a2e9-adc096379d32" + "CENTRALUS:20170316T235536Z:5f308394-43f0-4923-b78a-a92943a8142b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1096,7 +1152,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a53e297-dea7-48e0-a016-f711bc113589" + "f202c414-18be-4825-9e0d-441a980b032a" ], "accept-language": [ "en-US" @@ -1106,7 +1162,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"b9b50994-94c0-4fcc-8ccc-a2a57a070e77\\\"\",\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" @@ -1118,7 +1174,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:35 GMT" + "Thu, 16 Mar 2017 23:56:11 GMT" ], "Pragma": [ "no-cache" @@ -1127,7 +1183,7 @@ "chunked" ], "ETag": [ - "W/\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\"" + "W/\"b9b50994-94c0-4fcc-8ccc-a2a57a070e77\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1137,19 +1193,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "81d5f5e3-1772-4b20-850b-9f62dbb40195" + "a3e9b517-ca38-4268-95d0-2e1bb0d51bdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14992" ], "x-ms-correlation-request-id": [ - "6341deb3-f781-42e4-b679-df4c9bce09ba" + "06145969-71ed-4e0d-bd60-c7e7f0e7888a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153536Z:6341deb3-f781-42e4-b679-df4c9bce09ba" + "CENTRALUS:20170316T235611Z:06145969-71ed-4e0d-bd60-c7e7f0e7888a" ] }, "StatusCode": 200 @@ -1167,7 +1223,7 @@ "402" ], "x-ms-client-request-id": [ - "038a2f8e-f4c7-4bdd-b3b4-932d80d76796" + "0e8a3276-81ee-4e60-8b18-ecb4b48711ad" ], "accept-language": [ "en-US" @@ -1177,7 +1233,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913\",\r\n \"etag\": \"W/\\\"ddab5f9b-96a4-4a5f-9719-10c450c4ad0b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6649a8b2-540c-4ad7-925d-65d64b5db865\",\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\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"ddab5f9b-96a4-4a5f-9719-10c450c4ad0b\\\"\",\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\": \"vn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913\",\r\n \"etag\": \"W/\\\"797b4eb5-e707-4ad0-8fc5-1690fa0f05f0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0d7e3a1c-f1ae-48dd-b7fc-db48e2bf4107\",\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\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"797b4eb5-e707-4ad0-8fc5-1690fa0f05f0\\\"\",\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": [ "1094" @@ -1192,7 +1248,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:05 GMT" + "Thu, 16 Mar 2017 23:55:38 GMT" ], "Pragma": [ "no-cache" @@ -1205,29 +1261,29 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ae38e65f-0430-488a-a145-b5de0e17f282" + "57af5769-82f8-40d6-91ea-5f7d09bacb43" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/ae38e65f-0430-488a-a145-b5de0e17f282?api-version=2016-06-01" + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/57af5769-82f8-40d6-91ea-5f7d09bacb43?api-version=2016-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "3710b103-0229-43b0-8c9e-17ccfbbd6d15" + "be961991-d321-4b14-afba-baddd540d97b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153505Z:3710b103-0229-43b0-8c9e-17ccfbbd6d15" + "CENTRALUS:20170316T235539Z:be961991-d321-4b14-afba-baddd540d97b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/ae38e65f-0430-488a-a145-b5de0e17f282?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FlMzhlNjVmLTA0MzAtNDg4YS1hMTQ1LWI1ZGUwZTE3ZjI4Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/57af5769-82f8-40d6-91ea-5f7d09bacb43?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzU3YWY1NzY5LTgyZjgtNDBkNi05MWVhLTVmN2QwOWJhY2I0Mz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1248,7 +1304,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:35 GMT" + "Thu, 16 Mar 2017 23:56:10 GMT" ], "Pragma": [ "no-cache" @@ -1264,19 +1320,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "316fb40a-193a-4ee2-b0ac-d7eb6f6c4525" + "2650f11a-c695-491f-b661-be86f2e38377" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14994" ], "x-ms-correlation-request-id": [ - "aeb283ac-6083-4c92-ab28-b60e89555c2c" + "f75812ee-69d5-4d96-a329-db45efe4e0bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153536Z:aeb283ac-6083-4c92-ab28-b60e89555c2c" + "CENTRALUS:20170316T235610Z:f75812ee-69d5-4d96-a329-db45efe4e0bd" ] }, "StatusCode": 200 @@ -1292,7 +1348,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6649a8b2-540c-4ad7-925d-65d64b5db865\",\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\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\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\": \"vn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913\",\r\n \"etag\": \"W/\\\"b9b50994-94c0-4fcc-8ccc-a2a57a070e77\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0d7e3a1c-f1ae-48dd-b7fc-db48e2bf4107\",\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\": \"sn5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\",\r\n \"etag\": \"W/\\\"b9b50994-94c0-4fcc-8ccc-a2a57a070e77\\\"\",\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" @@ -1304,7 +1360,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:35 GMT" + "Thu, 16 Mar 2017 23:56:10 GMT" ], "Pragma": [ "no-cache" @@ -1313,7 +1369,7 @@ "chunked" ], "ETag": [ - "W/\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\"" + "W/\"b9b50994-94c0-4fcc-8ccc-a2a57a070e77\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1323,19 +1379,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9d194060-5591-4d5c-8e48-e981833efdb5" + "25391c5d-ffc5-4a1d-acc4-2b1aa5ea9297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14993" ], "x-ms-correlation-request-id": [ - "0a078aca-adba-4af4-844a-640177b74ef0" + "afac5d3f-e60d-47b8-94bf-cfa7166200e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153536Z:0a078aca-adba-4af4-844a-640177b74ef0" + "CENTRALUS:20170316T235610Z:afac5d3f-e60d-47b8-94bf-cfa7166200e3" ] }, "StatusCode": 200 @@ -1347,7 +1403,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e8a88d6-acaf-4e10-ae74-5e10692f2b96" + "db8ac787-6770-44a3-9f56-528fa32e27b0" ], "accept-language": [ "en-US" @@ -1372,7 +1428,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:37 GMT" + "Thu, 16 Mar 2017 23:56:11 GMT" ], "Pragma": [ "no-cache" @@ -1381,13 +1437,13 @@ "gateway" ], "x-ms-request-id": [ - "c0f5e60f-103c-44f3-ba76-501d5d63d4b7" + "3535f7f3-fb10-4efd-96d5-760388fe5dc1" ], "x-ms-correlation-request-id": [ - "c0f5e60f-103c-44f3-ba76-501d5d63d4b7" + "3535f7f3-fb10-4efd-96d5-760388fe5dc1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153537Z:c0f5e60f-103c-44f3-ba76-501d5d63d4b7" + "CENTRALUS:20170316T235611Z:3535f7f3-fb10-4efd-96d5-760388fe5dc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1406,7 +1462,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd87aa4b-4bb6-4f51-b5d5-a3b723171542\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\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/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\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\": \"wkueszqmktluves3mxlewxnymf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"59eca21d-312d-4325-b491-07bb85259262\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\\\"\",\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/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\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\": \"dq3h2dno4hourn521neofp0bah.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1418,7 +1474,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:40 GMT" + "Thu, 16 Mar 2017 23:56:16 GMT" ], "Pragma": [ "no-cache" @@ -1427,7 +1483,7 @@ "chunked" ], "ETag": [ - "W/\"534832b1-f3a9-46c2-9f91-9d86527c3df1\"" + "W/\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1437,19 +1493,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "36694866-cffd-411f-9797-ca68d0d8375f" + "8c5c927b-323c-42e5-9aeb-c1ac85e335ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14990" ], "x-ms-correlation-request-id": [ - "9a105f62-e6b6-4c2a-ae8f-4701f50e8623" + "e49fb3b7-d2c3-4ea2-b7db-d25dfe7192a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153541Z:9a105f62-e6b6-4c2a-ae8f-4701f50e8623" + "CENTRALUS:20170316T235616Z:e49fb3b7-d2c3-4ea2-b7db-d25dfe7192a1" ] }, "StatusCode": 200 @@ -1461,7 +1517,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c51934a0-036b-4e86-927b-04b7100f24cf" + "91aa11dd-0aaa-4cf4-8460-98fa62fce2d8" ], "accept-language": [ "en-US" @@ -1471,7 +1527,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd87aa4b-4bb6-4f51-b5d5-a3b723171542\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\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/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\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\": \"wkueszqmktluves3mxlewxnymf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"59eca21d-312d-4325-b491-07bb85259262\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\\\"\",\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/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\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\": \"dq3h2dno4hourn521neofp0bah.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1483,7 +1539,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:41 GMT" + "Thu, 16 Mar 2017 23:56:16 GMT" ], "Pragma": [ "no-cache" @@ -1492,7 +1548,7 @@ "chunked" ], "ETag": [ - "W/\"534832b1-f3a9-46c2-9f91-9d86527c3df1\"" + "W/\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1502,19 +1558,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a5978243-e842-49a3-9ddd-78c9128d2a51" + "9772c867-54fc-4f03-b1e1-2ef8771f1ad6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14989" ], "x-ms-correlation-request-id": [ - "fbd7aed1-089e-437e-b08f-1a6c58169851" + "3aeb312b-7d67-4dc6-b5ad-0c21e6ad5130" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153541Z:fbd7aed1-089e-437e-b08f-1a6c58169851" + "CENTRALUS:20170316T235616Z:3aeb312b-7d67-4dc6-b5ad-0c21e6ad5130" ] }, "StatusCode": 200 @@ -1523,7 +1579,7 @@ "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913?api-version=2016-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Jlc291cmNlR3JvdXBzL2UyZXRlc3RzLXJlcy1mOTc4YWRlOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTkxMz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn5913\",\r\n \"etag\": \"W/\\\"3a28a7ba-5ea6-4636-ab98-0b541bd54611\\\"\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n }\r\n },\r\n \"name\": \"ip5913\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\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 \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn5913\",\r\n \"etag\": \"W/\\\"b9b50994-94c0-4fcc-8ccc-a2a57a070e77\\\"\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\r\n }\r\n },\r\n \"name\": \"ip5913\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1532,7 +1588,7 @@ "715" ], "x-ms-client-request-id": [ - "cf715dbd-2162-48cc-a5e0-30b6c701bb70" + "16877f10-cd9d-4c92-8ad5-ceb65da566aa" ], "accept-language": [ "en-US" @@ -1542,7 +1598,7 @@ "Microsoft.Azure.Management.Network.NetworkManagementClient/5.0.1-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd87aa4b-4bb6-4f51-b5d5-a3b723171542\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"534832b1-f3a9-46c2-9f91-9d86527c3df1\\\"\",\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/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\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\": \"wkueszqmktluves3mxlewxnymf.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\",\r\n \"etag\": \"W/\\\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"59eca21d-312d-4325-b491-07bb85259262\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5913\",\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913/ipConfigurations/ip5913\",\r\n \"etag\": \"W/\\\"e28faa1d-b2ef-40f3-a4cd-7359d61e10e9\\\"\",\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/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/virtualNetworks/vn5913/subnets/sn5913\"\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\": \"dq3h2dno4hourn521neofp0bah.ix.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1481" @@ -1557,7 +1613,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:40 GMT" + "Thu, 16 Mar 2017 23:56:15 GMT" ], "Pragma": [ "no-cache" @@ -1567,22 +1623,22 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c4728559-db3c-49a3-9e3a-173c398d8d16" + "c8861c8e-1f27-4a41-978a-a1994f813194" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/c4728559-db3c-49a3-9e3a-173c398d8d16?api-version=2016-06-01" + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Network/locations/southeastasia/operations/c8861c8e-1f27-4a41-978a-a1994f813194?api-version=2016-06-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "5dea3e7a-db1e-4a10-9dfc-9484d4f905b7" + "56deaa4b-7878-49c9-a912-2746c3b8431e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153540Z:5dea3e7a-db1e-4a10-9dfc-9484d4f905b7" + "CENTRALUS:20170316T235615Z:56deaa4b-7878-49c9-a912-2746c3b8431e" ] }, "StatusCode": 201 @@ -1594,7 +1650,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31181cf7-3d08-41fb-aafa-6ae4b73b1034" + "a042af79-4541-4e98-a13b-dba21997a4b7" ], "accept-language": [ "en-US" @@ -1619,7 +1675,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:41 GMT" + "Thu, 16 Mar 2017 23:56:18 GMT" ], "Pragma": [ "no-cache" @@ -1628,13 +1684,13 @@ "gateway" ], "x-ms-request-id": [ - "394b6141-07a5-453e-9401-68952659e867" + "c73d699b-aa31-4980-9d71-26c1dd731458" ], "x-ms-correlation-request-id": [ - "394b6141-07a5-453e-9401-68952659e867" + "c73d699b-aa31-4980-9d71-26c1dd731458" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153542Z:394b6141-07a5-453e-9401-68952659e867" + "CENTRALUS:20170316T235618Z:c73d699b-aa31-4980-9d71-26c1dd731458" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1655,7 +1711,7 @@ "188" ], "x-ms-client-request-id": [ - "1f49fce4-ada8-449f-8ccb-f06d17125e15" + "db1ebcb8-8029-4a84-a132-41213a63fcdb" ], "accept-language": [ "en-US" @@ -1677,7 +1733,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:46 GMT" + "Thu, 16 Mar 2017 23:56:24 GMT" ], "Pragma": [ "no-cache" @@ -1699,16 +1755,16 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "ba6bbe97-b35c-4c5d-83ef-13a15d96c515" + "724008da-9ad9-413c-a0a8-7623d3c7717c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "3b617b5b-fc27-4a0c-95a0-3229444944a8" + "4b7c9883-fa42-4849-8383-4b23fc19198e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153547Z:3b617b5b-fc27-4a0c-95a0-3229444944a8" + "CENTRALUS:20170316T235624Z:4b7c9883-fa42-4849-8383-4b23fc19198e" ] }, "StatusCode": 200 @@ -1726,7 +1782,7 @@ "1244" ], "x-ms-client-request-id": [ - "9e43aa08-09af-4cbc-bb8f-88e28480ea93" + "42a0067e-21c2-4ab3-af2d-c4375c584494" ], "accept-language": [ "en-US" @@ -1736,7 +1792,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"9700a314-4905-4f85-b1d2-6a3095bfa18e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1666" @@ -1751,7 +1807,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:35:49 GMT" + "Thu, 16 Mar 2017 23:56:28 GMT" ], "Pragma": [ "no-cache" @@ -1761,7 +1817,7 @@ "Microsoft-HTTPAPI/2.0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview" + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1770,16 +1826,16 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "88d7e8c3-bb51-411e-aa29-b31652ea04dc" + "651ef5ea-72ab-4ab9-b3a7-cea66b5065ac" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "c8c1c4fc-1e57-4288-8131-95d76fe6d8a1" + "6a5e98ba-ee17-4b11-9b10-290540138df3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153550Z:c8c1c4fc-1e57-4288-8131-95d76fe6d8a1" + "CENTRALUS:20170316T235628Z:6a5e98ba-ee17-4b11-9b10-290540138df3" ] }, "StatusCode": 201 @@ -1797,7 +1853,7 @@ "1382" ], "x-ms-client-request-id": [ - "172d2834-2b44-4b27-812f-fb4da2a32c14" + "e3acf847-4ed0-4b3b-9c5b-8c2b9e7842bb" ], "accept-language": [ "en-US" @@ -1807,7 +1863,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"d3e11773-b6fd-47e8-85a5-65d9673a75ba\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"9700a314-4905-4f85-b1d2-6a3095bfa18e\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/availabilitySets/AS5913\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.0.20160617\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://e2etestsstof978ade9.blob.core.windows.net/cont5913/osvhdcont5913.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Network/networkInterfaces/nic5913\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/resourceGroups/e2etests-res-f978ade9/providers/Microsoft.Compute/virtualMachines/e2etests-vm-f978ade9\",\r\n \"name\": \"e2etests-vm-f978ade9\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1819,7 +1875,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:44:26 GMT" + "Fri, 17 Mar 2017 00:04:39 GMT" ], "Pragma": [ "no-cache" @@ -1835,7 +1891,7 @@ "Accept-Encoding" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/8f646245-0811-4c2d-a2e8-bb4c7b16f230?api-version=2016-04-30-preview" + "https://management.azure.com/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/75dc985a-0851-4b37-9fe9-a737880b26f3?api-version=2016-04-30-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1844,82 +1900,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "8f646245-0811-4c2d-a2e8-bb4c7b16f230" + "75dc985a-0851-4b37-9fe9-a737880b26f3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "e38ae6f2-c276-4d60-8027-45959808f569" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170316T154427Z:e38ae6f2-c276-4d60-8027-45959808f569" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 16 Mar 2017 15:36:20 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" - ], - "x-ms-request-id": [ - "fc5000e3-2c8f-4484-b7a1-407cc1aaa24f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "727a4083-4d42-4a30-bf71-e75c374e159a" + "70f30bd7-75ca-4355-ae43-aad2be6b00a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153621Z:727a4083-4d42-4a30-bf71-e75c374e159a" + "CENTRALUS:20170317T000440Z:70f30bd7-75ca-4355-ae43-aad2be6b00a5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1928,7 +1925,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1940,7 +1937,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:36:51 GMT" + "Thu, 16 Mar 2017 23:56:59 GMT" ], "Pragma": [ "no-cache" @@ -1962,23 +1959,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "f1b927b7-578a-4afc-85e7-eb8fb5ab3525" + "dd1fe3a7-0680-4ee3-a061-2dea7ad71d79" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14994" ], "x-ms-correlation-request-id": [ - "13f6aa11-951f-4f11-bb2e-67acc8345812" + "167268f0-e3e4-4cd8-8698-44cd5bd95ae3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153651Z:13f6aa11-951f-4f11-bb2e-67acc8345812" + "CENTRALUS:20170316T235659Z:167268f0-e3e4-4cd8-8698-44cd5bd95ae3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1987,7 +1984,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1999,7 +1996,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:37:20 GMT" + "Thu, 16 Mar 2017 23:57:29 GMT" ], "Pragma": [ "no-cache" @@ -2021,23 +2018,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "62fd83e5-a5fd-4485-b100-b3958fe0b4b8" + "0ebbfca6-be90-4636-ae33-a1cf2f32c588" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14993" ], "x-ms-correlation-request-id": [ - "3cd13bd8-7c47-4a76-9e13-6c1d77dbd5dd" + "5c173ed7-b25d-4d9c-a3d0-c38b891edb73" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153721Z:3cd13bd8-7c47-4a76-9e13-6c1d77dbd5dd" + "CENTRALUS:20170316T235730Z:5c173ed7-b25d-4d9c-a3d0-c38b891edb73" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2046,7 +2043,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2058,7 +2055,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:37:50 GMT" + "Thu, 16 Mar 2017 23:57:59 GMT" ], "Pragma": [ "no-cache" @@ -2080,23 +2077,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "432c79d2-ab49-4a72-ac36-564dd2ec0c33" + "787611b9-99d6-47d7-af98-d4ed468ef9f6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14992" ], "x-ms-correlation-request-id": [ - "7213fa32-9a29-4505-949f-47ab0e9734cd" + "9ba57079-cebb-4860-9926-1e88d2120484" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153751Z:7213fa32-9a29-4505-949f-47ab0e9734cd" + "CENTRALUS:20170316T235800Z:9ba57079-cebb-4860-9926-1e88d2120484" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2105,7 +2102,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2117,7 +2114,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:38:20 GMT" + "Thu, 16 Mar 2017 23:58:30 GMT" ], "Pragma": [ "no-cache" @@ -2139,23 +2136,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "37f830ef-7134-46f6-aa3f-7f0db7594357" + "2018fbbb-cc6a-47c9-8307-0600b404c124" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14991" ], "x-ms-correlation-request-id": [ - "3c2826e8-31de-458f-9757-92b884390736" + "278e8cf1-0a18-43a9-a7da-6b9e9f7f5a66" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153821Z:3c2826e8-31de-458f-9757-92b884390736" + "CENTRALUS:20170316T235830Z:278e8cf1-0a18-43a9-a7da-6b9e9f7f5a66" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2164,7 +2161,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2176,7 +2173,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:38:51 GMT" + "Thu, 16 Mar 2017 23:59:01 GMT" ], "Pragma": [ "no-cache" @@ -2198,23 +2195,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "c8dd66f2-9b48-42bc-9f48-43429c8adb92" + "0efd1abe-9701-432b-bc74-dbc3f208475d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14989" ], "x-ms-correlation-request-id": [ - "e28068be-8c02-4a56-9425-bb7c3095434f" + "3f77b9c1-de46-44ba-a210-c428603d1f87" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153851Z:e28068be-8c02-4a56-9425-bb7c3095434f" + "CENTRALUS:20170316T235901Z:3f77b9c1-de46-44ba-a210-c428603d1f87" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2223,7 +2220,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2235,7 +2232,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:39:21 GMT" + "Thu, 16 Mar 2017 23:59:31 GMT" ], "Pragma": [ "no-cache" @@ -2257,23 +2254,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "83de1fd7-0216-47a2-baf7-866117034fae" + "d06a6bc2-869a-4872-922c-7ac4aaba0f42" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14988" ], "x-ms-correlation-request-id": [ - "674b5d0d-3957-4fc0-aafb-2590410c4887" + "03f0b875-8567-4ce6-9a31-faad809e2431" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153922Z:674b5d0d-3957-4fc0-aafb-2590410c4887" + "CENTRALUS:20170316T235931Z:03f0b875-8567-4ce6-9a31-faad809e2431" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2282,7 +2279,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2294,7 +2291,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:39:52 GMT" + "Fri, 17 Mar 2017 00:00:01 GMT" ], "Pragma": [ "no-cache" @@ -2316,23 +2313,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "16798955-fef3-4486-a292-869a3a71aee7" + "f522f540-e715-44e2-a6a1-488346f5395d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14987" ], "x-ms-correlation-request-id": [ - "2d0de45d-bb95-48d5-86af-a86a3ef26c9d" + "764c74ac-156e-4892-8c88-abac4178e138" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T153952Z:2d0de45d-bb95-48d5-86af-a86a3ef26c9d" + "CENTRALUS:20170317T000002Z:764c74ac-156e-4892-8c88-abac4178e138" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2341,7 +2338,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2353,7 +2350,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:40:22 GMT" + "Fri, 17 Mar 2017 00:00:31 GMT" ], "Pragma": [ "no-cache" @@ -2375,23 +2372,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "11e42ce0-9f34-4311-a463-c1e8a9931623" + "b7b0b40b-b1b2-45ee-a2f3-204c27cb716f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14986" ], "x-ms-correlation-request-id": [ - "9170548e-7ac9-4ced-8379-3f0030bd84b2" + "95886857-9a2a-499f-bea8-44de725e42b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154022Z:9170548e-7ac9-4ced-8379-3f0030bd84b2" + "CENTRALUS:20170317T000032Z:95886857-9a2a-499f-bea8-44de725e42b6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2400,7 +2397,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2412,7 +2409,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:40:52 GMT" + "Fri, 17 Mar 2017 00:01:02 GMT" ], "Pragma": [ "no-cache" @@ -2434,23 +2431,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "35a2028e-7473-40ec-853a-59511a8a5af0" + "e112ecfe-8124-417e-be84-94934c294210" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14985" ], "x-ms-correlation-request-id": [ - "7f5c6c8b-75b4-4a3f-be75-e6ef944bed29" + "5d2df04a-1b7d-4ecc-9816-ed3285f180c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154052Z:7f5c6c8b-75b4-4a3f-be75-e6ef944bed29" + "CENTRALUS:20170317T000103Z:5d2df04a-1b7d-4ecc-9816-ed3285f180c7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2459,7 +2456,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2471,7 +2468,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:41:21 GMT" + "Fri, 17 Mar 2017 00:01:33 GMT" ], "Pragma": [ "no-cache" @@ -2493,23 +2490,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "d2d6e687-52ed-4d7f-97a9-2969969f0e26" + "1cba5124-38d9-49cf-8973-18f11c702f19" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14984" ], "x-ms-correlation-request-id": [ - "c049ae64-f685-4632-afe4-8da38af04fba" + "fb7bd68e-3848-4bcd-bad2-f8b0b4f68aca" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154122Z:c049ae64-f685-4632-afe4-8da38af04fba" + "CENTRALUS:20170317T000133Z:fb7bd68e-3848-4bcd-bad2-f8b0b4f68aca" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2518,7 +2515,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2530,7 +2527,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:41:53 GMT" + "Fri, 17 Mar 2017 00:02:03 GMT" ], "Pragma": [ "no-cache" @@ -2552,23 +2549,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "756cf451-dc4b-4749-816a-776467d2524c" + "6006dfbf-9b4d-4130-a097-ce7f1cca9ebc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14983" ], "x-ms-correlation-request-id": [ - "dee21388-e85e-402d-9bfc-896090432a71" + "fcc07487-938f-442a-8321-f4ee187a312d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154153Z:dee21388-e85e-402d-9bfc-896090432a71" + "CENTRALUS:20170317T000203Z:fcc07487-938f-442a-8321-f4ee187a312d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2577,7 +2574,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2589,7 +2586,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:42:23 GMT" + "Fri, 17 Mar 2017 00:02:33 GMT" ], "Pragma": [ "no-cache" @@ -2611,23 +2608,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "60af8a07-8416-42df-a454-bf3181da457d" + "d4a5159a-6bad-499f-a90b-437880b45cec" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14981" ], "x-ms-correlation-request-id": [ - "de759402-14b6-45f6-95a8-6323e4a4c5fb" + "bdfb153e-595d-4510-9f60-0b192c80a36d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154223Z:de759402-14b6-45f6-95a8-6323e4a4c5fb" + "CENTRALUS:20170317T000234Z:bdfb153e-595d-4510-9f60-0b192c80a36d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2636,7 +2633,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2648,7 +2645,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:42:53 GMT" + "Fri, 17 Mar 2017 00:03:03 GMT" ], "Pragma": [ "no-cache" @@ -2670,23 +2667,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "aa6a10db-677b-403f-8329-a4284840b1c4" + "4bb6fdc9-26b0-46e4-94cf-da639b072114" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14980" ], "x-ms-correlation-request-id": [ - "aaef9ee7-4cf4-48c2-bf18-1aceb115bace" + "e2c04aaf-dd63-4ccb-9900-8a9b8f0024aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154253Z:aaef9ee7-4cf4-48c2-bf18-1aceb115bace" + "CENTRALUS:20170317T000304Z:e2c04aaf-dd63-4ccb-9900-8a9b8f0024aa" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2695,7 +2692,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2707,7 +2704,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:43:23 GMT" + "Fri, 17 Mar 2017 00:03:34 GMT" ], "Pragma": [ "no-cache" @@ -2729,23 +2726,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "123976d8-1870-4dbb-8e68-ecb1ca3708ed" + "90b58d86-3461-4c09-bcda-db190c4db4fb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14979" ], "x-ms-correlation-request-id": [ - "0b86726f-c8eb-4243-bb28-0809a771c5c0" + "3cf79597-925c-4a47-9a8c-058a2a7b1ec2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154324Z:0b86726f-c8eb-4243-bb28-0809a771c5c0" + "CENTRALUS:20170317T000335Z:3cf79597-925c-4a47-9a8c-058a2a7b1ec2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2754,7 +2751,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2766,7 +2763,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:43:54 GMT" + "Fri, 17 Mar 2017 00:04:05 GMT" ], "Pragma": [ "no-cache" @@ -2788,23 +2785,23 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "21848832-5333-4606-988e-40dbc76f7214" + "48c20867-e392-473d-ba42-d625f9142763" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14978" ], "x-ms-correlation-request-id": [ - "693b844d-1133-449b-a83f-a44c56f59784" + "f20425b3-6ed0-4a54-b2b7-b9e8ac7c6da1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154354Z:693b844d-1133-449b-a83f-a44c56f59784" + "CENTRALUS:20170317T000405Z:f20425b3-6ed0-4a54-b2b7-b9e8ac7c6da1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/88d7e8c3-bb51-411e-aa29-b31652ea04dc?api-version=2016-04-30-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4ZDdlOGMzLWJiNTEtNDExZS1hYTI5LWIzMTY1MmVhMDRkYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", + "RequestUri": "/subscriptions/2c224e7e-3ef5-431d-a57b-e71f4662e3a6/providers/Microsoft.Compute/locations/southeastasia/operations/651ef5ea-72ab-4ab9-b3a7-cea66b5065ac?api-version=2016-04-30-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmMyMjRlN2UtM2VmNS00MzFkLWE1N2ItZTcxZjQ2NjJlM2E2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY1MWVmNWVhLTcyYWItNGFiOS1iM2E3LWNlYTY2YjUwNjVhYz9hcGktdmVyc2lvbj0yMDE2LTA0LTMwLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2813,7 +2810,7 @@ "Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets.MyComputeClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T08:35:50.2036381-07:00\",\r\n \"endTime\": \"2017-03-16T08:44:20.1438629-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"88d7e8c3-bb51-411e-aa29-b31652ea04dc\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2017-03-16T16:56:28.4148814-07:00\",\r\n \"endTime\": \"2017-03-16T17:04:22.555515-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"651ef5ea-72ab-4ab9-b3a7-cea66b5065ac\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2825,7 +2822,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:44:23 GMT" + "Fri, 17 Mar 2017 00:04:35 GMT" ], "Pragma": [ "no-cache" @@ -2847,16 +2844,16 @@ "9bcaa9de-92b1-485f-8528-dfb04fe7611e_131330648587132454" ], "x-ms-request-id": [ - "bc61502f-744a-4148-a460-690410fa2b95" + "5946f9f6-ec7f-4f65-9d9f-fd56989ddcfb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14977" ], "x-ms-correlation-request-id": [ - "36e8d32d-a9b6-46a6-a3cb-51c5b5dca573" + "49830dd2-a95d-4a7d-9f85-1496a0e42411" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154424Z:36e8d32d-a9b6-46a6-a3cb-51c5b5dca573" + "CENTRALUS:20170317T000435Z:49830dd2-a95d-4a7d-9f85-1496a0e42411" ] }, "StatusCode": 200 @@ -2868,7 +2865,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5c3ec0d-db3c-48f2-9442-21c36160141a" + "ce8c3070-212e-4b7d-839b-ea0921f4388b" ], "accept-language": [ "en-US" @@ -2890,7 +2887,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:44:30 GMT" + "Fri, 17 Mar 2017 00:04:44 GMT" ], "Pragma": [ "no-cache" @@ -2905,13 +2902,13 @@ "1199" ], "x-ms-request-id": [ - "cd72d30a-55bc-47d9-9201-318fbcc61230" + "8da806c4-d31b-4908-aa26-b99e42bb3fbb" ], "x-ms-correlation-request-id": [ - "cd72d30a-55bc-47d9-9201-318fbcc61230" + "8da806c4-d31b-4908-aa26-b99e42bb3fbb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154431Z:cd72d30a-55bc-47d9-9201-318fbcc61230" + "CENTRALUS:20170317T000445Z:8da806c4-d31b-4908-aa26-b99e42bb3fbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2942,7 +2939,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:45:01 GMT" + "Fri, 17 Mar 2017 00:05:15 GMT" ], "Pragma": [ "no-cache" @@ -2954,16 +2951,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14998" ], "x-ms-request-id": [ - "622c2276-5727-4796-a026-6e430a49454e" + "4847ea88-f6f6-4206-8004-4dc715ace10d" ], "x-ms-correlation-request-id": [ - "622c2276-5727-4796-a026-6e430a49454e" + "4847ea88-f6f6-4206-8004-4dc715ace10d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154501Z:622c2276-5727-4796-a026-6e430a49454e" + "CENTRALUS:20170317T000515Z:4847ea88-f6f6-4206-8004-4dc715ace10d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2994,7 +2991,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:45:30 GMT" + "Fri, 17 Mar 2017 00:05:45 GMT" ], "Pragma": [ "no-cache" @@ -3006,16 +3003,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14997" ], "x-ms-request-id": [ - "285358c0-e496-4f9d-a610-bcf70f3a745a" + "015b24d3-8371-4102-98de-0cad22d6a9a0" ], "x-ms-correlation-request-id": [ - "285358c0-e496-4f9d-a610-bcf70f3a745a" + "015b24d3-8371-4102-98de-0cad22d6a9a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154531Z:285358c0-e496-4f9d-a610-bcf70f3a745a" + "CENTRALUS:20170317T000546Z:015b24d3-8371-4102-98de-0cad22d6a9a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3046,7 +3043,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:46:01 GMT" + "Fri, 17 Mar 2017 00:06:16 GMT" ], "Pragma": [ "no-cache" @@ -3058,16 +3055,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14996" ], "x-ms-request-id": [ - "980be1f8-765c-4b02-9bbe-a26fd2744126" + "3e93bfda-79e1-4a26-bc05-327ea68bf42e" ], "x-ms-correlation-request-id": [ - "980be1f8-765c-4b02-9bbe-a26fd2744126" + "3e93bfda-79e1-4a26-bc05-327ea68bf42e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154602Z:980be1f8-765c-4b02-9bbe-a26fd2744126" + "CENTRALUS:20170317T000617Z:3e93bfda-79e1-4a26-bc05-327ea68bf42e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3098,7 +3095,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:46:31 GMT" + "Fri, 17 Mar 2017 00:06:47 GMT" ], "Pragma": [ "no-cache" @@ -3110,16 +3107,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14994" ], "x-ms-request-id": [ - "e97c30d7-bc49-49af-bdb4-524cf85aa6fe" + "5cd1162f-9fff-4a4e-83e8-267974c73542" ], "x-ms-correlation-request-id": [ - "e97c30d7-bc49-49af-bdb4-524cf85aa6fe" + "5cd1162f-9fff-4a4e-83e8-267974c73542" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154632Z:e97c30d7-bc49-49af-bdb4-524cf85aa6fe" + "CENTRALUS:20170317T000647Z:5cd1162f-9fff-4a4e-83e8-267974c73542" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3150,7 +3147,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:47:02 GMT" + "Fri, 17 Mar 2017 00:07:17 GMT" ], "Pragma": [ "no-cache" @@ -3162,16 +3159,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14993" ], "x-ms-request-id": [ - "5d7b6b1d-b566-43f0-a662-91f628e60899" + "086a9d52-cdf1-408c-96b6-a105615e041c" ], "x-ms-correlation-request-id": [ - "5d7b6b1d-b566-43f0-a662-91f628e60899" + "086a9d52-cdf1-408c-96b6-a105615e041c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154703Z:5d7b6b1d-b566-43f0-a662-91f628e60899" + "CENTRALUS:20170317T000718Z:086a9d52-cdf1-408c-96b6-a105615e041c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3202,7 +3199,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:47:33 GMT" + "Fri, 17 Mar 2017 00:07:47 GMT" ], "Pragma": [ "no-cache" @@ -3214,16 +3211,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14992" ], "x-ms-request-id": [ - "28afe351-f663-4612-9f98-b328ca6cf165" + "79346707-4bbd-41dc-bdf9-940ad45fe95c" ], "x-ms-correlation-request-id": [ - "28afe351-f663-4612-9f98-b328ca6cf165" + "79346707-4bbd-41dc-bdf9-940ad45fe95c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154733Z:28afe351-f663-4612-9f98-b328ca6cf165" + "CENTRALUS:20170317T000748Z:79346707-4bbd-41dc-bdf9-940ad45fe95c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3254,7 +3251,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:48:02 GMT" + "Fri, 17 Mar 2017 00:08:19 GMT" ], "Pragma": [ "no-cache" @@ -3266,16 +3263,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14991" ], "x-ms-request-id": [ - "588d8025-e38e-49ab-8087-38d59cf2c737" + "1ff39c4f-3348-4087-84e3-ac3adc584194" ], "x-ms-correlation-request-id": [ - "588d8025-e38e-49ab-8087-38d59cf2c737" + "1ff39c4f-3348-4087-84e3-ac3adc584194" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154803Z:588d8025-e38e-49ab-8087-38d59cf2c737" + "CENTRALUS:20170317T000819Z:1ff39c4f-3348-4087-84e3-ac3adc584194" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3306,7 +3303,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:48:33 GMT" + "Fri, 17 Mar 2017 00:08:49 GMT" ], "Pragma": [ "no-cache" @@ -3318,16 +3315,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14990" ], "x-ms-request-id": [ - "ff765548-d892-457b-9c10-3094246b3617" + "4c5d4717-627c-44e1-8450-f9d53bd0541a" ], "x-ms-correlation-request-id": [ - "ff765548-d892-457b-9c10-3094246b3617" + "4c5d4717-627c-44e1-8450-f9d53bd0541a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154834Z:ff765548-d892-457b-9c10-3094246b3617" + "CENTRALUS:20170317T000850Z:4c5d4717-627c-44e1-8450-f9d53bd0541a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3358,7 +3355,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:49:03 GMT" + "Fri, 17 Mar 2017 00:09:20 GMT" ], "Pragma": [ "no-cache" @@ -3370,16 +3367,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14989" ], "x-ms-request-id": [ - "673472ff-3923-4c5b-8ef6-e6a7a78d7802" + "1cbeb2c6-f5b4-48ef-bdd6-fcf7117da560" ], "x-ms-correlation-request-id": [ - "673472ff-3923-4c5b-8ef6-e6a7a78d7802" + "1cbeb2c6-f5b4-48ef-bdd6-fcf7117da560" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154904Z:673472ff-3923-4c5b-8ef6-e6a7a78d7802" + "CENTRALUS:20170317T000920Z:1cbeb2c6-f5b4-48ef-bdd6-fcf7117da560" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3410,7 +3407,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:49:34 GMT" + "Fri, 17 Mar 2017 00:09:50 GMT" ], "Pragma": [ "no-cache" @@ -3422,16 +3419,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14988" ], "x-ms-request-id": [ - "8c8aa8e6-3966-4866-aea1-12ed6b134f67" + "c3c4265e-b0e0-43de-83bf-c19017d17cc0" ], "x-ms-correlation-request-id": [ - "8c8aa8e6-3966-4866-aea1-12ed6b134f67" + "c3c4265e-b0e0-43de-83bf-c19017d17cc0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T154934Z:8c8aa8e6-3966-4866-aea1-12ed6b134f67" + "CENTRALUS:20170317T000951Z:c3c4265e-b0e0-43de-83bf-c19017d17cc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3462,7 +3459,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:50:05 GMT" + "Fri, 17 Mar 2017 00:10:20 GMT" ], "Pragma": [ "no-cache" @@ -3474,16 +3471,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14986" ], "x-ms-request-id": [ - "52a0757d-4122-4f74-8d68-4f3807717743" + "ada18e46-d478-460b-b7ab-e5d66eb2ae0f" ], "x-ms-correlation-request-id": [ - "52a0757d-4122-4f74-8d68-4f3807717743" + "ada18e46-d478-460b-b7ab-e5d66eb2ae0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T155005Z:52a0757d-4122-4f74-8d68-4f3807717743" + "CENTRALUS:20170317T001021Z:ada18e46-d478-460b-b7ab-e5d66eb2ae0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3514,7 +3511,7 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:50:35 GMT" + "Fri, 17 Mar 2017 00:10:52 GMT" ], "Pragma": [ "no-cache" @@ -3526,16 +3523,16 @@ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14985" ], "x-ms-request-id": [ - "8a597e30-adbc-4861-878d-1de304a96423" + "d9a6211d-bb7f-49be-b893-a66712b92e62" ], "x-ms-correlation-request-id": [ - "8a597e30-adbc-4861-878d-1de304a96423" + "d9a6211d-bb7f-49be-b893-a66712b92e62" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T155035Z:8a597e30-adbc-4861-878d-1de304a96423" + "CENTRALUS:20170317T001052Z:d9a6211d-bb7f-49be-b893-a66712b92e62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3566,22 +3563,22 @@ "no-cache" ], "Date": [ - "Thu, 16 Mar 2017 15:51:05 GMT" + "Fri, 17 Mar 2017 00:11:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14984" ], "x-ms-request-id": [ - "fc381e54-715f-4898-b9c3-6b43f2106613" + "f8e8146d-2f3a-427f-99f7-ce6d5326c04e" ], "x-ms-correlation-request-id": [ - "fc381e54-715f-4898-b9c3-6b43f2106613" + "f8e8146d-2f3a-427f-99f7-ce6d5326c04e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170316T155106Z:fc381e54-715f-4898-b9c3-6b43f2106613" + "CENTRALUS:20170317T001122Z:f8e8146d-2f3a-427f-99f7-ce6d5326c04e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3592,7 +3589,7 @@ ], "Names": { "CreateDefaultVMInput": [ - "Microsoft.Compute/virtualMachines9966" + "Microsoft.Compute/virtualMachines9370" ] }, "Variables": { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs index 5404a8460c5b..1a57dbb86cd6 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/ExtendingTypes.cs @@ -1,12 +1,11 @@ -using Microsoft.Azure.Management.Compute; -using Microsoft.Azure.Management.Compute.Models; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. namespace Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets { + using Microsoft.Azure.Management.Compute; + using Microsoft.Azure.Management.Compute.Models; + /// /// Class to extend VM class /// This class is specifically meant to assign/reinitialize/set protected members @@ -14,7 +13,7 @@ namespace Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets public class MyVm : Microsoft.Azure.Management.Compute.Models.VirtualMachine { /// - /// Constructor + /// Constructor for creating MyVm /// /// public MyVm(VirtualMachine vm) diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs index 8a988d395d18..98c7f6648b70 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.E2E.Tests/TestAssets/RecordedDelegatingHandler.cs @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. -using System; -using System.Net; -using System.Net.Http; -using System.Net.Http.Headers; -using System.Threading.Tasks; - namespace Microsoft.Rest.ClientRuntime.E2E.Tests.TestAssets { + using System; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Threading.Tasks; + /// /// Delegating handler for test purpose /// From 96f5d7f2f8867bcf9f02150a0b76aebbb5545753 Mon Sep 17 00:00:00 2001 From: Dongjiang You Date: Fri, 17 Mar 2017 10:32:48 -0700 Subject: [PATCH 11/56] Update swagger link --- .../Microsoft.Azure.Management.ContainerRegistry/generate.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd index 60ff98f79d34..e282aa0e5cba 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/generate.cmd @@ -6,7 +6,7 @@ @echo off set autoRestVersion=1.0.0-Nightly20170212 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-containerregistry/2017-03-01/swagger/containerregistry.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/3b0b26b4b6e3bc5e7cf3610b0866d310abb5b814/arm-containerregistry/2017-03-01/swagger/containerregistry.json" ) else ( set specFile="%1" ) From 5ef6c8368b9d70e94aa27cf93242723a1032e82a Mon Sep 17 00:00:00 2001 From: Jared Moore Date: Fri, 17 Mar 2017 11:05:01 -0700 Subject: [PATCH 12/56] Capabilities and security policy features. Also renamed several types and operations for improved clarify and consistency. Additions: - BlobAuditingPolicy APIs (e.g. Databases.CreateOrUpdateBlobAuditingPolicy) - ThreatDetectionPolicy APIs (e.g. Databases.CreateOrUpdateThreatDetectionPolicy) - Databases.ListByServer now supports $expand parameter - Capabilities APIs (e.g. Capabilities.ListByLocation) Types renamed: - ServerFirewallRule -> FirewallRule - DatabaseEditions -> DatabaseEdition - ElasticPoolEditions -> ElasticPoolEdition - ImportRequestParameters -> ImportRequest - ExportRequestParameters -> ExportRequest - ImportExportOperationResponse -> ImportExportResponse - OperationMode -> ImportOperationMode - TransparentDataEncryptionStates -> TransparentDataEncryptionStatus Types removed: - Unused types: UpgradeHint, Schema, Table, Column Operations renamed: - Servers.GetByResourceGroup -> Servers.Get - Servers.CreateOrUpdateFirewallRule -> FirewallRule.CreateOrUpdate, and similar for Get, List, and Delete - Databases.Import -> Databases.CreateImportOperation - Servers.Import -> Databases.Import - Databases.PauseDataWarehouse -> Databases.Pause - Databases.ResumeDataWarehouse -> Databases.Resume Operations removed: - Removed ImportExport operation results APIs since these are handled automatically by Azure async pattern. --- global.json | 5 +- src/ClientRuntime/global.json | 5 +- .../Generated/CapabilitiesOperations.cs | 239 +++ .../CapabilitiesOperationsExtensions.cs | 59 + .../Generated/DatabasesOperations.cs | 1673 ++++++++++++++--- .../DatabasesOperationsExtensions.cs | 441 ++++- .../Generated/ElasticPoolsOperations.cs | 121 +- .../ElasticPoolsOperationsExtensions.cs | 13 +- ...erations.cs => FirewallRulesOperations.cs} | 348 +++- .../FirewallRulesOperationsExtensions.cs | 216 +++ .../Generated/ICapabilitiesOperations.cs | 49 + .../Generated/IDatabasesOperations.cs | 242 ++- .../Generated/IElasticPoolsOperations.cs | 11 +- ...rations.cs => IFirewallRulesOperations.cs} | 71 +- .../IRecommendedElasticPoolsOperations.cs | 13 +- .../Generated/IServersOperations.cs | 190 +- .../Generated/ISqlManagementClient.cs | 28 +- .../ImportExportOperationsExtensions.cs | 174 -- .../Generated/Models/AuthenticationType.cs | 11 +- ...onStates.cs => BlobAuditingPolicyState.cs} | 15 +- .../Generated/Models/CapabilityStatus.cs | 34 + .../Generated/Models/Column.cs | 65 - .../Generated/Models/CreateMode.cs | 10 +- .../Generated/Models/Database.cs | 349 ++-- .../Models/DatabaseBlobAuditingPolicy.cs | 153 ++ ...DatabaseEditions.cs => DatabaseEdition.cs} | 14 +- .../Generated/Models/DatabaseMetric.cs | 34 +- .../Models/DatabaseSecurityAlertPolicy.cs | 173 ++ .../Generated/Models/EditionCapability.cs | 74 + .../Generated/Models/ElasticPool.cs | 48 +- .../Generated/Models/ElasticPoolActivity.cs | 101 +- .../Models/ElasticPoolDatabaseActivity.cs | 91 +- ...cPoolEditions.cs => ElasticPoolEdition.cs} | 13 +- .../Generated/Models/ElasticPoolState.cs | 9 +- ...tRequestParameters.cs => ExportRequest.cs} | 39 +- ...{ServerFirewallRule.cs => FirewallRule.cs} | 40 +- ...tExportOperationResponsePropertiesModel.cs | 114 -- ...ionResponse.cs => ImportExportResponse.cs} | 76 +- ...arameters.cs => ImportExtensionRequest.cs} | 53 +- ...tRequestParameters.cs => ImportRequest.cs} | 53 +- .../Generated/Models/LocationCapabilities.cs | 74 + .../Generated/Models/MaxSizeCapability.cs | 75 + .../Generated/Models/MaxSizeUnits.cs | 34 + .../Generated/Models/Operation.cs | 20 +- .../Generated/Models/OperationDisplay.cs | 20 +- .../Generated/Models/OperationImpact.cs | 28 +- .../Generated/Models/OperationListResult.cs | 20 +- .../Generated/Models/Page.cs | 13 +- .../{TableType.cs => PerformanceLevelUnit.cs} | 21 +- .../Generated/Models/ProxyResource.cs | 47 + .../Generated/Models/ReadScale.cs | 11 +- .../Models/RecommendedElasticPool.cs | 82 +- .../Models/RecommendedElasticPoolMetric.cs | 20 +- .../Generated/Models/RecommendedIndex.cs | 74 +- ...exActions.cs => RecommendedIndexAction.cs} | 15 +- ...ndexStates.cs => RecommendedIndexState.cs} | 15 +- ...dIndexTypes.cs => RecommendedIndexType.cs} | 15 +- .../Generated/Models/ReplicationLink.cs | 52 +- .../Generated/Models/ReplicationRole.cs | 11 +- .../Generated/Models/ReplicationState.cs | 9 +- .../Generated/Models/Resource.cs | 77 +- .../Generated/Models/RestorePoint.cs | 58 +- .../Generated/Models/RestorePointTypes.cs | 11 +- .../Generated/Models/SampleName.cs | 9 +- .../Generated/Models/Schema.cs | 75 - ... SecurityAlertPolicyEmailAccountAdmins.cs} | 25 +- .../Models/SecurityAlertPolicyState.cs | 32 + .../SecurityAlertPolicyUseServerDefault.cs | 30 + .../Generated/Models/Server.cs | 52 +- .../Generated/Models/ServerMetric.cs | 34 +- .../Generated/Models/ServerState.cs | 11 +- .../Generated/Models/ServerVersion.cs | 9 +- .../Models/ServerVersionCapability.cs | 74 + .../Generated/Models/ServiceObjective.cs | 38 +- .../Models/ServiceObjectiveCapability.cs | 104 + .../Generated/Models/ServiceObjectiveName.cs | 10 +- .../Generated/Models/ServiceTierAdvisor.cs | 66 +- .../Generated/Models/SloUsageMetric.cs | 25 +- .../Generated/Models/StorageKeyType.cs | 11 +- .../{SqlSubResource.cs => SubResource.cs} | 32 +- .../Generated/Models/Table.cs | 104 - .../Generated/Models/TrackedResource.cs | 80 + .../Models/TransparentDataEncryption.cs | 32 +- .../TransparentDataEncryptionActivity.cs | 32 +- ...ransparentDataEncryptionActivityStatus.cs} | 13 +- .../Models/TransparentDataEncryptionStatus.cs | 30 + .../Generated/Models/UpgradeHint.cs | 56 - ...UpgradeRecommendedElasticPoolProperties.cs | 137 -- .../RecommendedElasticPoolsOperations.cs | 75 +- ...mmendedElasticPoolsOperationsExtensions.cs | 19 +- .../Generated/ServersOperations.cs | 1168 +----------- .../Generated/ServersOperationsExtensions.cs | 306 +-- .../Generated/SqlManagementClient.cs | 71 +- .../SqlManagementClientExtensions.cs | 11 +- .../generate.cmd | 7 +- .../Sql.Tests/BlobAuditingTest.cs | 183 ++ .../Sql.Tests/CapabilitiesScenarioTests.cs | 58 + .../Sql.Tests/DatabaseCrudScenarioTests.cs | 53 +- .../Sql.Tests/ElasticPoolCrudScenarioTests.cs | 4 +- .../FirewallRuleCrudScenarioTests.cs | 36 +- .../Sql.Tests/ImportExportScenarioTests.cs | 26 +- .../Sql.Tests/ServerCrudScenarioTests.cs | 4 +- .../TestBlobAuditing.json | 1090 +++++++++++ .../TestServerBlobAuditing.json | 1090 +++++++++++ .../TestGetCapabilities.json | 69 + ...ransparentDataEncryptionConfiguration.json | 784 ++++++++ .../TestGetAndListDatabase.json | 2 +- .../TestServerSecurityAlert.json | 1093 +++++++++++ .../TestThreatDetection.json | 1035 ++++++++++ .../Sql.Tests/SqlTestConstants.cs | 6 +- .../Sql.Tests/ThreatDetectionTest.cs | 166 ++ .../Utilities/SqlManagementTestUtilities.cs | 27 +- .../SqlManagement/UpgradeLog.htm | Bin 0 -> 45212 bytes .../SqlManagement/global.json | 5 +- src/TestFramework/global.json | 5 +- 115 files changed, 10981 insertions(+), 3802 deletions(-) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperations.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperationsExtensions.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/{ImportExportOperations.cs => FirewallRulesOperations.cs} (65%) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/FirewallRulesOperationsExtensions.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ICapabilitiesOperations.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/{IImportExportOperations.cs => IFirewallRulesOperations.cs} (56%) delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperationsExtensions.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{TransparentDataEncryptionStates.cs => BlobAuditingPolicyState.cs} (65%) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CapabilityStatus.cs delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Column.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseBlobAuditingPolicy.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{DatabaseEditions.cs => DatabaseEdition.cs} (72%) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseSecurityAlertPolicy.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/EditionCapability.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{ElasticPoolEditions.cs => ElasticPoolEdition.cs} (65%) rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{ExportRequestParameters.cs => ExportRequest.cs} (78%) rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{ServerFirewallRule.cs => FirewallRule.cs} (75%) delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponsePropertiesModel.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{ImportExportOperationResponse.cs => ImportExportResponse.cs} (57%) rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{ImportExtensionRequestParameters.cs => ImportExtensionRequest.cs} (78%) rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{ImportRequestParameters.cs => ImportRequest.cs} (66%) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/LocationCapabilities.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeCapability.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeUnits.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{TableType.cs => PerformanceLevelUnit.cs} (56%) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ProxyResource.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{RecommendedIndexActions.cs => RecommendedIndexAction.cs} (67%) rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{RecommendedIndexStates.cs => RecommendedIndexState.cs} (78%) rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{RecommendedIndexTypes.cs => RecommendedIndexType.cs} (71%) delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Schema.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{TargetElasticPoolEditions.cs => SecurityAlertPolicyEmailAccountAdmins.cs} (51%) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyState.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyUseServerDefault.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersionCapability.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveCapability.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{SqlSubResource.cs => SubResource.cs} (54%) delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Table.cs create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TrackedResource.cs rename src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/{TransparentDataEncryptionActivityStates.cs => TransparentDataEncryptionActivityStatus.cs} (68%) create mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStatus.cs delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeHint.cs delete mode 100644 src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeRecommendedElasticPoolProperties.cs create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/CapabilitiesScenarioTests.cs create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestBlobAuditing.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestServerBlobAuditing.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.CapabilitiesScenarioTests/TestGetCapabilities.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestDatabaseTransparentDataEncryptionConfiguration.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestServerSecurityAlert.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestThreatDetection.json create mode 100644 src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs create mode 100644 src/ResourceManagement/SqlManagement/UpgradeLog.htm diff --git a/global.json b/global.json index b3bc428c4cdb..1457d8710890 100644 --- a/global.json +++ b/global.json @@ -27,5 +27,8 @@ "src/ResourceManagement/Insights/Microsoft.Azure.Insights", "src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis", "src/ResourceManagement/Monitor/Microsoft.Azure.Monitor" - ] + ], + "sdk": { + "version": "1.0.0-preview2-003121" + } } \ No newline at end of file diff --git a/src/ClientRuntime/global.json b/src/ClientRuntime/global.json index 25fb11a0a6d5..9dc789665a0e 100644 --- a/src/ClientRuntime/global.json +++ b/src/ClientRuntime/global.json @@ -1,5 +1,8 @@ { "projects": [ "Microsoft.Rest.ClientRuntime", "Microsoft.Rest.ClientRuntime.Azure.Authentication", "Microsoft.Rest.ClientRuntime.Etw", "Microsoft.Rest.ClientRuntime.Tests", "Microsoft.Rest.ClientRuntime.Azure", "Microsoft.Rest.ClientRuntime.Azure.Tests", - "Microsoft.Rest.ClientRuntime.Log4Net", "Microsoft.Rest.ClientRuntime.Tracing.Tests" ] + "Microsoft.Rest.ClientRuntime.Log4Net", "Microsoft.Rest.ClientRuntime.Tracing.Tests" ], + "sdk": { + "version": "1.0.0-preview2-003121" + } } \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperations.cs new file mode 100644 index 000000000000..e8a4332d38c4 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperations.cs @@ -0,0 +1,239 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql +{ + 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; + + /// + /// CapabilitiesOperations operations. + /// + internal partial class CapabilitiesOperations : IServiceOperations, ICapabilitiesOperations + { + /// + /// Initializes a new instance of the CapabilitiesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal CapabilitiesOperations(SqlManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the SqlManagementClient + /// + public SqlManagementClient Client { get; private set; } + + /// + /// Gets the capabilities available for the specified location. + /// + /// + /// The location id whose capabilities are retrieved. + /// + /// + /// 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> ListByLocationWithHttpMessagesAsync(string locationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (locationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "locationId"); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("locationId", locationId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByLocation", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationId}/capabilities").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{locationId}", System.Uri.EscapeDataString(locationId)); + 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; + } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperationsExtensions.cs new file mode 100644 index 000000000000..c181fbbc14f0 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/CapabilitiesOperationsExtensions.cs @@ -0,0 +1,59 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql +{ + 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 CapabilitiesOperations. + /// + public static partial class CapabilitiesOperationsExtensions + { + /// + /// Gets the capabilities available for the specified location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The location id whose capabilities are retrieved. + /// + public static LocationCapabilities ListByLocation(this ICapabilitiesOperations operations, string locationId) + { + return operations.ListByLocationAsync(locationId).GetAwaiter().GetResult(); + } + + /// + /// Gets the capabilities available for the specified location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The location id whose capabilities are retrieved. + /// + /// + /// The cancellation token. + /// + public static async Task ListByLocationAsync(this ICapabilitiesOperations operations, string locationId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByLocationWithHttpMessagesAsync(locationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs index 92363832961e..41488d743cc0 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; using System.Collections; @@ -51,8 +51,34 @@ internal DatabasesOperations(SqlManagementClient client) public SqlManagementClient Client { get; private set; } /// - /// Imports a bacpac into an existing database. The existing database must be - /// empty. + /// Imports a bacpac into a new database. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> ImportWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginImportWithHttpMessagesAsync(resourceGroupName, serverName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -73,10 +99,10 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - public async Task> ImportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateImportOperationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send Request - AzureOperationResponse _response = await BeginImportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginCreateImportOperationWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -102,10 +128,10 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - public async Task> ExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginExportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginExportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -199,9 +225,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + 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) @@ -216,6 +242,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -253,11 +281,19 @@ internal DatabasesOperations(SqlManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -384,9 +420,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -401,6 +437,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -448,7 +486,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -485,7 +523,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -645,9 +683,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -662,6 +700,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -709,7 +749,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -746,7 +786,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -782,10 +822,10 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - public async Task PauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task PauseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginPauseDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginPauseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -808,10 +848,10 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The cancellation token. /// - public async Task ResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task ResumeWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send request - AzureOperationResponse _response = await BeginResumeDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, customHeaders, cancellationToken).ConfigureAwait(false); + AzureOperationResponse _response = await BeginResumeWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, customHeaders, cancellationToken).ConfigureAwait(false); return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } @@ -899,9 +939,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -916,6 +956,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -963,7 +1005,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1000,7 +1042,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1129,9 +1171,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + 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) @@ -1146,6 +1188,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1183,11 +1227,19 @@ internal DatabasesOperations(SqlManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1236,7 +1288,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// /// A comma separated list of child objects to expand in the response. Possible - /// properties: serviceTierAdvisors, upgradeHint, transparentDataEncryption. + /// properties: serviceTierAdvisors, transparentDataEncryption. /// /// /// Headers that will be added to request. @@ -1314,9 +1366,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1331,6 +1383,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1378,7 +1432,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1415,7 +1469,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1442,6 +1496,10 @@ internal DatabasesOperations(SqlManagementClient client) /// /// The name of the server. /// + /// + /// A comma separated list of child objects to expand in the response. Possible + /// properties: serviceTierAdvisors, transparentDataEncryption. + /// /// /// An OData filter expression that describes a subset of databases to return. /// @@ -1466,7 +1524,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, string expand = default(string), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -1491,6 +1549,7 @@ internal DatabasesOperations(SqlManagementClient client) tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); + tracingParameters.Add("expand", expand); tracingParameters.Add("filter", filter); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByServer", tracingParameters); @@ -1506,6 +1565,10 @@ internal DatabasesOperations(SqlManagementClient client) { _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 (filter != null) { _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); @@ -1515,9 +1578,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1532,6 +1595,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1579,7 +1644,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1616,7 +1681,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1717,9 +1782,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1734,6 +1799,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1781,7 +1848,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1818,7 +1885,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1928,9 +1995,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1945,6 +2012,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1992,7 +2061,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2029,7 +2098,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2130,9 +2199,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -2147,6 +2216,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2194,7 +2265,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2231,7 +2302,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2262,9 +2333,9 @@ internal DatabasesOperations(SqlManagementClient client) /// The name of the database for which setting the transparent data encryption /// applies. /// - /// - /// The status of the database transparent data encryption. Possible values - /// include: 'Enabled', 'Disabled' + /// + /// The required parameters for creating or updating transparent data + /// encryption. /// /// /// Headers that will be added to request. @@ -2287,7 +2358,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, TransparentDataEncryption parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -2305,12 +2376,11 @@ internal DatabasesOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } - string apiVersion = "2014-04-01"; - TransparentDataEncryption parameters = new TransparentDataEncryption(); - if (status != null) + if (parameters == null) { - parameters.Status = status; + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } + string apiVersion = "2014-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2343,9 +2413,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -2360,6 +2430,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2377,7 +2449,7 @@ internal DatabasesOperations(SqlManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -2413,7 +2485,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2450,7 +2522,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2468,7 +2540,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2569,9 +2641,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -2586,6 +2658,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2633,7 +2707,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2670,7 +2744,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2771,9 +2845,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -2788,6 +2862,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2835,7 +2911,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2872,7 +2948,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2890,8 +2966,7 @@ internal DatabasesOperations(SqlManagementClient client) } /// - /// Imports a bacpac into an existing database. The existing database must be - /// empty. + /// Gets a database's threat detection policy. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -2901,10 +2976,8 @@ internal DatabasesOperations(SqlManagementClient client) /// The name of the server. /// /// - /// The name of the database to import into - /// - /// - /// The required parameters for importing a Bacpac into a database. + /// The name of the database for which database Threat Detection policy is + /// defined. /// /// /// Headers that will be added to request. @@ -2927,7 +3000,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginImportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetThreatDetectionPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -2945,19 +3018,7 @@ internal DatabasesOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } string apiVersion = "2014-04-01"; - if (parameters == null) - { - parameters = new ImportExtensionRequestParameters(); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2965,17 +3026,16 @@ internal DatabasesOperations(SqlManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginImport", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetThreatDetectionPolicy", 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.Sql/servers/{serverName}/databases/{databaseName}/extensions/import").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/securityAlertPolicies/default").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); @@ -2990,9 +3050,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -3007,6 +3067,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3021,12 +3083,6 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.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) { @@ -3047,7 +3103,7 @@ internal DatabasesOperations(SqlManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -3060,7 +3116,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3082,7 +3138,7 @@ internal DatabasesOperations(SqlManagementClient 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")) @@ -3095,9 +3151,9 @@ internal DatabasesOperations(SqlManagementClient 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 (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3115,7 +3171,7 @@ internal DatabasesOperations(SqlManagementClient client) } /// - /// Exports a database to a bacpac. + /// Creates or updates a database's threat detection policy. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -3125,10 +3181,11 @@ internal DatabasesOperations(SqlManagementClient client) /// The name of the server. /// /// - /// The name of the database to be exported. + /// The name of the database for which database Threat Detection policy is + /// defined. /// /// - /// The required parameters for exporting a database. + /// The database Threat Detection policy. /// /// /// Headers that will be added to request. @@ -3151,7 +3208,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateThreatDetectionPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, DatabaseSecurityAlertPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -3185,17 +3242,17 @@ internal DatabasesOperations(SqlManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginExport", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateThreatDetectionPolicy", 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.Sql/servers/{serverName}/databases/{databaseName}/export").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/securityAlertPolicies/default").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); @@ -3210,9 +3267,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -3227,6 +3284,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3244,7 +3303,7 @@ internal DatabasesOperations(SqlManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -3267,7 +3326,7 @@ internal DatabasesOperations(SqlManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -3280,7 +3339,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3302,7 +3361,7 @@ internal DatabasesOperations(SqlManagementClient 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")) @@ -3315,9 +3374,27 @@ internal DatabasesOperations(SqlManagementClient 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) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3335,7 +3412,7 @@ internal DatabasesOperations(SqlManagementClient client) } /// - /// Failover the database replication link. + /// Gets a database's blob auditing policy. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -3345,10 +3422,7 @@ internal DatabasesOperations(SqlManagementClient client) /// The name of the server. /// /// - /// The name of the database that has the replication link to be failed over. - /// - /// - /// The ID of the replication link to be failed over. + /// The name of the database for which database blob audit policy is defined. /// /// /// Headers that will be added to request. @@ -3359,6 +3433,9 @@ internal DatabasesOperations(SqlManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -3368,7 +3445,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginFailoverReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetBlobAuditingPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -3386,11 +3463,7 @@ internal DatabasesOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } - if (linkId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "linkId"); - } - string apiVersion = "2014-04-01"; + string apiVersion = "2015-05-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3398,22 +3471,20 @@ internal DatabasesOperations(SqlManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("linkId", linkId); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginFailoverReplicationLink", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetBlobAuditingPolicy", 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.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}/failover").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/auditingSettings/default").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - _url = _url.Replace("{linkId}", System.Uri.EscapeDataString(linkId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -3424,9 +3495,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -3441,6 +3512,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3475,14 +3548,22 @@ internal DatabasesOperations(SqlManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 202) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -3502,13 +3583,31 @@ internal DatabasesOperations(SqlManagementClient 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")) { _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); @@ -3517,8 +3616,7 @@ internal DatabasesOperations(SqlManagementClient client) } /// - /// Force failover the database replication link, which may result in data - /// loss. + /// Creates or updates a database's blob auditing policy. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -3528,10 +3626,11 @@ internal DatabasesOperations(SqlManagementClient client) /// The name of the server. /// /// - /// The name of the database that has the replication link to be failed over. + /// The name of the database for which database blob audit policy will be + /// defined. /// - /// - /// The ID of the replication link to be failed over. + /// + /// The database blob auditing policy. /// /// /// Headers that will be added to request. @@ -3542,6 +3641,9 @@ internal DatabasesOperations(SqlManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -3551,7 +3653,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateBlobAuditingPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, DatabaseBlobAuditingPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -3569,11 +3671,15 @@ internal DatabasesOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } - if (linkId == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "linkId"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - string apiVersion = "2014-04-01"; + if (parameters != null) + { + parameters.Validate(); + } + string apiVersion = "2015-05-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3581,22 +3687,21 @@ internal DatabasesOperations(SqlManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("linkId", linkId); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginFailoverReplicationLinkAllowDataLoss", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateBlobAuditingPolicy", 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.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}/forceFailoverAllowDataLoss").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/auditingSettings/default").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - _url = _url.Replace("{linkId}", System.Uri.EscapeDataString(linkId)); List _queryParameters = new List(); if (apiVersion != null) { @@ -3607,9 +3712,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -3624,6 +3729,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3638,6 +3745,12 @@ internal DatabasesOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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) { @@ -3658,14 +3771,22 @@ internal DatabasesOperations(SqlManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204 && (int)_statusCode != 202) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -3685,22 +3806,1105 @@ internal DatabasesOperations(SqlManagementClient 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")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - if (_shouldTrace) + // Deserialize Response + if ((int)_statusCode == 200) { - ServiceClientTracing.Exit(_invocationId, _result); + _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); + } } - return _result; - } - - /// - /// Pauses a data warehouse. + // 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); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Imports a bacpac into a new database. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// 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> BeginImportWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginImport", 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.Sql/servers/{serverName}/import").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + 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("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; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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 != 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 == 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); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to import into + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// 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> BeginCreateImportOperationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + string apiVersion = "2014-04-01"; + if (parameters == null) + { + parameters = new ImportExtensionRequest(); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateImportOperation", 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.Sql/servers/{serverName}/databases/{databaseName}/extensions/import").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + 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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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 != 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; + } + + /// + /// Exports a database to a bacpac. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database to be exported. + /// + /// + /// The required parameters for exporting a database. + /// + /// + /// 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> BeginExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginExport", 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.Sql/servers/{serverName}/databases/{databaseName}/export").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + 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("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; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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 != 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; + } + + /// + /// Failover the database replication link. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database that has the replication link to be failed over. + /// + /// + /// The ID of the replication link to be failed over. + /// + /// + /// 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 BeginFailoverReplicationLinkWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (linkId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "linkId"); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("linkId", linkId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginFailoverReplicationLink", 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.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}/failover").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _url = _url.Replace("{linkId}", System.Uri.EscapeDataString(linkId)); + 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("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 != 204 && (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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Force failover the database replication link, which may result in data + /// loss. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database that has the replication link to be failed over. + /// + /// + /// The ID of the replication link to be failed over. + /// + /// + /// 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 BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, string linkId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (databaseName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); + } + if (linkId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "linkId"); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("linkId", linkId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginFailoverReplicationLinkAllowDataLoss", 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.Sql/servers/{serverName}/databases/{databaseName}/replicationLinks/{linkId}/forceFailoverAllowDataLoss").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _url = _url.Replace("{linkId}", System.Uri.EscapeDataString(linkId)); + 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("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 != 204 && (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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Pauses a data warehouse. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -3730,7 +4934,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginPauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginPauseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -3761,7 +4965,7 @@ internal DatabasesOperations(SqlManagementClient client) tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginPauseDataWarehouse", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginPause", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -3780,9 +4984,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -3797,6 +5001,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3834,11 +5040,19 @@ internal DatabasesOperations(SqlManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -3903,7 +5117,7 @@ internal DatabasesOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginResumeWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -3934,7 +5148,7 @@ internal DatabasesOperations(SqlManagementClient client) tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginResumeDataWarehouse", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginResume", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -3953,9 +5167,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -3970,6 +5184,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4007,11 +5223,19 @@ internal DatabasesOperations(SqlManagementClient client) if ((int)_statusCode != 202 && (int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -4143,9 +5367,9 @@ internal DatabasesOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -4160,6 +5384,8 @@ internal DatabasesOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4177,7 +5403,7 @@ internal DatabasesOperations(SqlManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -4213,7 +5439,7 @@ internal DatabasesOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4250,7 +5476,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -4268,7 +5494,7 @@ internal DatabasesOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -4287,4 +5513,3 @@ internal DatabasesOperations(SqlManagementClient client) } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs index a4ac85caca0e..62eaef545577 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/DatabasesOperationsExtensions.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -24,8 +24,56 @@ namespace Microsoft.Azure.Management.Sql public static partial class DatabasesOperationsExtensions { /// - /// Imports a bacpac into an existing database. The existing database must be - /// empty. + /// Imports a bacpac into a new database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + public static ImportExportResponse Import(this IDatabasesOperations operations, string resourceGroupName, string serverName, ImportRequest parameters) + { + return operations.ImportAsync(resourceGroupName, serverName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Imports a bacpac into a new database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The cancellation token. + /// + public static async Task ImportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, ImportRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ImportWithHttpMessagesAsync(resourceGroupName, serverName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. /// /// /// The operations group for this extension method. @@ -43,14 +91,14 @@ public static partial class DatabasesOperationsExtensions /// /// The required parameters for importing a Bacpac into a database. /// - public static ImportExportOperationResponse Import(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters) + public static ImportExportResponse CreateImportOperation(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters) { - return operations.ImportAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); + return operations.CreateImportOperationAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); } /// - /// Imports a bacpac into an existing database. The existing database must be - /// empty. + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. /// /// /// The operations group for this extension method. @@ -71,9 +119,9 @@ public static ImportExportOperationResponse Import(this IDatabasesOperations ope /// /// The cancellation token. /// - public static async Task ImportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateImportOperationAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ImportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateImportOperationWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -98,7 +146,7 @@ public static ImportExportOperationResponse Import(this IDatabasesOperations ope /// /// The required parameters for exporting a database. /// - public static ImportExportOperationResponse Export(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters) + public static ImportExportResponse Export(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequest parameters) { return operations.ExportAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); } @@ -125,7 +173,7 @@ public static ImportExportOperationResponse Export(this IDatabasesOperations ope /// /// The cancellation token. /// - public static async Task ExportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ExportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ExportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) { @@ -181,7 +229,7 @@ public static void DeleteReplicationLink(this IDatabasesOperations operations, s /// public static async Task DeleteReplicationLinkAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -286,7 +334,7 @@ public static void FailoverReplicationLink(this IDatabasesOperations operations, /// public static async Task FailoverReplicationLinkAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.FailoverReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); + (await operations.FailoverReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -339,7 +387,7 @@ public static void FailoverReplicationLinkAllowDataLoss(this IDatabasesOperation /// public static async Task FailoverReplicationLinkAllowDataLossAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.FailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); + (await operations.FailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -406,9 +454,9 @@ public static IEnumerable ListReplicationLinks(this IDatabasesO /// /// The name of the data warehouse to pause. /// - public static void PauseDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static void Pause(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - operations.PauseDataWarehouseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + operations.PauseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// @@ -430,9 +478,9 @@ public static void PauseDataWarehouse(this IDatabasesOperations operations, stri /// /// The cancellation token. /// - public static async Task PauseDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task PauseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.PauseDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + (await operations.PauseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -451,9 +499,9 @@ public static void PauseDataWarehouse(this IDatabasesOperations operations, stri /// /// The name of the data warehouse to resume. /// - public static void ResumeDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static void Resume(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - operations.ResumeDataWarehouseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + operations.ResumeAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// @@ -475,9 +523,9 @@ public static void ResumeDataWarehouse(this IDatabasesOperations operations, str /// /// The cancellation token. /// - public static async Task ResumeDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ResumeAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.ResumeDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + (await operations.ResumeWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -628,7 +676,7 @@ public static void Delete(this IDatabasesOperations operations, string resourceG /// public static async Task DeleteAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -649,7 +697,7 @@ public static void Delete(this IDatabasesOperations operations, string resourceG /// /// /// A comma separated list of child objects to expand in the response. Possible - /// properties: serviceTierAdvisors, upgradeHint, transparentDataEncryption. + /// properties: serviceTierAdvisors, transparentDataEncryption. /// public static Database Get(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string expand = default(string)) { @@ -674,7 +722,7 @@ public static void Delete(this IDatabasesOperations operations, string resourceG /// /// /// A comma separated list of child objects to expand in the response. Possible - /// properties: serviceTierAdvisors, upgradeHint, transparentDataEncryption. + /// properties: serviceTierAdvisors, transparentDataEncryption. /// /// /// The cancellation token. @@ -700,12 +748,16 @@ public static void Delete(this IDatabasesOperations operations, string resourceG /// /// The name of the server. /// + /// + /// A comma separated list of child objects to expand in the response. Possible + /// properties: serviceTierAdvisors, transparentDataEncryption. + /// /// /// An OData filter expression that describes a subset of databases to return. /// - public static IEnumerable ListByServer(this IDatabasesOperations operations, string resourceGroupName, string serverName, string filter = default(string)) + public static IEnumerable ListByServer(this IDatabasesOperations operations, string resourceGroupName, string serverName, string expand = default(string), string filter = default(string)) { - return operations.ListByServerAsync(resourceGroupName, serverName, filter).GetAwaiter().GetResult(); + return operations.ListByServerAsync(resourceGroupName, serverName, expand, filter).GetAwaiter().GetResult(); } /// @@ -721,15 +773,19 @@ public static void Delete(this IDatabasesOperations operations, string resourceG /// /// The name of the server. /// + /// + /// A comma separated list of child objects to expand in the response. Possible + /// properties: serviceTierAdvisors, transparentDataEncryption. + /// /// /// An OData filter expression that describes a subset of databases to return. /// /// /// The cancellation token. /// - public static async Task> ListByServerAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServerAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string expand = default(string), string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, filter, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, expand, filter, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -902,13 +958,13 @@ public static IEnumerable ListServiceTierAdvisors(this IData /// The name of the database for which setting the transparent data encryption /// applies. /// - /// - /// The status of the database transparent data encryption. Possible values - /// include: 'Enabled', 'Disabled' + /// + /// The required parameters for creating or updating transparent data + /// encryption. /// - public static TransparentDataEncryption CreateOrUpdateTransparentDataEncryptionConfiguration(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?)) + public static TransparentDataEncryption CreateOrUpdateTransparentDataEncryptionConfiguration(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, TransparentDataEncryption parameters) { - return operations.CreateOrUpdateTransparentDataEncryptionConfigurationAsync(resourceGroupName, serverName, databaseName, status).GetAwaiter().GetResult(); + return operations.CreateOrUpdateTransparentDataEncryptionConfigurationAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); } /// @@ -928,16 +984,16 @@ public static IEnumerable ListServiceTierAdvisors(this IData /// The name of the database for which setting the transparent data encryption /// applies. /// - /// - /// The status of the database transparent data encryption. Possible values - /// include: 'Enabled', 'Disabled' + /// + /// The required parameters for creating or updating transparent data + /// encryption. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateTransparentDataEncryptionConfigurationAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateTransparentDataEncryptionConfigurationAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, TransparentDataEncryption parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, status, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1040,8 +1096,266 @@ public static IEnumerable ListTransparentData } /// - /// Imports a bacpac into an existing database. The existing database must be - /// empty. + /// Gets a database's threat detection policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database Threat Detection policy is + /// defined. + /// + public static DatabaseSecurityAlertPolicy GetThreatDetectionPolicy(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + { + return operations.GetThreatDetectionPolicyAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Gets a database's threat detection policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database Threat Detection policy is + /// defined. + /// + /// + /// The cancellation token. + /// + public static async Task GetThreatDetectionPolicyAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetThreatDetectionPolicyWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates a database's threat detection policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database Threat Detection policy is + /// defined. + /// + /// + /// The database Threat Detection policy. + /// + public static DatabaseSecurityAlertPolicy CreateOrUpdateThreatDetectionPolicy(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, DatabaseSecurityAlertPolicy parameters) + { + return operations.CreateOrUpdateThreatDetectionPolicyAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates a database's threat detection policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database Threat Detection policy is + /// defined. + /// + /// + /// The database Threat Detection policy. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateThreatDetectionPolicyAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, DatabaseSecurityAlertPolicy parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateThreatDetectionPolicyWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a database's blob auditing policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database blob audit policy is defined. + /// + public static DatabaseBlobAuditingPolicy GetBlobAuditingPolicy(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + { + return operations.GetBlobAuditingPolicyAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Gets a database's blob auditing policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database blob audit policy is defined. + /// + /// + /// The cancellation token. + /// + public static async Task GetBlobAuditingPolicyAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetBlobAuditingPolicyWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates a database's blob auditing policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database blob audit policy will be + /// defined. + /// + /// + /// The database blob auditing policy. + /// + public static DatabaseBlobAuditingPolicy CreateOrUpdateBlobAuditingPolicy(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, DatabaseBlobAuditingPolicy parameters) + { + return operations.CreateOrUpdateBlobAuditingPolicyAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates a database's blob auditing policy. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database blob audit policy will be + /// defined. + /// + /// + /// The database blob auditing policy. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateBlobAuditingPolicyAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, DatabaseBlobAuditingPolicy parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateBlobAuditingPolicyWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Imports a bacpac into a new database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + public static ImportExportResponse BeginImport(this IDatabasesOperations operations, string resourceGroupName, string serverName, ImportRequest parameters) + { + return operations.BeginImportAsync(resourceGroupName, serverName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Imports a bacpac into a new database. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// The cancellation token. + /// + public static async Task BeginImportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, ImportRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginImportWithHttpMessagesAsync(resourceGroupName, serverName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. /// /// /// The operations group for this extension method. @@ -1059,14 +1373,14 @@ public static IEnumerable ListTransparentData /// /// The required parameters for importing a Bacpac into a database. /// - public static ImportExportOperationResponse BeginImport(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters) + public static ImportExportResponse BeginCreateImportOperation(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters) { - return operations.BeginImportAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); + return operations.BeginCreateImportOperationAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); } /// - /// Imports a bacpac into an existing database. The existing database must be - /// empty. + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. /// /// /// The operations group for this extension method. @@ -1087,9 +1401,9 @@ public static ImportExportOperationResponse BeginImport(this IDatabasesOperation /// /// The cancellation token. /// - public static async Task BeginImportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginCreateImportOperationAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginImportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginCreateImportOperationWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1114,7 +1428,7 @@ public static ImportExportOperationResponse BeginImport(this IDatabasesOperation /// /// The required parameters for exporting a database. /// - public static ImportExportOperationResponse BeginExport(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters) + public static ImportExportResponse BeginExport(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequest parameters) { return operations.BeginExportAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); } @@ -1141,7 +1455,7 @@ public static ImportExportOperationResponse BeginExport(this IDatabasesOperation /// /// The cancellation token. /// - public static async Task BeginExportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginExportAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, ExportRequest parameters, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.BeginExportWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) { @@ -1197,7 +1511,7 @@ public static void BeginFailoverReplicationLink(this IDatabasesOperations operat /// public static async Task BeginFailoverReplicationLinkAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginFailoverReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginFailoverReplicationLinkWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1250,7 +1564,7 @@ public static void BeginFailoverReplicationLinkAllowDataLoss(this IDatabasesOper /// public static async Task BeginFailoverReplicationLinkAllowDataLossAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, string linkId, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginFailoverReplicationLinkAllowDataLossWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, linkId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1269,9 +1583,9 @@ public static void BeginFailoverReplicationLinkAllowDataLoss(this IDatabasesOper /// /// The name of the data warehouse to pause. /// - public static void BeginPauseDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static void BeginPause(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - operations.BeginPauseDataWarehouseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + operations.BeginPauseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// @@ -1293,9 +1607,9 @@ public static void BeginPauseDataWarehouse(this IDatabasesOperations operations, /// /// The cancellation token. /// - public static async Task BeginPauseDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginPauseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginPauseDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginPauseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1314,9 +1628,9 @@ public static void BeginPauseDataWarehouse(this IDatabasesOperations operations, /// /// The name of the data warehouse to resume. /// - public static void BeginResumeDataWarehouse(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) + public static void BeginResume(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName) { - operations.BeginResumeDataWarehouseAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + operations.BeginResumeAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); } /// @@ -1338,9 +1652,9 @@ public static void BeginResumeDataWarehouse(this IDatabasesOperations operations /// /// The cancellation token. /// - public static async Task BeginResumeDataWarehouseAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginResumeAsync(this IDatabasesOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginResumeDataWarehouseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginResumeWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1403,4 +1717,3 @@ public static Database BeginCreateOrUpdate(this IDatabasesOperations operations, } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperations.cs index b13ca86960b2..c32acd9fd7fe 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; using System.Collections; @@ -160,9 +160,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + 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) @@ -177,6 +177,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -214,11 +216,19 @@ internal ElasticPoolsOperations(SqlManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -336,9 +346,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -353,6 +363,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -400,7 +412,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -437,7 +449,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -529,9 +541,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -546,6 +558,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -593,7 +607,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -630,7 +644,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -731,9 +745,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -748,6 +762,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -795,7 +811,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -832,7 +848,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -933,9 +949,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -950,6 +966,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -997,7 +1015,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1034,7 +1052,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1144,9 +1162,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1161,6 +1179,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1208,7 +1228,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1245,7 +1265,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1346,9 +1366,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1363,6 +1383,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1410,7 +1432,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1447,7 +1469,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1560,9 +1582,9 @@ internal ElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -1577,6 +1599,8 @@ internal ElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1594,7 +1618,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -1630,7 +1654,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1667,7 +1691,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1685,7 +1709,7 @@ internal ElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1704,4 +1728,3 @@ internal ElasticPoolsOperations(SqlManagementClient client) } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs index 032d79fb0997..5b0f1409861c 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ElasticPoolsOperationsExtensions.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -119,7 +119,7 @@ public static void Delete(this IElasticPoolsOperations operations, string resour /// public static async Task DeleteAsync(this IElasticPoolsOperations operations, string resourceGroupName, string serverName, string elasticPoolName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, elasticPoolName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -466,4 +466,3 @@ public static ElasticPool BeginCreateOrUpdate(this IElasticPoolsOperations opera } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/FirewallRulesOperations.cs similarity index 65% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperations.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/FirewallRulesOperations.cs index 9f4bc0efd326..eadef528ad4a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/FirewallRulesOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; using System.Collections; @@ -23,12 +23,12 @@ namespace Microsoft.Azure.Management.Sql using System.Threading.Tasks; /// - /// ImportExportOperations operations. + /// FirewallRulesOperations operations. /// - internal partial class ImportExportOperations : IServiceOperations, IImportExportOperations + internal partial class FirewallRulesOperations : IServiceOperations, IFirewallRulesOperations { /// - /// Initializes a new instance of the ImportExportOperations class. + /// Initializes a new instance of the FirewallRulesOperations class. /// /// /// Reference to the service client. @@ -36,7 +36,7 @@ internal partial class ImportExportOperations : IServiceOperations /// Thrown when a required parameter is null /// - internal ImportExportOperations(SqlManagementClient client) + internal FirewallRulesOperations(SqlManagementClient client) { if (client == null) { @@ -51,7 +51,7 @@ internal ImportExportOperations(SqlManagementClient client) public SqlManagementClient Client { get; private set; } /// - /// The status of an import operation given the operation ID. + /// Creates or updates a firewall rule. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -60,6 +60,12 @@ internal ImportExportOperations(SqlManagementClient client) /// /// The name of the server. /// + /// + /// The name of the firewall rule. + /// + /// + /// The required parameters for creating or updating a firewall rule. + /// /// /// Headers that will be added to request. /// @@ -81,7 +87,7 @@ internal ImportExportOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, FirewallRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -95,6 +101,18 @@ internal ImportExportOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } + if (firewallRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } string apiVersion = "2014-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -106,15 +124,18 @@ internal ImportExportOperations(SqlManagementClient client) tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); + tracingParameters.Add("firewallRuleName", firewallRuleName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByServer", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", 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.Sql/servers/{serverName}/importExportOperationResults").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -125,9 +146,9 @@ internal ImportExportOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -142,6 +163,8 @@ internal ImportExportOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -156,6 +179,12 @@ internal ImportExportOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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) { @@ -176,7 +205,7 @@ internal ImportExportOperations(SqlManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -189,7 +218,7 @@ internal ImportExportOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -211,7 +240,7 @@ internal ImportExportOperations(SqlManagementClient 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")) @@ -224,9 +253,27 @@ internal ImportExportOperations(SqlManagementClient 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) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -244,7 +291,190 @@ internal ImportExportOperations(SqlManagementClient client) } /// - /// The of an import operation given the operation ID. + /// Deletes a firewall rule. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (serverName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); + } + if (firewallRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); + } + string apiVersion = "2014-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("serverName", serverName); + tracingParameters.Add("firewallRuleName", firewallRuleName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", 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.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); + _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); + 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 != 200 && (int)_statusCode != 204) + { + 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; + } + + /// + /// Gets a firewall rule. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -253,8 +483,8 @@ internal ImportExportOperations(SqlManagementClient client) /// /// The name of the server. /// - /// - /// The operation ID associated with the operation. + /// + /// The name of the firewall rule. /// /// /// Headers that will be added to request. @@ -277,7 +507,7 @@ internal ImportExportOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Guid operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -291,6 +521,10 @@ internal ImportExportOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } + if (firewallRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); + } string apiVersion = "2014-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -302,17 +536,17 @@ internal ImportExportOperations(SqlManagementClient client) tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); - tracingParameters.Add("operationId", operationId); + tracingParameters.Add("firewallRuleName", firewallRuleName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetByServer", tracingParameters); + 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.Sql/servers/{serverName}/importExportOperationResults/{operationId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(operationId, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); List _queryParameters = new List(); if (apiVersion != null) { @@ -323,9 +557,9 @@ internal ImportExportOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -340,6 +574,8 @@ internal ImportExportOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -387,7 +623,7 @@ internal ImportExportOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -409,7 +645,7 @@ internal ImportExportOperations(SqlManagementClient 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")) @@ -422,9 +658,9 @@ internal ImportExportOperations(SqlManagementClient 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 (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -442,8 +678,7 @@ internal ImportExportOperations(SqlManagementClient client) } /// - /// The status of an import or export operation on a database given the - /// operation ID. + /// Returns a list of firewall rules. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -452,12 +687,6 @@ internal ImportExportOperations(SqlManagementClient client) /// /// The name of the server. /// - /// - /// The name of the database - /// - /// - /// The operation ID associated with the operation. - /// /// /// Headers that will be added to request. /// @@ -479,7 +708,7 @@ internal ImportExportOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetByDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Guid operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -493,10 +722,6 @@ internal ImportExportOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); } - if (databaseName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); - } string apiVersion = "2014-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -508,19 +733,15 @@ internal ImportExportOperations(SqlManagementClient client) tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); - tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("operationId", operationId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetByDatabase", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByServer", 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.Sql/servers/{serverName}/databases/{databaseName}/importExportOperationResults/{operationId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/firewallRules").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(operationId, Client.SerializationSettings).Trim('"'))); List _queryParameters = new List(); if (apiVersion != null) { @@ -531,9 +752,9 @@ internal ImportExportOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -548,6 +769,8 @@ internal ImportExportOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -595,7 +818,7 @@ internal ImportExportOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -617,7 +840,7 @@ internal ImportExportOperations(SqlManagementClient 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")) @@ -630,9 +853,9 @@ internal ImportExportOperations(SqlManagementClient 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 (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -651,4 +874,3 @@ internal ImportExportOperations(SqlManagementClient client) } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/FirewallRulesOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/FirewallRulesOperationsExtensions.cs new file mode 100644 index 000000000000..4246d5728b3d --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/FirewallRulesOperationsExtensions.cs @@ -0,0 +1,216 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql +{ + 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; + + /// + /// Extension methods for FirewallRulesOperations. + /// + public static partial class FirewallRulesOperationsExtensions + { + /// + /// Creates or updates a firewall rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The required parameters for creating or updating a firewall rule. + /// + public static FirewallRule CreateOrUpdate(this IFirewallRulesOperations operations, string resourceGroupName, string serverName, string firewallRuleName, FirewallRule parameters) + { + return operations.CreateOrUpdateAsync(resourceGroupName, serverName, firewallRuleName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates a firewall rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The required parameters for creating or updating a firewall rule. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IFirewallRulesOperations operations, string resourceGroupName, string serverName, string firewallRuleName, FirewallRule parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a firewall rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall rule. + /// + public static void Delete(this IFirewallRulesOperations operations, string resourceGroupName, string serverName, string firewallRuleName) + { + operations.DeleteAsync(resourceGroupName, serverName, firewallRuleName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a firewall rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IFirewallRulesOperations operations, string resourceGroupName, string serverName, string firewallRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets a firewall rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall rule. + /// + public static FirewallRule Get(this IFirewallRulesOperations operations, string resourceGroupName, string serverName, string firewallRuleName) + { + return operations.GetAsync(resourceGroupName, serverName, firewallRuleName).GetAwaiter().GetResult(); + } + + /// + /// Gets a firewall rule. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IFirewallRulesOperations operations, string resourceGroupName, string serverName, string firewallRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Returns a list of firewall rules. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + public static IEnumerable ListByServer(this IFirewallRulesOperations operations, string resourceGroupName, string serverName) + { + return operations.ListByServerAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); + } + + /// + /// Returns a list of firewall rules. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByServerAsync(this IFirewallRulesOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ICapabilitiesOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ICapabilitiesOperations.cs new file mode 100644 index 000000000000..153262fa1851 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ICapabilitiesOperations.cs @@ -0,0 +1,49 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql +{ + 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; + + /// + /// CapabilitiesOperations operations. + /// + public partial interface ICapabilitiesOperations + { + /// + /// Gets the capabilities available for the specified location. + /// + /// + /// The location id whose capabilities are retrieved. + /// + /// + /// 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> ListByLocationWithHttpMessagesAsync(string locationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs index dbf23eee5e6a..900aff386484 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IDatabasesOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -24,8 +24,38 @@ namespace Microsoft.Azure.Management.Sql public partial interface IDatabasesOperations { /// - /// Imports a bacpac into an existing database. The existing database - /// must be empty. + /// Imports a bacpac into a new database. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// 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> ImportWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. /// /// /// The name of the resource group that contains the resource. You can @@ -56,7 +86,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task> ImportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateImportOperationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Exports a database to a bacpac. /// @@ -89,7 +119,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task> ExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a database replication link. Cannot be done during /// failover. @@ -274,7 +304,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task PauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task PauseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Resumes a data warehouse. /// @@ -301,7 +331,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task ResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task ResumeWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Returns a list of database restore points. /// @@ -411,7 +441,7 @@ public partial interface IDatabasesOperations /// /// /// A comma separated list of child objects to expand in the response. - /// Possible properties: serviceTierAdvisors, upgradeHint, + /// Possible properties: serviceTierAdvisors, /// transparentDataEncryption. /// /// @@ -441,6 +471,11 @@ public partial interface IDatabasesOperations /// /// The name of the server. /// + /// + /// A comma separated list of child objects to expand in the response. + /// Possible properties: serviceTierAdvisors, + /// transparentDataEncryption. + /// /// /// An OData filter expression that describes a subset of databases to /// return. @@ -460,7 +495,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, string expand = default(string), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Returns database usages. /// @@ -570,9 +605,9 @@ public partial interface IDatabasesOperations /// The name of the database for which setting the transparent data /// encryption applies. /// - /// - /// The status of the database transparent data encryption. Possible - /// values include: 'Enabled', 'Disabled' + /// + /// The required parameters for creating or updating transparent data + /// encryption. /// /// /// The headers that will be added to request. @@ -589,7 +624,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateTransparentDataEncryptionConfigurationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, TransparentDataEncryption parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets a database's transparent data encryption configuration. /// @@ -653,8 +688,168 @@ public partial interface IDatabasesOperations /// Task>> ListTransparentDataEncryptionActivityWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Imports a bacpac into an existing database. The existing database - /// must be empty. + /// Gets a database's threat detection policy. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database Threat Detection policy + /// is defined. + /// + /// + /// 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> GetThreatDetectionPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates a database's threat detection policy. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database Threat Detection policy + /// is defined. + /// + /// + /// The database Threat Detection policy. + /// + /// + /// 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> CreateOrUpdateThreatDetectionPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, DatabaseSecurityAlertPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a database's blob auditing policy. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database blob audit policy is + /// defined. + /// + /// + /// 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> GetBlobAuditingPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates a database's blob auditing policy. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database for which database blob audit policy will + /// be defined. + /// + /// + /// The database blob auditing policy. + /// + /// + /// 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> CreateOrUpdateBlobAuditingPolicyWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, DatabaseBlobAuditingPolicy parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Imports a bacpac into a new database. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The required parameters for importing a Bacpac into a database. + /// + /// + /// 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> BeginImportWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates an import operation that imports a bacpac into an existing + /// database. The existing database must be empty. /// /// /// The name of the resource group that contains the resource. You can @@ -685,7 +880,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task> BeginImportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateImportOperationWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ImportExtensionRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Exports a database to a bacpac. /// @@ -718,7 +913,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task> BeginExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginExportWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, ExportRequest parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Failover the database replication link. /// @@ -808,7 +1003,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task BeginPauseDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginPauseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Resumes a data warehouse. /// @@ -835,7 +1030,7 @@ public partial interface IDatabasesOperations /// /// Thrown when a required parameter is null /// - Task BeginResumeDataWarehouseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginResumeWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates a new database or updates an existing database. Location is /// a required property in the request body, and it must be the same as @@ -873,4 +1068,3 @@ public partial interface IDatabasesOperations Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Database parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs index 59eb6694f9cc..15506976935d 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IElasticPoolsOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -300,4 +300,3 @@ public partial interface IElasticPoolsOperations Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string elasticPoolName, ElasticPool parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IImportExportOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IFirewallRulesOperations.cs similarity index 56% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IImportExportOperations.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IFirewallRulesOperations.cs index fd5e4d8b4204..7b4c5fd810e3 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IImportExportOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IFirewallRulesOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -19,12 +19,12 @@ namespace Microsoft.Azure.Management.Sql using System.Threading.Tasks; /// - /// ImportExportOperations operations. + /// FirewallRulesOperations operations. /// - public partial interface IImportExportOperations + public partial interface IFirewallRulesOperations { /// - /// The status of an import operation given the operation ID. + /// Creates or updates a firewall rule. /// /// /// The name of the resource group that contains the resource. You can @@ -34,6 +34,12 @@ public partial interface IImportExportOperations /// /// The name of the server. /// + /// + /// The name of the firewall rule. + /// + /// + /// The required parameters for creating or updating a firewall rule. + /// /// /// The headers that will be added to request. /// @@ -49,9 +55,36 @@ public partial interface IImportExportOperations /// /// Thrown when a required parameter is null /// - Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, FirewallRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a firewall rule. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the firewall 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 serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The of an import operation given the operation ID. + /// Gets a firewall rule. /// /// /// The name of the resource group that contains the resource. You can @@ -61,8 +94,8 @@ public partial interface IImportExportOperations /// /// The name of the server. /// - /// - /// The operation ID associated with the operation. + /// + /// The name of the firewall rule. /// /// /// The headers that will be added to request. @@ -79,10 +112,9 @@ public partial interface IImportExportOperations /// /// Thrown when a required parameter is null /// - Task> GetByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, System.Guid operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// The status of an import or export operation on a database given the - /// operation ID. + /// Returns a list of firewall rules. /// /// /// The name of the resource group that contains the resource. You can @@ -92,12 +124,6 @@ public partial interface IImportExportOperations /// /// The name of the server. /// - /// - /// The name of the database - /// - /// - /// The operation ID associated with the operation. - /// /// /// The headers that will be added to request. /// @@ -113,7 +139,6 @@ public partial interface IImportExportOperations /// /// Thrown when a required parameter is null /// - Task> GetByDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, System.Guid operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs index ec15efa53477..9ab1b842bfcd 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IRecommendedElasticPoolsOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -112,7 +112,7 @@ public partial interface IRecommendedElasticPoolsOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Returns a list of databases inside a recommented elastic pool. /// @@ -175,4 +175,3 @@ public partial interface IRecommendedElasticPoolsOperations Task>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string serverName, string recommendedElasticPoolName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs index a10ece32416b..0fd9073a8ae5 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/IServersOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -23,153 +23,6 @@ namespace Microsoft.Azure.Management.Sql /// public partial interface IServersOperations { - /// - /// Creates or updates a firewall rule. - /// - /// - /// The name of the resource group that contains the resource. You can - /// obtain this value from the Azure Resource Manager API or the - /// portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// The required parameters for creating or updating a firewall 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> CreateOrUpdateFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Deletes a firewall rule. - /// - /// - /// The name of the resource group that contains the resource. You can - /// obtain this value from the Azure Resource Manager API or the - /// portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall 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 DeleteFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Gets a firewall rule. - /// - /// - /// The name of the resource group that contains the resource. You can - /// obtain this value from the Azure Resource Manager API or the - /// portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall 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> GetFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of firewall rules. - /// - /// - /// The name of the resource group that contains the resource. You can - /// obtain this value from the Azure Resource Manager API or the - /// portal. - /// - /// - /// The name of the server. - /// - /// - /// 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>> ListFirewallRulesWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Imports a bacpac into a new database. - /// - /// - /// The name of the resource group that contains the resource. You can - /// obtain this value from the Azure Resource Manager API or the - /// portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - /// - /// 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> ImportDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Returns a list of servers. /// @@ -269,7 +122,7 @@ public partial interface IServersOperations /// /// Thrown when a required parameter is null /// - Task> GetByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Returns a list of servers in a resource group. /// @@ -378,36 +231,5 @@ public partial interface IServersOperations /// Thrown when a required parameter is null /// Task>> ListServiceObjectivesWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Imports a bacpac into a new database. - /// - /// - /// The name of the resource group that contains the resource. You can - /// obtain this value from the Azure Resource Manager API or the - /// portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - /// - /// 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> BeginImportDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs index 4a84ce395ad8..93b598e8f297 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ISqlManagementClient.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; using System.Collections; @@ -35,12 +35,12 @@ public partial interface ISqlManagementClient : System.IDisposable /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. @@ -71,9 +71,14 @@ public partial interface ISqlManagementClient : System.IDisposable /// - /// Gets the IServersOperations. + /// Gets the ICapabilitiesOperations. /// - IServersOperations Servers { get; } + ICapabilitiesOperations Capabilities { get; } + + /// + /// Gets the IFirewallRulesOperations. + /// + IFirewallRulesOperations FirewallRules { get; } /// /// Gets the IDatabasesOperations. @@ -81,9 +86,9 @@ public partial interface ISqlManagementClient : System.IDisposable IDatabasesOperations Databases { get; } /// - /// Gets the IImportExportOperations. + /// Gets the IServersOperations. /// - IImportExportOperations ImportExportOperations { get; } + IServersOperations Servers { get; } /// /// Gets the IElasticPoolsOperations. @@ -108,4 +113,3 @@ public partial interface ISqlManagementClient : System.IDisposable } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperationsExtensions.cs deleted file mode 100644 index aebe5e1d9166..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ImportExportOperationsExtensions.cs +++ /dev/null @@ -1,174 +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.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql -{ - using Azure; - using Management; - using Rest; - using Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for ImportExportOperations. - /// - public static partial class ImportExportOperationsExtensions - { - /// - /// The status of an import operation given the operation ID. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - public static IEnumerable ListByServer(this IImportExportOperations operations, string resourceGroupName, string serverName) - { - return operations.ListByServerAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); - } - - /// - /// The status of an import operation given the operation ID. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The cancellation token. - /// - public static async Task> ListByServerAsync(this IImportExportOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// The of an import operation given the operation ID. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The operation ID associated with the operation. - /// - public static ImportExportOperationResponse GetByServer(this IImportExportOperations operations, string resourceGroupName, string serverName, System.Guid operationId) - { - return operations.GetByServerAsync(resourceGroupName, serverName, operationId).GetAwaiter().GetResult(); - } - - /// - /// The of an import operation given the operation ID. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The operation ID associated with the operation. - /// - /// - /// The cancellation token. - /// - public static async Task GetByServerAsync(this IImportExportOperations operations, string resourceGroupName, string serverName, System.Guid operationId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetByServerWithHttpMessagesAsync(resourceGroupName, serverName, operationId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// The status of an import or export operation on a database given the - /// operation ID. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the database - /// - /// - /// The operation ID associated with the operation. - /// - public static ImportExportOperationResponse GetByDatabase(this IImportExportOperations operations, string resourceGroupName, string serverName, string databaseName, System.Guid operationId) - { - return operations.GetByDatabaseAsync(resourceGroupName, serverName, databaseName, operationId).GetAwaiter().GetResult(); - } - - /// - /// The status of an import or export operation on a database given the - /// operation ID. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the database - /// - /// - /// The operation ID associated with the operation. - /// - /// - /// The cancellation token. - /// - public static async Task GetByDatabaseAsync(this IImportExportOperations operations, string resourceGroupName, string serverName, string databaseName, System.Guid operationId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetByDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, operationId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/AuthenticationType.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/AuthenticationType.cs index f3d71bbe3f4e..ef037c17ef81 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/AuthenticationType.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/AuthenticationType.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Defines values for AuthenticationType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum AuthenticationType { [EnumMember(Value = "SQL")] @@ -28,4 +28,3 @@ public enum AuthenticationType ADPassword } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStates.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/BlobAuditingPolicyState.cs similarity index 65% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStates.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/BlobAuditingPolicyState.cs index c52653ac7e3b..aa1d3ae54663 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStates.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/BlobAuditingPolicyState.cs @@ -2,25 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; using System.Runtime.Serialization; /// - /// Defines values for TransparentDataEncryptionStates. + /// Defines values for BlobAuditingPolicyState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] - public enum TransparentDataEncryptionStates + [JsonConverter(typeof(StringEnumConverter))] + public enum BlobAuditingPolicyState { [EnumMember(Value = "Enabled")] Enabled, @@ -28,4 +28,3 @@ public enum TransparentDataEncryptionStates Disabled } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CapabilityStatus.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CapabilityStatus.cs new file mode 100644 index 000000000000..c22f9be9545f --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CapabilityStatus.cs @@ -0,0 +1,34 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for CapabilityStatus. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum CapabilityStatus + { + [EnumMember(Value = "Visible")] + Visible, + [EnumMember(Value = "Available")] + Available, + [EnumMember(Value = "Default")] + Default, + [EnumMember(Value = "Disabled")] + Disabled + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Column.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Column.cs deleted file mode 100644 index 77bd14ad14bd..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Column.cs +++ /dev/null @@ -1,65 +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.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Represents a database table column. - /// - [JsonTransformation] - public partial class Column : Resource - { - /// - /// Initializes a new instance of the Column class. - /// - public Column() { } - - /// - /// Initializes a new instance of the Column class. - /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags - /// The type of database table column. - public Column(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string columnType = default(string)) - : base(location, name, id, type, tags) - { - ColumnType = columnType; - } - - /// - /// Gets the type of database table column. - /// - [JsonProperty(PropertyName = "properties.columnType")] - public string ColumnType { get; protected set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - } - } -} - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CreateMode.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CreateMode.cs index fba03890bbb5..e58644e02248 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CreateMode.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/CreateMode.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// /// Defines values for CreateMode. @@ -24,6 +24,6 @@ public static class CreateMode public const string PointInTimeRestore = "PointInTimeRestore"; public const string Recovery = "Recovery"; public const string Restore = "Restore"; + public const string RestoreLongTermRetentionBackup = "RestoreLongTermRetentionBackup"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Database.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Database.cs index 6676a199ee94..4d182d173fcd 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Database.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Database.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -21,22 +21,25 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Represents a database. /// - [JsonTransformation] - public partial class Database : Resource + [Rest.Serialization.JsonTransformation] + public partial class Database : TrackedResource { /// /// Initializes a new instance of the Database class. /// - public Database() { } + public Database() + { + CustomInit(); + } /// /// Initializes a new instance of the Database class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource location. + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags. /// Kind of database. This is metadata used for the /// Azure portal experience. /// The collation of the database. If @@ -52,35 +55,82 @@ public Database() { } /// This records the earliest start /// date and time that restore is available for this database (ISO8601 /// format). - /// Specifies the type of database to create. - /// If createMode is not set to Default, sourceDatabaseId must be - /// specified. If createMode is set to PointInTimeRestore, then - /// restorePointInTime must be specified. If createMode is set to - /// Restore, then sourceDatabaseDeletionDate must be specified. - /// Possible values include: 'Copy', 'Default', 'NonReadableSecondary', - /// 'OnlineSecondary', 'PointInTimeRestore', 'Recovery', - /// 'Restore' - /// Conditional. If createMode is not - /// set to Default, then this value must be specified. Specifies the + /// Specifies the mode of database creation. + /// + /// Default: regular database creation. + /// + /// Copy: creates a database as a copy of an existing database. + /// sourceDatabaseId must be specified as the resource ID of the source + /// database. + /// + /// OnlineSecondary/NonReadableSecondary: creates a database as a + /// (readable or nonreadable) secondary replica of an existing + /// database. sourceDatabaseId must be specified as the resource ID of + /// the existing primary database. + /// + /// PointInTimeRestore: Creates a database by restoring a point in time + /// backup of an existing database. sourceDatabaseId must be specified + /// as the resource ID of the existing database, and restorePointInTime + /// must be specified. + /// + /// Recovery: Creates a database by restoring a geo-replicated backup. + /// sourceDatabaseId must be specified as the recoverable database + /// resource ID to restore. + /// + /// Restore: Creates a database by restoring a backup of a deleted + /// database. sourceDatabaseId must be specified. If sourceDatabaseId + /// is the database's original resource ID, then + /// sourceDatabaseDeletionDate must be specified. Otherwise + /// sourceDatabaseId must be the restorable dropped database resource + /// ID and sourceDatabaseDeletionDate is ignored. restorePointInTime + /// may also be specified to restore from an earlier point in time. + /// + /// RestoreLongTermRetentionBackup: Creates a database by restoring + /// from a long term retention vault. + /// recoveryServicesRecoveryPointResourceId must be specified as the + /// recovery point resource ID. + /// + /// Copy, NonReadableSecondary, OnlineSecondary and + /// RestoreLongTermRetentionBackup are not supported for DataWarehouse + /// edition. Possible values include: 'Copy', 'Default', + /// 'NonReadableSecondary', 'OnlineSecondary', 'PointInTimeRestore', + /// 'Recovery', 'Restore', 'RestoreLongTermRetentionBackup' + /// Conditional. If createMode is Copy, + /// NonReadableSecondary, OnlineSecondary, PointInTimeRestore, + /// Recovery, or Restore, then this value is required. Specifies the /// resource ID of the source database. If createMode is /// NonReadableSecondary or OnlineSecondary, the name of the source - /// database must be the same as this new database. - /// Conditional. If createMode is set - /// to PointInTimeRestore, then this value must be specified. Specifies - /// the point in time (ISO8601 format) of the source database that will - /// be restored to create the new database. Must be greater than or - /// equal to the source database's earliestRestoreDate value. + /// database must be the same as the new database being + /// created. + /// Conditional. If createMode + /// is Restore and sourceDatabaseId is the deleted database's original + /// resource id when it existed (as opposed to its current restorable + /// dropped database id), then this value is required. Specifies the + /// time that the database was deleted. + /// Conditional. If createMode is + /// PointInTimeRestore, this value is required. If createMode is + /// Restore, this value is optional. Specifies the point in time + /// (ISO8601 format) of the source database that will be restored to + /// create the new database. Must be greater than or equal to the + /// source database's earliestRestoreDate value. + /// Conditional. + /// If createMode is RestoreLongTermRetentionBackup, then this value is + /// required. Specifies the resource ID of the recovery point to + /// restore from. /// The edition of the database. The /// DatabaseEditions enumeration contains all the valid editions. If /// createMode is NonReadableSecondary or OnlineSecondary, this value - /// is ignored. Possible values include: 'Web', 'Business', 'Basic', - /// 'Standard', 'Premium', 'Free', 'Stretch', 'DataWarehouse', - /// 'System' + /// is ignored. To see possible values, query the capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation.". + /// Possible values include: 'Web', 'Business', 'Basic', 'Standard', + /// 'Premium', 'Free', 'Stretch', 'DataWarehouse', 'System', + /// 'System2' /// The max size of the database expressed - /// in bytes. If createMode is not Default, this value is ignored. - /// Note: Only the following sizes are supported (in addition to - /// limitations being placed on each edition): { 100 MB | 500 MB |1 GB - /// | 5 GB | 10 GB | 20 GB | 30 GB … 150 GB | 200 GB … 500 GB } + /// in bytes. If createMode is not Default, this value is ignored. To + /// see possible values, query the capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation." /// The configured service /// level objective ID of the database. This is the service level /// objective that is in the process of being applied to the database. @@ -88,44 +138,52 @@ public Database() { } /// currentServiceObjectiveId property. If requestedServiceObjectiveId /// and requestedServiceObjectiveName are both updated, the value of /// requestedServiceObjectiveId overrides the value of - /// requestedServiceObjectiveName. + /// requestedServiceObjectiveName. To see possible values, query the + /// capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation." /// The name of the /// configured service level objective of the database. This is the /// service level objective that is in the process of being applied to /// the database. Once successfully updated, it will match the value of - /// serviceLevelObjective property. Possible values include: 'Basic', - /// 'S0', 'S1', 'S2', 'S3', 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', - /// 'System', 'ElasticPool' + /// serviceLevelObjective property. To see possible values, query the + /// capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation.". + /// Possible values include: 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', + /// 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'System2', + /// 'ElasticPool' /// The current service level /// objective of the database. Possible values include: 'Basic', 'S0', /// 'S1', 'S2', 'S3', 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', - /// 'System', 'ElasticPool' + /// 'System', 'System2', 'ElasticPool' /// The status of the database. /// The name of the elastic pool the /// database is in. If elasticPoolName and /// requestedServiceObjectiveName are both updated, the value of - /// requestedServiceObjectiveName is ignored. + /// requestedServiceObjectiveName is ignored. Not supported for + /// DataWarehouse edition. /// The default secondary region /// for this database. /// The list of service tier advisors /// for this database. Expanded property - /// The schemas from this database. /// The transparent data /// encryption info for this database. /// The recommended indices for this /// database. /// The id indicating the failover group /// containing this database. - /// Conditional. If the database is a + /// Conditional. If the database is a /// geo-secondary, readScale indicates whether read-only connections - /// are allowed to this database or not. Possible values include: - /// 'Enabled', 'Disabled' + /// are allowed to this database or not. Not supported for + /// DataWarehouse edition. Possible values include: 'Enabled', + /// 'Disabled' /// Indicates the name of the sample schema to /// apply when creating this database. If createMode is not Default, - /// this value is ignored. Possible values include: - /// 'AdventureWorksLT' - public Database(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string kind = default(string), string collation = default(string), System.DateTime? creationDate = default(System.DateTime?), long? containmentState = default(long?), System.Guid? currentServiceObjectiveId = default(System.Guid?), string databaseId = default(string), System.DateTime? earliestRestoreDate = default(System.DateTime?), string createMode = default(string), string sourceDatabaseId = default(string), System.DateTime? restorePointInTime = default(System.DateTime?), string edition = default(string), string maxSizeBytes = default(string), System.Guid? requestedServiceObjectiveId = default(System.Guid?), string requestedServiceObjectiveName = default(string), string serviceLevelObjective = default(string), string status = default(string), string elasticPoolName = default(string), string defaultSecondaryLocation = default(string), IList serviceTierAdvisors = default(IList), IList schemas = default(IList), IList transparentDataEncryption = default(IList), IList recommendedIndex = default(IList), System.Guid? failoverGroupId = default(System.Guid?), ReadScale? readScale = default(ReadScale?), string sampleName = default(string)) - : base(location, name, id, type, tags) + /// this value is ignored. Not supported for DataWarehouse edition. + /// Possible values include: 'AdventureWorksLT' + public Database(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string kind = default(string), string collation = default(string), System.DateTime? creationDate = default(System.DateTime?), long? containmentState = default(long?), System.Guid? currentServiceObjectiveId = default(System.Guid?), string databaseId = default(string), System.DateTime? earliestRestoreDate = default(System.DateTime?), string createMode = default(string), string sourceDatabaseId = default(string), System.DateTime? sourceDatabaseDeletionDate = default(System.DateTime?), System.DateTime? restorePointInTime = default(System.DateTime?), System.DateTime? recoveryServicesRecoveryPointResourceId = default(System.DateTime?), string edition = default(string), string maxSizeBytes = default(string), System.Guid? requestedServiceObjectiveId = default(System.Guid?), string requestedServiceObjectiveName = default(string), string serviceLevelObjective = default(string), string status = default(string), string elasticPoolName = default(string), string defaultSecondaryLocation = default(string), IList serviceTierAdvisors = default(IList), IList transparentDataEncryption = default(IList), IList recommendedIndex = default(IList), System.Guid? failoverGroupId = default(System.Guid?), ReadScale? readScale = default(ReadScale?), string sampleName = default(string)) + : base(location, id, name, type, tags) { Kind = kind; Collation = collation; @@ -136,7 +194,9 @@ public Database() { } EarliestRestoreDate = earliestRestoreDate; CreateMode = createMode; SourceDatabaseId = sourceDatabaseId; + SourceDatabaseDeletionDate = sourceDatabaseDeletionDate; RestorePointInTime = restorePointInTime; + RecoveryServicesRecoveryPointResourceId = recoveryServicesRecoveryPointResourceId; Edition = edition; MaxSizeBytes = maxSizeBytes; RequestedServiceObjectiveId = requestedServiceObjectiveId; @@ -146,20 +206,25 @@ public Database() { } ElasticPoolName = elasticPoolName; DefaultSecondaryLocation = defaultSecondaryLocation; ServiceTierAdvisors = serviceTierAdvisors; - Schemas = schemas; TransparentDataEncryption = transparentDataEncryption; RecommendedIndex = recommendedIndex; FailoverGroupId = failoverGroupId; ReadScale = readScale; SampleName = sampleName; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets kind of database. This is metadata used for the Azure portal /// experience. /// [JsonProperty(PropertyName = "kind")] - public string Kind { get; protected set; } + public string Kind { get; private set; } /// /// Gets or sets the collation of the database. If createMode is not @@ -172,82 +237,138 @@ public Database() { } /// Gets the creation date of the database (ISO8601 format). /// [JsonProperty(PropertyName = "properties.creationDate")] - public System.DateTime? CreationDate { get; protected set; } + public System.DateTime? CreationDate { get; private set; } /// /// Gets the containment state of the database. /// [JsonProperty(PropertyName = "properties.containmentState")] - public long? ContainmentState { get; protected set; } + public long? ContainmentState { get; private set; } /// /// Gets the current service level objective ID of the database. This /// is the ID of the service level objective that is currently active. /// [JsonProperty(PropertyName = "properties.currentServiceObjectiveId")] - public System.Guid? CurrentServiceObjectiveId { get; protected set; } + public System.Guid? CurrentServiceObjectiveId { get; private set; } /// /// Gets the ID of the database. /// [JsonProperty(PropertyName = "properties.databaseId")] - public string DatabaseId { get; protected set; } + public string DatabaseId { get; private set; } /// /// Gets this records the earliest start date and time that restore is /// available for this database (ISO8601 format). /// [JsonProperty(PropertyName = "properties.earliestRestoreDate")] - public System.DateTime? EarliestRestoreDate { get; protected set; } + public System.DateTime? EarliestRestoreDate { get; private set; } /// - /// Gets or sets specifies the type of database to create. If - /// createMode is not set to Default, sourceDatabaseId must be - /// specified. If createMode is set to PointInTimeRestore, then - /// restorePointInTime must be specified. If createMode is set to - /// Restore, then sourceDatabaseDeletionDate must be specified. - /// Possible values include: 'Copy', 'Default', 'NonReadableSecondary', - /// 'OnlineSecondary', 'PointInTimeRestore', 'Recovery', 'Restore' + /// Gets or sets specifies the mode of database creation. + /// + /// Default: regular database creation. + /// + /// Copy: creates a database as a copy of an existing database. + /// sourceDatabaseId must be specified as the resource ID of the source + /// database. + /// + /// OnlineSecondary/NonReadableSecondary: creates a database as a + /// (readable or nonreadable) secondary replica of an existing + /// database. sourceDatabaseId must be specified as the resource ID of + /// the existing primary database. + /// + /// PointInTimeRestore: Creates a database by restoring a point in time + /// backup of an existing database. sourceDatabaseId must be specified + /// as the resource ID of the existing database, and restorePointInTime + /// must be specified. + /// + /// Recovery: Creates a database by restoring a geo-replicated backup. + /// sourceDatabaseId must be specified as the recoverable database + /// resource ID to restore. + /// + /// Restore: Creates a database by restoring a backup of a deleted + /// database. sourceDatabaseId must be specified. If sourceDatabaseId + /// is the database's original resource ID, then + /// sourceDatabaseDeletionDate must be specified. Otherwise + /// sourceDatabaseId must be the restorable dropped database resource + /// ID and sourceDatabaseDeletionDate is ignored. restorePointInTime + /// may also be specified to restore from an earlier point in time. + /// + /// RestoreLongTermRetentionBackup: Creates a database by restoring + /// from a long term retention vault. + /// recoveryServicesRecoveryPointResourceId must be specified as the + /// recovery point resource ID. + /// + /// Copy, NonReadableSecondary, OnlineSecondary and + /// RestoreLongTermRetentionBackup are not supported for DataWarehouse + /// edition. Possible values include: 'Copy', 'Default', + /// 'NonReadableSecondary', 'OnlineSecondary', 'PointInTimeRestore', + /// 'Recovery', 'Restore', 'RestoreLongTermRetentionBackup' /// [JsonProperty(PropertyName = "properties.createMode")] public string CreateMode { get; set; } /// - /// Gets or sets conditional. If createMode is not set to Default, then - /// this value must be specified. Specifies the resource ID of the - /// source database. If createMode is NonReadableSecondary or - /// OnlineSecondary, the name of the source database must be the same - /// as this new database. + /// Gets or sets conditional. If createMode is Copy, + /// NonReadableSecondary, OnlineSecondary, PointInTimeRestore, + /// Recovery, or Restore, then this value is required. Specifies the + /// resource ID of the source database. If createMode is + /// NonReadableSecondary or OnlineSecondary, the name of the source + /// database must be the same as the new database being created. /// [JsonProperty(PropertyName = "properties.sourceDatabaseId")] public string SourceDatabaseId { get; set; } /// - /// Gets or sets conditional. If createMode is set to - /// PointInTimeRestore, then this value must be specified. Specifies - /// the point in time (ISO8601 format) of the source database that will - /// be restored to create the new database. Must be greater than or - /// equal to the source database's earliestRestoreDate value. + /// Gets or sets conditional. If createMode is Restore and + /// sourceDatabaseId is the deleted database's original resource id + /// when it existed (as opposed to its current restorable dropped + /// database id), then this value is required. Specifies the time that + /// the database was deleted. + /// + [JsonProperty(PropertyName = "properties.sourceDatabaseDeletionDate")] + public System.DateTime? SourceDatabaseDeletionDate { get; set; } + + /// + /// Gets or sets conditional. If createMode is PointInTimeRestore, this + /// value is required. If createMode is Restore, this value is + /// optional. Specifies the point in time (ISO8601 format) of the + /// source database that will be restored to create the new database. + /// Must be greater than or equal to the source database's + /// earliestRestoreDate value. /// [JsonProperty(PropertyName = "properties.restorePointInTime")] public System.DateTime? RestorePointInTime { get; set; } + /// + /// Gets or sets conditional. If createMode is + /// RestoreLongTermRetentionBackup, then this value is required. + /// Specifies the resource ID of the recovery point to restore from. + /// + [JsonProperty(PropertyName = "properties.recoveryServicesRecoveryPointResourceId")] + public System.DateTime? RecoveryServicesRecoveryPointResourceId { get; set; } + /// /// Gets or sets the edition of the database. The DatabaseEditions /// enumeration contains all the valid editions. If createMode is - /// NonReadableSecondary or OnlineSecondary, this value is ignored. + /// NonReadableSecondary or OnlineSecondary, this value is ignored. To + /// see possible values, query the capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation.". /// Possible values include: 'Web', 'Business', 'Basic', 'Standard', - /// 'Premium', 'Free', 'Stretch', 'DataWarehouse', 'System' + /// 'Premium', 'Free', 'Stretch', 'DataWarehouse', 'System', 'System2' /// [JsonProperty(PropertyName = "properties.edition")] public string Edition { get; set; } /// /// Gets or sets the max size of the database expressed in bytes. If - /// createMode is not Default, this value is ignored. Note: Only the - /// following sizes are supported (in addition to limitations being - /// placed on each edition): { 100 MB | 500 MB |1 GB | 5 GB | 10 GB | - /// 20 GB | 30 GB … 150 GB | 200 GB … 500 GB } + /// createMode is not Default, this value is ignored. To see possible + /// values, query the capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation." /// [JsonProperty(PropertyName = "properties.maxSizeBytes")] public string MaxSizeBytes { get; set; } @@ -260,7 +381,10 @@ public Database() { } /// property. If requestedServiceObjectiveId and /// requestedServiceObjectiveName are both updated, the value of /// requestedServiceObjectiveId overrides the value of - /// requestedServiceObjectiveName. + /// requestedServiceObjectiveName. To see possible values, query the + /// capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation." /// [JsonProperty(PropertyName = "properties.requestedServiceObjectiveId")] public System.Guid? RequestedServiceObjectiveId { get; set; } @@ -270,8 +394,12 @@ public Database() { } /// the database. This is the service level objective that is in the /// process of being applied to the database. Once successfully /// updated, it will match the value of serviceLevelObjective property. + /// To see possible values, query the capabilities API + /// (/subscriptions/{subscriptionId}/providers/Microsoft.Sql/locations/{locationID}/capabilities) + /// referred to by operationId: "Capabilities_ListByLocation.". /// Possible values include: 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', - /// 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'ElasticPool' + /// 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'System2', + /// 'ElasticPool' /// [JsonProperty(PropertyName = "properties.requestedServiceObjectiveName")] public string RequestedServiceObjectiveName { get; set; } @@ -279,21 +407,22 @@ public Database() { } /// /// Gets the current service level objective of the database. Possible /// values include: 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', 'P2', 'P3', - /// 'P4', 'P6', 'P11', 'P15', 'System', 'ElasticPool' + /// 'P4', 'P6', 'P11', 'P15', 'System', 'System2', 'ElasticPool' /// [JsonProperty(PropertyName = "properties.serviceLevelObjective")] - public string ServiceLevelObjective { get; protected set; } + public string ServiceLevelObjective { get; private set; } /// /// Gets the status of the database. /// [JsonProperty(PropertyName = "properties.status")] - public string Status { get; protected set; } + public string Status { get; private set; } /// /// Gets or sets the name of the elastic pool the database is in. If /// elasticPoolName and requestedServiceObjectiveName are both updated, - /// the value of requestedServiceObjectiveName is ignored. + /// the value of requestedServiceObjectiveName is ignored. Not + /// supported for DataWarehouse edition. /// [JsonProperty(PropertyName = "properties.elasticPoolName")] public string ElasticPoolName { get; set; } @@ -302,44 +431,38 @@ public Database() { } /// Gets the default secondary region for this database. /// [JsonProperty(PropertyName = "properties.defaultSecondaryLocation")] - public string DefaultSecondaryLocation { get; protected set; } + public string DefaultSecondaryLocation { get; private set; } /// /// Gets the list of service tier advisors for this database. Expanded /// property /// [JsonProperty(PropertyName = "properties.serviceTierAdvisors")] - public IList ServiceTierAdvisors { get; protected set; } - - /// - /// Gets the schemas from this database. - /// - [JsonProperty(PropertyName = "properties.schemas")] - public IList Schemas { get; protected set; } + public IList ServiceTierAdvisors { get; private set; } /// /// Gets the transparent data encryption info for this database. /// [JsonProperty(PropertyName = "properties.transparentDataEncryption")] - public IList TransparentDataEncryption { get; protected set; } + public IList TransparentDataEncryption { get; private set; } /// /// Gets the recommended indices for this database. /// [JsonProperty(PropertyName = "properties.recommendedIndex")] - public IList RecommendedIndex { get; protected set; } + public IList RecommendedIndex { get; private set; } /// /// Gets the id indicating the failover group containing this database. /// [JsonProperty(PropertyName = "properties.failoverGroupId")] - public System.Guid? FailoverGroupId { get; protected set; } + public System.Guid? FailoverGroupId { get; private set; } /// - /// Gets or sets conditional. If the database is a geo-secondary, + /// Gets or sets conditional. If the database is a geo-secondary, /// readScale indicates whether read-only connections are allowed to - /// this database or not. Possible values include: 'Enabled', - /// 'Disabled' + /// this database or not. Not supported for DataWarehouse edition. + /// Possible values include: 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.readScale")] public ReadScale? ReadScale { get; set; } @@ -347,7 +470,8 @@ public Database() { } /// /// Gets or sets indicates the name of the sample schema to apply when /// creating this database. If createMode is not Default, this value is - /// ignored. Possible values include: 'AdventureWorksLT' + /// ignored. Not supported for DataWarehouse edition. Possible values + /// include: 'AdventureWorksLT' /// [JsonProperty(PropertyName = "properties.sampleName")] public string SampleName { get; set; } @@ -361,27 +485,6 @@ public Database() { } public override void Validate() { base.Validate(); - if (Schemas != null) - { - foreach (var element in Schemas) - { - if (element != null) - { - element.Validate(); - } - } - } - if (RecommendedIndex != null) - { - foreach (var element1 in RecommendedIndex) - { - if (element1 != null) - { - element1.Validate(); - } - } - } } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseBlobAuditingPolicy.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseBlobAuditingPolicy.cs new file mode 100644 index 000000000000..11081c0dafe2 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseBlobAuditingPolicy.cs @@ -0,0 +1,153 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Contains information about a database Blob Auditing policy. + /// + [Rest.Serialization.JsonTransformation] + public partial class DatabaseBlobAuditingPolicy : ProxyResource + { + /// + /// Initializes a new instance of the DatabaseBlobAuditingPolicy class. + /// + public DatabaseBlobAuditingPolicy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DatabaseBlobAuditingPolicy class. + /// + /// Specifies the state of the policy. If state is + /// Enabled, storageEndpoint and storageAccountAccessKey are required. + /// Possible values include: 'Enabled', 'Disabled' + /// Resource ID. + /// Resource name. + /// Resource type. + /// The geo-location where the resource + /// lives + /// Resource kind. + /// Specifies the blob storage endpoint + /// (e.g. https://MyAccount.blob.core.windows.net). If state is + /// Enabled, storageEndpoint is required. + /// Specifies the identifier key + /// of the auditing storage account. If state is Enabled, + /// storageAccountAccessKey is required. + /// Specifies the number of days to keep in + /// the audit logs. + /// Specifies the Actions and + /// Actions-Groups to audit. + /// Specifies the blob + /// storage subscription Id. + /// Specifies whether + /// storageAccountAccessKey value is the storage’s secondary + /// key. + public DatabaseBlobAuditingPolicy(BlobAuditingPolicyState state, string id = default(string), string name = default(string), string type = default(string), string location = default(string), string kind = default(string), string storageEndpoint = default(string), string storageAccountAccessKey = default(string), int? retentionDays = default(int?), IList auditActionsAndGroups = default(IList), string storageAccountSubscriptionId = default(string), bool? isStorageSecondaryKeyInUse = default(bool?)) + : base(id, name, type) + { + Location = location; + Kind = kind; + State = state; + StorageEndpoint = storageEndpoint; + StorageAccountAccessKey = storageAccountAccessKey; + RetentionDays = retentionDays; + AuditActionsAndGroups = auditActionsAndGroups; + StorageAccountSubscriptionId = storageAccountSubscriptionId; + IsStorageSecondaryKeyInUse = isStorageSecondaryKeyInUse; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets resource kind. + /// + [JsonProperty(PropertyName = "kind")] + public string Kind { get; private set; } + + /// + /// Gets or sets specifies the state of the policy. If state is + /// Enabled, storageEndpoint and storageAccountAccessKey are required. + /// Possible values include: 'Enabled', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.state")] + public BlobAuditingPolicyState State { get; set; } + + /// + /// Gets or sets specifies the blob storage endpoint (e.g. + /// https://MyAccount.blob.core.windows.net). If state is Enabled, + /// storageEndpoint is required. + /// + [JsonProperty(PropertyName = "properties.storageEndpoint")] + public string StorageEndpoint { get; set; } + + /// + /// Gets or sets specifies the identifier key of the auditing storage + /// account. If state is Enabled, storageAccountAccessKey is required. + /// + [JsonProperty(PropertyName = "properties.storageAccountAccessKey")] + public string StorageAccountAccessKey { get; set; } + + /// + /// Gets or sets specifies the number of days to keep in the audit + /// logs. + /// + [JsonProperty(PropertyName = "properties.retentionDays")] + public int? RetentionDays { get; set; } + + /// + /// Gets or sets specifies the Actions and Actions-Groups to audit. + /// + [JsonProperty(PropertyName = "properties.auditActionsAndGroups")] + public IList AuditActionsAndGroups { get; set; } + + /// + /// Gets or sets specifies the blob storage subscription Id. + /// + [JsonProperty(PropertyName = "properties.storageAccountSubscriptionId")] + public string StorageAccountSubscriptionId { get; set; } + + /// + /// Gets or sets specifies whether storageAccountAccessKey value is the + /// storage’s secondary key. + /// + [JsonProperty(PropertyName = "properties.isStorageSecondaryKeyInUse")] + public bool? IsStorageSecondaryKeyInUse { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEditions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEdition.cs similarity index 72% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEditions.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEdition.cs index 36d268b7b4dd..ce917741917b 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEditions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseEdition.cs @@ -2,20 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// - /// Defines values for DatabaseEditions. + /// Defines values for DatabaseEdition. /// - public static class DatabaseEditions + public static class DatabaseEdition { public const string Web = "Web"; public const string Business = "Business"; @@ -26,6 +26,6 @@ public static class DatabaseEditions public const string Stretch = "Stretch"; public const string DataWarehouse = "DataWarehouse"; public const string System = "System"; + public const string System2 = "System2"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseMetric.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseMetric.cs index ab228a99cbf6..261b7ca03351 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseMetric.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseMetric.cs @@ -2,27 +2,30 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; /// /// Represents database metrics. /// - public partial class DatabaseMetric : SqlSubResource + public partial class DatabaseMetric : SubResource { /// /// Initializes a new instance of the DatabaseMetric class. /// - public DatabaseMetric() { } + public DatabaseMetric() + { + CustomInit(); + } /// /// Initializes a new instance of the DatabaseMetric class. @@ -45,44 +48,49 @@ public DatabaseMetric() { } Limit = limit; Unit = unit; NextResetTime = nextResetTime; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the name of the resource. /// [JsonProperty(PropertyName = "resourceName")] - public string ResourceName { get; protected set; } + public string ResourceName { get; private set; } /// /// Gets the metric display name. /// [JsonProperty(PropertyName = "displayName")] - public string DisplayName { get; protected set; } + public string DisplayName { get; private set; } /// /// Gets the current value of the metric. /// [JsonProperty(PropertyName = "currentValue")] - public double? CurrentValue { get; protected set; } + public double? CurrentValue { get; private set; } /// /// Gets the current limit of the metric. /// [JsonProperty(PropertyName = "limit")] - public double? Limit { get; protected set; } + public double? Limit { get; private set; } /// /// Gets the units of the metric. /// [JsonProperty(PropertyName = "unit")] - public string Unit { get; protected set; } + public string Unit { get; private set; } /// /// Gets the next reset time for the metric (ISO8601 format). /// [JsonProperty(PropertyName = "nextResetTime")] - public System.DateTime? NextResetTime { get; protected set; } + public System.DateTime? NextResetTime { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseSecurityAlertPolicy.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseSecurityAlertPolicy.cs new file mode 100644 index 000000000000..ec7cba770e5a --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/DatabaseSecurityAlertPolicy.cs @@ -0,0 +1,173 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Contains information about a database Threat Detection policy. + /// + [Rest.Serialization.JsonTransformation] + public partial class DatabaseSecurityAlertPolicy : ProxyResource + { + /// + /// Initializes a new instance of the DatabaseSecurityAlertPolicy + /// class. + /// + public DatabaseSecurityAlertPolicy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DatabaseSecurityAlertPolicy + /// class. + /// + /// Specifies the state of the policy. If state is + /// Enabled, storageEndpoint and storageAccountAccessKey are required. + /// Possible values include: 'New', 'Enabled', 'Disabled' + /// Resource ID. + /// Resource name. + /// Resource type. + /// The geo-location where the resource + /// lives + /// Resource kind. + /// Specifies the semicolon-separated list + /// of alerts that are disabled, or empty string to disable no alerts. + /// Possible values: Sql_Injection; Sql_Injection_Vulnerability; + /// Access_Anomaly; Usage_Anomaly. + /// Specifies the semicolon-separated list + /// of e-mail addresses to which the alert is sent. + /// Specifies that the alert is sent + /// to the account administrators. Possible values include: 'Enabled', + /// 'Disabled' + /// Specifies the blob storage endpoint + /// (e.g. https://MyAccount.blob.core.windows.net). This blob storage + /// will hold all Threat Detection audit logs. If state is Enabled, + /// storageEndpoint is required. + /// Specifies the identifier key + /// of the Threat Detection audit storage account. If state is Enabled, + /// storageAccountAccessKey is required. + /// Specifies the number of days to keep in + /// the Threat Detection audit logs. + /// Specifies whether to use the default + /// server policy. Possible values include: 'Enabled', + /// 'Disabled' + public DatabaseSecurityAlertPolicy(SecurityAlertPolicyState state, string id = default(string), string name = default(string), string type = default(string), string location = default(string), string kind = default(string), string disabledAlerts = default(string), string emailAddresses = default(string), SecurityAlertPolicyEmailAccountAdmins? emailAccountAdmins = default(SecurityAlertPolicyEmailAccountAdmins?), string storageEndpoint = default(string), string storageAccountAccessKey = default(string), int? retentionDays = default(int?), SecurityAlertPolicyUseServerDefault? useServerDefault = default(SecurityAlertPolicyUseServerDefault?)) + : base(id, name, type) + { + Location = location; + Kind = kind; + State = state; + DisabledAlerts = disabledAlerts; + EmailAddresses = emailAddresses; + EmailAccountAdmins = emailAccountAdmins; + StorageEndpoint = storageEndpoint; + StorageAccountAccessKey = storageAccountAccessKey; + RetentionDays = retentionDays; + UseServerDefault = useServerDefault; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets resource kind. + /// + [JsonProperty(PropertyName = "kind")] + public string Kind { get; private set; } + + /// + /// Gets or sets specifies the state of the policy. If state is + /// Enabled, storageEndpoint and storageAccountAccessKey are required. + /// Possible values include: 'New', 'Enabled', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.state")] + public SecurityAlertPolicyState State { get; set; } + + /// + /// Gets or sets specifies the semicolon-separated list of alerts that + /// are disabled, or empty string to disable no alerts. Possible + /// values: Sql_Injection; Sql_Injection_Vulnerability; Access_Anomaly; + /// Usage_Anomaly. + /// + [JsonProperty(PropertyName = "properties.disabledAlerts")] + public string DisabledAlerts { get; set; } + + /// + /// Gets or sets specifies the semicolon-separated list of e-mail + /// addresses to which the alert is sent. + /// + [JsonProperty(PropertyName = "properties.emailAddresses")] + public string EmailAddresses { get; set; } + + /// + /// Gets or sets specifies that the alert is sent to the account + /// administrators. Possible values include: 'Enabled', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.emailAccountAdmins")] + public SecurityAlertPolicyEmailAccountAdmins? EmailAccountAdmins { get; set; } + + /// + /// Gets or sets specifies the blob storage endpoint (e.g. + /// https://MyAccount.blob.core.windows.net). This blob storage will + /// hold all Threat Detection audit logs. If state is Enabled, + /// storageEndpoint is required. + /// + [JsonProperty(PropertyName = "properties.storageEndpoint")] + public string StorageEndpoint { get; set; } + + /// + /// Gets or sets specifies the identifier key of the Threat Detection + /// audit storage account. If state is Enabled, storageAccountAccessKey + /// is required. + /// + [JsonProperty(PropertyName = "properties.storageAccountAccessKey")] + public string StorageAccountAccessKey { get; set; } + + /// + /// Gets or sets specifies the number of days to keep in the Threat + /// Detection audit logs. + /// + [JsonProperty(PropertyName = "properties.retentionDays")] + public int? RetentionDays { get; set; } + + /// + /// Gets or sets specifies whether to use the default server policy. + /// Possible values include: 'Enabled', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.useServerDefault")] + public SecurityAlertPolicyUseServerDefault? UseServerDefault { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/EditionCapability.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/EditionCapability.cs new file mode 100644 index 000000000000..b92c36f30947 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/EditionCapability.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 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The server edition capabilities. + /// + public partial class EditionCapability + { + /// + /// Initializes a new instance of the EditionCapability class. + /// + public EditionCapability() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EditionCapability class. + /// + /// The edition name. + /// The status of the server edition. Possible + /// values include: 'Visible', 'Available', 'Default', + /// 'Disabled' + /// The list of supported + /// service objectives for the edition. + public EditionCapability(string name = default(string), CapabilityStatus? status = default(CapabilityStatus?), IList supportedServiceLevelObjectives = default(IList)) + { + Name = name; + Status = status; + SupportedServiceLevelObjectives = supportedServiceLevelObjectives; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the edition name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the status of the server edition. Possible values include: + /// 'Visible', 'Available', 'Default', 'Disabled' + /// + [JsonProperty(PropertyName = "status")] + public CapabilityStatus? Status { get; private set; } + + /// + /// Gets the list of supported service objectives for the edition. + /// + [JsonProperty(PropertyName = "supportedServiceLevelObjectives")] + public IList SupportedServiceLevelObjectives { get; private set; } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPool.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPool.cs index 3f947de63680..c0f8f0b30f00 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPool.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPool.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -21,22 +21,25 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Represents a database elastic pool. /// - [JsonTransformation] - public partial class ElasticPool : Resource + [Rest.Serialization.JsonTransformation] + public partial class ElasticPool : TrackedResource { /// /// Initializes a new instance of the ElasticPool class. /// - public ElasticPool() { } + public ElasticPool() + { + CustomInit(); + } /// /// Initializes a new instance of the ElasticPool class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource location. + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags. /// The creation date of the elastic pool /// (ISO8601 format). /// The state of the elastic pool. Possible values @@ -53,8 +56,8 @@ public ElasticPool() { } /// pool in MB. /// Kind of elastic pool. This is metadata used for /// the Azure portal experience. - public ElasticPool(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), System.DateTime? creationDate = default(System.DateTime?), string state = default(string), string edition = default(string), int? dtu = default(int?), int? databaseDtuMax = default(int?), int? databaseDtuMin = default(int?), int? storageMB = default(int?), string kind = default(string)) - : base(location, name, id, type, tags) + public ElasticPool(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), System.DateTime? creationDate = default(System.DateTime?), string state = default(string), string edition = default(string), int? dtu = default(int?), int? databaseDtuMax = default(int?), int? databaseDtuMin = default(int?), int? storageMB = default(int?), string kind = default(string)) + : base(location, id, name, type, tags) { CreationDate = creationDate; State = state; @@ -64,20 +67,26 @@ public ElasticPool() { } DatabaseDtuMin = databaseDtuMin; StorageMB = storageMB; Kind = kind; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the creation date of the elastic pool (ISO8601 format). /// [JsonProperty(PropertyName = "properties.creationDate")] - public System.DateTime? CreationDate { get; protected set; } + public System.DateTime? CreationDate { get; private set; } /// /// Gets the state of the elastic pool. Possible values include: /// 'Creating', 'Ready', 'Disabled' /// [JsonProperty(PropertyName = "properties.state")] - public string State { get; protected set; } + public string State { get; private set; } /// /// Gets or sets the edition of the elastic pool. Possible values @@ -115,7 +124,7 @@ public ElasticPool() { } /// portal experience. /// [JsonProperty(PropertyName = "kind")] - public string Kind { get; protected set; } + public string Kind { get; private set; } /// /// Validate the object. @@ -129,4 +138,3 @@ public override void Validate() } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolActivity.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolActivity.cs index 5b4802a0d06c..1ff2dab1c974 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolActivity.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolActivity.cs @@ -2,41 +2,42 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; using System.Linq; /// /// Represents the activity on an elastic pool. /// - [JsonTransformation] - public partial class ElasticPoolActivity : Resource + [Rest.Serialization.JsonTransformation] + public partial class ElasticPoolActivity : ProxyResource { /// /// Initializes a new instance of the ElasticPoolActivity class. /// - public ElasticPoolActivity() { } + public ElasticPoolActivity() + { + CustomInit(); + } /// /// Initializes a new instance of the ElasticPoolActivity class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource ID. + /// Resource name. + /// Resource type. + /// The geo-location where the resource + /// lives /// The time the operation finished (ISO8601 /// format). /// The error code if available. @@ -71,9 +72,10 @@ public ElasticPoolActivity() { } /// DTU cap. /// The requested DTU /// guarantee. - public ElasticPoolActivity(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), System.DateTime? endTime = default(System.DateTime?), int? errorCode = default(int?), string errorMessage = default(string), int? errorSeverity = default(int?), string operation = default(string), string operationId = default(string), int? percentComplete = default(int?), int? requestedDatabaseDtuMax = default(int?), int? requestedDatabaseDtuMin = default(int?), int? requestedDtu = default(int?), string requestedElasticPoolName = default(string), long? requestedStorageLimitInGB = default(long?), string elasticPoolName = default(string), string serverName = default(string), System.DateTime? startTime = default(System.DateTime?), string state = default(string), int? requestedStorageLimitInMB = default(int?), int? requestedDatabaseDtuGuarantee = default(int?), int? requestedDatabaseDtuCap = default(int?), int? requestedDtuGuarantee = default(int?)) - : base(location, name, id, type, tags) + public ElasticPoolActivity(string id = default(string), string name = default(string), string type = default(string), string location = default(string), System.DateTime? endTime = default(System.DateTime?), int? errorCode = default(int?), string errorMessage = default(string), int? errorSeverity = default(int?), string operation = default(string), string operationId = default(string), int? percentComplete = default(int?), int? requestedDatabaseDtuMax = default(int?), int? requestedDatabaseDtuMin = default(int?), int? requestedDtu = default(int?), string requestedElasticPoolName = default(string), long? requestedStorageLimitInGB = default(long?), string elasticPoolName = default(string), string serverName = default(string), System.DateTime? startTime = default(System.DateTime?), string state = default(string), int? requestedStorageLimitInMB = default(int?), int? requestedDatabaseDtuGuarantee = default(int?), int? requestedDatabaseDtuCap = default(int?), int? requestedDtuGuarantee = default(int?)) + : base(id, name, type) { + Location = location; EndTime = endTime; ErrorCode = errorCode; ErrorMessage = errorMessage; @@ -94,138 +96,139 @@ public ElasticPoolActivity() { } RequestedDatabaseDtuGuarantee = requestedDatabaseDtuGuarantee; RequestedDatabaseDtuCap = requestedDatabaseDtuCap; RequestedDtuGuarantee = requestedDtuGuarantee; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + /// /// Gets the time the operation finished (ISO8601 format). /// [JsonProperty(PropertyName = "properties.endTime")] - public System.DateTime? EndTime { get; protected set; } + public System.DateTime? EndTime { get; private set; } /// /// Gets the error code if available. /// [JsonProperty(PropertyName = "properties.errorCode")] - public int? ErrorCode { get; protected set; } + public int? ErrorCode { get; private set; } /// /// Gets the error message if available. /// [JsonProperty(PropertyName = "properties.errorMessage")] - public string ErrorMessage { get; protected set; } + public string ErrorMessage { get; private set; } /// /// Gets the error severity if available. /// [JsonProperty(PropertyName = "properties.errorSeverity")] - public int? ErrorSeverity { get; protected set; } + public int? ErrorSeverity { get; private set; } /// /// Gets the operation name. /// [JsonProperty(PropertyName = "properties.operation")] - public string Operation { get; protected set; } + public string Operation { get; private set; } /// /// Gets the unique operation ID. /// [JsonProperty(PropertyName = "properties.operationId")] - public string OperationId { get; protected set; } + public string OperationId { get; private set; } /// /// Gets the percentage complete if available. /// [JsonProperty(PropertyName = "properties.percentComplete")] - public int? PercentComplete { get; protected set; } + public int? PercentComplete { get; private set; } /// /// Gets the requested max DTU per database if available. /// [JsonProperty(PropertyName = "properties.requestedDatabaseDtuMax")] - public int? RequestedDatabaseDtuMax { get; protected set; } + public int? RequestedDatabaseDtuMax { get; private set; } /// /// Gets the requested min DTU per database if available. /// [JsonProperty(PropertyName = "properties.requestedDatabaseDtuMin")] - public int? RequestedDatabaseDtuMin { get; protected set; } + public int? RequestedDatabaseDtuMin { get; private set; } /// /// Gets the requested DTU for the pool if available. /// [JsonProperty(PropertyName = "properties.requestedDtu")] - public int? RequestedDtu { get; protected set; } + public int? RequestedDtu { get; private set; } /// /// Gets the requested name for the elastic pool if available. /// [JsonProperty(PropertyName = "properties.requestedElasticPoolName")] - public string RequestedElasticPoolName { get; protected set; } + public string RequestedElasticPoolName { get; private set; } /// /// Gets the requested storage limit for the pool in GB if available. /// [JsonProperty(PropertyName = "properties.requestedStorageLimitInGB")] - public long? RequestedStorageLimitInGB { get; protected set; } + public long? RequestedStorageLimitInGB { get; private set; } /// /// Gets the name of the elastic pool. /// [JsonProperty(PropertyName = "properties.elasticPoolName")] - public string ElasticPoolName { get; protected set; } + public string ElasticPoolName { get; private set; } /// /// Gets the name of the server the elastic pool is in. /// [JsonProperty(PropertyName = "properties.serverName")] - public string ServerName { get; protected set; } + public string ServerName { get; private set; } /// /// Gets the time the operation started (ISO8601 format). /// [JsonProperty(PropertyName = "properties.startTime")] - public System.DateTime? StartTime { get; protected set; } + public System.DateTime? StartTime { get; private set; } /// /// Gets the current state of the operation. /// [JsonProperty(PropertyName = "properties.state")] - public string State { get; protected set; } + public string State { get; private set; } /// /// Gets the requested storage limit in MB. /// [JsonProperty(PropertyName = "properties.requestedStorageLimitInMB")] - public int? RequestedStorageLimitInMB { get; protected set; } + public int? RequestedStorageLimitInMB { get; private set; } /// /// Gets the requested per database DTU guarantee. /// [JsonProperty(PropertyName = "properties.requestedDatabaseDtuGuarantee")] - public int? RequestedDatabaseDtuGuarantee { get; protected set; } + public int? RequestedDatabaseDtuGuarantee { get; private set; } /// /// Gets the requested per database DTU cap. /// [JsonProperty(PropertyName = "properties.requestedDatabaseDtuCap")] - public int? RequestedDatabaseDtuCap { get; protected set; } + public int? RequestedDatabaseDtuCap { get; private set; } /// /// Gets the requested DTU guarantee. /// [JsonProperty(PropertyName = "properties.requestedDtuGuarantee")] - public int? RequestedDtuGuarantee { get; protected set; } + public int? RequestedDtuGuarantee { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolDatabaseActivity.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolDatabaseActivity.cs index 7131e241be23..fc7f7db514cc 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolDatabaseActivity.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolDatabaseActivity.cs @@ -2,43 +2,44 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; using System.Linq; /// /// Represents the activity on an elastic pool. /// - [JsonTransformation] - public partial class ElasticPoolDatabaseActivity : Resource + [Rest.Serialization.JsonTransformation] + public partial class ElasticPoolDatabaseActivity : ProxyResource { /// /// Initializes a new instance of the ElasticPoolDatabaseActivity /// class. /// - public ElasticPoolDatabaseActivity() { } + public ElasticPoolDatabaseActivity() + { + CustomInit(); + } /// /// Initializes a new instance of the ElasticPoolDatabaseActivity /// class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource ID. + /// Resource name. + /// Resource type. + /// The geo-location where the resource + /// lives /// The database name. /// The time the operation finished (ISO8601 /// format). @@ -63,9 +64,10 @@ public ElasticPoolDatabaseActivity() { } /// The time the operation started (ISO8601 /// format). /// The current state of the operation. - public ElasticPoolDatabaseActivity(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string databaseName = default(string), System.DateTime? endTime = default(System.DateTime?), int? errorCode = default(int?), string errorMessage = default(string), int? errorSeverity = default(int?), string operation = default(string), string operationId = default(string), int? percentComplete = default(int?), string requestedElasticPoolName = default(string), string currentElasticPoolName = default(string), string currentServiceObjective = default(string), string requestedServiceObjective = default(string), string serverName = default(string), System.DateTime? startTime = default(System.DateTime?), string state = default(string)) - : base(location, name, id, type, tags) + public ElasticPoolDatabaseActivity(string id = default(string), string name = default(string), string type = default(string), string location = default(string), string databaseName = default(string), System.DateTime? endTime = default(System.DateTime?), int? errorCode = default(int?), string errorMessage = default(string), int? errorSeverity = default(int?), string operation = default(string), System.Guid? operationId = default(System.Guid?), int? percentComplete = default(int?), string requestedElasticPoolName = default(string), string currentElasticPoolName = default(string), string currentServiceObjective = default(string), string requestedServiceObjective = default(string), string serverName = default(string), System.DateTime? startTime = default(System.DateTime?), string state = default(string)) + : base(id, name, type) { + Location = location; DatabaseName = databaseName; EndTime = endTime; ErrorCode = errorCode; @@ -81,110 +83,111 @@ public ElasticPoolDatabaseActivity() { } ServerName = serverName; StartTime = startTime; State = state; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + /// /// Gets the database name. /// [JsonProperty(PropertyName = "properties.databaseName")] - public string DatabaseName { get; protected set; } + public string DatabaseName { get; private set; } /// /// Gets the time the operation finished (ISO8601 format). /// [JsonProperty(PropertyName = "properties.endTime")] - public System.DateTime? EndTime { get; protected set; } + public System.DateTime? EndTime { get; private set; } /// /// Gets the error code if available. /// [JsonProperty(PropertyName = "properties.errorCode")] - public int? ErrorCode { get; protected set; } + public int? ErrorCode { get; private set; } /// /// Gets the error message if available. /// [JsonProperty(PropertyName = "properties.errorMessage")] - public string ErrorMessage { get; protected set; } + public string ErrorMessage { get; private set; } /// /// Gets the error severity if available. /// [JsonProperty(PropertyName = "properties.errorSeverity")] - public int? ErrorSeverity { get; protected set; } + public int? ErrorSeverity { get; private set; } /// /// Gets the operation name. /// [JsonProperty(PropertyName = "properties.operation")] - public string Operation { get; protected set; } + public string Operation { get; private set; } /// /// Gets the unique operation ID. /// [JsonProperty(PropertyName = "properties.operationId")] - public string OperationId { get; protected set; } + public System.Guid? OperationId { get; private set; } /// /// Gets the percentage complete if available. /// [JsonProperty(PropertyName = "properties.percentComplete")] - public int? PercentComplete { get; protected set; } + public int? PercentComplete { get; private set; } /// /// Gets the name for the elastic pool the database is moving into if /// available. /// [JsonProperty(PropertyName = "properties.requestedElasticPoolName")] - public string RequestedElasticPoolName { get; protected set; } + public string RequestedElasticPoolName { get; private set; } /// /// Gets the name of the current elastic pool the database is in if /// available. /// [JsonProperty(PropertyName = "properties.currentElasticPoolName")] - public string CurrentElasticPoolName { get; protected set; } + public string CurrentElasticPoolName { get; private set; } /// /// Gets the name of the current service objective if available. /// [JsonProperty(PropertyName = "properties.currentServiceObjective")] - public string CurrentServiceObjective { get; protected set; } + public string CurrentServiceObjective { get; private set; } /// /// Gets the name of the requested service objective if available. /// [JsonProperty(PropertyName = "properties.requestedServiceObjective")] - public string RequestedServiceObjective { get; protected set; } + public string RequestedServiceObjective { get; private set; } /// /// Gets the name of the server the elastic pool is in. /// [JsonProperty(PropertyName = "properties.serverName")] - public string ServerName { get; protected set; } + public string ServerName { get; private set; } /// /// Gets the time the operation started (ISO8601 format). /// [JsonProperty(PropertyName = "properties.startTime")] - public System.DateTime? StartTime { get; protected set; } + public System.DateTime? StartTime { get; private set; } /// /// Gets the current state of the operation. /// [JsonProperty(PropertyName = "properties.state")] - public string State { get; protected set; } + public string State { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEditions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEdition.cs similarity index 65% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEditions.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEdition.cs index a9b2bb8cb68c..8e615016afee 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEditions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolEdition.cs @@ -2,24 +2,23 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// - /// Defines values for ElasticPoolEditions. + /// Defines values for ElasticPoolEdition. /// - public static class ElasticPoolEditions + public static class ElasticPoolEdition { public const string Basic = "Basic"; public const string Standard = "Standard"; public const string Premium = "Premium"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolState.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolState.cs index b7c4a66f4e72..8d7129a1ea00 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolState.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ElasticPoolState.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// /// Defines values for ElasticPoolState. @@ -22,4 +22,3 @@ public static class ElasticPoolState public const string Disabled = "Disabled"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequestParameters.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequest.cs similarity index 78% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequestParameters.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequest.cs index 53db0bb7ec6d..2bab235231e4 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequestParameters.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ExportRequest.cs @@ -2,31 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; /// /// Export database parameters. /// - public partial class ExportRequestParameters + public partial class ExportRequest { /// - /// Initializes a new instance of the ExportRequestParameters class. + /// Initializes a new instance of the ExportRequest class. /// - public ExportRequestParameters() { } + public ExportRequest() + { + CustomInit(); + } /// - /// Initializes a new instance of the ExportRequestParameters class. + /// Initializes a new instance of the ExportRequest class. /// /// The type of the storage key to use. /// Valid values are StorageAccessKey and SharedAccessKey. Possible @@ -37,10 +40,9 @@ public ExportRequestParameters() { } /// administrator. /// The password of the SQL /// administrator. - /// The authentication type - if not - /// specified, will default to SQL. Possible values include: 'SQL', - /// 'ADPassword' - public ExportRequestParameters(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, AuthenticationType? authenticationType = default(AuthenticationType?)) + /// The authentication type. Possible + /// values include: 'SQL', 'ADPassword' + public ExportRequest(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, AuthenticationType? authenticationType = default(AuthenticationType?)) { StorageKeyType = storageKeyType; StorageKey = storageKey; @@ -48,8 +50,14 @@ public ExportRequestParameters() { } AdministratorLogin = administratorLogin; AdministratorLoginPassword = administratorLoginPassword; AuthenticationType = authenticationType; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the type of the storage key to use. Valid values are /// StorageAccessKey and SharedAccessKey. Possible values include: @@ -83,8 +91,8 @@ public ExportRequestParameters() { } public string AdministratorLoginPassword { get; set; } /// - /// Gets or sets the authentication type - if not specified, will - /// default to SQL. Possible values include: 'SQL', 'ADPassword' + /// Gets or sets the authentication type. Possible values include: + /// 'SQL', 'ADPassword' /// [JsonProperty(PropertyName = "authenticationType")] public AuthenticationType? AuthenticationType { get; set; } @@ -116,4 +124,3 @@ public virtual void Validate() } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerFirewallRule.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/FirewallRule.cs similarity index 75% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerFirewallRule.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/FirewallRule.cs index 0d1dafa9a75d..bddc92b6ce5a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerFirewallRule.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/FirewallRule.cs @@ -2,33 +2,36 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// /// Represents a server firewall rule. /// - [JsonTransformation] - public partial class ServerFirewallRule : SqlSubResource + [Rest.Serialization.JsonTransformation] + public partial class FirewallRule : SubResource { /// - /// Initializes a new instance of the ServerFirewallRule class. + /// Initializes a new instance of the FirewallRule class. /// - public ServerFirewallRule() { } + public FirewallRule() + { + CustomInit(); + } /// - /// Initializes a new instance of the ServerFirewallRule class. + /// Initializes a new instance of the FirewallRule class. /// /// The start IP address of the firewall /// rule. Must be IPv4 format. Use value '0.0.0.0' to represent all @@ -44,7 +47,7 @@ public ServerFirewallRule() { } /// Location of the server that contains this /// firewall rule. /// Type of resource this is. - public ServerFirewallRule(string startIpAddress, string endIpAddress, string name = default(string), string id = default(string), string kind = default(string), string location = default(string), string type = default(string)) + public FirewallRule(string startIpAddress, string endIpAddress, string name = default(string), string id = default(string), string kind = default(string), string location = default(string), string type = default(string)) : base(name, id) { Kind = kind; @@ -52,25 +55,31 @@ public ServerFirewallRule() { } Type = type; StartIpAddress = startIpAddress; EndIpAddress = endIpAddress; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets kind of server that contains this firewall rule. /// [JsonProperty(PropertyName = "kind")] - public string Kind { get; protected set; } + public string Kind { get; private set; } /// /// Gets location of the server that contains this firewall rule. /// [JsonProperty(PropertyName = "location")] - public string Location { get; protected set; } + public string Location { get; private set; } /// /// Gets type of resource this is. /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } /// /// Gets or sets the start IP address of the firewall rule. Must be @@ -107,4 +116,3 @@ public virtual void Validate() } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponsePropertiesModel.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponsePropertiesModel.cs deleted file mode 100644 index 8d9cef4e18a9..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponsePropertiesModel.cs +++ /dev/null @@ -1,114 +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.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using Azure; - using Management; - using Sql; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Response for Import/Export Status operation. - /// - public partial class ImportExportOperationResponsePropertiesModel - { - /// - /// Initializes a new instance of the - /// ImportExportOperationResponsePropertiesModel class. - /// - public ImportExportOperationResponsePropertiesModel() { } - - /// - /// Initializes a new instance of the - /// ImportExportOperationResponsePropertiesModel class. - /// - /// The request type of the - /// operation. - /// The request type of the operation. - /// The name of the server. - /// The name of the database. - /// The status message returned from the - /// server. - /// The operation status last modified - /// time. - /// The operation queued time. - /// The blob uri. - /// The error message returned from the - /// server. - public ImportExportOperationResponsePropertiesModel(string requestType = default(string), System.Guid? requestId = default(System.Guid?), string serverName = default(string), string databaseName = default(string), string status = default(string), string lastModifiedTime = default(string), string queuedTime = default(string), string blobUri = default(string), string errorMessage = default(string)) - { - RequestType = requestType; - RequestId = requestId; - ServerName = serverName; - DatabaseName = databaseName; - Status = status; - LastModifiedTime = lastModifiedTime; - QueuedTime = queuedTime; - BlobUri = blobUri; - ErrorMessage = errorMessage; - } - - /// - /// Gets the request type of the operation. - /// - [JsonProperty(PropertyName = "requestType")] - public string RequestType { get; protected set; } - - /// - /// Gets the request type of the operation. - /// - [JsonProperty(PropertyName = "requestId")] - public System.Guid? RequestId { get; protected set; } - - /// - /// Gets the name of the server. - /// - [JsonProperty(PropertyName = "serverName")] - public string ServerName { get; protected set; } - - /// - /// Gets the name of the database. - /// - [JsonProperty(PropertyName = "databaseName")] - public string DatabaseName { get; protected set; } - - /// - /// Gets the status message returned from the server. - /// - [JsonProperty(PropertyName = "status")] - public string Status { get; protected set; } - - /// - /// Gets the operation status last modified time. - /// - [JsonProperty(PropertyName = "lastModifiedTime")] - public string LastModifiedTime { get; protected set; } - - /// - /// Gets the operation queued time. - /// - [JsonProperty(PropertyName = "queuedTime")] - public string QueuedTime { get; protected set; } - - /// - /// Gets the blob uri. - /// - [JsonProperty(PropertyName = "blobUri")] - public string BlobUri { get; protected set; } - - /// - /// Gets the error message returned from the server. - /// - [JsonProperty(PropertyName = "errorMessage")] - public string ErrorMessage { get; protected set; } - - } -} - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponse.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportResponse.cs similarity index 57% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponse.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportResponse.cs index 68d3b5554d72..4bcdc8edd0f2 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportOperationResponse.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExportResponse.cs @@ -2,39 +2,40 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// /// Response for Import/Export Get operation. /// - [JsonTransformation] - public partial class ImportExportOperationResponse + [Rest.Serialization.JsonTransformation] + public partial class ImportExportResponse : ProxyResource { /// - /// Initializes a new instance of the ImportExportOperationResponse - /// class. + /// Initializes a new instance of the ImportExportResponse class. /// - public ImportExportOperationResponse() { } + public ImportExportResponse() + { + CustomInit(); + } /// - /// Initializes a new instance of the ImportExportOperationResponse - /// class. + /// Initializes a new instance of the ImportExportResponse class. /// - /// The id returned from the server. - /// The name returned from the server. - /// The type returned from the server. + /// Resource ID. + /// Resource name. + /// Resource type. /// The request type of the /// operation. /// The request type of the operation. @@ -48,11 +49,9 @@ public ImportExportOperationResponse() { } /// The blob uri. /// The error message returned from the /// server. - public ImportExportOperationResponse(string id = default(string), string name = default(string), string type = default(string), string requestType = default(string), System.Guid? requestId = default(System.Guid?), string serverName = default(string), string databaseName = default(string), string status = default(string), string lastModifiedTime = default(string), string queuedTime = default(string), string blobUri = default(string), string errorMessage = default(string)) + public ImportExportResponse(string id = default(string), string name = default(string), string type = default(string), string requestType = default(string), System.Guid? requestId = default(System.Guid?), string serverName = default(string), string databaseName = default(string), string status = default(string), string lastModifiedTime = default(string), string queuedTime = default(string), string blobUri = default(string), string errorMessage = default(string)) + : base(id, name, type) { - Id = id; - Name = name; - Type = type; RequestType = requestType; RequestId = requestId; ServerName = serverName; @@ -62,80 +61,67 @@ public ImportExportOperationResponse() { } QueuedTime = queuedTime; BlobUri = blobUri; ErrorMessage = errorMessage; + CustomInit(); } /// - /// Gets the id returned from the server. - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } - - /// - /// Gets the name returned from the server. + /// An initialization method that performs custom operations like setting defaults /// - [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } - - /// - /// Gets the type returned from the server. - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + partial void CustomInit(); /// /// Gets the request type of the operation. /// [JsonProperty(PropertyName = "properties.requestType")] - public string RequestType { get; protected set; } + public string RequestType { get; private set; } /// /// Gets the request type of the operation. /// [JsonProperty(PropertyName = "properties.requestId")] - public System.Guid? RequestId { get; protected set; } + public System.Guid? RequestId { get; private set; } /// /// Gets the name of the server. /// [JsonProperty(PropertyName = "properties.serverName")] - public string ServerName { get; protected set; } + public string ServerName { get; private set; } /// /// Gets the name of the database. /// [JsonProperty(PropertyName = "properties.databaseName")] - public string DatabaseName { get; protected set; } + public string DatabaseName { get; private set; } /// /// Gets the status message returned from the server. /// [JsonProperty(PropertyName = "properties.status")] - public string Status { get; protected set; } + public string Status { get; private set; } /// /// Gets the operation status last modified time. /// [JsonProperty(PropertyName = "properties.lastModifiedTime")] - public string LastModifiedTime { get; protected set; } + public string LastModifiedTime { get; private set; } /// /// Gets the operation queued time. /// [JsonProperty(PropertyName = "properties.queuedTime")] - public string QueuedTime { get; protected set; } + public string QueuedTime { get; private set; } /// /// Gets the blob uri. /// [JsonProperty(PropertyName = "properties.blobUri")] - public string BlobUri { get; protected set; } + public string BlobUri { get; private set; } /// /// Gets the error message returned from the server. /// [JsonProperty(PropertyName = "properties.errorMessage")] - public string ErrorMessage { get; protected set; } + public string ErrorMessage { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequestParameters.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequest.cs similarity index 78% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequestParameters.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequest.cs index d3fea5fad863..7eeebd1cdad6 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequestParameters.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportExtensionRequest.cs @@ -2,35 +2,36 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// /// Import database parameters. /// - [JsonTransformation] - public partial class ImportExtensionRequestParameters + [Rest.Serialization.JsonTransformation] + public partial class ImportExtensionRequest { /// - /// Initializes a new instance of the ImportExtensionRequestParameters - /// class. + /// Initializes a new instance of the ImportExtensionRequest class. /// - public ImportExtensionRequestParameters() { } + public ImportExtensionRequest() + { + CustomInit(); + } /// - /// Initializes a new instance of the ImportExtensionRequestParameters - /// class. + /// Initializes a new instance of the ImportExtensionRequest class. /// /// The type of the storage key to use. /// Valid values are StorageAccessKey and SharedAccessKey. Possible @@ -43,10 +44,9 @@ public ImportExtensionRequestParameters() { } /// administrator. /// The name of the extension. /// The type of the extension. - /// The authentication type - if not - /// specified, will default to SQL. Possible values include: 'SQL', - /// 'ADPassword' - public ImportExtensionRequestParameters(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, string name = default(string), string type = default(string), AuthenticationType? authenticationType = default(AuthenticationType?)) + /// The authentication type. Possible + /// values include: 'SQL', 'ADPassword' + public ImportExtensionRequest(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, string name = default(string), string type = default(string), AuthenticationType? authenticationType = default(AuthenticationType?)) { Name = name; Type = type; @@ -56,15 +56,21 @@ public ImportExtensionRequestParameters() { } AdministratorLogin = administratorLogin; AdministratorLoginPassword = administratorLoginPassword; AuthenticationType = authenticationType; + CustomInit(); } /// - /// Static constructor for ImportExtensionRequestParameters class. + /// Static constructor for ImportExtensionRequest class. /// - static ImportExtensionRequestParameters() + static ImportExtensionRequest() { OperationMode = "Import"; } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the extension. /// @@ -110,15 +116,15 @@ static ImportExtensionRequestParameters() public string AdministratorLoginPassword { get; set; } /// - /// Gets or sets the authentication type - if not specified, will - /// default to SQL. Possible values include: 'SQL', 'ADPassword' + /// Gets or sets the authentication type. Possible values include: + /// 'SQL', 'ADPassword' /// [JsonProperty(PropertyName = "properties.authenticationType")] public AuthenticationType? AuthenticationType { get; set; } /// - /// The type of Import/Export operation being performed. This is - /// always Import. + /// The type of import operation being performed. This is always + /// Import. /// [JsonProperty(PropertyName = "properties.operationMode")] public static string OperationMode { get; private set; } @@ -150,4 +156,3 @@ public virtual void Validate() } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequestParameters.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequest.cs similarity index 66% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequestParameters.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequest.cs index 49bea5820b3d..6df04fcd3655 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequestParameters.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ImportRequest.cs @@ -2,31 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; /// /// Import database parameters. /// - public partial class ImportRequestParameters : ExportRequestParameters + public partial class ImportRequest : ExportRequest { /// - /// Initializes a new instance of the ImportRequestParameters class. + /// Initializes a new instance of the ImportRequest class. /// - public ImportRequestParameters() { } + public ImportRequest() + { + CustomInit(); + } /// - /// Initializes a new instance of the ImportRequestParameters class. + /// Initializes a new instance of the ImportRequest class. /// /// The type of the storage key to use. /// Valid values are StorageAccessKey and SharedAccessKey. Possible @@ -39,24 +42,33 @@ public ImportRequestParameters() { } /// administrator. /// The name of the database to /// import. - /// The edition for the database being - /// created. + /// The edition for the database being created. + /// Possible values include: 'Web', 'Business', 'Basic', 'Standard', + /// 'Premium', 'Free', 'Stretch', 'DataWarehouse', 'System', + /// 'System2' /// The name of the service - /// objective to assign to the database. + /// objective to assign to the database. Possible values include: + /// 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', 'P2', 'P3', 'P4', 'P6', + /// 'P11', 'P15', 'System', 'System2', 'ElasticPool' /// The maximum size for the newly imported /// database. - /// The authentication type - if not - /// specified, will default to SQL. Possible values include: 'SQL', - /// 'ADPassword' - public ImportRequestParameters(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, string databaseName, string edition, string serviceObjectiveName, string maxSizeBytes, AuthenticationType? authenticationType = default(AuthenticationType?)) + /// The authentication type. Possible + /// values include: 'SQL', 'ADPassword' + public ImportRequest(StorageKeyType storageKeyType, string storageKey, string storageUri, string administratorLogin, string administratorLoginPassword, string databaseName, string edition, string serviceObjectiveName, string maxSizeBytes, AuthenticationType? authenticationType = default(AuthenticationType?)) : base(storageKeyType, storageKey, storageUri, administratorLogin, administratorLoginPassword, authenticationType) { DatabaseName = databaseName; Edition = edition; ServiceObjectiveName = serviceObjectiveName; MaxSizeBytes = maxSizeBytes; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database to import. /// @@ -64,14 +76,18 @@ public ImportRequestParameters() { } public string DatabaseName { get; set; } /// - /// Gets or sets the edition for the database being created. + /// Gets or sets the edition for the database being created. Possible + /// values include: 'Web', 'Business', 'Basic', 'Standard', 'Premium', + /// 'Free', 'Stretch', 'DataWarehouse', 'System', 'System2' /// [JsonProperty(PropertyName = "edition")] public string Edition { get; set; } /// /// Gets or sets the name of the service objective to assign to the - /// database. + /// database. Possible values include: 'Basic', 'S0', 'S1', 'S2', 'S3', + /// 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'System2', + /// 'ElasticPool' /// [JsonProperty(PropertyName = "serviceObjectiveName")] public string ServiceObjectiveName { get; set; } @@ -110,4 +126,3 @@ public override void Validate() } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/LocationCapabilities.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/LocationCapabilities.cs new file mode 100644 index 000000000000..6e44298edbca --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/LocationCapabilities.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 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The capabilities for a location. + /// + public partial class LocationCapabilities + { + /// + /// Initializes a new instance of the LocationCapabilities class. + /// + public LocationCapabilities() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the LocationCapabilities class. + /// + /// The location name. + /// Azure SQL Database's status for the location. + /// Possible values include: 'Visible', 'Available', 'Default', + /// 'Disabled' + /// The list of supported server + /// versions. + public LocationCapabilities(string name = default(string), CapabilityStatus? status = default(CapabilityStatus?), IList supportedServerVersions = default(IList)) + { + Name = name; + Status = status; + SupportedServerVersions = supportedServerVersions; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the location name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets azure SQL Database's status for the location. Possible values + /// include: 'Visible', 'Available', 'Default', 'Disabled' + /// + [JsonProperty(PropertyName = "status")] + public CapabilityStatus? Status { get; private set; } + + /// + /// Gets the list of supported server versions. + /// + [JsonProperty(PropertyName = "supportedServerVersions")] + public IList SupportedServerVersions { get; private set; } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeCapability.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeCapability.cs new file mode 100644 index 000000000000..da1999e31263 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeCapability.cs @@ -0,0 +1,75 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The maximum size limits for a database. + /// + public partial class MaxSizeCapability + { + /// + /// Initializes a new instance of the MaxSizeCapability class. + /// + public MaxSizeCapability() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the MaxSizeCapability class. + /// + /// The maximum size of the database (see 'unit' + /// for the units). + /// The units that the limit is expressed in. + /// Possible values include: 'Megabytes', 'Gigabytes', 'Terabytes', + /// 'Petabytes' + /// The status of the maximum size capability. + /// Possible values include: 'Visible', 'Available', 'Default', + /// 'Disabled' + public MaxSizeCapability(long? limit = default(long?), MaxSizeUnits? unit = default(MaxSizeUnits?), CapabilityStatus? status = default(CapabilityStatus?)) + { + Limit = limit; + Unit = unit; + Status = status; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the maximum size of the database (see 'unit' for the units). + /// + [JsonProperty(PropertyName = "limit")] + public long? Limit { get; private set; } + + /// + /// Gets the units that the limit is expressed in. Possible values + /// include: 'Megabytes', 'Gigabytes', 'Terabytes', 'Petabytes' + /// + [JsonProperty(PropertyName = "unit")] + public MaxSizeUnits? Unit { get; private set; } + + /// + /// Gets the status of the maximum size capability. Possible values + /// include: 'Visible', 'Available', 'Default', 'Disabled' + /// + [JsonProperty(PropertyName = "status")] + public CapabilityStatus? Status { get; private set; } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeUnits.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeUnits.cs new file mode 100644 index 000000000000..ea4306a303b8 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/MaxSizeUnits.cs @@ -0,0 +1,34 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for MaxSizeUnits. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum MaxSizeUnits + { + [EnumMember(Value = "Megabytes")] + Megabytes, + [EnumMember(Value = "Gigabytes")] + Gigabytes, + [EnumMember(Value = "Terabytes")] + Terabytes, + [EnumMember(Value = "Petabytes")] + Petabytes + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Operation.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Operation.cs index 8eedbe7180e3..fc6216ab7fd6 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Operation.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Operation.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; @@ -22,7 +22,10 @@ public partial class Operation /// /// Initializes a new instance of the Operation class. /// - public Operation() { } + public Operation() + { + CustomInit(); + } /// /// Initializes a new instance of the Operation class. @@ -35,8 +38,14 @@ public Operation() { } { Name = name; Display = display; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets operation name: {provider}/{resource}/{operation} /// @@ -51,4 +60,3 @@ public Operation() { } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationDisplay.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationDisplay.cs index c99d3ec23c7b..4bb1babe51d8 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationDisplay.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationDisplay.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; @@ -22,7 +22,10 @@ public partial class OperationDisplay /// /// Initializes a new instance of the OperationDisplay class. /// - public OperationDisplay() { } + public OperationDisplay() + { + CustomInit(); + } /// /// Initializes a new instance of the OperationDisplay class. @@ -38,8 +41,14 @@ public OperationDisplay() { } Provider = provider; Resource = resource; Operation = operation; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets service provider: Microsoft SQL Database. /// @@ -61,4 +70,3 @@ public OperationDisplay() { } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationImpact.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationImpact.cs index 2b0560d98607..b4357304e49f 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationImpact.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationImpact.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; @@ -22,7 +22,10 @@ public partial class OperationImpact /// /// Initializes a new instance of the OperationImpact class. /// - public OperationImpact() { } + public OperationImpact() + { + CustomInit(); + } /// /// Initializes a new instance of the OperationImpact class. @@ -40,32 +43,37 @@ public OperationImpact() { } Unit = unit; ChangeValueAbsolute = changeValueAbsolute; ChangeValueRelative = changeValueRelative; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the name of the impact dimension. /// [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } + public string Name { get; private set; } /// /// Gets the unit in which estimated impact to dimension is measured. /// [JsonProperty(PropertyName = "unit")] - public string Unit { get; protected set; } + public string Unit { get; private set; } /// /// Gets the absolute impact to dimension. /// [JsonProperty(PropertyName = "changeValueAbsolute")] - public double? ChangeValueAbsolute { get; protected set; } + public double? ChangeValueAbsolute { get; private set; } /// /// Gets the relative impact to dimension (null if not applicable) /// [JsonProperty(PropertyName = "changeValueRelative")] - public double? ChangeValueRelative { get; protected set; } + public double? ChangeValueRelative { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationListResult.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationListResult.cs index 52311fe57078..bfa59c2e3868 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationListResult.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/OperationListResult.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class OperationListResult /// /// Initializes a new instance of the OperationListResult class. /// - public OperationListResult() { } + public OperationListResult() + { + CustomInit(); + } /// /// Initializes a new instance of the OperationListResult class. @@ -38,8 +41,14 @@ public OperationListResult() { } { Value = value; NextLink = nextLink; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets list of SQL operations supported by the SQL resource /// provider. @@ -56,4 +65,3 @@ public OperationListResult() { } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Page.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Page.cs index 6874c44162dd..229b1dcf1f69 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Page.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Page.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -52,4 +52,3 @@ IEnumerator IEnumerable.GetEnumerator() } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TableType.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/PerformanceLevelUnit.cs similarity index 56% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TableType.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/PerformanceLevelUnit.cs index c6805a2c3320..746fd8598bc1 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TableType.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/PerformanceLevelUnit.cs @@ -2,30 +2,27 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; using System.Runtime.Serialization; /// - /// Defines values for TableType. + /// Defines values for PerformanceLevelUnit. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] - public enum TableType + [JsonConverter(typeof(StringEnumConverter))] + public enum PerformanceLevelUnit { - [EnumMember(Value = "BaseTable")] - BaseTable, - [EnumMember(Value = "View")] - View + [EnumMember(Value = "DTU")] + DTU } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ProxyResource.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ProxyResource.cs new file mode 100644 index 000000000000..868cd172e1d2 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ProxyResource.cs @@ -0,0 +1,47 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using System.Linq; + + /// + /// ARM proxy resource. + /// + public partial class ProxyResource : Resource + { + /// + /// Initializes a new instance of the ProxyResource class. + /// + public ProxyResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ProxyResource class. + /// + /// Resource ID. + /// Resource name. + /// Resource type. + public ProxyResource(string id = default(string), string name = default(string), string type = default(string)) + : base(id, name, type) + { + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReadScale.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReadScale.cs index 1adb6c3dc4c4..066c8fef753f 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReadScale.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReadScale.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Defines values for ReadScale. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum ReadScale { [EnumMember(Value = "Enabled")] @@ -28,4 +28,3 @@ public enum ReadScale Disabled } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPool.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPool.cs index 2b08d7481216..d0368a3cad01 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPool.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPool.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -21,24 +21,25 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Represents a recommented elastic pool. /// - [JsonTransformation] - public partial class RecommendedElasticPool : Resource + [Rest.Serialization.JsonTransformation] + public partial class RecommendedElasticPool : ProxyResource { /// /// Initializes a new instance of the RecommendedElasticPool class. /// - public RecommendedElasticPool() { } + public RecommendedElasticPool() + { + CustomInit(); + } /// /// Initializes a new instance of the RecommendedElasticPool class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource ID. + /// Resource name. + /// Resource type. /// The edition of the recommended - /// elastic pool. The ElasticPoolEditions enumeration contains all the + /// elastic pool. The ElasticPoolEdition enumeration contains all the /// valid editions. Possible values include: 'Basic', 'Standard', /// 'Premium' /// The DTU for the recommended elastic pool. @@ -54,12 +55,12 @@ public RecommendedElasticPool() { } /// Gets maximum observed DTU. /// Gets maximum observed storage in /// megabytes. - /// The list of databases in this pool. + /// The list of databases in this pool. /// Expanded property /// The list of databases housed in the server. /// Expanded property - public RecommendedElasticPool(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string databaseEdition = default(string), double? dtu = default(double?), double? databaseDtuMin = default(double?), double? databaseDtuMax = default(double?), double? storageMB = default(double?), System.DateTime? observationPeriodStart = default(System.DateTime?), System.DateTime? observationPeriodEnd = default(System.DateTime?), double? maxObservedDtu = default(double?), double? maxObservedStorageMB = default(double?), IList databasesProperty = default(IList), IList metrics = default(IList)) - : base(location, name, id, type, tags) + public RecommendedElasticPool(string id = default(string), string name = default(string), string type = default(string), string databaseEdition = default(string), double? dtu = default(double?), double? databaseDtuMin = default(double?), double? databaseDtuMax = default(double?), double? storageMB = default(double?), System.DateTime? observationPeriodStart = default(System.DateTime?), System.DateTime? observationPeriodEnd = default(System.DateTime?), double? maxObservedDtu = default(double?), double? maxObservedStorageMB = default(double?), IList databases = default(IList), IList metrics = default(IList)) + : base(id, name, type) { DatabaseEdition = databaseEdition; Dtu = dtu; @@ -70,17 +71,23 @@ public RecommendedElasticPool() { } ObservationPeriodEnd = observationPeriodEnd; MaxObservedDtu = maxObservedDtu; MaxObservedStorageMB = maxObservedStorageMB; - DatabasesProperty = databasesProperty; + Databases = databases; Metrics = metrics; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the edition of the recommended elastic pool. The - /// ElasticPoolEditions enumeration contains all the valid editions. + /// ElasticPoolEdition enumeration contains all the valid editions. /// Possible values include: 'Basic', 'Standard', 'Premium' /// [JsonProperty(PropertyName = "properties.databaseEdition")] - public string DatabaseEdition { get; protected set; } + public string DatabaseEdition { get; private set; } /// /// Gets or sets the DTU for the recommended elastic pool. @@ -110,58 +117,37 @@ public RecommendedElasticPool() { } /// Gets the observation period start (ISO8601 format). /// [JsonProperty(PropertyName = "properties.observationPeriodStart")] - public System.DateTime? ObservationPeriodStart { get; protected set; } + public System.DateTime? ObservationPeriodStart { get; private set; } /// /// Gets the observation period start (ISO8601 format). /// [JsonProperty(PropertyName = "properties.observationPeriodEnd")] - public System.DateTime? ObservationPeriodEnd { get; protected set; } + public System.DateTime? ObservationPeriodEnd { get; private set; } /// /// Gets maximum observed DTU. /// [JsonProperty(PropertyName = "properties.maxObservedDtu")] - public double? MaxObservedDtu { get; protected set; } + public double? MaxObservedDtu { get; private set; } /// /// Gets maximum observed storage in megabytes. /// [JsonProperty(PropertyName = "properties.maxObservedStorageMB")] - public double? MaxObservedStorageMB { get; protected set; } + public double? MaxObservedStorageMB { get; private set; } /// /// Gets the list of databases in this pool. Expanded property /// [JsonProperty(PropertyName = "properties.databases")] - public IList DatabasesProperty { get; protected set; } + public IList Databases { get; private set; } /// /// Gets the list of databases housed in the server. Expanded property /// [JsonProperty(PropertyName = "properties.metrics")] - public IList Metrics { get; protected set; } + public IList Metrics { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - if (DatabasesProperty != null) - { - foreach (var element in DatabasesProperty) - { - if (element != null) - { - element.Validate(); - } - } - } - } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPoolMetric.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPoolMetric.cs index 9160cebc65bf..4cabdbcd469a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPoolMetric.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedElasticPoolMetric.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class RecommendedElasticPoolMetric /// Initializes a new instance of the RecommendedElasticPoolMetric /// class. /// - public RecommendedElasticPoolMetric() { } + public RecommendedElasticPoolMetric() + { + CustomInit(); + } /// /// Initializes a new instance of the RecommendedElasticPoolMetric @@ -39,8 +42,14 @@ public RecommendedElasticPoolMetric() { } DateTime = dateTime; Dtu = dtu; SizeGB = sizeGB; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the time of metric (ISO8601 format). /// @@ -62,4 +71,3 @@ public RecommendedElasticPoolMetric() { } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndex.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndex.cs index ecc8d77ce70c..e13505b5523d 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndex.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndex.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -21,22 +21,23 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Represents a database recommended index. /// - [JsonTransformation] - public partial class RecommendedIndex : Resource + [Rest.Serialization.JsonTransformation] + public partial class RecommendedIndex : ProxyResource { /// /// Initializes a new instance of the RecommendedIndex class. /// - public RecommendedIndex() { } + public RecommendedIndex() + { + CustomInit(); + } /// /// Initializes a new instance of the RecommendedIndex class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource ID. + /// Resource name. + /// Resource type. /// The proposed index action. You can create a /// missing index, drop an unused index, or rebuild an existing index /// to improve its performance. Possible values include: 'Create', @@ -64,8 +65,8 @@ public RecommendedIndex() { } /// recommended index action. /// The values reported after index action /// is complete. - public RecommendedIndex(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), RecommendedIndexActions? action = default(RecommendedIndexActions?), RecommendedIndexStates? state = default(RecommendedIndexStates?), System.DateTime? created = default(System.DateTime?), System.DateTime? lastModified = default(System.DateTime?), RecommendedIndexTypes? indexType = default(RecommendedIndexTypes?), string schema = default(string), string table = default(string), IList columns = default(IList), IList includedColumns = default(IList), string indexScript = default(string), IList estimatedImpact = default(IList), IList reportedImpact = default(IList)) - : base(location, name, id, type, tags) + public RecommendedIndex(string id = default(string), string name = default(string), string type = default(string), RecommendedIndexAction? action = default(RecommendedIndexAction?), RecommendedIndexState? state = default(RecommendedIndexState?), System.DateTime? created = default(System.DateTime?), System.DateTime? lastModified = default(System.DateTime?), RecommendedIndexType? indexType = default(RecommendedIndexType?), string schema = default(string), string table = default(string), IList columns = default(IList), IList includedColumns = default(IList), string indexScript = default(string), IList estimatedImpact = default(IList), IList reportedImpact = default(IList)) + : base(id, name, type) { Action = action; State = state; @@ -79,15 +80,21 @@ public RecommendedIndex() { } IndexScript = indexScript; EstimatedImpact = estimatedImpact; ReportedImpact = reportedImpact; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the proposed index action. You can create a missing index, /// drop an unused index, or rebuild an existing index to improve its /// performance. Possible values include: 'Create', 'Drop', 'Rebuild' /// [JsonProperty(PropertyName = "properties.action")] - public RecommendedIndexActions? Action { get; protected set; } + public RecommendedIndexAction? Action { get; private set; } /// /// Gets the current recommendation state. Possible values include: @@ -95,21 +102,21 @@ public RecommendedIndex() { } /// 'Reverting', 'Reverted', 'Ignored', 'Expired', 'Blocked', 'Success' /// [JsonProperty(PropertyName = "properties.state")] - public RecommendedIndexStates? State { get; protected set; } + public RecommendedIndexState? State { get; private set; } /// /// Gets the UTC datetime showing when this resource was created /// (ISO8601 format). /// [JsonProperty(PropertyName = "properties.created")] - public System.DateTime? Created { get; protected set; } + public System.DateTime? Created { get; private set; } /// /// Gets the UTC datetime of when was this resource last changed /// (ISO8601 format). /// [JsonProperty(PropertyName = "properties.lastModified")] - public System.DateTime? LastModified { get; protected set; } + public System.DateTime? LastModified { get; private set; } /// /// Gets the type of index (CLUSTERED, NONCLUSTERED, COLUMNSTORE, @@ -117,60 +124,49 @@ public RecommendedIndex() { } /// 'NONCLUSTERED', 'COLUMNSTORE', 'CLUSTERED COLUMNSTORE' /// [JsonProperty(PropertyName = "properties.indexType")] - public RecommendedIndexTypes? IndexType { get; protected set; } + public RecommendedIndexType? IndexType { get; private set; } /// /// Gets the schema where table to build index over resides /// [JsonProperty(PropertyName = "properties.schema")] - public string Schema { get; protected set; } + public string Schema { get; private set; } /// /// Gets the table on which to build index. /// [JsonProperty(PropertyName = "properties.table")] - public string Table { get; protected set; } + public string Table { get; private set; } /// /// Gets columns over which to build index /// [JsonProperty(PropertyName = "properties.columns")] - public IList Columns { get; protected set; } + public IList Columns { get; private set; } /// /// Gets the list of column names to be included in the index /// [JsonProperty(PropertyName = "properties.includedColumns")] - public IList IncludedColumns { get; protected set; } + public IList IncludedColumns { get; private set; } /// /// Gets the full build index script /// [JsonProperty(PropertyName = "properties.indexScript")] - public string IndexScript { get; protected set; } + public string IndexScript { get; private set; } /// /// Gets the estimated impact of doing recommended index action. /// [JsonProperty(PropertyName = "properties.estimatedImpact")] - public IList EstimatedImpact { get; protected set; } + public IList EstimatedImpact { get; private set; } /// /// Gets the values reported after index action is complete. /// [JsonProperty(PropertyName = "properties.reportedImpact")] - public IList ReportedImpact { get; protected set; } + public IList ReportedImpact { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexActions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexAction.cs similarity index 67% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexActions.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexAction.cs index a548b1a7038b..a545bef75aae 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexActions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexAction.cs @@ -2,25 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; using System.Runtime.Serialization; /// - /// Defines values for RecommendedIndexActions. + /// Defines values for RecommendedIndexAction. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] - public enum RecommendedIndexActions + [JsonConverter(typeof(StringEnumConverter))] + public enum RecommendedIndexAction { [EnumMember(Value = "Create")] Create, @@ -30,4 +30,3 @@ public enum RecommendedIndexActions Rebuild } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexStates.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexState.cs similarity index 78% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexStates.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexState.cs index 238086f39ccd..3da82fd39980 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexStates.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexState.cs @@ -2,25 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; using System.Runtime.Serialization; /// - /// Defines values for RecommendedIndexStates. + /// Defines values for RecommendedIndexState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] - public enum RecommendedIndexStates + [JsonConverter(typeof(StringEnumConverter))] + public enum RecommendedIndexState { [EnumMember(Value = "Active")] Active, @@ -46,4 +46,3 @@ public enum RecommendedIndexStates Success } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexTypes.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexType.cs similarity index 71% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexTypes.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexType.cs index 737d4e5a1d90..6d1503e2aae8 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexTypes.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RecommendedIndexType.cs @@ -2,25 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; using System.Runtime.Serialization; /// - /// Defines values for RecommendedIndexTypes. + /// Defines values for RecommendedIndexType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] - public enum RecommendedIndexTypes + [JsonConverter(typeof(StringEnumConverter))] + public enum RecommendedIndexType { [EnumMember(Value = "CLUSTERED")] CLUSTERED, @@ -32,4 +32,3 @@ public enum RecommendedIndexTypes CLUSTEREDCOLUMNSTORE } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationLink.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationLink.cs index 29c9f64b193a..56a7f3420615 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationLink.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationLink.cs @@ -2,30 +2,33 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// /// Represents a database replication link. /// - [JsonTransformation] - public partial class ReplicationLink : SqlSubResource + [Rest.Serialization.JsonTransformation] + public partial class ReplicationLink : SubResource { /// /// Initializes a new instance of the ReplicationLink class. /// - public ReplicationLink() { } + public ReplicationLink() + { + CustomInit(); + } /// /// Initializes a new instance of the ReplicationLink class. @@ -73,50 +76,56 @@ public ReplicationLink() { } StartTime = startTime; PercentComplete = percentComplete; ReplicationState = replicationState; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets location of the server that contains this firewall rule. /// [JsonProperty(PropertyName = "location")] - public string Location { get; protected set; } + public string Location { get; private set; } /// /// Gets type of resource this is. /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } /// /// Gets legacy value indicating whether termination is allowed. /// Currently always returns true. /// [JsonProperty(PropertyName = "properties.isTerminationAllowed")] - public bool? IsTerminationAllowed { get; protected set; } + public bool? IsTerminationAllowed { get; private set; } /// /// Gets replication mode of this replication link. /// [JsonProperty(PropertyName = "properties.replicationMode")] - public string ReplicationMode { get; protected set; } + public string ReplicationMode { get; private set; } /// /// Gets the name of the server hosting the partner database. /// [JsonProperty(PropertyName = "properties.partnerServer")] - public string PartnerServer { get; protected set; } + public string PartnerServer { get; private set; } /// /// Gets the name of the partner database. /// [JsonProperty(PropertyName = "properties.partnerDatabase")] - public string PartnerDatabase { get; protected set; } + public string PartnerDatabase { get; private set; } /// /// Gets the Azure Region of the partner database. /// [JsonProperty(PropertyName = "properties.partnerLocation")] - public string PartnerLocation { get; protected set; } + public string PartnerLocation { get; private set; } /// /// Gets the role of the database in the replication link. Possible @@ -124,7 +133,7 @@ public ReplicationLink() { } /// 'Source', 'Copy' /// [JsonProperty(PropertyName = "properties.role")] - public ReplicationRole? Role { get; protected set; } + public ReplicationRole? Role { get; private set; } /// /// Gets the role of the partner database in the replication link. @@ -132,27 +141,26 @@ public ReplicationLink() { } /// 'NonReadableSecondary', 'Source', 'Copy' /// [JsonProperty(PropertyName = "properties.partnerRole")] - public ReplicationRole? PartnerRole { get; protected set; } + public ReplicationRole? PartnerRole { get; private set; } /// /// Gets the start time for the replication link. /// [JsonProperty(PropertyName = "properties.startTime")] - public System.DateTime? StartTime { get; protected set; } + public System.DateTime? StartTime { get; private set; } /// /// Gets the percentage of seeding complete for the replication link. /// [JsonProperty(PropertyName = "properties.percentComplete")] - public int? PercentComplete { get; protected set; } + public int? PercentComplete { get; private set; } /// /// Gets the replication state for the replication link. Possible /// values include: 'PENDING', 'SEEDING', 'CATCH_UP', 'SUSPENDED' /// [JsonProperty(PropertyName = "properties.replicationState")] - public string ReplicationState { get; protected set; } + public string ReplicationState { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationRole.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationRole.cs index fd99c0cfc0ca..c6ad5ebfe7d6 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationRole.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationRole.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Defines values for ReplicationRole. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum ReplicationRole { [EnumMember(Value = "Primary")] @@ -34,4 +34,3 @@ public enum ReplicationRole Copy } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationState.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationState.cs index 9fa5d1db98f6..f4d819c0c36b 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationState.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ReplicationState.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// /// Defines values for ReplicationState. @@ -23,4 +23,3 @@ public static class ReplicationState public const string SUSPENDED = "SUSPENDED"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Resource.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Resource.cs index 7e42b810d834..23c795659742 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Resource.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Resource.cs @@ -2,92 +2,69 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; using System.Linq; /// - /// Resource properties + /// ARM resource. /// public partial class Resource : IResource { /// /// Initializes a new instance of the Resource class. /// - public Resource() { } + public Resource() + { + CustomInit(); + } /// /// Initializes a new instance of the Resource class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags - public Resource(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary)) + /// Resource ID. + /// Resource name. + /// Resource type. + public Resource(string id = default(string), string name = default(string), string type = default(string)) { - Name = name; Id = id; + Name = name; Type = type; - Location = location; - Tags = tags; + CustomInit(); } /// - /// Gets resource name + /// An initialization method that performs custom operations like setting defaults /// - [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } + partial void CustomInit(); /// - /// Gets resource ID + /// Gets resource ID. /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } - - /// - /// Gets resource type - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Id { get; private set; } /// - /// Gets or sets resource location + /// Gets resource name. /// - [JsonProperty(PropertyName = "location")] - public string Location { get; set; } + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } /// - /// Gets or sets resource tags + /// Gets resource type. /// - [JsonProperty(PropertyName = "tags")] - public IDictionary Tags { get; set; } + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Location"); - } - } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePoint.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePoint.cs index 653693a2cccf..aaf1b6a58dcf 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePoint.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePoint.cs @@ -2,41 +2,40 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; using System.Linq; /// /// Represents a database restore point. /// - [JsonTransformation] - public partial class RestorePoint : Resource + [Rest.Serialization.JsonTransformation] + public partial class RestorePoint : ProxyResource { /// /// Initializes a new instance of the RestorePoint class. /// - public RestorePoint() { } + public RestorePoint() + { + CustomInit(); + } /// /// Initializes a new instance of the RestorePoint class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource ID. + /// Resource name. + /// Resource type. /// The restore point type of the /// database restore point. Possible values include: 'DISCRETE', /// 'CONTINUOUS' @@ -46,45 +45,40 @@ public RestorePoint() { } /// Earliest restore time (ISO8601 /// format). Populated when restorePointType = DISCRETE. Null /// otherwise. - public RestorePoint(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), RestorePointTypes? restorePointType = default(RestorePointTypes?), System.DateTime? restorePointCreationDate = default(System.DateTime?), System.DateTime? earliestRestoreDate = default(System.DateTime?)) - : base(location, name, id, type, tags) + public RestorePoint(string id = default(string), string name = default(string), string type = default(string), RestorePointTypes? restorePointType = default(RestorePointTypes?), System.DateTime? restorePointCreationDate = default(System.DateTime?), System.DateTime? earliestRestoreDate = default(System.DateTime?)) + : base(id, name, type) { RestorePointType = restorePointType; RestorePointCreationDate = restorePointCreationDate; EarliestRestoreDate = earliestRestoreDate; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the restore point type of the database restore point. Possible /// values include: 'DISCRETE', 'CONTINUOUS' /// [JsonProperty(PropertyName = "properties.restorePointType")] - public RestorePointTypes? RestorePointType { get; protected set; } + public RestorePointTypes? RestorePointType { get; private set; } /// /// Gets restore point creation time (ISO8601 format). Populated when /// restorePointType = CONTINUOUS. Null otherwise. /// [JsonProperty(PropertyName = "properties.restorePointCreationDate")] - public System.DateTime? RestorePointCreationDate { get; protected set; } + public System.DateTime? RestorePointCreationDate { get; private set; } /// /// Gets earliest restore time (ISO8601 format). Populated when /// restorePointType = DISCRETE. Null otherwise. /// [JsonProperty(PropertyName = "properties.earliestRestoreDate")] - public System.DateTime? EarliestRestoreDate { get; protected set; } + public System.DateTime? EarliestRestoreDate { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePointTypes.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePointTypes.cs index e417275b1001..418d20f5ddd3 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePointTypes.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/RestorePointTypes.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Defines values for RestorePointTypes. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum RestorePointTypes { [EnumMember(Value = "DISCRETE")] @@ -28,4 +28,3 @@ public enum RestorePointTypes CONTINUOUS } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SampleName.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SampleName.cs index ad5ad7b2ace7..c29c4a2b71e4 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SampleName.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SampleName.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// /// Defines values for SampleName. @@ -20,4 +20,3 @@ public static class SampleName public const string AdventureWorksLT = "AdventureWorksLT"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Schema.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Schema.cs deleted file mode 100644 index 51ba2a2dcded..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Schema.cs +++ /dev/null @@ -1,75 +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.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Represents a database schema. - /// - [JsonTransformation] - public partial class Schema : Resource - { - /// - /// Initializes a new instance of the Schema class. - /// - public Schema() { } - - /// - /// Initializes a new instance of the Schema class. - /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags - /// The tables from this database. - public Schema(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList tables = default(IList
)) - : base(location, name, id, type, tags) - { - Tables = tables; - } - - /// - /// Gets the tables from this database. - /// - [JsonProperty(PropertyName = "properties.tables")] - public IList
Tables { get; protected set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - if (Tables != null) - { - foreach (var element in Tables) - { - if (element != null) - { - element.Validate(); - } - } - } - } - } -} - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TargetElasticPoolEditions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyEmailAccountAdmins.cs similarity index 51% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TargetElasticPoolEditions.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyEmailAccountAdmins.cs index 86ea1f0a86bc..fea00eaf6a3b 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TargetElasticPoolEditions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyEmailAccountAdmins.cs @@ -2,32 +2,29 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; using System.Runtime.Serialization; /// - /// Defines values for TargetElasticPoolEditions. + /// Defines values for SecurityAlertPolicyEmailAccountAdmins. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] - public enum TargetElasticPoolEditions + [JsonConverter(typeof(StringEnumConverter))] + public enum SecurityAlertPolicyEmailAccountAdmins { - [EnumMember(Value = "Basic")] - Basic, - [EnumMember(Value = "Standard")] - Standard, - [EnumMember(Value = "Premium")] - Premium + [EnumMember(Value = "Enabled")] + Enabled, + [EnumMember(Value = "Disabled")] + Disabled } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyState.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyState.cs new file mode 100644 index 000000000000..fe6fd2f81c89 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyState.cs @@ -0,0 +1,32 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for SecurityAlertPolicyState. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum SecurityAlertPolicyState + { + [EnumMember(Value = "New")] + New, + [EnumMember(Value = "Enabled")] + Enabled, + [EnumMember(Value = "Disabled")] + Disabled + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyUseServerDefault.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyUseServerDefault.cs new file mode 100644 index 000000000000..9117b18e6102 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SecurityAlertPolicyUseServerDefault.cs @@ -0,0 +1,30 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for SecurityAlertPolicyUseServerDefault. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum SecurityAlertPolicyUseServerDefault + { + [EnumMember(Value = "Enabled")] + Enabled, + [EnumMember(Value = "Disabled")] + Disabled + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Server.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Server.cs index 94ce0b3719de..3223eeb4daf0 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Server.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Server.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -21,22 +21,25 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Represents a server. /// - [JsonTransformation] - public partial class Server : Resource + [Rest.Serialization.JsonTransformation] + public partial class Server : TrackedResource { /// /// Initializes a new instance of the Server class. /// - public Server() { } + public Server() + { + CustomInit(); + } /// /// Initializes a new instance of the Server class. /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags + /// Resource location. + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags. /// Kind of sql server. This is metadata used for /// the Azure portal experience. /// The fully qualified domain @@ -59,8 +62,8 @@ public Server() { } /// .../servers/{serverName}/administrators /// The state of the server. Possible values /// include: 'Ready', 'Disabled' - public Server(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), string kind = default(string), string fullyQualifiedDomainName = default(string), string version = default(string), string administratorLogin = default(string), string administratorLoginPassword = default(string), System.Guid? externalAdministratorSid = default(System.Guid?), string externalAdministratorLogin = default(string), ServerState? state = default(ServerState?)) - : base(location, name, id, type, tags) + public Server(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string kind = default(string), string fullyQualifiedDomainName = default(string), string version = default(string), string administratorLogin = default(string), string administratorLoginPassword = default(string), System.Guid? externalAdministratorSid = default(System.Guid?), string externalAdministratorLogin = default(string), ServerState? state = default(ServerState?)) + : base(location, id, name, type, tags) { Kind = kind; FullyQualifiedDomainName = fullyQualifiedDomainName; @@ -70,20 +73,26 @@ public Server() { } ExternalAdministratorSid = externalAdministratorSid; ExternalAdministratorLogin = externalAdministratorLogin; State = state; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets kind of sql server. This is metadata used for the Azure /// portal experience. /// [JsonProperty(PropertyName = "kind")] - public string Kind { get; protected set; } + public string Kind { get; private set; } /// /// Gets the fully qualified domain name of the server. /// [JsonProperty(PropertyName = "properties.fullyQualifiedDomainName")] - public string FullyQualifiedDomainName { get; protected set; } + public string FullyQualifiedDomainName { get; private set; } /// /// Gets or sets the version of the server. Possible values include: @@ -114,7 +123,7 @@ public Server() { } /// .../servers/{serverName}/administrators. /// [JsonProperty(PropertyName = "properties.externalAdministratorSid")] - public System.Guid? ExternalAdministratorSid { get; protected set; } + public System.Guid? ExternalAdministratorSid { get; private set; } /// /// Gets the display name of the Azure Active Directory object with @@ -123,14 +132,14 @@ public Server() { } /// .../servers/{serverName}/administrators /// [JsonProperty(PropertyName = "properties.externalAdministratorLogin")] - public string ExternalAdministratorLogin { get; protected set; } + public string ExternalAdministratorLogin { get; private set; } /// /// Gets the state of the server. Possible values include: 'Ready', /// 'Disabled' /// [JsonProperty(PropertyName = "properties.state")] - public ServerState? State { get; protected set; } + public ServerState? State { get; private set; } /// /// Validate the object. @@ -144,4 +153,3 @@ public override void Validate() } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerMetric.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerMetric.cs index 514b443b2e14..165386b6bc0a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerMetric.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerMetric.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; @@ -22,7 +22,10 @@ public partial class ServerMetric /// /// Initializes a new instance of the ServerMetric class. /// - public ServerMetric() { } + public ServerMetric() + { + CustomInit(); + } /// /// Initializes a new instance of the ServerMetric class. @@ -44,50 +47,55 @@ public ServerMetric() { } Limit = limit; Unit = unit; NextResetTime = nextResetTime; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets name of the server usage metric. /// [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } + public string Name { get; private set; } /// /// Gets the name of the resource. /// [JsonProperty(PropertyName = "resourceName")] - public string ResourceName { get; protected set; } + public string ResourceName { get; private set; } /// /// Gets the metric display name. /// [JsonProperty(PropertyName = "displayName")] - public string DisplayName { get; protected set; } + public string DisplayName { get; private set; } /// /// Gets the current value of the metric. /// [JsonProperty(PropertyName = "currentValue")] - public double? CurrentValue { get; protected set; } + public double? CurrentValue { get; private set; } /// /// Gets the current limit of the metric. /// [JsonProperty(PropertyName = "limit")] - public double? Limit { get; protected set; } + public double? Limit { get; private set; } /// /// Gets the units of the metric. /// [JsonProperty(PropertyName = "unit")] - public string Unit { get; protected set; } + public string Unit { get; private set; } /// /// Gets the next reset time for the metric (ISO8601 format). /// [JsonProperty(PropertyName = "nextResetTime")] - public System.DateTime? NextResetTime { get; protected set; } + public System.DateTime? NextResetTime { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerState.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerState.cs index c2669c27745e..db7bcb0552b3 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerState.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerState.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Defines values for ServerState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum ServerState { [EnumMember(Value = "Ready")] @@ -28,4 +28,3 @@ public enum ServerState Disabled } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersion.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersion.cs index 820962c3339e..4f9f632f75ba 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersion.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersion.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// /// Defines values for ServerVersion. @@ -21,4 +21,3 @@ public static class ServerVersion public const string OneTwoFullStopZero = "12.0"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersionCapability.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersionCapability.cs new file mode 100644 index 000000000000..0b8db04a770d --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServerVersionCapability.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 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The server capabilities. + /// + public partial class ServerVersionCapability + { + /// + /// Initializes a new instance of the ServerVersionCapability class. + /// + public ServerVersionCapability() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ServerVersionCapability class. + /// + /// The server version name. + /// The status of the server version. Possible + /// values include: 'Visible', 'Available', 'Default', + /// 'Disabled' + /// The list of supported server + /// editions. + public ServerVersionCapability(string name = default(string), CapabilityStatus? status = default(CapabilityStatus?), IList supportedEditions = default(IList)) + { + Name = name; + Status = status; + SupportedEditions = supportedEditions; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the server version name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the status of the server version. Possible values include: + /// 'Visible', 'Available', 'Default', 'Disabled' + /// + [JsonProperty(PropertyName = "status")] + public CapabilityStatus? Status { get; private set; } + + /// + /// Gets the list of supported server editions. + /// + [JsonProperty(PropertyName = "supportedEditions")] + public IList SupportedEditions { get; private set; } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjective.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjective.cs index b2a9f4ab297f..b78063329577 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjective.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjective.cs @@ -2,30 +2,33 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// /// Represents a database service objective. /// - [JsonTransformation] - public partial class ServiceObjective : SqlSubResource + [Rest.Serialization.JsonTransformation] + public partial class ServiceObjective : SubResource { /// /// Initializes a new instance of the ServiceObjective class. /// - public ServiceObjective() { } + public ServiceObjective() + { + CustomInit(); + } /// /// Initializes a new instance of the ServiceObjective class. @@ -50,40 +53,45 @@ public ServiceObjective() { } IsSystem = isSystem; Description = description; Enabled = enabled; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the name for the service objective. /// [JsonProperty(PropertyName = "properties.serviceObjectiveName")] - public string ServiceObjectiveName { get; protected set; } + public string ServiceObjectiveName { get; private set; } /// /// Gets whether the service level objective is the default service /// objective. /// [JsonProperty(PropertyName = "properties.isDefault")] - public bool? IsDefault { get; protected set; } + public bool? IsDefault { get; private set; } /// /// Gets whether the service level objective is a system service /// objective. /// [JsonProperty(PropertyName = "properties.isSystem")] - public bool? IsSystem { get; protected set; } + public bool? IsSystem { get; private set; } /// /// Gets the description for the service level objective. /// [JsonProperty(PropertyName = "properties.description")] - public string Description { get; protected set; } + public string Description { get; private set; } /// /// Gets whether the service level objective is enabled. /// [JsonProperty(PropertyName = "properties.enabled")] - public bool? Enabled { get; protected set; } + public bool? Enabled { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveCapability.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveCapability.cs new file mode 100644 index 000000000000..ece14b5ac26f --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveCapability.cs @@ -0,0 +1,104 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The service objectives capabilities. + /// + [Rest.Serialization.JsonTransformation] + public partial class ServiceObjectiveCapability + { + /// + /// Initializes a new instance of the ServiceObjectiveCapability class. + /// + public ServiceObjectiveCapability() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ServiceObjectiveCapability class. + /// + /// The service objective name. + /// The status of the service objective. Possible + /// values include: 'Visible', 'Available', 'Default', + /// 'Disabled' + /// Unit type used to measure service objective + /// performance level. Possible values include: 'DTU' + /// Performance level value. + /// The unique ID of the service objective. + /// The list of supported maximum + /// database sizes for this service objective. + public ServiceObjectiveCapability(string name = default(string), CapabilityStatus? status = default(CapabilityStatus?), PerformanceLevelUnit? unit = default(PerformanceLevelUnit?), int? value = default(int?), string id = default(string), IList supportedMaxSizes = default(IList)) + { + Name = name; + Status = status; + Unit = unit; + Value = value; + Id = id; + SupportedMaxSizes = supportedMaxSizes; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the service objective name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the status of the service objective. Possible values include: + /// 'Visible', 'Available', 'Default', 'Disabled' + /// + [JsonProperty(PropertyName = "status")] + public CapabilityStatus? Status { get; private set; } + + /// + /// Gets unit type used to measure service objective performance level. + /// Possible values include: 'DTU' + /// + [JsonProperty(PropertyName = "performanceLevel.unit")] + public PerformanceLevelUnit? Unit { get; private set; } + + /// + /// Gets performance level value. + /// + [JsonProperty(PropertyName = "performanceLevel.value")] + public int? Value { get; private set; } + + /// + /// Gets the unique ID of the service objective. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets the list of supported maximum database sizes for this service + /// objective. + /// + [JsonProperty(PropertyName = "supportedMaxSizes")] + public IList SupportedMaxSizes { get; private set; } + + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveName.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveName.cs index 2d48cb3b9fb5..2fd7e04cf20d 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveName.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceObjectiveName.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// /// Defines values for ServiceObjectiveName. @@ -30,7 +30,7 @@ public static class ServiceObjectiveName public const string P11 = "P11"; public const string P15 = "P15"; public const string System = "System"; + public const string System2 = "System2"; public const string ElasticPool = "ElasticPool"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceTierAdvisor.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceTierAdvisor.cs index 959cf5b3ee56..241948908b8a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceTierAdvisor.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/ServiceTierAdvisor.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -21,13 +21,16 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Represents a Service Tier Advisor. /// - [JsonTransformation] - public partial class ServiceTierAdvisor : SqlSubResource + [Rest.Serialization.JsonTransformation] + public partial class ServiceTierAdvisor : SubResource { /// /// Initializes a new instance of the ServiceTierAdvisor class. /// - public ServiceTierAdvisor() { } + public ServiceTierAdvisor() + { + CustomInit(); + } /// /// Initializes a new instance of the ServiceTierAdvisor class. @@ -107,132 +110,137 @@ public ServiceTierAdvisor() { } OverallRecommendationServiceLevelObjective = overallRecommendationServiceLevelObjective; OverallRecommendationServiceLevelObjectiveId = overallRecommendationServiceLevelObjectiveId; Confidence = confidence; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the observation period start (ISO8601 format). /// [JsonProperty(PropertyName = "properties.observationPeriodStart")] - public System.DateTime? ObservationPeriodStart { get; protected set; } + public System.DateTime? ObservationPeriodStart { get; private set; } /// /// Gets the observation period start (ISO8601 format). /// [JsonProperty(PropertyName = "properties.observationPeriodEnd")] - public System.DateTime? ObservationPeriodEnd { get; protected set; } + public System.DateTime? ObservationPeriodEnd { get; private set; } /// /// Gets the activeTimeRatio for service tier advisor. /// [JsonProperty(PropertyName = "properties.activeTimeRatio")] - public double? ActiveTimeRatio { get; protected set; } + public double? ActiveTimeRatio { get; private set; } /// /// Gets or sets minDtu for service tier advisor. /// [JsonProperty(PropertyName = "properties.minDtu")] - public double? MinDtu { get; protected set; } + public double? MinDtu { get; private set; } /// /// Gets or sets avgDtu for service tier advisor. /// [JsonProperty(PropertyName = "properties.avgDtu")] - public double? AvgDtu { get; protected set; } + public double? AvgDtu { get; private set; } /// /// Gets or sets maxDtu for service tier advisor. /// [JsonProperty(PropertyName = "properties.maxDtu")] - public double? MaxDtu { get; protected set; } + public double? MaxDtu { get; private set; } /// /// Gets or sets maxSizeInGB for service tier advisor. /// [JsonProperty(PropertyName = "properties.maxSizeInGB")] - public double? MaxSizeInGB { get; protected set; } + public double? MaxSizeInGB { get; private set; } /// /// Gets or sets serviceLevelObjectiveUsageMetrics for the service tier /// advisor. /// [JsonProperty(PropertyName = "properties.serviceLevelObjectiveUsageMetrics")] - public IList ServiceLevelObjectiveUsageMetrics { get; protected set; } + public IList ServiceLevelObjectiveUsageMetrics { get; private set; } /// /// Gets or sets currentServiceLevelObjective for service tier advisor. /// [JsonProperty(PropertyName = "properties.currentServiceLevelObjective")] - public string CurrentServiceLevelObjective { get; protected set; } + public string CurrentServiceLevelObjective { get; private set; } /// /// Gets or sets currentServiceLevelObjectiveId for service tier /// advisor. /// [JsonProperty(PropertyName = "properties.currentServiceLevelObjectiveId")] - public System.Guid? CurrentServiceLevelObjectiveId { get; protected set; } + public System.Guid? CurrentServiceLevelObjectiveId { get; private set; } /// /// Gets or sets usageBasedRecommendationServiceLevelObjective for /// service tier advisor. /// [JsonProperty(PropertyName = "properties.usageBasedRecommendationServiceLevelObjective")] - public string UsageBasedRecommendationServiceLevelObjective { get; protected set; } + public string UsageBasedRecommendationServiceLevelObjective { get; private set; } /// /// Gets or sets usageBasedRecommendationServiceLevelObjectiveId for /// service tier advisor. /// [JsonProperty(PropertyName = "properties.usageBasedRecommendationServiceLevelObjectiveId")] - public System.Guid? UsageBasedRecommendationServiceLevelObjectiveId { get; protected set; } + public System.Guid? UsageBasedRecommendationServiceLevelObjectiveId { get; private set; } /// /// Gets or sets databaseSizeBasedRecommendationServiceLevelObjective /// for service tier advisor. /// [JsonProperty(PropertyName = "properties.databaseSizeBasedRecommendationServiceLevelObjective")] - public string DatabaseSizeBasedRecommendationServiceLevelObjective { get; protected set; } + public string DatabaseSizeBasedRecommendationServiceLevelObjective { get; private set; } /// /// Gets or sets databaseSizeBasedRecommendationServiceLevelObjectiveId /// for service tier advisor. /// [JsonProperty(PropertyName = "properties.databaseSizeBasedRecommendationServiceLevelObjectiveId")] - public System.Guid? DatabaseSizeBasedRecommendationServiceLevelObjectiveId { get; protected set; } + public System.Guid? DatabaseSizeBasedRecommendationServiceLevelObjectiveId { get; private set; } /// /// Gets or sets disasterPlanBasedRecommendationServiceLevelObjective /// for service tier advisor. /// [JsonProperty(PropertyName = "properties.disasterPlanBasedRecommendationServiceLevelObjective")] - public string DisasterPlanBasedRecommendationServiceLevelObjective { get; protected set; } + public string DisasterPlanBasedRecommendationServiceLevelObjective { get; private set; } /// /// Gets or sets disasterPlanBasedRecommendationServiceLevelObjectiveId /// for service tier advisor. /// [JsonProperty(PropertyName = "properties.disasterPlanBasedRecommendationServiceLevelObjectiveId")] - public System.Guid? DisasterPlanBasedRecommendationServiceLevelObjectiveId { get; protected set; } + public System.Guid? DisasterPlanBasedRecommendationServiceLevelObjectiveId { get; private set; } /// /// Gets or sets overallRecommendationServiceLevelObjective for service /// tier advisor. /// [JsonProperty(PropertyName = "properties.overallRecommendationServiceLevelObjective")] - public string OverallRecommendationServiceLevelObjective { get; protected set; } + public string OverallRecommendationServiceLevelObjective { get; private set; } /// /// Gets or sets overallRecommendationServiceLevelObjectiveId for /// service tier advisor. /// [JsonProperty(PropertyName = "properties.overallRecommendationServiceLevelObjectiveId")] - public System.Guid? OverallRecommendationServiceLevelObjectiveId { get; protected set; } + public System.Guid? OverallRecommendationServiceLevelObjectiveId { get; private set; } /// /// Gets or sets confidence for service tier advisor. /// [JsonProperty(PropertyName = "properties.confidence")] - public double? Confidence { get; protected set; } + public double? Confidence { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SloUsageMetric.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SloUsageMetric.cs index c66774c45fdd..0f80348d7317 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SloUsageMetric.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SloUsageMetric.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; @@ -22,7 +22,10 @@ public partial class SloUsageMetric /// /// Initializes a new instance of the SloUsageMetric class. /// - public SloUsageMetric() { } + public SloUsageMetric() + { + CustomInit(); + } /// /// Initializes a new instance of the SloUsageMetric class. @@ -30,7 +33,7 @@ public SloUsageMetric() { } /// The serviceLevelObjective for /// SLO usage metric. Possible values include: 'Basic', 'S0', 'S1', /// 'S2', 'S3', 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', - /// 'ElasticPool' + /// 'System2', 'ElasticPool' /// The serviceLevelObjectiveId /// for SLO usage metric. /// Gets or sets inRangeTimeRatio for @@ -40,12 +43,19 @@ public SloUsageMetric() { } ServiceLevelObjective = serviceLevelObjective; ServiceLevelObjectiveId = serviceLevelObjectiveId; InRangeTimeRatio = inRangeTimeRatio; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the serviceLevelObjective for SLO usage metric. /// Possible values include: 'Basic', 'S0', 'S1', 'S2', 'S3', 'P1', - /// 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'ElasticPool' + /// 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'System', 'System2', + /// 'ElasticPool' /// [JsonProperty(PropertyName = "serviceLevelObjective")] public string ServiceLevelObjective { get; set; } @@ -64,4 +74,3 @@ public SloUsageMetric() { } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/StorageKeyType.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/StorageKeyType.cs index 0f6972c3ea42..46e88403d8d4 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/StorageKeyType.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/StorageKeyType.cs @@ -2,15 +2,15 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Sql.Models /// /// Defines values for StorageKeyType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum StorageKeyType { [EnumMember(Value = "StorageAccessKey")] @@ -28,4 +28,3 @@ public enum StorageKeyType SharedAccessKey } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SqlSubResource.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SubResource.cs similarity index 54% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SqlSubResource.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SubResource.cs index c5346bf44a6e..bfb412556ef1 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SqlSubResource.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/SubResource.cs @@ -2,51 +2,59 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; using Newtonsoft.Json; using System.Linq; /// /// Subresource properties /// - public partial class SqlSubResource + public partial class SubResource { /// - /// Initializes a new instance of the SqlSubResource class. + /// Initializes a new instance of the SubResource class. /// - public SqlSubResource() { } + public SubResource() + { + CustomInit(); + } /// - /// Initializes a new instance of the SqlSubResource class. + /// Initializes a new instance of the SubResource class. /// /// Resource name /// The resource ID. - public SqlSubResource(string name = default(string), string id = default(string)) + public SubResource(string name = default(string), string id = default(string)) { Name = name; Id = id; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets resource name /// [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } + public string Name { get; private set; } /// /// Gets the resource ID. /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } + public string Id { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Table.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Table.cs deleted file mode 100644 index 8f1417dbab80..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/Table.cs +++ /dev/null @@ -1,104 +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.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Represents a database table. - /// - [JsonTransformation] - public partial class Table : Resource - { - /// - /// Initializes a new instance of the Table class. - /// - public Table() { } - - /// - /// Initializes a new instance of the Table class. - /// - /// Resource location - /// Resource name - /// Resource ID - /// Resource type - /// Resource tags - /// The type of database table. Possible values - /// include: 'BaseTable', 'View' - /// The columns from this table. - /// The recommended indices for this - /// table. - public Table(string location, string name = default(string), string id = default(string), string type = default(string), IDictionary tags = default(IDictionary), TableType? tableType = default(TableType?), IList columns = default(IList), IList recommendedIndexes = default(IList)) - : base(location, name, id, type, tags) - { - TableType = tableType; - Columns = columns; - RecommendedIndexes = recommendedIndexes; - } - - /// - /// Gets the type of database table. Possible values include: - /// 'BaseTable', 'View' - /// - [JsonProperty(PropertyName = "properties.tableType")] - public TableType? TableType { get; protected set; } - - /// - /// Gets the columns from this table. - /// - [JsonProperty(PropertyName = "properties.columns")] - public IList Columns { get; protected set; } - - /// - /// Gets the recommended indices for this table. - /// - [JsonProperty(PropertyName = "properties.recommendedIndexes")] - public IList RecommendedIndexes { get; protected set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public override void Validate() - { - base.Validate(); - if (Columns != null) - { - foreach (var element in Columns) - { - if (element != null) - { - element.Validate(); - } - } - } - if (RecommendedIndexes != null) - { - foreach (var element1 in RecommendedIndexes) - { - if (element1 != null) - { - element1.Validate(); - } - } - } - } - } -} - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TrackedResource.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TrackedResource.cs new file mode 100644 index 000000000000..0bce0874fc7f --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TrackedResource.cs @@ -0,0 +1,80 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// ARM tracked top level resource. + /// + public partial class TrackedResource : Resource + { + /// + /// Initializes a new instance of the TrackedResource class. + /// + public TrackedResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the TrackedResource class. + /// + /// Resource location. + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags. + public TrackedResource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) + : base(id, name, type) + { + Tags = tags; + Location = location; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Gets or sets resource location. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); + } + } + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryption.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryption.cs index df2de344333c..6016e8c34c8a 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryption.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryption.cs @@ -2,30 +2,33 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// /// Represents a database transparent data encryption . /// - [JsonTransformation] - public partial class TransparentDataEncryption : SqlSubResource + [Rest.Serialization.JsonTransformation] + public partial class TransparentDataEncryption : SubResource { /// /// Initializes a new instance of the TransparentDataEncryption class. /// - public TransparentDataEncryption() { } + public TransparentDataEncryption() + { + CustomInit(); + } /// /// Initializes a new instance of the TransparentDataEncryption class. @@ -34,19 +37,24 @@ public TransparentDataEncryption() { } /// The resource ID. /// The status of the database transparent data /// encryption. Possible values include: 'Enabled', 'Disabled' - public TransparentDataEncryption(string name = default(string), string id = default(string), TransparentDataEncryptionStates? status = default(TransparentDataEncryptionStates?)) + public TransparentDataEncryption(string name = default(string), string id = default(string), TransparentDataEncryptionStatus? status = default(TransparentDataEncryptionStatus?)) : base(name, id) { Status = status; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the status of the database transparent data /// encryption. Possible values include: 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.status")] - public TransparentDataEncryptionStates? Status { get; set; } + public TransparentDataEncryptionStatus? Status { get; set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivity.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivity.cs index 110d85cf1a25..c84d1a13f4c9 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivity.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivity.cs @@ -2,31 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; - using Rest; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; using System.Linq; /// /// Represents a database transparent data encryption Scan. /// - [JsonTransformation] - public partial class TransparentDataEncryptionActivity : SqlSubResource + [Rest.Serialization.JsonTransformation] + public partial class TransparentDataEncryptionActivity : SubResource { /// /// Initializes a new instance of the TransparentDataEncryptionActivity /// class. /// - public TransparentDataEncryptionActivity() { } + public TransparentDataEncryptionActivity() + { + CustomInit(); + } /// /// Initializes a new instance of the TransparentDataEncryptionActivity @@ -43,22 +46,27 @@ public TransparentDataEncryptionActivity() { } { Status = status; PercentComplete = percentComplete; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the status of the database. Possible values include: /// 'Encrypting', 'Decrypting' /// [JsonProperty(PropertyName = "properties.status")] - public string Status { get; protected set; } + public string Status { get; private set; } /// /// Gets the percent complete of the transparent data encryption scan /// for a database. /// [JsonProperty(PropertyName = "properties.percentComplete")] - public double? PercentComplete { get; protected set; } + public double? PercentComplete { get; private set; } } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStates.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStatus.cs similarity index 68% rename from src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStates.cs rename to src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStatus.cs index ac521bd13c90..f4cfc6ff02bc 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStates.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionActivityStatus.cs @@ -2,23 +2,22 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql.Models { - using Azure; - using Management; - using Sql; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; /// - /// Defines values for TransparentDataEncryptionActivityStates. + /// Defines values for TransparentDataEncryptionActivityStatus. /// - public static class TransparentDataEncryptionActivityStates + public static class TransparentDataEncryptionActivityStatus { public const string Encrypting = "Encrypting"; public const string Decrypting = "Decrypting"; } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStatus.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStatus.cs new file mode 100644 index 000000000000..9a4bef8057ba --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/TransparentDataEncryptionStatus.cs @@ -0,0 +1,30 @@ +// 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.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Sql.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.Sql; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for TransparentDataEncryptionStatus. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum TransparentDataEncryptionStatus + { + [EnumMember(Value = "Enabled")] + Enabled, + [EnumMember(Value = "Disabled")] + Disabled + } +} diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeHint.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeHint.cs deleted file mode 100644 index db46a3df2ecd..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeHint.cs +++ /dev/null @@ -1,56 +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.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using Azure; - using Management; - using Sql; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Represents a Upgrade Hint. - /// - public partial class UpgradeHint - { - /// - /// Initializes a new instance of the UpgradeHint class. - /// - public UpgradeHint() { } - - /// - /// Initializes a new instance of the UpgradeHint class. - /// - /// TargetServiceLevelObjective for - /// upgrade hint. - /// TargetServiceLevelObjectiveId - /// for upgrade hint. - public UpgradeHint(string targetServiceLevelObjective = default(string), System.Guid? targetServiceLevelObjectiveId = default(System.Guid?)) - { - TargetServiceLevelObjective = targetServiceLevelObjective; - TargetServiceLevelObjectiveId = targetServiceLevelObjectiveId; - } - - /// - /// Gets or sets targetServiceLevelObjective for upgrade hint. - /// - [JsonProperty(PropertyName = "targetServiceLevelObjective")] - public string TargetServiceLevelObjective { get; set; } - - /// - /// Gets or sets targetServiceLevelObjectiveId for upgrade hint. - /// - [JsonProperty(PropertyName = "targetServiceLevelObjectiveId")] - public System.Guid? TargetServiceLevelObjectiveId { get; set; } - - } -} - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeRecommendedElasticPoolProperties.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeRecommendedElasticPoolProperties.cs deleted file mode 100644 index f417c610e550..000000000000 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/Models/UpgradeRecommendedElasticPoolProperties.cs +++ /dev/null @@ -1,137 +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.0.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Sql.Models -{ - using Azure; - using Management; - using Sql; - using Rest; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Represents the properties of a recommended elastic pool being upgraded. - /// - public partial class UpgradeRecommendedElasticPoolProperties - { - /// - /// Initializes a new instance of the - /// UpgradeRecommendedElasticPoolProperties class. - /// - public UpgradeRecommendedElasticPoolProperties() { } - - /// - /// Initializes a new instance of the - /// UpgradeRecommendedElasticPoolProperties class. - /// - /// The name of the recommended elastic pool being - /// upgraded. - /// The target edition for the recommended - /// elastic pool being upgraded. Possible values include: 'Basic', - /// 'Standard', 'Premium' - /// The DTU guarantee for the recommended elastic - /// pool being upgraded. - /// The storage limit in MB for the recommended - /// elastic pool being upgraded. - /// The DTU guarantee for database for the - /// recommended elastic pool being upgraded. - /// The DTU cap for database for the - /// recommended elastic pool being upgraded. - /// The list of database names to be - /// put in the recommended elastic pool being upgraded. - /// Gets or sets whether all - /// databases to be put in the recommended elastic pool being - /// upgraded. - public UpgradeRecommendedElasticPoolProperties(string name, TargetElasticPoolEditions edition, int? dtu = default(int?), int? storageMb = default(int?), int? databaseDtuMin = default(int?), int? databaseDtuMax = default(int?), IList databaseCollection = default(IList), bool? includeAllDatabases = default(bool?)) - { - Name = name; - Edition = edition; - Dtu = dtu; - StorageMb = storageMb; - DatabaseDtuMin = databaseDtuMin; - DatabaseDtuMax = databaseDtuMax; - DatabaseCollection = databaseCollection; - IncludeAllDatabases = includeAllDatabases; - } - - /// - /// Gets or sets the name of the recommended elastic pool being - /// upgraded. - /// - [JsonProperty(PropertyName = "Name")] - public string Name { get; set; } - - /// - /// Gets or sets the target edition for the recommended elastic pool - /// being upgraded. Possible values include: 'Basic', 'Standard', - /// 'Premium' - /// - [JsonProperty(PropertyName = "Edition")] - public TargetElasticPoolEditions Edition { get; set; } - - /// - /// Gets or sets the DTU guarantee for the recommended elastic pool - /// being upgraded. - /// - [JsonProperty(PropertyName = "Dtu")] - public int? Dtu { get; set; } - - /// - /// Gets or sets the storage limit in MB for the recommended elastic - /// pool being upgraded. - /// - [JsonProperty(PropertyName = "StorageMb")] - public int? StorageMb { get; set; } - - /// - /// Gets or sets the DTU guarantee for database for the recommended - /// elastic pool being upgraded. - /// - [JsonProperty(PropertyName = "DatabaseDtuMin")] - public int? DatabaseDtuMin { get; set; } - - /// - /// Gets or sets the DTU cap for database for the recommended elastic - /// pool being upgraded. - /// - [JsonProperty(PropertyName = "DatabaseDtuMax")] - public int? DatabaseDtuMax { get; set; } - - /// - /// Gets or sets the list of database names to be put in the - /// recommended elastic pool being upgraded. - /// - [JsonProperty(PropertyName = "DatabaseCollection")] - public IList DatabaseCollection { get; set; } - - /// - /// Gets or sets whether all databases to be put in the recommended - /// elastic pool being upgraded. - /// - [JsonProperty(PropertyName = "IncludeAllDatabases")] - public bool? IncludeAllDatabases { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Name == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Name"); - } - } - } -} - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs index 193e5e01070e..2c6654fc0635 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; using System.Collections; @@ -134,9 +134,9 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -151,6 +151,8 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -198,7 +200,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -235,7 +237,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -345,9 +347,9 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -362,6 +364,8 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -409,7 +413,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -446,7 +450,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -494,7 +498,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByServerWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -520,7 +524,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByServer", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -538,9 +542,9 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -555,6 +559,8 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -602,7 +608,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -639,7 +645,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -740,9 +746,9 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -757,6 +763,8 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -804,7 +812,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -841,7 +849,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -942,9 +950,9 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -959,6 +967,8 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1006,7 +1016,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1043,7 +1053,7 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1062,4 +1072,3 @@ internal RecommendedElasticPoolsOperations(SqlManagementClient client) } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs index 2808c1b03aeb..468a88d80e58 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/RecommendedElasticPoolsOperationsExtensions.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -138,9 +138,9 @@ public static Database GetDatabases(this IRecommendedElasticPoolsOperations oper /// /// The name of the server. /// - public static IEnumerable List(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName) + public static IEnumerable ListByServer(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName) { - return operations.ListAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); + return operations.ListByServerAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); } /// @@ -159,9 +159,9 @@ public static IEnumerable List(this IRecommendedElasticP /// /// The cancellation token. /// - public static async Task> ListAsync(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByServerAsync(this IRecommendedElasticPoolsOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByServerWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -265,4 +265,3 @@ public static IEnumerable ListMetrics(this IRecomm } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperations.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperations.cs index 64b56154b5fa..28c0b93d916e 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperations.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperations.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; using System.Collections; @@ -50,838 +50,6 @@ internal ServersOperations(SqlManagementClient client) /// public SqlManagementClient Client { get; private set; } - /// - /// Creates or updates a firewall rule. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// The required parameters for creating or updating a firewall 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> CreateOrUpdateFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serverName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); - } - if (firewallRuleName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } - string apiVersion = "2014-04-01"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serverName", serverName); - tracingParameters.Add("firewallRuleName", firewallRuleName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateFirewallRule", 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.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); - 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 System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.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(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.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 != 200 && (int)_statusCode != 201) - { - 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 (Newtonsoft.Json.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 (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (Newtonsoft.Json.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 a firewall rule. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall 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 DeleteFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serverName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); - } - if (firewallRuleName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); - } - string apiVersion = "2014-04-01"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serverName", serverName); - tracingParameters.Add("firewallRuleName", firewallRuleName); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteFirewallRule", 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.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); - 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 System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.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 != 200 && (int)_statusCode != 204) - { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - } - else { - _responseContent = string.Empty; - } - 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; - } - - /// - /// Gets a firewall rule. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall 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> GetFirewallRuleWithHttpMessagesAsync(string resourceGroupName, string serverName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serverName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); - } - if (firewallRuleName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "firewallRuleName"); - } - string apiVersion = "2014-04-01"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serverName", serverName); - tracingParameters.Add("firewallRuleName", firewallRuleName); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetFirewallRule", 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.Sql/servers/{serverName}/firewallRules/{firewallRuleName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - _url = _url.Replace("{firewallRuleName}", System.Uri.EscapeDataString(firewallRuleName)); - 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 System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.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 (Newtonsoft.Json.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 (Newtonsoft.Json.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; - } - - /// - /// Returns a list of firewall rules. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// 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>> ListFirewallRulesWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serverName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); - } - string apiVersion = "2014-04-01"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serverName", serverName); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListFirewallRules", 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.Sql/servers/{serverName}/firewallRules").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - 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 System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.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 (Newtonsoft.Json.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 (Newtonsoft.Json.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; - } - - /// - /// Imports a bacpac into a new database. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> ImportDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginImportDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - /// /// Returns a list of servers. /// @@ -938,9 +106,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -955,6 +123,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1002,7 +172,7 @@ internal ServersOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1039,7 +209,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1143,9 +313,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -1160,6 +330,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1177,7 +349,7 @@ internal ServersOperations(SqlManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -1213,7 +385,7 @@ internal ServersOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1250,7 +422,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1268,7 +440,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1357,9 +529,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + 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) @@ -1374,6 +546,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1411,11 +585,19 @@ internal ServersOperations(SqlManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1480,7 +662,7 @@ internal ServersOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string serverName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -1506,7 +688,7 @@ internal ServersOperations(SqlManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -1524,9 +706,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1541,6 +723,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1588,7 +772,7 @@ internal ServersOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1625,7 +809,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1708,9 +892,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1725,6 +909,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1772,7 +958,7 @@ internal ServersOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1809,7 +995,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1901,9 +1087,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1918,6 +1104,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1965,7 +1153,7 @@ internal ServersOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2002,7 +1190,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2103,9 +1291,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -2120,6 +1308,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2167,7 +1357,7 @@ internal ServersOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2204,7 +1394,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2296,9 +1486,9 @@ internal ServersOperations(SqlManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -2313,6 +1503,8 @@ internal ServersOperations(SqlManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2360,7 +1552,7 @@ internal ServersOperations(SqlManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2397,218 +1589,7 @@ internal ServersOperations(SqlManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.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; - } - - /// - /// Imports a bacpac into a new database. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - /// - /// 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> BeginImportDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, ImportRequestParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (serverName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "serverName"); - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } - string apiVersion = "2014-04-01"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("serverName", serverName); - tracingParameters.Add("parameters", parameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginImportDatabase", 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.Sql/servers/{serverName}/import").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); - 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 System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.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; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.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 != 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 (Newtonsoft.Json.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 (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2627,4 +1608,3 @@ internal ServersOperations(SqlManagementClient client) } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs index 542c38da904e..9160fccc5f8e 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/ServersOperationsExtensions.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -23,243 +23,6 @@ namespace Microsoft.Azure.Management.Sql /// public static partial class ServersOperationsExtensions { - /// - /// Creates or updates a firewall rule. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// The required parameters for creating or updating a firewall rule. - /// - public static ServerFirewallRule CreateOrUpdateFirewallRule(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters) - { - return operations.CreateOrUpdateFirewallRuleAsync(resourceGroupName, serverName, firewallRuleName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Creates or updates a firewall rule. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// The required parameters for creating or updating a firewall rule. - /// - /// - /// The cancellation token. - /// - public static async Task CreateOrUpdateFirewallRuleAsync(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, ServerFirewallRule parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CreateOrUpdateFirewallRuleWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Deletes a firewall rule. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - public static void DeleteFirewallRule(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName) - { - operations.DeleteFirewallRuleAsync(resourceGroupName, serverName, firewallRuleName).GetAwaiter().GetResult(); - } - - /// - /// Deletes a firewall rule. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// The cancellation token. - /// - public static async Task DeleteFirewallRuleAsync(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, CancellationToken cancellationToken = default(CancellationToken)) - { - await operations.DeleteFirewallRuleWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, null, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets a firewall rule. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - public static ServerFirewallRule GetFirewallRule(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName) - { - return operations.GetFirewallRuleAsync(resourceGroupName, serverName, firewallRuleName).GetAwaiter().GetResult(); - } - - /// - /// Gets a firewall rule. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The name of the firewall rule. - /// - /// - /// The cancellation token. - /// - public static async Task GetFirewallRuleAsync(this IServersOperations operations, string resourceGroupName, string serverName, string firewallRuleName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetFirewallRuleWithHttpMessagesAsync(resourceGroupName, serverName, firewallRuleName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of firewall rules. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - public static IEnumerable ListFirewallRules(this IServersOperations operations, string resourceGroupName, string serverName) - { - return operations.ListFirewallRulesAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of firewall rules. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The cancellation token. - /// - public static async Task> ListFirewallRulesAsync(this IServersOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListFirewallRulesWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Imports a bacpac into a new database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - public static ImportExportOperationResponse ImportDatabase(this IServersOperations operations, string resourceGroupName, string serverName, ImportRequestParameters parameters) - { - return operations.ImportDatabaseAsync(resourceGroupName, serverName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Imports a bacpac into a new database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - /// - /// The cancellation token. - /// - public static async Task ImportDatabaseAsync(this IServersOperations operations, string resourceGroupName, string serverName, ImportRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ImportDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - /// /// Returns a list of servers. /// @@ -372,7 +135,7 @@ public static void Delete(this IServersOperations operations, string resourceGro /// public static async Task DeleteAsync(this IServersOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -388,9 +151,9 @@ public static void Delete(this IServersOperations operations, string resourceGro /// /// The name of the server. /// - public static Server GetByResourceGroup(this IServersOperations operations, string resourceGroupName, string serverName) + public static Server Get(this IServersOperations operations, string resourceGroupName, string serverName) { - return operations.GetByResourceGroupAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, serverName).GetAwaiter().GetResult(); } /// @@ -409,9 +172,9 @@ public static Server GetByResourceGroup(this IServersOperations operations, stri /// /// The cancellation token. /// - public static async Task GetByResourceGroupAsync(this IServersOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IServersOperations operations, string resourceGroupName, string serverName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetByResourceGroupWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, serverName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -585,54 +348,5 @@ public static IEnumerable ListServiceObjectives(this IServersO } } - /// - /// Imports a bacpac into a new database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - public static ImportExportOperationResponse BeginImportDatabase(this IServersOperations operations, string resourceGroupName, string serverName, ImportRequestParameters parameters) - { - return operations.BeginImportDatabaseAsync(resourceGroupName, serverName, parameters).GetAwaiter().GetResult(); - } - - /// - /// Imports a bacpac into a new database. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the resource group that contains the resource. You can obtain - /// this value from the Azure Resource Manager API or the portal. - /// - /// - /// The name of the server. - /// - /// - /// The required parameters for importing a Bacpac into a database. - /// - /// - /// The cancellation token. - /// - public static async Task BeginImportDatabaseAsync(this IServersOperations operations, string resourceGroupName, string serverName, ImportRequestParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.BeginImportDatabaseWithHttpMessagesAsync(resourceGroupName, serverName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs index f258532d2230..b34b6f6cec3f 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClient.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; using Models; using Newtonsoft.Json; using System.Collections; @@ -39,12 +39,12 @@ public partial class SqlManagementClient : ServiceClient, I /// /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. @@ -74,9 +74,14 @@ public partial class SqlManagementClient : ServiceClient, I public bool? GenerateClientRequestId { get; set; } /// - /// Gets the IServersOperations. + /// Gets the ICapabilitiesOperations. /// - public virtual IServersOperations Servers { get; private set; } + public virtual ICapabilitiesOperations Capabilities { get; private set; } + + /// + /// Gets the IFirewallRulesOperations. + /// + public virtual IFirewallRulesOperations FirewallRules { get; private set; } /// /// Gets the IDatabasesOperations. @@ -84,9 +89,9 @@ public partial class SqlManagementClient : ServiceClient, I public virtual IDatabasesOperations Databases { get; private set; } /// - /// Gets the IImportExportOperations. + /// Gets the IServersOperations. /// - public virtual IImportExportOperations ImportExportOperations { get; private set; } + public virtual IServersOperations Servers { get; private set; } /// /// Gets the IElasticPoolsOperations. @@ -104,7 +109,7 @@ public partial class SqlManagementClient : ServiceClient, I /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected SqlManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected SqlManagementClient(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } @@ -118,7 +123,7 @@ protected SqlManagementClient(params System.Net.Http.DelegatingHandler[] handler /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected SqlManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected SqlManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } @@ -135,7 +140,7 @@ protected SqlManagementClient(System.Net.Http.HttpClientHandler rootHandler, par /// /// Thrown when a required parameter is null /// - protected SqlManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + protected SqlManagementClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -159,7 +164,7 @@ protected SqlManagementClient(System.Uri baseUri, params System.Net.Http.Delegat /// /// Thrown when a required parameter is null /// - protected SqlManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + protected SqlManagementClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -180,7 +185,7 @@ protected SqlManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHand /// /// Thrown when a required parameter is null /// - public SqlManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public SqlManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -208,7 +213,7 @@ public SqlManagementClient(ServiceClientCredentials credentials, params System.N /// /// Thrown when a required parameter is null /// - public SqlManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public SqlManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { @@ -236,7 +241,7 @@ public SqlManagementClient(ServiceClientCredentials credentials, System.Net.Http /// /// Thrown when a required parameter is null /// - public SqlManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public SqlManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -272,7 +277,7 @@ public SqlManagementClient(System.Uri baseUri, ServiceClientCredentials credenti /// /// Thrown when a required parameter is null /// - public SqlManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public SqlManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -299,16 +304,17 @@ public SqlManagementClient(System.Uri baseUri, ServiceClientCredentials credenti /// private void Initialize() { - Servers = new ServersOperations(this); + Capabilities = new CapabilitiesOperations(this); + FirewallRules = new FirewallRulesOperations(this); Databases = new DatabasesOperations(this); - ImportExportOperations = new ImportExportOperations(this); + Servers = new ServersOperations(this); ElasticPools = new ElasticPoolsOperations(this); RecommendedElasticPools = new RecommendedElasticPoolsOperations(this); BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, @@ -316,20 +322,20 @@ private void Initialize() NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } }; SerializationSettings.Converters.Add(new TransformationJsonConverter()); - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } @@ -383,9 +389,9 @@ private void Initialize() _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -400,6 +406,8 @@ private void Initialize() } _httpRequest.Headers.TryAddWithoutValidation("accept-language", AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -447,7 +455,7 @@ private void Initialize() ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -484,7 +492,7 @@ private void Initialize() { _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -503,4 +511,3 @@ private void Initialize() } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClientExtensions.cs b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClientExtensions.cs index 21f13bae02ae..aed8a280d8d9 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClientExtensions.cs +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/Generated/SqlManagementClientExtensions.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.Sql { - using Azure; - using Management; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Threading; using System.Threading.Tasks; @@ -51,4 +51,3 @@ public static OperationListResult ListOperations(this ISqlManagementClient opera } } - diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd index ea5429eb4475..2d28ed7158cd 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/generate.cmd @@ -4,9 +4,8 @@ :: @echo off -set autoRestVersion=1.0.0-Nightly20161212 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/b379c30fcb506b1bd643f6085b4bf318b8164b16/arm-sql/compositeSql.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/ea48f5627d9cd1964b19ce2571ebdc8f22262d93/arm-sql/compositeSql.json" ) else ( set specFile="%1" ) @@ -14,4 +13,6 @@ set repoRoot=%~dp0..\..\..\.. set generateFolder=%~dp0Generated if exist %generateFolder% rd /S /Q %generateFolder% -call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Management.Sql %autoRestVersion% %generateFolder% "-FT 1" + +autorest --latest -Modeler CompositeSwagger -CodeGenerator Azure.CSharp -Namespace Microsoft.Azure.Management.Sql -Input %specFile% -outputDirectory %generateFolder% -Header MICROSOFT_MIT %~5 + diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs new file mode 100644 index 000000000000..f87fed18b244 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs @@ -0,0 +1,183 @@ +using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using Microsoft.Azure.Test.HttpRecorder; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Xunit; + +namespace Sql.Tests +{ + /// + /// Contains tests for the lifecycle of a server blob auditing policy + /// + public class BlobAuditingTest + { + [Fact] + public void TestBlobAuditingApis() + { + string testPrefix = "server-blob-auditing-test-"; + string testName = this.GetType().FullName; + + SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestBlobAuditing", testPrefix, + (resClient, sqlClient, resourceGroup, server) => + { + // create some databases in server + Database[] databases = SqlManagementTestUtilities.CreateDatabasesAsync( + sqlClient, resourceGroup.Name, server, testPrefix, 2).Result; + + IList auditActionsAndGroups = new List { "SCHEMA_OBJECT_ACCESS_GROUP", "UPDATE on database::testdb by public" }; + +#if false // Commented out due to issues with async operation response + + // ******* Server blob auditing ******* + ServerBlobAuditingPolicy defaultServerPolicyResponse = sqlClient.Servers.GetBlobAuditingProperties(resourceGroup.Name, server.Name); + + // Verify that the initial Get request contains the default policy. + VerifyServerAuditingPolicyInformation(GetDefaultServerBlobAuditingProperties(), defaultServerPolicyResponse); + + // Modify the policy properties, send and receive and see it its still ok + IList auditActionsAndGroups = new List { "SCHEMA_OBJECT_ACCESS_GROUP", "UPDATE on database::testdb by public" }; + ServerBlobAuditingPolicy updatedServerPolicy = new ServerBlobAuditingPolicy + { + State = BlobAuditingPolicyState.Disabled, + RetentionDays = 8, + StorageAccountAccessKey = "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + StorageEndpoint = "https://MyAccount.blob.core.windows.net/", + AuditActionsAndGroups = auditActionsAndGroups, + StorageAccountSubscriptionId = "00000000-1234-0000-5678-000000000000", + IsStorageSecondaryKeyInUse = false + }; + + //Set blob auditing policy for server + sqlClient.Servers.CreateOrUpdateBlobAuditingProperties(resourceGroup.Name, server.Name, updatedServerPolicy); + + //Get blob auditing server policy + var getUpdatedServerPolicyResponse = sqlClient.Servers.GetBlobAuditingProperties(resourceGroup.Name, server.Name); + + // Verify that the Get request contains the updated policy. + VerifyServerAuditingPolicyInformation(updatedServerPolicy, getUpdatedServerPolicyResponse); +#endif + + // ******* Database blob auditing ******* + + string dbName = databases[0].Name; + DatabaseBlobAuditingPolicy defaultDatabasePolicyResponse = sqlClient.Databases.GetBlobAuditingPolicy(resourceGroup.Name, server.Name, dbName); + + // Verify that the initial Get request contains the default policy. + VerifyDatabaseAuditingPolicyInformation(GetDefaultDatabaseBlobAuditingProperties(), defaultDatabasePolicyResponse); + + // Modify the policy properties, send and receive and see it its still ok + DatabaseBlobAuditingPolicy updatedDatabasePolicy = new DatabaseBlobAuditingPolicy + { + State = BlobAuditingPolicyState.Disabled, + RetentionDays = 5, + StorageAccountAccessKey = "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + StorageEndpoint = "https://MyAccount.blob.core.windows.net/", + AuditActionsAndGroups = auditActionsAndGroups, + StorageAccountSubscriptionId = "00000000-1234-0000-5678-000000000000", + IsStorageSecondaryKeyInUse = false + }; + sqlClient.Databases.CreateOrUpdateBlobAuditingPolicy(resourceGroup.Name, server.Name, dbName, updatedDatabasePolicy); + + var getUpdatedDatabasePolicyResponse = sqlClient.Databases.GetBlobAuditingPolicy(resourceGroup.Name, server.Name, dbName); + // Verify that the Get request contains the updated policy. + VerifyDatabaseAuditingPolicyInformation(updatedDatabasePolicy, getUpdatedDatabasePolicyResponse); + }); + } + +#if false // Commented out due to issues with async operation response + + /// + /// Verify that the received properties match their expected values + /// + /// The expected value of the properties object + /// The properties object that needs to be checked + private void VerifyServerAuditingPolicyInformation(ServerBlobAuditingPolicy expected, ServerBlobAuditingPolicy actual) + { + Assert.Equal(expected.State, actual.State); + Assert.Equal(expected.RetentionDays, actual.RetentionDays); + Assert.Equal(expected.StorageEndpoint, actual.StorageEndpoint); + Assert.Equal(string.Empty, actual.StorageAccountAccessKey); + if (expected.AuditActionsAndGroups == null) + { + Assert.Equal(null, actual.AuditActionsAndGroups); + } + else + { + Assert.Equal(expected.AuditActionsAndGroups.Count, actual.AuditActionsAndGroups.Count); + actual.AuditActionsAndGroups.ForEach(s => Assert.True(expected.AuditActionsAndGroups.Any(es => es.Equals(s)))); + } + Assert.Equal(expected.StorageAccountSubscriptionId, actual.StorageAccountSubscriptionId); + Assert.Equal(expected.IsStorageSecondaryKeyInUse, actual.IsStorageSecondaryKeyInUse); + } + + /// + /// Returns a ServerBlobAuditingPolicy object that holds the default settings for a server blob auditing policy + /// + /// A ServerBlobAuditingPolicy object with the default server audit policy settings + private ServerBlobAuditingPolicy GetDefaultServerBlobAuditingProperties() + { + ServerBlobAuditingPolicy properties = new ServerBlobAuditingPolicy + { + State = BlobAuditingPolicyState.Disabled, + RetentionDays = 0, + StorageAccountAccessKey = string.Empty, + StorageEndpoint = string.Empty, + AuditActionsAndGroups = new List(), + StorageAccountSubscriptionId = "00000000-0000-0000-0000-000000000000", + IsStorageSecondaryKeyInUse = false, + }; + + return properties; + } + +#endif + + /// + /// Verify that the received properties match their expected values + /// + /// The expected value of the properties object + /// The properties object that needs to be checked + private void VerifyDatabaseAuditingPolicyInformation(DatabaseBlobAuditingPolicy expected, DatabaseBlobAuditingPolicy actual) + { + Assert.Equal(expected.State, actual.State); + Assert.Equal(expected.RetentionDays, actual.RetentionDays); + Assert.Equal(expected.StorageEndpoint, actual.StorageEndpoint); + Assert.Equal(string.Empty, actual.StorageAccountAccessKey); + if (expected.AuditActionsAndGroups == null) + { + Assert.Equal(null, actual.AuditActionsAndGroups); + } + else + { + Assert.Equal(expected.AuditActionsAndGroups.Count, actual.AuditActionsAndGroups.Count); + actual.AuditActionsAndGroups.ForEach(s => Assert.True(expected.AuditActionsAndGroups.Any(es => es.Equals(s)))); + } + Assert.Equal(expected.StorageAccountSubscriptionId, actual.StorageAccountSubscriptionId); + Assert.Equal(expected.IsStorageSecondaryKeyInUse, actual.IsStorageSecondaryKeyInUse); + } + + /// + /// Returns a BlobAuditingProperties object that holds the default settings for a database blob auditing policy + /// + /// A BlobAuditingProperties object with the default database audit policy settings + private DatabaseBlobAuditingPolicy GetDefaultDatabaseBlobAuditingProperties() + { + DatabaseBlobAuditingPolicy properties = new DatabaseBlobAuditingPolicy + { + State = BlobAuditingPolicyState.Disabled, + RetentionDays = 0, + StorageAccountAccessKey = string.Empty, + StorageEndpoint = string.Empty, + AuditActionsAndGroups = new List(), + StorageAccountSubscriptionId = "00000000-0000-0000-0000-000000000000", + IsStorageSecondaryKeyInUse = false, + }; + + return properties; + } + } +} diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/CapabilitiesScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/CapabilitiesScenarioTests.cs new file mode 100644 index 000000000000..48a45a2014ab --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/CapabilitiesScenarioTests.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System.Collections.Generic; +using System.Net; +using Xunit; + +namespace Sql.Tests +{ + public class CapabilitiesScenarioTests + { + [Fact] + public void TestGetCapabilities() + { + string login = "dummylogin"; + string password = "Un53cuRE!"; + string version12 = "12.0"; + string databaseName = "testdb"; + string testPrefix = "sqlcrudtest-"; + Dictionary tags = new Dictionary(); + string suiteName = this.GetType().FullName; + + using (MockContext context = MockContext.Start(suiteName, "TestGetCapabilities")) + { + var handler = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; + var resourceClient = SqlManagementTestUtilities.GetResourceManagementClient(context, handler); + var sqlClient = SqlManagementTestUtilities.GetSqlManagementClient(context, handler); + + LocationCapabilities capabilities = sqlClient.Capabilities.ListByLocation(SqlManagementTestUtilities.DefaultLocation); + + Assert.NotNull(capabilities); + + foreach(ServerVersionCapability s in capabilities.SupportedServerVersions) + { + Assert.NotNull(s.Name); + foreach(EditionCapability e in s.SupportedEditions) + { + Assert.NotNull(e.Name); + foreach (ServiceObjectiveCapability o in e.SupportedServiceLevelObjectives) + { + Assert.NotNull(o.Name); + Assert.NotNull(o.Unit); + foreach(MaxSizeCapability m in o.SupportedMaxSizes) + { + Assert.NotNull(m.Limit); + Assert.NotNull(m.Unit); + } + } + } + } + } + } + } +} diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs index ff570d344ca7..e6c3e11a4262 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs @@ -135,7 +135,7 @@ public void TestUpdateDatabase() // var updateEditionAndSloInput = new Database() { - Edition = DatabaseEditions.Standard, + Edition = DatabaseEdition.Standard, RequestedServiceObjectiveName = ServiceObjectiveName.S0, Location = server.Location }; @@ -157,7 +157,7 @@ public void TestUpdateDatabase() // var updateEditionInput = new Database() { - Edition = DatabaseEditions.Premium, + Edition = DatabaseEdition.Premium, Location = server.Location }; var db4 = sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, updateEditionInput); @@ -193,24 +193,12 @@ public void TestGetAndListDatabase() string suiteName = this.GetType().FullName; SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestGetAndListDatabase", testPrefix, (resClient, sqlClient, resourceGroup, server) => { - // Begin creating some small databases to run the get/List tests on. - // - List> createDbTasks = new List>(); - for (int i = 0; i < 4; i++) - { - string name = SqlManagementTestUtilities.GenerateName(testPrefix); - createDbTasks.Add(sqlClient.Databases.CreateOrUpdateAsync(resourceGroup.Name, server.Name, name, - new Database() - { - Location = server.Location - })); - } + // Create some small databases to run the get/List tests on. + Database[] databases = SqlManagementTestUtilities.CreateDatabasesAsync( + sqlClient, resourceGroup.Name, server, testPrefix, 4).Result; - // Wait for all databases to be created. - IDictionary inputs = - Task.WhenAll(createDbTasks.ToArray()) - .Result - .ToDictionary( + // Organize into a dictionary for better lookup later + IDictionary inputs = databases.ToDictionary( keySelector: d => d.Name, elementSelector: d => d); @@ -292,5 +280,32 @@ public void TestRemoveDatabaseFromPool() Assert.Equal(null, dbResult.ElasticPoolName); }); } + + [Fact] + public void TestDatabaseTransparentDataEncryptionConfiguration() + { + string testPrefix = "sqlcrudtest-"; + string suiteName = this.GetType().FullName; + SqlManagementTestUtilities.RunTestInNewV12Server(suiteName, "TestDatabaseTransparentDataEncryptionConfiguration", testPrefix, (resClient, sqlClient, resourceGroup, server) => + { + // Create database only required parameters + // + string dbName = SqlManagementTestUtilities.GenerateName(testPrefix); + var db1 = sqlClient.Databases.CreateOrUpdate(resourceGroup.Name, server.Name, dbName, new Database() + { + Location = server.Location, + }); + Assert.NotNull(db1); + + // Get TDE config + var config = sqlClient.Databases.GetTransparentDataEncryptionConfiguration(resourceGroup.Name, server.Name, dbName); + Assert.Equal(TransparentDataEncryptionStatus.Disabled, config.Status); + + // Update TDE config + config.Status = TransparentDataEncryptionStatus.Enabled; + config = sqlClient.Databases.CreateOrUpdateTransparentDataEncryptionConfiguration(resourceGroup.Name, server.Name, dbName, config); + Assert.Equal(TransparentDataEncryptionStatus.Enabled, config.Status); + }); + } } } diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolCrudScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolCrudScenarioTests.cs index 5c05498cd522..9e213259afed 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolCrudScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ElasticPoolCrudScenarioTests.cs @@ -53,7 +53,7 @@ public void TestCreateDropElasticPool() var ep3Input = new ElasticPool() { Location = server.Location, - Edition = DatabaseEditions.Standard, + Edition = DatabaseEdition.Standard, Tags = tags, }; sqlClient.ElasticPools.CreateOrUpdate(resourceGroup.Name, server.Name, epName, ep3Input); @@ -83,7 +83,7 @@ public void TestUpdateElasticPoolAndListActivity() var epInput = new ElasticPool() { Location = server.Location, - Edition = DatabaseEditions.Standard, + Edition = DatabaseEdition.Standard, Tags = tags, Dtu = 100, DatabaseDtuMax = 20, diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/FirewallRuleCrudScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/FirewallRuleCrudScenarioTests.cs index 83e6c13eaf12..d32c2201373b 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/FirewallRuleCrudScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/FirewallRuleCrudScenarioTests.cs @@ -22,27 +22,27 @@ public void TestGetAndListFirewallRule() { // Create Firewall Rules // - Dictionary rules = new Dictionary(); + Dictionary rules = new Dictionary(); for(int i = 0; i < 4; i++) { string firewallRuleName = SqlManagementTestUtilities.GenerateName(testPrefix); - ServerFirewallRule rule = new ServerFirewallRule() + FirewallRule rule = new FirewallRule() { StartIpAddress = string.Format("0.0.0.{0}",i), EndIpAddress = string.Format("0.0.0.{0}", i) }; - sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, firewallRuleName, rule); + sqlClient.FirewallRules.CreateOrUpdate(resourceGroup.Name, server.Name, firewallRuleName, rule); rules.Add(firewallRuleName, rule); } foreach (var rule in rules) { - ServerFirewallRule response = sqlClient.Servers.GetFirewallRule(resourceGroup.Name, server.Name, rule.Key); + FirewallRule response = sqlClient.FirewallRules.Get(resourceGroup.Name, server.Name, rule.Key); SqlManagementTestUtilities.ValidateFirewallRule(rule.Value, response, rule.Key); } - var listResponse = sqlClient.Servers.ListFirewallRules(resourceGroup.Name, server.Name); + var listResponse = sqlClient.FirewallRules.ListByServer(resourceGroup.Name, server.Name); Assert.Equal(rules.Count(), listResponse.Count()); foreach (var rule in listResponse) @@ -68,39 +68,39 @@ public void TestCreateAndDropFirewallRule() // string firewallRuleName = SqlManagementTestUtilities.GenerateName(testPrefix); - ServerFirewallRule toCreate = new ServerFirewallRule() + FirewallRule toCreate = new FirewallRule() { StartIpAddress = "0.0.0.0", EndIpAddress = "0.0.0.0" }; - var fr1 = sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, firewallRuleName, toCreate); + var fr1 = sqlClient.FirewallRules.CreateOrUpdate(resourceGroup.Name, server.Name, firewallRuleName, toCreate); SqlManagementTestUtilities.ValidateFirewallRule(toCreate, fr1, firewallRuleName); // Create and validate Firewall Rule // firewallRuleName = SqlManagementTestUtilities.GenerateName(testPrefix); - toCreate = new ServerFirewallRule() + toCreate = new FirewallRule() { StartIpAddress = "1.1.1.1", EndIpAddress = "1.1.2.2" }; - var fr2 = sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, firewallRuleName, toCreate); + var fr2 = sqlClient.FirewallRules.CreateOrUpdate(resourceGroup.Name, server.Name, firewallRuleName, toCreate); SqlManagementTestUtilities.ValidateFirewallRule(toCreate, fr2, firewallRuleName); // Create and validate Firewall Rule // firewallRuleName = SqlManagementTestUtilities.GenerateName(testPrefix); - toCreate = new ServerFirewallRule() + toCreate = new FirewallRule() { StartIpAddress = "0.0.0.0", EndIpAddress = "255.255.255.255" }; - var fr3 = sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, firewallRuleName, toCreate); + var fr3 = sqlClient.FirewallRules.CreateOrUpdate(resourceGroup.Name, server.Name, firewallRuleName, toCreate); SqlManagementTestUtilities.ValidateFirewallRule(toCreate, fr3, firewallRuleName); - sqlClient.Servers.DeleteFirewallRule(resourceGroup.Name, server.Name, fr1.Name); - sqlClient.Servers.DeleteFirewallRule(resourceGroup.Name, server.Name, fr2.Name); - sqlClient.Servers.DeleteFirewallRule(resourceGroup.Name, server.Name, fr3.Name); + sqlClient.FirewallRules.Delete(resourceGroup.Name, server.Name, fr1.Name); + sqlClient.FirewallRules.Delete(resourceGroup.Name, server.Name, fr2.Name); + sqlClient.FirewallRules.Delete(resourceGroup.Name, server.Name, fr3.Name); }); } @@ -115,21 +115,21 @@ public void TestCreateAndUpdateFirewallRule() // string firewallRuleName = SqlManagementTestUtilities.GenerateName(testPrefix); - ServerFirewallRule toCreate = new ServerFirewallRule() + FirewallRule toCreate = new FirewallRule() { StartIpAddress = "0.0.0.0", EndIpAddress = "0.0.0.0" }; - var fr1 = sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, firewallRuleName, toCreate); + var fr1 = sqlClient.FirewallRules.CreateOrUpdate(resourceGroup.Name, server.Name, firewallRuleName, toCreate); SqlManagementTestUtilities.ValidateFirewallRule(toCreate, fr1, firewallRuleName); // Update Firewall Rule and Validate - toCreate = new ServerFirewallRule() + toCreate = new FirewallRule() { StartIpAddress = "1.1.1.1", EndIpAddress = "255.255.255.255" }; - fr1 = sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, firewallRuleName, toCreate); + fr1 = sqlClient.FirewallRules.CreateOrUpdate(resourceGroup.Name, server.Name, firewallRuleName, toCreate); SqlManagementTestUtilities.ValidateFirewallRule(toCreate, fr1, firewallRuleName); }); } diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs index 31b125a44e8a..ee8fa1b0164f 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ImportExportScenarioTests.cs @@ -47,7 +47,7 @@ public void TestImportExport(bool preexistingDatabase, string testPrefix, string }; // set server firewall rule - sqlClient.Servers.CreateOrUpdateFirewallRule(resourceGroup.Name, server.Name, SqlManagementTestUtilities.GenerateName(testPrefix), new ServerFirewallRule() + sqlClient.FirewallRules.CreateOrUpdate(resourceGroup.Name, server.Name, SqlManagementTestUtilities.GenerateName(testPrefix), new FirewallRule() { StartIpAddress = "0.0.0.0", EndIpAddress = "255.255.255.255" @@ -87,7 +87,7 @@ public void TestImportExport(bool preexistingDatabase, string testPrefix, string } // Export database to bacpac - sqlClient.Databases.Export(resourceGroup.Name, server.Name, dbName, new ExportRequestParameters() + sqlClient.Databases.Export(resourceGroup.Name, server.Name, dbName, new ExportRequest() { AdministratorLogin = login, AdministratorLoginPassword = password, @@ -101,7 +101,7 @@ public void TestImportExport(bool preexistingDatabase, string testPrefix, string if (preexistingDatabase) { // Import bacpac to existing database - sqlClient.Databases.Import(resourceGroup.Name, server.Name, dbName2, new ImportExtensionRequestParameters() + sqlClient.Databases.CreateImportOperation(resourceGroup.Name, server.Name, dbName2, new ImportExtensionRequest() { AdministratorLogin = login, AdministratorLoginPassword = password, @@ -113,7 +113,7 @@ public void TestImportExport(bool preexistingDatabase, string testPrefix, string } else { - sqlClient.Servers.ImportDatabase(resourceGroup.Name, server.Name, new ImportRequestParameters() + sqlClient.Databases.Import(resourceGroup.Name, server.Name, new ImportRequest() { AdministratorLogin = login, AdministratorLoginPassword = password, @@ -127,24 +127,6 @@ public void TestImportExport(bool preexistingDatabase, string testPrefix, string MaxSizeBytes = (2 * 1024L * 1024L * 1024L).ToString(), }); } - - // List Server import/export operations - IEnumerable listOperationResponse = sqlClient.ImportExportOperations.ListByServer(resourceGroup.Name, server.Name); - Assert.Equal(2, listOperationResponse.Count()); - Assert.Equal(1, listOperationResponse.Count(o => o.RequestType.Equals("Export") && o.DatabaseName.Equals(dbName))); - Assert.Equal(1, listOperationResponse.Count(o => o.RequestType.Equals("Import") && o.DatabaseName.Equals(dbName2))); - - // Get Server import/export operation - foreach (ImportExportOperationResponse operation in listOperationResponse) - { - ImportExportOperationResponse getOperationResponse = sqlClient.ImportExportOperations.GetByServer(resourceGroup.Name, server.Name, - operation.RequestId.Value); - Assert.NotNull(getOperationResponse); - - ImportExportOperationResponse getByDbResponse = sqlClient.ImportExportOperations.GetByDatabase(resourceGroup.Name, server.Name, - getOperationResponse.DatabaseName, operation.RequestId.Value); - Assert.NotNull(getByDbResponse); - } }); } } diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ServerCrudScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ServerCrudScenarioTests.cs index fdf23b59e6f9..e476c59d0534 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/ServerCrudScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ServerCrudScenarioTests.cs @@ -57,11 +57,11 @@ public void TestCreateUpdateGetDropServer() SqlManagementTestUtilities.ValidateServer(v2Server, serverNameV2, login, version12, tags, SqlManagementTestUtilities.DefaultLocation); // Get first server - var getV12Server = sqlClient.Servers.GetByResourceGroup(resourceGroup.Name, serverNameV12); + var getV12Server = sqlClient.Servers.Get(resourceGroup.Name, serverNameV12); SqlManagementTestUtilities.ValidateServer(getV12Server, serverNameV12, login, version12, tags, SqlManagementTestUtilities.DefaultLocation); // Get second server - var getV2Server = sqlClient.Servers.GetByResourceGroup(resourceGroup.Name, serverNameV2); + var getV2Server = sqlClient.Servers.Get(resourceGroup.Name, serverNameV2); SqlManagementTestUtilities.ValidateServer(getV2Server, serverNameV2, login, version12, tags, SqlManagementTestUtilities.DefaultLocation); var listServers = sqlClient.Servers.ListByResourceGroup(resourceGroup.Name); diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestBlobAuditing.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestBlobAuditing.json new file mode 100644 index 000000000000..396870db9ace --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestBlobAuditing.json @@ -0,0 +1,1090 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-blob-auditing-test-7677?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"server-blob-auditing-test-7677\": \"2017-03-11 02:04:32Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "113" + ], + "x-ms-client-request-id": [ + "c2b4478b-11ad-4b1d-96f4-90fcb61f6903" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677\",\r\n \"name\": \"server-blob-auditing-test-7677\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"server-blob-auditing-test-7677\": \"2017-03-11 02:04:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:04:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "b809b1f0-a365-4761-8547-64f86de8d648" + ], + "x-ms-correlation-request-id": [ + "b809b1f0-a365-4761-8547-64f86de8d648" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020435Z:b809b1f0-a365-4761-8547-64f86de8d648" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Nz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "61f1c380-bd38-4c66-a06e-56bd5771f48d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057\",\r\n \"name\": \"server-blob-auditing-test-1057\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"server-blob-auditing-test-1057.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:05:10 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "389e5284-44eb-4d4b-a55d-2641bd68735c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "5316e44d-def0-4972-bba7-664d3fb90f61" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020511Z:5316e44d-def0-4972-bba7-664d3fb90f61" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC03ODc2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "d6a38c5e-0f7e-485b-85e7-50a88d20e33f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T18:05:13.154-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:05:12 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/operationResults/80de9388-76e0-416e-b4ad-395a2e1557e2?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "80de9388-76e0-416e-b4ad-395a2e1557e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/azureAsyncOperation/80de9388-76e0-416e-b4ad-395a2e1557e2?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "43590fea-6ffb-4829-bf48-decd6131ff3a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020513Z:43590fea-6ffb-4829-bf48-decd6131ff3a" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC04Nzg0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "7d5fefd3-a802-45c9-ab6a-7f44a70d34a2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T18:05:14.701-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:05:14 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784/operationResults/4024ff64-bc01-4a91-9c3c-4fb313d69774?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "4024ff64-bc01-4a91-9c3c-4fb313d69774" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784/azureAsyncOperation/4024ff64-bc01-4a91-9c3c-4fb313d69774?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "16b03468-3bcc-41ed-a25e-41be724c36f7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020514Z:16b03468-3bcc-41ed-a25e-41be724c36f7" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/azureAsyncOperation/80de9388-76e0-416e-b4ad-395a2e1557e2?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC03ODc2L2F6dXJlQXN5bmNPcGVyYXRpb24vODBkZTkzODgtNzZlMC00MTZlLWI0YWQtMzk1YTJlMTU1N2UyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"80de9388-76e0-416e-b4ad-395a2e1557e2\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:05:44 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0226ac9e-3428-4a77-8066-86db78f77446" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/azureAsyncOperation/80de9388-76e0-416e-b4ad-395a2e1557e2?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "66b2fb3d-e69b-4a48-a1a0-6dc2e3127dd5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020544Z:66b2fb3d-e69b-4a48-a1a0-6dc2e3127dd5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/azureAsyncOperation/80de9388-76e0-416e-b4ad-395a2e1557e2?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC03ODc2L2F6dXJlQXN5bmNPcGVyYXRpb24vODBkZTkzODgtNzZlMC00MTZlLWI0YWQtMzk1YTJlMTU1N2UyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"80de9388-76e0-416e-b4ad-395a2e1557e2\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:14 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c481c26d-33f7-468c-acf8-dd4a893a1971" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/azureAsyncOperation/80de9388-76e0-416e-b4ad-395a2e1557e2?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "669ca02e-b271-40b8-9e47-db97462ed05e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020615Z:669ca02e-b271-40b8-9e47-db97462ed05e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784/azureAsyncOperation/4024ff64-bc01-4a91-9c3c-4fb313d69774?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC04Nzg0L2F6dXJlQXN5bmNPcGVyYXRpb24vNDAyNGZmNjQtYmMwMS00YTkxLTljM2MtNGZiMzEzZDY5Nzc0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4024ff64-bc01-4a91-9c3c-4fb313d69774\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:05:45 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3cdbdcce-89b9-4c02-918b-51e21769a5dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784/azureAsyncOperation/4024ff64-bc01-4a91-9c3c-4fb313d69774?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "98cc66e1-a49d-4262-b957-68d2a222522e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020545Z:98cc66e1-a49d-4262-b957-68d2a222522e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784/azureAsyncOperation/4024ff64-bc01-4a91-9c3c-4fb313d69774?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC04Nzg0L2F6dXJlQXN5bmNPcGVyYXRpb24vNDAyNGZmNjQtYmMwMS00YTkxLTljM2MtNGZiMzEzZDY5Nzc0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"4024ff64-bc01-4a91-9c3c-4fb313d69774\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:15 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d85adfba-74ea-47a4-b3ab-a3b01493ddf2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784/azureAsyncOperation/4024ff64-bc01-4a91-9c3c-4fb313d69774?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "b61477ae-2018-42a1-81f1-a8e558f9c182" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020616Z:b61477ae-2018-42a1-81f1-a8e558f9c182" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC03ODc2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876\",\r\n \"name\": \"server-blob-auditing-test-7876\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"177e246a-28d6-4143-94f4-0b9840b66bfa\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T02:05:13.453Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T02:16:01.35Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:15 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f157c8f0-a8ca-4785-a427-26a793b0f392" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "2c2aab32-a1f9-4145-8c56-ba8e5a90d05d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020616Z:2c2aab32-a1f9-4145-8c56-ba8e5a90d05d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC04Nzg0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-8784\",\r\n \"name\": \"server-blob-auditing-test-8784\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"d59f3586-6f81-41ac-8efa-7993a3fb8a77\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T02:05:14.967Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T02:15:47.687Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:16 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0288670f-a620-4992-b635-bd573578f5d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "64cb25ff-1235-43e6-a701-ebb4bba9ef4f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020617Z:64cb25ff-1235-43e6-a701-ebb4bba9ef4f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/auditingSettings/default?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC03ODc2L2F1ZGl0aW5nU2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e8b749b-b249-414c-b2fe-f6ae86ba6560" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/auditingSettings/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingSettings\",\r\n \"kind\": \"\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0,\r\n \"auditActionsAndGroups\": [],\r\n \"storageAccountSubscriptionId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "204f9abb-624c-486d-9827-834968aeee5b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "cfb98c04-7e70-4e4a-a517-50252a0f3996" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020618Z:cfb98c04-7e70-4e4a-a517-50252a0f3996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/auditingSettings/default?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC03ODc2L2F1ZGl0aW5nU2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d6bb1e4-53a8-4219-9684-2345fc8d2f88" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/auditingSettings/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingSettings\",\r\n \"kind\": \"\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 5,\r\n \"auditActionsAndGroups\": [\r\n \"SCHEMA_OBJECT_ACCESS_GROUP\",\r\n \"UPDATE on database::testdb by public\"\r\n ],\r\n \"storageAccountSubscriptionId\": \"00000000-1234-0000-5678-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2e80c5f4-24ef-4071-95ab-800604a2e974" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "0e5df406-4ac9-4409-83f5-b108a19d270e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020621Z:0e5df406-4ac9-4409-83f5-b108a19d270e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/auditingSettings/default?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMTA1Ny9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC03ODc2L2F1ZGl0aW5nU2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\",\r\n \"retentionDays\": 5,\r\n \"auditActionsAndGroups\": [\r\n \"SCHEMA_OBJECT_ACCESS_GROUP\",\r\n \"UPDATE on database::testdb by public\"\r\n ],\r\n \"storageAccountSubscriptionId\": \"00000000-1234-0000-5678-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "507" + ], + "x-ms-client-request-id": [ + "89a6a948-5e13-4dc0-87dc-047ad710634b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-7677/providers/Microsoft.Sql/servers/server-blob-auditing-test-1057/databases/server-blob-auditing-test-7876/auditingSettings/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingSettings\",\r\n \"kind\": \"\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 5,\r\n \"auditActionsAndGroups\": [\r\n \"SCHEMA_OBJECT_ACCESS_GROUP\",\r\n \"UPDATE on database::testdb by public\"\r\n ],\r\n \"storageAccountSubscriptionId\": \"00000000-1234-0000-5678-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d3713542-7be9-4e1c-9101-804f64d1cfa2" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c7d95d85-d84f-431e-ad80-c51297912088" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020620Z:c7d95d85-d84f-431e-ad80-c51297912088" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-blob-auditing-test-7677?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNzY3Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b183b23a-3f74-4f8b-83b3-4e123fdab0a6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "258b4b5d-956f-4d40-9b29-681de104e984" + ], + "x-ms-correlation-request-id": [ + "258b4b5d-956f-4d40-9b29-681de104e984" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020624Z:258b4b5d-956f-4d40-9b29-681de104e984" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVOelkzTnkxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:06:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "0f6e45ec-1698-4aff-a173-137f731916c3" + ], + "x-ms-correlation-request-id": [ + "0f6e45ec-1698-4aff-a173-137f731916c3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020655Z:0f6e45ec-1698-4aff-a173-137f731916c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVOelkzTnkxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:07:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "3c16ac4f-a61a-4c6f-ba27-fbf79f40fc9d" + ], + "x-ms-correlation-request-id": [ + "3c16ac4f-a61a-4c6f-ba27-fbf79f40fc9d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020725Z:3c16ac4f-a61a-4c6f-ba27-fbf79f40fc9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVOelkzTnkxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:07:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "7c3cbf05-77c0-40cf-ae02-f2b455dd1a05" + ], + "x-ms-correlation-request-id": [ + "7c3cbf05-77c0-40cf-ae02-f2b455dd1a05" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020756Z:7c3cbf05-77c0-40cf-ae02-f2b455dd1a05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJENzY3Ny1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVOelkzTnkxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:08:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "d2d37010-d1ad-4b00-9882-893f22c889d0" + ], + "x-ms-correlation-request-id": [ + "d2d37010-d1ad-4b00-9882-893f22c889d0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020826Z:d2d37010-d1ad-4b00-9882-893f22c889d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "server-blob-auditing-test-7677" + ], + "RunTestInNewV12Server": [ + "server-blob-auditing-test-1057" + ], + "CreateDatabasesAsync": [ + "server-blob-auditing-test-7876", + "server-blob-auditing-test-8784" + ] + }, + "Variables": { + "SubscriptionId": "f28872d6-4a93-4bb1-84b9-aecb02b6af4c" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestServerBlobAuditing.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestServerBlobAuditing.json new file mode 100644 index 000000000000..4bad829d095f --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.BlobAuditingTest/TestServerBlobAuditing.json @@ -0,0 +1,1090 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-blob-auditing-test-3094?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"server-blob-auditing-test-3094\": \"2017-03-11 01:22:11Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "113" + ], + "x-ms-client-request-id": [ + "0a8b19e8-78f7-412c-95da-4b8736a2a51a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094\",\r\n \"name\": \"server-blob-auditing-test-3094\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"server-blob-auditing-test-3094\": \"2017-03-11 01:22:11Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:22:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "d4010685-e767-424f-bdf6-e52d9e0bbf8b" + ], + "x-ms-correlation-request-id": [ + "d4010685-e767-424f-bdf6-e52d9e0bbf8b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012213Z:d4010685-e767-424f-bdf6-e52d9e0bbf8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "aee5d242-0139-4c9b-905d-f09e4660ab1f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716\",\r\n \"name\": \"server-blob-auditing-test-6716\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"server-blob-auditing-test-6716.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:22:47 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d4415ba6-7d1b-4710-afd7-8399e2c99131" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "7cb3f405-6def-480f-8a4e-6ac2130f1c74" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012248Z:7cb3f405-6def-480f-8a4e-6ac2130f1c74" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC02OTIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "06c33f53-7fb4-4f93-bb91-17e401da4dce" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T17:22:50.079-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:22:49 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/operationResults/3670d882-a7b3-4af4-82be-383a5614e23e?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "3670d882-a7b3-4af4-82be-383a5614e23e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/azureAsyncOperation/3670d882-a7b3-4af4-82be-383a5614e23e?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "1682d2ac-e4ef-41a4-be04-aa4046fbc764" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012250Z:1682d2ac-e4ef-41a4-be04-aa4046fbc764" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC00NDIyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "09abe725-61d2-4e9d-8e48-8c7e503d5828" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T17:22:49.647-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:22:50 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422/operationResults/b335a86b-bec4-45ae-86d2-2912d7c3191c?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "b335a86b-bec4-45ae-86d2-2912d7c3191c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422/azureAsyncOperation/b335a86b-bec4-45ae-86d2-2912d7c3191c?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "7c143411-51d7-4912-bd7b-7d6de2f4f172" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012251Z:7c143411-51d7-4912-bd7b-7d6de2f4f172" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/azureAsyncOperation/3670d882-a7b3-4af4-82be-383a5614e23e?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC02OTIzL2F6dXJlQXN5bmNPcGVyYXRpb24vMzY3MGQ4ODItYTdiMy00YWY0LTgyYmUtMzgzYTU2MTRlMjNlP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"3670d882-a7b3-4af4-82be-383a5614e23e\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:20 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d4e1c6cc-7938-491a-8fdb-daba91514cda" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/azureAsyncOperation/3670d882-a7b3-4af4-82be-383a5614e23e?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "1e7b4e98-f210-4855-a52d-2e4edb7274c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012321Z:1e7b4e98-f210-4855-a52d-2e4edb7274c3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/azureAsyncOperation/3670d882-a7b3-4af4-82be-383a5614e23e?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC02OTIzL2F6dXJlQXN5bmNPcGVyYXRpb24vMzY3MGQ4ODItYTdiMy00YWY0LTgyYmUtMzgzYTU2MTRlMjNlP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"3670d882-a7b3-4af4-82be-383a5614e23e\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:51 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d6ac73b4-6f45-462c-9ebc-825dbd76eb67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/azureAsyncOperation/3670d882-a7b3-4af4-82be-383a5614e23e?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "157c4c27-2c25-464b-93fb-56ec8b82a2dd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012351Z:157c4c27-2c25-464b-93fb-56ec8b82a2dd" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422/azureAsyncOperation/b335a86b-bec4-45ae-86d2-2912d7c3191c?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC00NDIyL2F6dXJlQXN5bmNPcGVyYXRpb24vYjMzNWE4NmItYmVjNC00NWFlLTg2ZDItMjkxMmQ3YzMxOTFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b335a86b-bec4-45ae-86d2-2912d7c3191c\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:21 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b7426540-f5ba-42c4-ad13-caf7d8c5fbcc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422/azureAsyncOperation/b335a86b-bec4-45ae-86d2-2912d7c3191c?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "a8c16e62-9486-45fb-8e82-9d2970036ce0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012321Z:a8c16e62-9486-45fb-8e82-9d2970036ce0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422/azureAsyncOperation/b335a86b-bec4-45ae-86d2-2912d7c3191c?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC00NDIyL2F6dXJlQXN5bmNPcGVyYXRpb24vYjMzNWE4NmItYmVjNC00NWFlLTg2ZDItMjkxMmQ3YzMxOTFjP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"b335a86b-bec4-45ae-86d2-2912d7c3191c\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8f94f1f4-2c1d-4727-9448-6c295ecea5ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422/azureAsyncOperation/b335a86b-bec4-45ae-86d2-2912d7c3191c?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "ec22fd2a-a86b-4a28-a161-5cc52ccce429" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012352Z:ec22fd2a-a86b-4a28-a161-5cc52ccce429" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC02OTIzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923\",\r\n \"name\": \"server-blob-auditing-test-6923\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"4d62eb0f-93b5-4059-9db7-87587c58e625\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T01:22:50.33Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T01:33:22.853Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:51 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b3339e2a-2ebe-4c1a-b1f6-a930b968e34d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "94feb91e-d442-4284-a866-1dc3784f71da" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012352Z:94feb91e-d442-4284-a866-1dc3784f71da" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC00NDIyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-4422\",\r\n \"name\": \"server-blob-auditing-test-4422\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"e2b3efc4-79c3-4f06-a400-078ca7d1b253\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T01:22:49.897Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T01:33:33.437Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:52 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "652b5474-5efb-4419-a25d-e1bfc3a5e696" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "aae570ab-9cf0-4c6f-8acb-597b7761e29e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012353Z:aae570ab-9cf0-4c6f-8acb-597b7761e29e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/auditingSettings/default?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC02OTIzL2F1ZGl0aW5nU2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a13e62e7-1293-4250-837e-af04988f175a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/auditingSettings/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingSettings\",\r\n \"kind\": \"\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0,\r\n \"auditActionsAndGroups\": [],\r\n \"storageAccountSubscriptionId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e0ea1edf-bbbe-4a9e-b7b7-0b0b46662620" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "c9f3218b-3245-46ec-92d6-49546a72bd51" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012354Z:c9f3218b-3245-46ec-92d6-49546a72bd51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/auditingSettings/default?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC02OTIzL2F1ZGl0aW5nU2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d31c6a7-cfa1-4e59-a428-ab683f672354" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/auditingSettings/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingSettings\",\r\n \"kind\": \"\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 5,\r\n \"auditActionsAndGroups\": [\r\n \"SCHEMA_OBJECT_ACCESS_GROUP\",\r\n \"UPDATE on database::testdb by public\"\r\n ],\r\n \"storageAccountSubscriptionId\": \"00000000-1234-0000-5678-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4f97eb4a-69ea-49e1-a858-b7aa8cdbc3d9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "a400874d-82e6-4d2f-abe9-8561d28e1d3b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012356Z:a400874d-82e6-4d2f-abe9-8561d28e1d3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/auditingSettings/default?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtNjcxNi9kYXRhYmFzZXMvc2VydmVyLWJsb2ItYXVkaXRpbmctdGVzdC02OTIzL2F1ZGl0aW5nU2V0dGluZ3MvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\",\r\n \"retentionDays\": 5,\r\n \"auditActionsAndGroups\": [\r\n \"SCHEMA_OBJECT_ACCESS_GROUP\",\r\n \"UPDATE on database::testdb by public\"\r\n ],\r\n \"storageAccountSubscriptionId\": \"00000000-1234-0000-5678-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "507" + ], + "x-ms-client-request-id": [ + "9b1bacfc-313f-4eb9-8c2a-9c8378bc9b90" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-blob-auditing-test-3094/providers/Microsoft.Sql/servers/server-blob-auditing-test-6716/databases/server-blob-auditing-test-6923/auditingSettings/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingSettings\",\r\n \"kind\": \"\",\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 5,\r\n \"auditActionsAndGroups\": [\r\n \"SCHEMA_OBJECT_ACCESS_GROUP\",\r\n \"UPDATE on database::testdb by public\"\r\n ],\r\n \"storageAccountSubscriptionId\": \"00000000-1234-0000-5678-000000000000\",\r\n \"isStorageSecondaryKeyInUse\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "22fccd80-9b96-422f-bf4c-973a0dbe7011" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "41180861-22b4-472d-bd0d-13f9ba8ad3f5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012355Z:41180861-22b4-472d-bd0d-13f9ba8ad3f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-blob-auditing-test-3094?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1ibG9iLWF1ZGl0aW5nLXRlc3QtMzA5ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34c47869-d5bb-4a2b-927b-32b5e23b8c8d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:23:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "cbc0cb78-1362-4556-901e-331bbd7ea095" + ], + "x-ms-correlation-request-id": [ + "cbc0cb78-1362-4556-901e-331bbd7ea095" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012358Z:cbc0cb78-1362-4556-901e-331bbd7ea095" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVNekE1TkMxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:24:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "692f032b-bffb-48da-8e24-4b6f87b83a4e" + ], + "x-ms-correlation-request-id": [ + "692f032b-bffb-48da-8e24-4b6f87b83a4e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012428Z:692f032b-bffb-48da-8e24-4b6f87b83a4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVNekE1TkMxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:24:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "b498416b-401d-4c6e-aa9d-89be5f564ce4" + ], + "x-ms-correlation-request-id": [ + "b498416b-401d-4c6e-aa9d-89be5f564ce4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012459Z:b498416b-401d-4c6e-aa9d-89be5f564ce4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVNekE1TkMxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:25:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "4c7f623c-1285-4fa0-8323-758c0d624067" + ], + "x-ms-correlation-request-id": [ + "4c7f623c-1285-4fa0-8323-758c0d624067" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012529Z:4c7f623c-1285-4fa0-8323-758c0d624067" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRCTE9COjJEQVVESVRJTkc6MkRURVNUOjJEMzA5NC1KQVBBTkVBU1QiLCJqb2JMb2NhdGlvbiI6ImphcGFuZWFzdCJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JDVEU5Q09qSkVRVlZFU1ZSSlRrYzZNa1JVUlZOVU9qSkVNekE1TkMxS1FWQkJUa1ZCVTFRaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1waGNHRnVaV0Z6ZENKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:25:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "3cc098dc-0081-4282-bbf7-107e052e857c" + ], + "x-ms-correlation-request-id": [ + "3cc098dc-0081-4282-bbf7-107e052e857c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170311T012559Z:3cc098dc-0081-4282-bbf7-107e052e857c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "server-blob-auditing-test-3094" + ], + "RunTestInNewV12Server": [ + "server-blob-auditing-test-6716" + ], + "CreateDatabasesAsync": [ + "server-blob-auditing-test-6923", + "server-blob-auditing-test-4422" + ] + }, + "Variables": { + "SubscriptionId": "f28872d6-4a93-4bb1-84b9-aecb02b6af4c" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.CapabilitiesScenarioTests/TestGetCapabilities.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.CapabilitiesScenarioTests/TestGetCapabilities.json new file mode 100644 index 000000000000..f9d551f354a8 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.CapabilitiesScenarioTests/TestGetCapabilities.json @@ -0,0 +1,69 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/providers/Microsoft.Sql/locations/Japan%20East/capabilities?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9KYXBhbiUyMEVhc3QvY2FwYWJpbGl0aWVzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94353b89-fa66-40a2-bcc9-2e8f0f8f69b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"Japan East\",\r\n \"status\": \"Available\",\r\n \"supportedServerVersions\": [\r\n {\r\n \"name\": \"2.0\",\r\n \"status\": \"Visible\",\r\n \"supportedEditions\": [\r\n {\r\n \"name\": \"Web\",\r\n \"status\": \"Visible\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"name\": \"Shared\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Business\",\r\n \"status\": \"Visible\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\",\r\n \"name\": \"Shared\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Basic\",\r\n \"status\": \"Visible\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"name\": \"Basic\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 5,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard\",\r\n \"status\": \"Visible\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"name\": \"S0\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 10,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"name\": \"S1\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 20,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"455330e1-00cd-488b-b5fa-177c226f28b7\",\r\n \"name\": \"S2\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 50,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Premium\",\r\n \"status\": \"Visible\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"name\": \"P1\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 100,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"name\": \"P2\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 200,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"a7c4c615-cfb1-464b-b252-925be0a19446\",\r\n \"name\": \"P3\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 800,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"43940481-9191-475a-9dba-6b505615b9aa\",\r\n \"name\": \"P6\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 800,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"System\",\r\n \"status\": \"Visible\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"name\": \"System\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"12.0\",\r\n \"status\": \"Default\",\r\n \"supportedEditions\": [\r\n {\r\n \"name\": \"System\",\r\n \"status\": \"Visible\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"26e021db-f1f9-4c98-84c6-92af8ef433d7\",\r\n \"name\": \"System\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"29dd7459-4a7c-4e56-be22-f0adda49440d\",\r\n \"name\": \"System0\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"c99ac918-dbea-463f-a475-16ec020fdc12\",\r\n \"name\": \"System1\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\r\n \"name\": \"System2\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"33d0db1f-6893-4210-99f9-463fb9b496a4\",\r\n \"name\": \"System3\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"da24338c-a6c9-46c2-a4bf-4ac95b496ae4\",\r\n \"name\": \"System4\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"53f7fa1b-b0d0-43d6-bc29-c5f059fb36e9\",\r\n \"name\": \"System2L\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"e79cd55c-689f-48d9-bffa-0dd12c772248\",\r\n \"name\": \"System3L\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"4b37bb6d-e004-47ac-8f7a-be56ac9fb490\",\r\n \"name\": \"System4L\",\r\n \"status\": \"Visible\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Visible\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 0,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Free\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"6aa3bb3e-7f50-40d6-95ef-5497c30d99d8\",\r\n \"name\": \"Free\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 32,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 5,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Basic\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"name\": \"Basic\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 5,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard\",\r\n \"status\": \"Default\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"name\": \"S0\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 10,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"1b1ebd4d-d903-4baa-97f9-4ea675f5e928\",\r\n \"name\": \"S1\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 20,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"455330e1-00cd-488b-b5fa-177c226f28b7\",\r\n \"name\": \"S2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 50,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"789681b8-ca10-4eb0-bdf2-e0b050601b40\",\r\n \"name\": \"S3\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 100,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Premium\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"7203483a-c4fb-4304-9e9f-17c71c904f5d\",\r\n \"name\": \"P1\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 125,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"a7d1b92d-c987-4375-b54d-2b1d0e0f5bb0\",\r\n \"name\": \"P2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 250,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"afe1eee1-1f12-4e5f-9ad6-2de9c12cb4dc\",\r\n \"name\": \"P4\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"43940481-9191-475a-9dba-6b505615b9aa\",\r\n \"name\": \"P6\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 1000,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"dd00d544-bbc0-4f61-ba60-cdce0c410288\",\r\n \"name\": \"P11\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 4,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 1750,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"5bc86cca-9a96-4a94-90ef-bbdfcfbf2d71\",\r\n \"name\": \"P15\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 4,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 4000,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"PremiumRS\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"dfdc102c-ed02-4349-9756-e227f0e43bb8\",\r\n \"name\": \"PRS1\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 125,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"a089506e-b47a-4f42-8a32-cc19af4c86fb\",\r\n \"name\": \"PRS2\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 250,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"39cb8faf-cba8-4b1b-b580-1e1202f2a024\",\r\n \"name\": \"PRS4\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"1e8da92e-efcd-4682-9140-bf6582120d1f\",\r\n \"name\": \"PRS6\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Megabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 2,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 300,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 400,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Default\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 1000,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"DataWarehouse\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"4e63cb0e-91b9-46fd-b05c-51fdd2367618\",\r\n \"name\": \"DW100\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 750,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"99e78a92-d724-4e1b-857b-2be661f3d153\",\r\n \"name\": \"DW200\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 1500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"284f1aff-fee7-4d3b-a211-5b8ebdd28fea\",\r\n \"name\": \"DW300\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 2250,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"3bdaeefe-8a9d-41d3-91c4-46ef896b19af\",\r\n \"name\": \"DW400\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 3000,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"5f759b78-8ec0-4dfb-97cc-c1455a3b5b4d\",\r\n \"name\": \"DW500\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 3750,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"efd65c5b-af7b-4389-9109-f6a69d6a3885\",\r\n \"name\": \"DW600\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 4500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"b89b9c6a-4ec2-4eb8-99db-6d2807e6aabb\",\r\n \"name\": \"DW1000\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 7500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"9a7a374e-b95c-4fd5-a68e-131d60796c47\",\r\n \"name\": \"DW1200\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 9000,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"b930f58e-86b5-43e0-a2da-d8bf8769c557\",\r\n \"name\": \"DW1500\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 11250,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"99165ede-a5ab-4b52-b317-e391d92ec370\",\r\n \"name\": \"DW2000\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 15000,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"8e28c923-5cf2-43cb-bd25-28c8c69b30ff\",\r\n \"name\": \"DW3000\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 22500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"ee1df062-4f3c-42ad-91bf-58b2a7c351e4\",\r\n \"name\": \"DW6000\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 45000,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Stretch\",\r\n \"status\": \"Available\",\r\n \"supportedServiceLevelObjectives\": [\r\n {\r\n \"id\": \"9cfc850f-d57f-4760-b5a6-bb640d268bf0\",\r\n \"name\": \"DS100\",\r\n \"status\": \"Default\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 750,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"053407ef-f01c-46f4-b829-96e01a14f449\",\r\n \"name\": \"DS200\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 1500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"013a9e10-cafc-45a8-8fcf-93095655d2ce\",\r\n \"name\": \"DS300\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 2250,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"79f61db4-8c10-46ba-a93a-d7d02dddd61c\",\r\n \"name\": \"DS400\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 3000,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"44eaac33-df00-4ef4-a2bb-f7ff87899eea\",\r\n \"name\": \"DS500\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 3750,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"f8e0f3a6-888b-459c-a9dd-d74d8b2b0e72\",\r\n \"name\": \"DS600\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 4500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"b9ed8f51-a414-42dc-8348-e4a1de25e12b\",\r\n \"name\": \"DS1000\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 7500,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"07479569-6d70-47a5-8db6-0af55d34f2c1\",\r\n \"name\": \"DS1200\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 9000,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"2d79baec-2879-46d5-9f5d-fb70eb004c4e\",\r\n \"name\": \"DS1500\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 11250,\r\n \"unit\": \"DTU\"\r\n }\r\n },\r\n {\r\n \"id\": \"7fb5389f-6d15-4e0b-9540-fe5ecdfdbeee\",\r\n \"name\": \"DS2000\",\r\n \"status\": \"Available\",\r\n \"supportedMaxSizes\": [\r\n {\r\n \"limit\": 250,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 500,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 750,\r\n \"unit\": \"Gigabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 1,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 5,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 10,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Default\"\r\n },\r\n {\r\n \"limit\": 20,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 30,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 40,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 50,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 60,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 70,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 80,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 90,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 100,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 150,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 200,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n },\r\n {\r\n \"limit\": 240,\r\n \"unit\": \"Terabytes\",\r\n \"status\": \"Available\"\r\n }\r\n ],\r\n \"performanceLevel\": {\r\n \"value\": 15000,\r\n \"unit\": \"DTU\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 22:44:41 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3fb1949b-44ce-4cda-b303-64bcdf0bf9cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "4e272598-24f8-44a2-8af8-0e68e2c97890" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T224442Z:4e272598-24f8-44a2-8af8-0e68e2c97890" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "2e7fe4bd-90c7-454e-8bb6-dc44649f27b2" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestDatabaseTransparentDataEncryptionConfiguration.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestDatabaseTransparentDataEncryptionConfiguration.json new file mode 100644 index 000000000000..b9c642ba25b1 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestDatabaseTransparentDataEncryptionConfiguration.json @@ -0,0 +1,784 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/sqlcrudtest-4753?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"sqlcrudtest-4753\": \"2017-03-15 17:10:17Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "99" + ], + "x-ms-client-request-id": [ + "8311808b-aea7-41fb-aa90-f61a2302e3f0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753\",\r\n \"name\": \"sqlcrudtest-4753\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"sqlcrudtest-4753\": \"2017-03-15 17:10:17Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:10:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "59613960-c3fd-4ef8-8109-cdf3670bfe09" + ], + "x-ms-correlation-request-id": [ + "59613960-c3fd-4ef8-8109-cdf3670bfe09" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171019Z:59613960-c3fd-4ef8-8109-cdf3670bfe09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNjE5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "cc3ea7a7-423d-41b2-905c-41c7816e6ea4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619\",\r\n \"name\": \"sqlcrudtest-3619\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-3619.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "524" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:11:01 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "633e37b1-851a-49a3-a691-952b20f2a3be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "94922821-3bc4-49c5-b328-2c9101aba957" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171101Z:94922821-3bc4-49c5-b328-2c9101aba957" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNjE5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MzU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "dc621849-caa7-4f21-a657-750e26c1447b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-15T10:11:01.551-07:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:11:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/operationResults/c3dfd01a-8457-4f35-a220-80f3ee77883b?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c3dfd01a-8457-4f35-a220-80f3ee77883b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/azureAsyncOperation/c3dfd01a-8457-4f35-a220-80f3ee77883b?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "8568a5b2-785a-41ca-a749-098809029d8e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171102Z:8568a5b2-785a-41ca-a749-098809029d8e" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/azureAsyncOperation/c3dfd01a-8457-4f35-a220-80f3ee77883b?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNjE5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MzU5L2F6dXJlQXN5bmNPcGVyYXRpb24vYzNkZmQwMWEtODQ1Ny00ZjM1LWEyMjAtODBmM2VlNzc4ODNiP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"c3dfd01a-8457-4f35-a220-80f3ee77883b\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:11:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8fe6e35c-f3ad-45cb-b025-5b5a675be8c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/azureAsyncOperation/c3dfd01a-8457-4f35-a220-80f3ee77883b?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "26e6314a-dc7a-4dd3-a66f-7ace289f3d7f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171133Z:26e6314a-dc7a-4dd3-a66f-7ace289f3d7f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/azureAsyncOperation/c3dfd01a-8457-4f35-a220-80f3ee77883b?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNjE5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MzU5L2F6dXJlQXN5bmNPcGVyYXRpb24vYzNkZmQwMWEtODQ1Ny00ZjM1LWEyMjAtODBmM2VlNzc4ODNiP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"c3dfd01a-8457-4f35-a220-80f3ee77883b\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:12:04 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7399813d-fbd2-4ce2-8a2e-bc37cb6d0967" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/azureAsyncOperation/c3dfd01a-8457-4f35-a220-80f3ee77883b?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "80aaf643-9047-424b-a9db-e2b5e6d8caec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171204Z:80aaf643-9047-424b-a9db-e2b5e6d8caec" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNjE5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MzU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359\",\r\n \"name\": \"sqlcrudtest-6359\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"db2cfd1c-5c0c-4756-abf2-d4c970620618\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-15T17:11:01.787Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-15T17:21:40.163Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:12:05 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1eb6c51d-d554-4ccb-847c-d9b9534e8475" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "b2209473-f0c3-4b30-b4f8-584023137dfc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171205Z:b2209473-f0c3-4b30-b4f8-584023137dfc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/transparentDataEncryption/current?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNjE5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MzU5L3RyYW5zcGFyZW50RGF0YUVuY3J5cHRpb24vY3VycmVudD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da98711d-0b8a-4575-856d-4e3064da2565" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"current\",\r\n \"location\": \"Japan East\",\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/transparentDataEncryption/current\",\r\n \"type\": \"Microsoft.Sql/servers/databases/transparentDataEncryption\",\r\n \"properties\": {\r\n \"status\": \"Disabled\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:12:06 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "605d92dd-c5b9-4f9c-97ad-79df617c880a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "1549581b-0058-4bc9-9f8d-3b27d133189a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171206Z:1549581b-0058-4bc9-9f8d-3b27d133189a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/transparentDataEncryption/current?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC0zNjE5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC02MzU5L3RyYW5zcGFyZW50RGF0YUVuY3J5cHRpb24vY3VycmVudD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"status\": \"Enabled\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "53" + ], + "x-ms-client-request-id": [ + "635c8ceb-60db-49c6-ba99-a32516c49365" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.3.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"current\",\r\n \"location\": null,\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-4753/providers/Microsoft.Sql/servers/sqlcrudtest-3619/databases/sqlcrudtest-6359/transparentDataEncryption/current\",\r\n \"type\": \"Microsoft.Sql/servers/databases/transparentDataEncryption\",\r\n \"properties\": {\r\n \"status\": \"Enabled\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:12:08 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "764690ac-b906-438a-a303-52a6b3de589b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "084886bc-d84f-4105-9775-06263fde990e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171209Z:084886bc-d84f-4105-9775-06263fde990e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/sqlcrudtest-4753?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQ3NTM/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "223cac3c-2cc8-4107-82ec-0dd276a375f6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:12:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "a0c3bbdf-725b-4264-a855-89e2d8f567c6" + ], + "x-ms-correlation-request-id": [ + "a0c3bbdf-725b-4264-a855-89e2d8f567c6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171211Z:a0c3bbdf-725b-4264-a855-89e2d8f567c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTNOVE10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:12:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "d7f610cb-cacc-4499-82f7-c3b266c65dc9" + ], + "x-ms-correlation-request-id": [ + "d7f610cb-cacc-4499-82f7-c3b266c65dc9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171241Z:d7f610cb-cacc-4499-82f7-c3b266c65dc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTNOVE10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:13:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "d82b9ceb-7272-458c-b760-f15984dec25d" + ], + "x-ms-correlation-request-id": [ + "d82b9ceb-7272-458c-b760-f15984dec25d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171312Z:d82b9ceb-7272-458c-b760-f15984dec25d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTNOVE10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:13:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "5c4e6683-648e-4bdc-a9f1-43dccdbd4660" + ], + "x-ms-correlation-request-id": [ + "5c4e6683-648e-4bdc-a9f1-43dccdbd4660" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171342Z:5c4e6683-648e-4bdc-a9f1-43dccdbd4660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ3NTMtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV4RFVsVkVWRVZUVkRveVJEUTNOVE10U2tGUVFVNUZRVk5VSWl3aWFtOWlURzlqWVhScGIyNGlPaUpxWVhCaGJtVmhjM1FpZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 15 Mar 2017 17:14:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "fd0ed395-b2b1-4289-a26c-b1d47abd6c42" + ], + "x-ms-correlation-request-id": [ + "fd0ed395-b2b1-4289-a26c-b1d47abd6c42" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170315T171412Z:fd0ed395-b2b1-4289-a26c-b1d47abd6c42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "sqlcrudtest-4753" + ], + "RunTestInNewV12Server": [ + "sqlcrudtest-3619" + ], + "TestDatabaseTransparentDataEncryptionConfiguration": [ + "sqlcrudtest-6359" + ] + }, + "Variables": { + "SubscriptionId": "f28872d6-4a93-4bb1-84b9-aecb02b6af4c" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestGetAndListDatabase.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestGetAndListDatabase.json index f685b85a2202..672ca397ceb2 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestGetAndListDatabase.json +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestGetAndListDatabase.json @@ -1750,7 +1750,7 @@ "RunTestInNewV12Server": [ "sqlcrudtest-318" ], - "TestGetAndListDatabase": [ + "CreateDatabasesAsync": [ "sqlcrudtest-1856", "sqlcrudtest-2783", "sqlcrudtest-7851", diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestServerSecurityAlert.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestServerSecurityAlert.json new file mode 100644 index 000000000000..05ee46697485 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestServerSecurityAlert.json @@ -0,0 +1,1093 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-security-alert-test-2054?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"server-security-alert-test-2054\": \"2017-03-11 01:54:43Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "114" + ], + "x-ms-client-request-id": [ + "86407fbf-9d71-434b-9c70-1fbf46da6a6d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054\",\r\n \"name\": \"server-security-alert-test-2054\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"server-security-alert-test-2054\": \"2017-03-11 01:54:43Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "284" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:54:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "f4c43119-b30f-49c1-8fa9-52aa711f3fa4" + ], + "x-ms-correlation-request-id": [ + "f4c43119-b30f-49c1-8fa9-52aa711f3fa4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015446Z:f4c43119-b30f-49c1-8fa9-52aa711f3fa4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "da4e6457-d71a-416e-9cab-c4f505b5c400" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759\",\r\n \"name\": \"server-security-alert-test-9759\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"server-security-alert-test-9759.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "584" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:55:21 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5a05d52e-b82f-481c-8ee4-ba3ddede732d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "77e6e59e-1b5b-49d4-a650-58106d1a16d5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015522Z:77e6e59e-1b5b-49d4-a650-58106d1a16d5" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NjY2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "6a516583-d97c-4103-99ec-e1cfd66948fa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T17:55:25.279-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:55:23 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/operationResults/070d9cdc-c530-4e91-b29e-1639098a9ff8?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "070d9cdc-c530-4e91-b29e-1639098a9ff8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/azureAsyncOperation/070d9cdc-c530-4e91-b29e-1639098a9ff8?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "04b6471e-c4f9-4030-8af2-38981a658441" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015524Z:04b6471e-c4f9-4030-8af2-38981a658441" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02NjM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "8ca4f1e7-dcd3-465c-82f9-8795631cd816" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T17:55:26.106-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:55:25 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634/operationResults/5b7e2ae2-16ea-4aa1-85c7-1480ea72934a?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5b7e2ae2-16ea-4aa1-85c7-1480ea72934a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634/azureAsyncOperation/5b7e2ae2-16ea-4aa1-85c7-1480ea72934a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "ba2633dd-fb92-459b-b9e9-f45b95aa3a08" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015526Z:ba2633dd-fb92-459b-b9e9-f45b95aa3a08" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/azureAsyncOperation/070d9cdc-c530-4e91-b29e-1639098a9ff8?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NjY2L2F6dXJlQXN5bmNPcGVyYXRpb24vMDcwZDljZGMtYzUzMC00ZTkxLWIyOWUtMTYzOTA5OGE5ZmY4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"070d9cdc-c530-4e91-b29e-1639098a9ff8\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:55:54 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "23a33912-044f-4917-82a1-564fd6d7895b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/azureAsyncOperation/070d9cdc-c530-4e91-b29e-1639098a9ff8?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "4c83de3d-b760-42b6-8e9a-01a5c7636f06" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015555Z:4c83de3d-b760-42b6-8e9a-01a5c7636f06" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/azureAsyncOperation/070d9cdc-c530-4e91-b29e-1639098a9ff8?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NjY2L2F6dXJlQXN5bmNPcGVyYXRpb24vMDcwZDljZGMtYzUzMC00ZTkxLWIyOWUtMTYzOTA5OGE5ZmY4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"070d9cdc-c530-4e91-b29e-1639098a9ff8\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:26 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bb87305e-eb6d-4300-8c1f-40355dafad52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/azureAsyncOperation/070d9cdc-c530-4e91-b29e-1639098a9ff8?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "1b722524-1d30-4dc3-b5c1-5efdcbd3039a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015626Z:1b722524-1d30-4dc3-b5c1-5efdcbd3039a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634/azureAsyncOperation/5b7e2ae2-16ea-4aa1-85c7-1480ea72934a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02NjM0L2F6dXJlQXN5bmNPcGVyYXRpb24vNWI3ZTJhZTItMTZlYS00YWExLTg1YzctMTQ4MGVhNzI5MzRhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"5b7e2ae2-16ea-4aa1-85c7-1480ea72934a\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:55:56 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d4070778-218f-4c5f-909b-ea23f2eef3f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634/azureAsyncOperation/5b7e2ae2-16ea-4aa1-85c7-1480ea72934a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "4fd27cde-7277-4f92-9db3-50cbe93828d5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015557Z:4fd27cde-7277-4f92-9db3-50cbe93828d5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634/azureAsyncOperation/5b7e2ae2-16ea-4aa1-85c7-1480ea72934a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02NjM0L2F6dXJlQXN5bmNPcGVyYXRpb24vNWI3ZTJhZTItMTZlYS00YWExLTg1YzctMTQ4MGVhNzI5MzRhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"5b7e2ae2-16ea-4aa1-85c7-1480ea72934a\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:28 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "247ab13c-04e4-4ada-904c-c106c5d1b0ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634/azureAsyncOperation/5b7e2ae2-16ea-4aa1-85c7-1480ea72934a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "992459a0-e7d2-4c19-b996-bdbd678c3e8b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015628Z:992459a0-e7d2-4c19-b996-bdbd678c3e8b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NjY2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666\",\r\n \"name\": \"server-security-alert-test-9666\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1dcb7dc4-02b3-4b9f-9b4a-4f55cce920a4\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T01:55:25.56Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T02:06:20.97Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:27 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5deb2b23-4129-4d5a-8e34-54b509cfb742" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "c4421798-683f-42c2-ba20-6469293b2645" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015627Z:c4421798-683f-42c2-ba20-6469293b2645" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02NjM0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-6634\",\r\n \"name\": \"server-security-alert-test-6634\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"17da9de9-4a97-4156-a530-34499cb0d672\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T01:55:26.387Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T02:06:05.417Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:28 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "514e4507-4719-4c45-8b64-1188c1319a15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "a0d51b8a-fe03-43ab-8786-8428bea02dfa" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015629Z:a0d51b8a-fe03-43ab-8786-8428bea02dfa" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/securityAlertPolicies/default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NjY2L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53b5546d-af79-4892-a805-d1449f7be5ff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/securityAlertPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"New\",\r\n \"disabledAlerts\": \"Preview\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:30 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "db3c256f-1235-4774-832e-81e7eb67e048" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "265d63ef-6bdd-49aa-be27-38f742dbcf0a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015631Z:265d63ef-6bdd-49aa-be27-38f742dbcf0a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/securityAlertPolicies/default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NjY2L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "201c825d-0a42-4e81-9c54-8c77e904caaa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/securityAlertPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Access_Anomaly; Usage_Anomaly\",\r\n \"emailAddresses\": \"testSecurityAlert@microsoft.com\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 5\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:34 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5c7b7b5e-c319-49f6-a443-4e604812b92c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "62c9379f-e719-4157-8e07-e0e36eb39a92" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015634Z:62c9379f-e719-4157-8e07-e0e36eb39a92" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/securityAlertPolicies/default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NzU5L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05NjY2L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Access_Anomaly; Usage_Anomaly\",\r\n \"emailAddresses\": \"testSecurityAlert@microsoft.com\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\",\r\n \"retentionDays\": 5,\r\n \"useServerDefault\": \"Enabled\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "453" + ], + "x-ms-client-request-id": [ + "69c1f1db-db5c-4cd4-affc-d7ec70340c1e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-2054/providers/Microsoft.Sql/servers/server-security-alert-test-9759/databases/server-security-alert-test-9666/securityAlertPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Access_Anomaly; Usage_Anomaly\",\r\n \"emailAddresses\": \"testSecurityAlert@microsoft.com\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\",\r\n \"retentionDays\": 5\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9babd642-369a-4f48-b835-77567b2a25fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "589f0162-b876-44ba-b488-eef2260a8431" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015633Z:589f0162-b876-44ba-b488-eef2260a8431" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-security-alert-test-2054?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTIwNTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0635e1aa-09c9-4966-9015-5e901da1bc93" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:56:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "ce26ef80-475a-44ea-b821-90b6f0d524b1" + ], + "x-ms-correlation-request-id": [ + "ce26ef80-475a-44ea-b821-90b6f0d524b1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015638Z:ce26ef80-475a-44ea-b821-90b6f0d524b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREl3TlRRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:57:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "5db0af42-bf72-4208-b948-c8132a4c8f7c" + ], + "x-ms-correlation-request-id": [ + "5db0af42-bf72-4208-b948-c8132a4c8f7c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015709Z:5db0af42-bf72-4208-b948-c8132a4c8f7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREl3TlRRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:57:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "19bbf245-9791-4c4e-baa0-10c7869333c3" + ], + "x-ms-correlation-request-id": [ + "19bbf245-9791-4c4e-baa0-10c7869333c3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015739Z:19bbf245-9791-4c4e-baa0-10c7869333c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREl3TlRRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:58:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "0e6b118f-06fa-46c8-9129-6ef40548a3b2" + ], + "x-ms-correlation-request-id": [ + "0e6b118f-06fa-46c8-9129-6ef40548a3b2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015809Z:0e6b118f-06fa-46c8-9129-6ef40548a3b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDIwNTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREl3TlRRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 01:58:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "ab6fe1cb-95d5-44b2-9e6a-dbebd52fd63c" + ], + "x-ms-correlation-request-id": [ + "ab6fe1cb-95d5-44b2-9e6a-dbebd52fd63c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T015840Z:ab6fe1cb-95d5-44b2-9e6a-dbebd52fd63c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "server-security-alert-test-2054" + ], + "RunTestInNewV12Server": [ + "server-security-alert-test-9759" + ], + "CreateDatabasesAsync": [ + "server-security-alert-test-9666", + "server-security-alert-test-6634" + ] + }, + "Variables": { + "SubscriptionId": "f28872d6-4a93-4bb1-84b9-aecb02b6af4c" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestThreatDetection.json b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestThreatDetection.json new file mode 100644 index 000000000000..7fa45a7cecfc --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ThreatDetectionTest/TestThreatDetection.json @@ -0,0 +1,1035 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-security-alert-test-1140?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"server-security-alert-test-1140\": \"2017-03-11 02:08:27Z\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "114" + ], + "x-ms-client-request-id": [ + "c20ff080-38f6-460b-8a81-23fcf89145b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140\",\r\n \"name\": \"server-security-alert-test-1140\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {\r\n \"server-security-alert-test-1140\": \"2017-03-11 02:08:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "284" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:08:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "9dd3441b-bf2b-45d8-8556-096aec5fd6f6" + ], + "x-ms-correlation-request-id": [ + "9dd3441b-bf2b-45d8-8556-096aec5fd6f6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020829Z:9dd3441b-bf2b-45d8-8556-096aec5fd6f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"version\": \"12.0\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ], + "x-ms-client-request-id": [ + "f0c9c807-1252-4982-83d0-cd22003eb1e1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156\",\r\n \"name\": \"server-security-alert-test-9156\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"server-security-alert-test-9156.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "584" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:09:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a518349e-21eb-40bb-abb8-1c97fc20a0b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "5d84047e-3aa9-4417-adb3-7f9840fbc9e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020901Z:5d84047e-3aa9-4417-adb3-7f9840fbc9e7" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02MjU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "5f0378ab-6dfd-459b-9838-8d825b9988f5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T18:09:01.502-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:09:02 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258/operationResults/7de7513f-64e3-46dd-b53b-ab5306a4358a?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "7de7513f-64e3-46dd-b53b-ab5306a4358a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258/azureAsyncOperation/7de7513f-64e3-46dd-b53b-ab5306a4358a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "b5f58a2f-88d8-4481-a39d-d3a48b457ff9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020903Z:b5f58a2f-88d8-4481-a39d-d3a48b457ff9" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC03NzU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "6572a181-ab7e-4a07-abee-dd8c8349354e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-03-10T18:09:04.203-08:00\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "80" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:09:03 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/operationResults/30d5b1f7-e929-489b-972f-bec46657868a?api-version=2014-04-01-Preview" + ], + "Retry-After": [ + "30" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "30d5b1f7-e929-489b-972f-bec46657868a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/azureAsyncOperation/30d5b1f7-e929-489b-972f-bec46657868a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "c30fcc2e-c678-4205-aa6e-6ffe3cd2fdcc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020904Z:c30fcc2e-c678-4205-aa6e-6ffe3cd2fdcc" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258/azureAsyncOperation/7de7513f-64e3-46dd-b53b-ab5306a4358a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02MjU4L2F6dXJlQXN5bmNPcGVyYXRpb24vN2RlNzUxM2YtNjRlMy00NmRkLWI1M2ItYWI1MzA2YTQzNThhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7de7513f-64e3-46dd-b53b-ab5306a4358a\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:09:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "44329c32-2089-491a-9b62-5723dc5e7030" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258/azureAsyncOperation/7de7513f-64e3-46dd-b53b-ab5306a4358a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "5328ad5c-a5d2-42ce-b6c0-46772670444f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020934Z:5328ad5c-a5d2-42ce-b6c0-46772670444f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258/azureAsyncOperation/7de7513f-64e3-46dd-b53b-ab5306a4358a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02MjU4L2F6dXJlQXN5bmNPcGVyYXRpb24vN2RlNzUxM2YtNjRlMy00NmRkLWI1M2ItYWI1MzA2YTQzNThhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"7de7513f-64e3-46dd-b53b-ab5306a4358a\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:10:04 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "5eb88478-d325-41cf-a153-15f43c33f189" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258/azureAsyncOperation/7de7513f-64e3-46dd-b53b-ab5306a4358a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "7480a25f-5b0c-407c-85b5-af4ab31eb649" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021005Z:7480a25f-5b0c-407c-85b5-af4ab31eb649" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/azureAsyncOperation/30d5b1f7-e929-489b-972f-bec46657868a?api-version=2014-04-01-Preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC03NzU4L2F6dXJlQXN5bmNPcGVyYXRpb24vMzBkNWIxZjctZTkyOS00ODliLTk3MmYtYmVjNDY2NTc4NjhhP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"operationId\": \"30d5b1f7-e929-489b-972f-bec46657868a\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:09:34 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8fcdd679-a6fc-4958-a10d-7f6a178dfc5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/azureAsyncOperation/30d5b1f7-e929-489b-972f-bec46657868a?api-version=2014-04-01-Preview" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "cf448f70-20f0-429f-b66d-95487a66ffc2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020935Z:cf448f70-20f0-429f-b66d-95487a66ffc2" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC03NzU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758\",\r\n \"name\": \"server-security-alert-test-7758\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"7a5b9f87-1b2b-4c68-a09e-be1927106474\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T02:09:04.593Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T02:19:33.837Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:09:35 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c3dff05d-91ce-454f-8c19-a80fa19f7dc2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "30b32cac-acf3-4bf6-bc78-fb98f44b1c1e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T020936Z:30b32cac-acf3-4bf6-bc78-fb98f44b1c1e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC02MjU4P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-6258\",\r\n \"name\": \"server-security-alert-test-6258\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Japan East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"1fe232b7-6963-402f-8b09-33f7d345a6cf\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-03-11T02:09:01.753Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"Japan West\",\r\n \"earliestRestoreDate\": \"2017-03-11T02:19:38.78Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:10:05 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f902a372-d3e0-4bba-8fcf-22486ca7c1c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "a333bf55-4e5e-47b1-9aaa-80a3490bbbca" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021006Z:a333bf55-4e5e-47b1-9aaa-80a3490bbbca" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/securityAlertPolicies/default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC03NzU4L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a86b8c31-4915-4b6d-a8fc-9276e27c0d54" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/securityAlertPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"New\",\r\n \"disabledAlerts\": \"Preview\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:10:07 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f0ac4c8b-2e7e-4b92-b5b5-ac8e59474084" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "55dee61a-d04d-48d3-b28b-b55206732f24" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021007Z:55dee61a-d04d-48d3-b28b-b55206732f24" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/securityAlertPolicies/default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC03NzU4L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4615717b-ff12-4066-9a44-b11ea4f157b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/securityAlertPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Japan East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Access_Anomaly; Usage_Anomaly\",\r\n \"emailAddresses\": \"testSecurityAlert@microsoft.com\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 5\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:10:11 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4e1b144c-eb80-45a0-bee3-b0e00360f74b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "4002b56f-6271-4ea8-b8ed-9a2d2ea45002" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021012Z:4002b56f-6271-4ea8-b8ed-9a2d2ea45002" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/securityAlertPolicies/default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDAvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC05MTU2L2RhdGFiYXNlcy9zZXJ2ZXItc2VjdXJpdHktYWxlcnQtdGVzdC03NzU4L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Access_Anomaly; Usage_Anomaly\",\r\n \"emailAddresses\": \"testSecurityAlert@microsoft.com\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\",\r\n \"retentionDays\": 5,\r\n \"useServerDefault\": \"Disabled\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "454" + ], + "x-ms-client-request-id": [ + "ad76c084-2833-48f8-8544-3e1853d73074" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Sql.SqlManagementClient/1.2.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/server-security-alert-test-1140/providers/Microsoft.Sql/servers/server-security-alert-test-9156/databases/server-security-alert-test-7758/securityAlertPolicies/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Access_Anomaly; Usage_Anomaly\",\r\n \"emailAddresses\": \"testSecurityAlert@microsoft.com\",\r\n \"emailAccountAdmins\": \"Enabled\",\r\n \"storageEndpoint\": \"https://MyAccount.blob.core.windows.net/\",\r\n \"storageAccountAccessKey\": \"sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==\",\r\n \"retentionDays\": 5\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:10:10 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9d72123d-dd52-4791-ba9f-29778315decb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Preference-Applied": [ + "return-content" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "50ae6860-f257-4034-82b4-09982511baef" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021010Z:50ae6860-f257-4034-82b4-09982511baef" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/server-security-alert-test-1140?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NlcnZlci1zZWN1cml0eS1hbGVydC10ZXN0LTExNDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4eea9bb-6668-451c-8ab4-45341cdfe20e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:10:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "d302919b-6f1f-4eee-94cd-2b2405cf482b" + ], + "x-ms-correlation-request-id": [ + "d302919b-6f1f-4eee-94cd-2b2405cf482b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021014Z:d302919b-6f1f-4eee-94cd-2b2405cf482b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREV4TkRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:10:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "1c79c215-6ae3-4185-8c0d-d3f95dbd2228" + ], + "x-ms-correlation-request-id": [ + "1c79c215-6ae3-4185-8c0d-d3f95dbd2228" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021045Z:1c79c215-6ae3-4185-8c0d-d3f95dbd2228" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREV4TkRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:11:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "cd5dc384-f5ea-499f-a522-fdb49231b5f6" + ], + "x-ms-correlation-request-id": [ + "cd5dc384-f5ea-499f-a522-fdb49231b5f6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021116Z:cd5dc384-f5ea-499f-a522-fdb49231b5f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREV4TkRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:11:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "cb6ce977-314d-4538-9853-de9be4494cd4" + ], + "x-ms-correlation-request-id": [ + "cb6ce977-314d-4538-9853-de9be4494cd4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021146Z:cb6ce977-314d-4538-9853-de9be4494cd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TRVJWRVI6MkRTRUNVUklUWToyREFMRVJUOjJEVEVTVDoyRDExNDAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUUlZKV1JWSTZNa1JUUlVOVlVrbFVXVG95UkVGTVJWSlVPakpFVkVWVFZEb3lSREV4TkRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.25009.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Mar 2017 02:12:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "c5a3740b-0708-421e-9edc-8ffcbb637f1a" + ], + "x-ms-correlation-request-id": [ + "c5a3740b-0708-421e-9edc-8ffcbb637f1a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170311T021216Z:c5a3740b-0708-421e-9edc-8ffcbb637f1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunTestInNewResourceGroup": [ + "server-security-alert-test-1140" + ], + "RunTestInNewV12Server": [ + "server-security-alert-test-9156" + ], + "CreateDatabasesAsync": [ + "server-security-alert-test-7758", + "server-security-alert-test-6258" + ] + }, + "Variables": { + "SubscriptionId": "f28872d6-4a93-4bb1-84b9-aecb02b6af4c" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/SqlTestConstants.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/SqlTestConstants.cs index 5353f6e8ce82..76dfde233ec1 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/SqlTestConstants.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/SqlTestConstants.cs @@ -1,6 +1,8 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. +using Microsoft.Azure.Management.Sql.Models; + namespace Sql.Tests { public static class SqlTestConstants @@ -9,9 +11,9 @@ public static class SqlTestConstants public const string DefaultCollation = "SQL_Latin1_General_CP1_CI_AS"; // Default database edition - public const string DefaultDatabaseEdition = "Basic"; + public const string DefaultDatabaseEdition = DatabaseEdition.Basic; // Default elastic pool edition - public const string DefaultElasticPoolEdition = "Basic"; + public const string DefaultElasticPoolEdition = ElasticPoolEdition.Basic; } } diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs new file mode 100644 index 000000000000..d85bff000348 --- /dev/null +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs @@ -0,0 +1,166 @@ +using Microsoft.Azure.Management.Resources; +using Microsoft.Azure.Management.Sql; +using Microsoft.Azure.Management.Sql.Models; +using System; +using System.Linq; +using System.Threading.Tasks; +using Xunit; + +namespace Sql.Tests +{ + /// + /// Contains tests for the lifecycle of a Server security alert policy + /// + public class ThreatDetectionTest + { + [Fact] + public void TestThreatDetectionApis() + { + string testPrefix = "server-security-alert-test-"; + string testName = this.GetType().FullName; + + SqlManagementTestUtilities.RunTestInNewV12Server(testName, "TestThreatDetection", testPrefix, + (resClient, sqlClient, resourceGroup, server) => + { + // create some databases in server + Database[] databases = SqlManagementTestUtilities.CreateDatabasesAsync( + sqlClient, resourceGroup.Name, server, testPrefix, 2).Result; + +#if false // Commented out due to issues with async operation response + + // ******* Server threat detection ******* + ServerSecurityAlertPolicy defaultServerPolicyResponse = sqlClient.Servers.GetThreatDetectionPolicy(resourceGroup.Name, server.Name); + + // Verify that the initial Get request contains the default policy. + VerifyServerSecurityAlertPolicyInformation(GetDefaultServerSecurityAlertProperties(), defaultServerPolicyResponse); + + // Modify the policy properties, send and receive and see it its still ok + ServerSecurityAlertPolicy updatedServerPolicy = new ServerSecurityAlertPolicy + { + State = SecurityAlertPolicyState.Enabled, + EmailAccountAdmins = SecurityAlertPolicyEmailAccountAdmins.Enabled, + EmailAddresses = "testSecurityAlert@microsoft.com;testServerPolicy@microsoft.com", + DisabledAlerts = "Sql_Injection", + RetentionDays = 3, + StorageAccountAccessKey = "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + StorageEndpoint = "https://MyAccount.blob.core.windows.net/", + }; + + //Set security alert policy for server + sqlClient.Servers.CreateOrUpdateThreatDetectionPolicy(resourceGroup.Name, server.Name, updatedServerPolicy); + + //Get security alert server policy + var getUpdatedServerPolicyResponse = sqlClient.Servers.GetThreatDetectionPolicy(resourceGroup.Name, server.Name); + // Verify that the Get request contains the updated policy. + VerifyServerSecurityAlertPolicyInformation(updatedServerPolicy, getUpdatedServerPolicyResponse); + +#endif + + // ******* Database threat detection ******* + + string dbName = databases[0].Name; + DatabaseSecurityAlertPolicy defaultDatabasePolicyResponse = sqlClient.Databases.GetThreatDetectionPolicy(resourceGroup.Name, server.Name, dbName); + + // Verify that the initial Get request contains the default policy. + VerifyDatabaseSecurityAlertPolicyInformation(GetDefaultDatabaseSecurityAlertProperties(), defaultDatabasePolicyResponse); + + // Modify the policy properties, send and receive and see it its still ok + DatabaseSecurityAlertPolicy updatedDatabasePolicy = new DatabaseSecurityAlertPolicy + { + State = SecurityAlertPolicyState.Disabled, + EmailAccountAdmins = SecurityAlertPolicyEmailAccountAdmins.Enabled, + EmailAddresses = "testSecurityAlert@microsoft.com", + DisabledAlerts = "Access_Anomaly; Usage_Anomaly", + RetentionDays = 5, + StorageAccountAccessKey = "sdlfkjabc+sdlfkjsdlkfsjdfLDKFTERLKFDFKLjsdfksjdflsdkfD2342309432849328476458/3RSD==", + StorageEndpoint = "https://MyAccount.blob.core.windows.net/", + UseServerDefault = SecurityAlertPolicyUseServerDefault.Disabled, + }; + sqlClient.Databases.CreateOrUpdateThreatDetectionPolicy(resourceGroup.Name, server.Name, dbName, updatedDatabasePolicy); + + var getUpdatedDatabasePolicyResponse = sqlClient.Databases.GetThreatDetectionPolicy(resourceGroup.Name, server.Name, dbName); + + // Verify that the Get request contains the updated policy. + VerifyDatabaseSecurityAlertPolicyInformation(updatedDatabasePolicy, getUpdatedDatabasePolicyResponse); + }); + } + +#if false // Commented out due to issues with async operation response + + /// + /// Verify that the received properties match their expected values + /// + /// The expected value of the properties object + /// The properties object that needs to be checked + private void VerifyServerSecurityAlertPolicyInformation(ServerSecurityAlertPolicy expected, ServerSecurityAlertPolicy actual) + { + Assert.Equal(expected.State, actual.State); + Assert.Equal(expected.EmailAccountAdmins, actual.EmailAccountAdmins); + Assert.Equal(expected.DisabledAlerts, actual.DisabledAlerts); + Assert.Equal(expected.EmailAddresses, actual.EmailAddresses); + Assert.Equal(expected.StorageEndpoint, actual.StorageEndpoint); + Assert.Equal(string.Empty, actual.StorageAccountAccessKey); + Assert.Equal(expected.RetentionDays, actual.RetentionDays); + } + + /// + /// Returns a ServerSecurityAlertPolicy object that holds the default settings for a server security alert policy + /// + /// A ServerSecurityAlertPolicy object with the default server security alert policy settings + private ServerSecurityAlertPolicy GetDefaultServerSecurityAlertProperties() + { + ServerSecurityAlertPolicy properties = new ServerSecurityAlertPolicy + { + State = SecurityAlertPolicyState.New, + EmailAccountAdmins = SecurityAlertPolicyEmailAccountAdmins.Enabled, + DisabledAlerts = SecurityAlert.Preview, + EmailAddresses = string.Empty, + StorageEndpoint = string.Empty, + StorageAccountAccessKey = string.Empty, + RetentionDays = 0, + }; + + return properties; + } + +#endif + + /// + /// Verify that the received properties match their expected values + /// + /// The expected value of the properties object + /// The properties object that needs to be checked + private void VerifyDatabaseSecurityAlertPolicyInformation(DatabaseSecurityAlertPolicy expected, DatabaseSecurityAlertPolicy actual) + { + Assert.Equal(expected.State, actual.State); + Assert.Equal(expected.EmailAccountAdmins, actual.EmailAccountAdmins); + Assert.Equal(expected.DisabledAlerts, actual.DisabledAlerts); + Assert.Equal(expected.EmailAddresses, actual.EmailAddresses); + Assert.Equal(expected.StorageEndpoint, actual.StorageEndpoint); + Assert.Equal(string.Empty, actual.StorageAccountAccessKey); + Assert.Equal(expected.RetentionDays, actual.RetentionDays); + Assert.Equal(expected.UseServerDefault, actual.UseServerDefault); + } + + /// + /// Returns a SecurityAlertProperties object that holds the default settings for a database security alert policy + /// + /// A DatabaseSecurityAlertPolicy object with the default database security alert policy settings + private DatabaseSecurityAlertPolicy GetDefaultDatabaseSecurityAlertProperties() + { + DatabaseSecurityAlertPolicy properties = new DatabaseSecurityAlertPolicy + { + State = SecurityAlertPolicyState.New, + EmailAccountAdmins = SecurityAlertPolicyEmailAccountAdmins.Enabled, + DisabledAlerts = "Preview", + EmailAddresses = string.Empty, + UseServerDefault = SecurityAlertPolicyUseServerDefault.Enabled, + StorageEndpoint = string.Empty, + StorageAccountAccessKey = string.Empty, + RetentionDays = 0, + }; + + return properties; + } + } +} diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/Utilities/SqlManagementTestUtilities.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/Utilities/SqlManagementTestUtilities.cs index 5787807e46dd..3bd751c8ed22 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/Utilities/SqlManagementTestUtilities.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/Utilities/SqlManagementTestUtilities.cs @@ -234,7 +234,7 @@ public static void ValidateElasticPool(ElasticPool expected, ElasticPool actual, Assert.NotNull(actual.Type); } - public static void ValidateFirewallRule(ServerFirewallRule expected, ServerFirewallRule actual, string name) + public static void ValidateFirewallRule(FirewallRule expected, FirewallRule actual, string name) { Assert.NotNull(actual.Id); Assert.Equal(expected.StartIpAddress, actual.StartIpAddress); @@ -300,5 +300,30 @@ internal static void RunTestInNewV12Server(string suiteName, string testName, st test(resClient, sqlClient, resGroup, v12Server); }); } + + internal static Task CreateDatabasesAsync( + SqlManagementClient sqlClient, + string resourceGroupName, + Server server, + string testPrefix, + int count) + { + List> createDbTasks = new List>(); + for (int i = 0; i < count; i++) + { + string name = SqlManagementTestUtilities.GenerateName(testPrefix); + createDbTasks.Add(sqlClient.Databases.CreateOrUpdateAsync( + resourceGroupName, + server.Name, + name, + new Database() + { + Location = server.Location + })); + } + + // Wait for all databases to be created. + return Task.WhenAll(createDbTasks); + } } } diff --git a/src/ResourceManagement/SqlManagement/UpgradeLog.htm b/src/ResourceManagement/SqlManagement/UpgradeLog.htm new file mode 100644 index 0000000000000000000000000000000000000000..440107e06ed7d9284957287d7a09f346f653ae39 GIT binary patch literal 45212 zcmeI5X>%J#l7{>1Zp8ivSe&uwrFm1-;gK8!Pl+NWkrX9r=$POE9uhAR5HEZ7r|<6b zRLCZD*0rXXsm6e&5nU$4Y_`m=CNAz7Z6TOP2qqS%wdL7M1h3FuvM90xl z^epwN{KqV?)=!{u>~e7YuM@cDP>Ds57J(lbE8BhI^#|$`pn%! z`ma*ciF$+4OJJWw`;^$?x8&*$H*8B(xuV_SuQd3{;dB6$b1)FKo&vK%&jz9FWG1^@Ylo9e^a9fuDd{xq^HNJH{?|4#T)YAQ* zxikuW&(NcyvmL`7f7Y5r1o@Rlyn%Y+<{14vgHo-*tTlqoX2r+eEUox&tL=!#CJTek z8dt#CEMvj-Kosl4l8xSe$GDaiJ)*C>^e&$U_8Ka!MaJODD4I#f)_T(JX!4i^ZeGGk z*(-S-;^+yzK6g6jC?}4c7^z10xV@?#srT^E%r;+uc`3Sdo`5u;e6dsdA)5`vwsAR=wbnEF=LPJEB<~D~JdHlyN~Fe_yZ~AJ{4zOyr!v`j`3bU_ly}KZtG1+5 znz7rm-HgqvAS>p{2^)Fl@*MMxrB=s)W^-nJCAmj@H1o6BljgSajXpVvmOm@`4OT9{ zEN|U`BnSLt-}dlI0qlZYmzK?Rs zy{Dy*(G0>TX@Y$;fX0+0Tk)pWI254DLl@WMu@mo;O4qaoKS)65Em^g-7)P!&o0z;k zCa?4LAioYz%G>T8Xjk*ZSga;`CTy{Bo%eAM+)UF|uDgRQ}eYc)x( zX2+6-Fqf1CYJViw@*>Q-%`w95n|GAwmo|&EyoAHXduamm4+q>y+fyEo)C@HCmpSp$L;5Rva;qi36AE2!bBWM`YKjlQG4^y@1xDa-1k2B zy=GEe-=d`QhOD0MS(L4SAFueMt~CGjapU~n(2&E|X!-J%lHIo$)&5btvCjI^Ig9Mu zXQssw=6N#c;yInO7Wt*W7Pp=t!CnG>56-pf*?L`ApL26)6@4D_X-zkNJDfAUHO+X{ zsJ2*<$4;6g#GHI2*w#usXA6vRi#$oQ>;OUYB%KEhCdm|ZA5GR=zs$$h#LQ=srjSNa zS<^6rp?E;PIl++Yg;vkveNue8`!eY1mbUw%il=TqdC5N#jh}0bJ!#-HrQ`fDex^$V zugNTh#_$(7qj;j8eR6QWV9UdtSgXJ01;^)hHbW8?d80Z*DZIr=Nmchbc!@0U($53u z%WIWjB>H>KG2SZAUPHsM&SZAmujK_x>&KE`liYH%4L@#;>soPXW$g61(PxsX-+UwQ zSI3|KpjLCAYL7Oo(~RBvilf9P{MwD3!O%Lr`k{Ec={$K> zL5ie7btQ=sM>Qh1oEIF*$WPki$z#0LzjMs5^ZJ00Tm^_@dDo+63wUm!34SlV>iY)H%F@Iy0aVn^at?aryf>81~&lDZWD)Y{9{KU;h z_A^V)61UMB$9bw$_c^D`CuJ%H>3f1T(CS&M^LP(Ywk52N2AKKAq#x(Cyz4>erOYB_ zD`*8)bI|0yd@`8bmNJ;M=Hk~xpExCwTHdjA z`3&c_wk{7tV^J|vJxzK!$4&>DAF}OAog&pklzL8SA5{tS6N`?R9aOfD^1Wnt1y_{R zh_p3u#ZNW=@Rrw?l1~+<`JuDc%G)crx{8}9t5N!-z$%6?7fyCA?O~Z?9-ggp?m8V5 zFjg7$SdkXXyUDBHyj&Y?|H&B9=RNR_=7oXn)Y zd;Yb@PwMEqwW$|xOwvYVLpIpRH-d11q3$RD7P$M4^GkkjD8B(TN%$zw7U9PmcvqzE zIp0OjH#nYA=M&>?geN<|d{5aadb&%gF;@AD(Fbr{AzrcqPnA`);XI{}l-{82DOwOF ztN3`AJS`#vC7?|4EmOY&lnw6O@I)TjFy7!e{_Y;+2(oz%&vHL3g-k} znThL;JKMk?0QO5t>``usvobwCrQQ*kZc}oWyNlqz3xt=Hp8@s*+J8a6Kl0>?nvZFH zhMEHo-xuIBLvP3E!Dm|hNZm)Y@CC>d$d0nk7QtAxjyXS|w^vYg622*Gd!Nq*tt?Vk z@TF%S0$~SSo&#kLC~NfNBQ=&e8|ORB?^|eoNzYcf`?^4Qo`y=L#dTDF?^Xu9K1__mUkBTp|aQsAvvv&Wt%@kjS0 zyyPUMwC7RCQ>y0)eXAZt5pA6GD9UL5H7wW$c7GZTSmbvett)#nhsGaAi@rziE}$b9 zurC*A-4|E^%>a(kv9kAv{666K5t@C)m7b%VY>en|h~CzEu55>_nz9Bfz}K4N5$%rg zRPP2YgTV>sk7-}^q?3iq37YwUQuFBiFt�B6y;K?qqIq&Y|2q z6dG}*26(yzwZ>^p9>FZo%HX<;Z4(tQ!RG}qRxgt6H&{Mf(>a)1G5s#o1;}L-~H0LTh@{O|svM*QYT+L}^ zo37FMn%houwS?BzY++DRDfI3eH1L|MDee3MJ$=Z% z4bB&_9WUJRIcE!KTD=K)iRL{*o96tAGS_JHMamp-XPPrv zjQ4IVzj1bP0{b>g4>X(8y!8uqQr?K>h1Yy;=-(;rf8^N>mUS8E1Js$~{s0<5v+OHu z&N`TAO{)yeK4Co`U{zj&(*DvZpih>AJ&BP}u^PHos(I>71Z<01-a}+&00nQgn zya&=LWhy)`LC-hTC_#-;`f}m!El@*GWaZa@F+i)w)DoT*dj1hO*Yu|Xtp)WXc$9di zIFjb|yPPY!@|GvdKz~b}YcSp7d662jb{}c!hG+X6Khxd>6xpJTe5Ut6dqY|K6nU~j zjR#Qm9Gt{SeV*Q-eGDrr-LZ`Ueo_zSvHiXI?O!ue9%QFy6aRQNv4~Dj+r-akV?{9E zqD2)YUqLI*q5CGBt$4@v6!)c-r`+!n8dLKrSvkc6x6z^F*pX?pt>&kS3o1UUd20nN ze~n(>K-+Fnwt^)&baNuTkMoW@Gn6f&pJ%aJhiLkJbnXS#Kw5bR*ouKFVmZr`HK&c= zVxz`r@gX)ut0c!jpTJsPgRf?D>tOYT+Pe<+D798;R~AQe;dhi!4$>k$oT2<2mL;@X<+ec;|CAJIs= zb8G-vG4Y44RmB=~?*=UO_QM5jJ%VcU;9myPHTM+(-=(z^+S%vs9(35J_wo3Ng=P6`q-s61!q`#v zW#bwPXsuHyt~FTI@axk4sMTwYcUy(lh>&k83fNk9sFB_aWf(3>mUREpWzyK{yMN~) zz5brAZ!7Y)F0J3JzKG`b27A2!bM#58^m$!dz77Pf%)zzDV;rL{vw zkI&Oo=8klfYHE~7_XWMC_ju(?Nj~)!gR-#EgSS<_k$}5bxxb`#Lgz87r-%% z*FVAc7qZKYLQ|Ah|0P|D{FKmLdMC~#qgkpLHf9CBW4F9|*nA&-4?eY@4uOO0th|s{ z&YpNIq#YG`(R=63P%keH)3nrR(;A$OIdL(Ij={eg0(;dugY(Lf_E_JCqIomAg;Om& ze&&8s&OAS}@hCX1+U^Z{%Tf7it-?`nvb33}r;gcn(@JKS$$pxJN44fMk5+4_%GWu? zi`O1_qFj>Srd{IND_ci4GhY2jO;X(?tEaze>x8Uv*LnTrIaF)h)z_oh<4*PRj{m#R zqXjgvba8cGyQg83k{|Sz?O&=fsk|9^7aEP)4Ze1^rp?ALt5x$jH4o9wKHe*gd!4mBMjseW-;+K($a0cZC<)fcCu*fTPhGm(%Z?hmh#ZTuE65E zc&8YoIA;9TTv2zD-1g6sa^hzw+L0m5TEb2dNf^yx>-D(h<9iu5TQZDfc#MDhdRB&) zhVu{6Cce=o{nhuM^k|Sc-xR+e;PoJ}&rNe0+O{U-MqYZT$btXg~Kfp0C^r z@VS#MMRt_&VgGxgTIr`ohq0P%rgwm`R<*Wk>rlc|@@K~bcO2%9o!P2b8oSp{&wIZr ztZBt9r`k!D6PAtOY86}=tsc8-h*qL8tdMh8&VUy$)fi?nzdZ|Xx@2S6NvoIzJ6$pk zTNL)Z^hfEfov$92l)YmAMpQv^B^ip^O0Q{sPS@$#Yah8l7S~uo zx@}hltxcUfDX;fTm}{P^W4Z zznQvuBtNd<>tj<}#+$*V^_q7*GMed4Z&dugqayBAv@=5DaK5F{6345ZkrVg5y5~K$ zs@vkd?2V{zXGDoF%CFPx-Yk(;$9+zBr^Z`$E8ps9%*MJ?V>OHZ-=aN?kK}9$^~QN; z#<|Un!i-w0H_vWoO!2#U#!)rQ%^DE9DSy=%^yH;8^5P>e)lnPCP5q~N#4z4crDD@$>5H{JGU(%Q#J@5{#h5yePt$M?q3{B-@*+nT07ldvWI9?Ew}*rVR{Q8Zie4E^`HBHpd8O>6Bg$q#$SBbjFr zf7|OPX9a7=X+!i=XMT;txN2)fI@eBQ)iRXEV~RfRrdC+AY7k#1O4kV)hdzp}SiSZy zk(8-jwVz(KQVb}pK$?}e6#)Oni6~qz#vj%a4tR_DS>1Amfl6pSDoz`%JcKp0dhNtl zidNv6{_)sg)n3y|u81W2sF=O77=(Lz?Q1DPjruE9$#UwQU;7GDU_FadF=%P)gW_P8 z8B?#{zL%}6@`yfKiHKuRubqHd;HY|1e+8r-P1R~rceP`+kT_aYj=s^7SIRERIoZBuRxM#?fE>wke#4B9=$uRnYN8H`@e(aUYvUW>3~woQ?~z? z)Be@^Kc4Ef0M8XZIy#l|8Rq(WmGd{Y%yeZ~u>z`Knbs{R3iBFL`P_ zrBsp67@tvgZJ1%DeT3CN?TkFgJ_3(9j&i2|qtNb>gTS0*X9MkGKEt_c&2cOud1-6v zB{+;qoyGM}dW6)9HN~YcYmFt09n*&Gz-m@ww$sL+U8}Z3n@(%qc5vyYc5Vl++B2SvzZrM<|;q-RYUTa#=Gev7sy8{eW5&v=**zp_^K> zy0u36YP~o~FHTZFPU5vptsFW3PNr#{`X!syKJ_8|*|kvpo_AUs)o-brS}7heu8%>d z{H&}N>ObpwU_B44Sr06kftQ^1S7&G?cO95cYu1l=&-|`P>E1Wip3lhuQpQqN4sQBQ_N+WItuv%E^gMR@=NIKN`t@?{ zr;_ZM`SS5y`1J02G9ND8$0P)muFf{iyH8oGS*G>&XYv#%koTmFv}!t}_mwHv&3N zQ~8a4mSCCK?aTnm&?BCCZhH|a=g;;tRHkmo4Ls-mXQG+fwOb{QIoszv Date: Fri, 17 Mar 2017 11:11:34 -0700 Subject: [PATCH 13/56] Add preview label --- .../Microsoft.Azure.Management.ContainerRegistry/project.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json index 95c434d19a41..03311b2e0a75 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json @@ -1,5 +1,5 @@ { - "version": "1.2.0", + "version": "1.2.0-preview", "description": "Microsoft Azure Container Registry Management Library", "authors": [ "Microsoft" ], From d8f24c613f1e48df020f8169468c01dc140f7bd3 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Fri, 17 Mar 2017 14:56:59 -0700 Subject: [PATCH 14/56] #WAF added autogenerated files --- .../ApplicationGatewaysOperations.cs | 16 ++-- .../BgpServiceCommunitiesOperations.cs | 2 +- ...essRouteCircuitAuthorizationsOperations.cs | 8 +- .../ExpressRouteCircuitPeeringsOperations.cs | 8 +- .../ExpressRouteCircuitsOperations.cs | 20 ++--- .../ExpressRouteServiceProvidersOperations.cs | 2 +- .../Generated/LoadBalancersOperations.cs | 10 +-- .../LocalNetworkGatewaysOperations.cs | 8 +- ...icationGatewayFirewallDisabledRuleGroup.cs | 73 +++++++++++++++++++ ...ewayWebApplicationFirewallConfiguration.cs | 56 +++++++++++++- .../Generated/NetworkInterfacesOperations.cs | 14 ++-- .../Generated/NetworkManagementClient.cs | 2 +- .../NetworkSecurityGroupsOperations.cs | 10 +-- .../Generated/NetworkWatchersOperations.cs | 26 +++---- .../Generated/PacketCapturesOperations.cs | 12 +-- .../Generated/PublicIpAddressesOperations.cs | 10 +-- .../Generated/RouteFilterRulesOperations.cs | 10 +-- .../Generated/RouteFiltersOperations.cs | 12 +-- .../Generated/RouteTablesOperations.cs | 10 +-- .../Generated/RoutesOperations.cs | 8 +- .../Generated/SecurityRulesOperations.cs | 8 +- .../Generated/SubnetsOperations.cs | 8 +- .../Generated/UsagesOperations.cs | 2 +- ...tualNetworkGatewayConnectionsOperations.cs | 14 ++-- .../VirtualNetworkGatewaysOperations.cs | 18 ++--- .../VirtualNetworkPeeringsOperations.cs | 8 +- .../Generated/VirtualNetworksOperations.cs | 12 +-- 27 files changed, 256 insertions(+), 131 deletions(-) create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs index 1304539a2f17..eac66811a1e3 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs @@ -116,7 +116,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -328,7 +328,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -506,7 +506,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -764,7 +764,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -943,7 +943,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1159,7 +1159,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1324,7 +1324,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1497,7 +1497,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs index fbf6072faf89..0f239babdefb 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs @@ -80,7 +80,7 @@ internal BgpServiceCommunitiesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs index 415877929d59..a7915b341560 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs @@ -127,7 +127,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -352,7 +352,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -551,7 +551,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -736,7 +736,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs index 57bc445de11a..0bb703b7a23c 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs @@ -126,7 +126,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -734,7 +734,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs index 25af2d5fa863..6b52e1e9fb92 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs @@ -116,7 +116,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -423,7 +423,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -624,7 +624,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -813,7 +813,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -991,7 +991,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1178,7 +1178,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1354,7 +1354,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1588,7 +1588,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1801,7 +1801,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2014,7 +2014,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs index d14c8cb79dac..3fff7273ca3e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs @@ -80,7 +80,7 @@ internal ExpressRouteServiceProvidersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs index 13b32fbe0c2e..9204f6baaea7 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs @@ -119,7 +119,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs index 482a33ce2fcc..5b990240d851 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs @@ -120,7 +120,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -533,7 +533,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -749,7 +749,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs new file mode 100644 index 000000000000..eb9e127d9bbd --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs @@ -0,0 +1,73 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Allows to disable rules within a rule group or an entire rule group. + /// + public partial class ApplicationGatewayFirewallDisabledRuleGroup + { + /// + /// Initializes a new instance of the + /// ApplicationGatewayFirewallDisabledRuleGroup class. + /// + public ApplicationGatewayFirewallDisabledRuleGroup() { } + + /// + /// Initializes a new instance of the + /// ApplicationGatewayFirewallDisabledRuleGroup class. + /// + /// The name of the rule group that will be + /// disabled. + /// The list of rules that will be disabled. If + /// empty, all rules of the rule group will be disabled. + public ApplicationGatewayFirewallDisabledRuleGroup(string ruleGroupName, IList rules = default(IList)) + { + RuleGroupName = ruleGroupName; + Rules = rules; + } + + /// + /// Gets or sets the name of the rule group that will be disabled. + /// + [JsonProperty(PropertyName = "ruleGroupName")] + public string RuleGroupName { get; set; } + + /// + /// Gets or sets the list of rules that will be disabled. If empty, all + /// rules of the rule group will be disabled. + /// + [JsonProperty(PropertyName = "rules")] + public IList Rules { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (RuleGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RuleGroupName"); + } + } + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs index e0f7a766596c..2cc6b90e6ed1 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs @@ -11,7 +11,10 @@ namespace Microsoft.Azure.Management.Network.Models using Azure; using Management; using Network; + using Rest; using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -34,10 +37,18 @@ public ApplicationGatewayWebApplicationFirewallConfiguration() { } /// Web application firewall mode. Possible /// values are: 'Detection' and 'Prevention'. Possible values include: /// 'Detection', 'Prevention' - public ApplicationGatewayWebApplicationFirewallConfiguration(bool enabled, string firewallMode = default(string)) + /// The type of the web application firewall + /// rule set. Possible values are: 'OWASP'. + /// The version of the rule set + /// type. + /// The disabled rule groups. + public ApplicationGatewayWebApplicationFirewallConfiguration(bool enabled, string firewallMode, string ruleSetType, string ruleSetVersion, IList disabledRuleGroups = default(IList)) { Enabled = enabled; FirewallMode = firewallMode; + RuleSetType = ruleSetType; + RuleSetVersion = ruleSetVersion; + DisabledRuleGroups = disabledRuleGroups; } /// @@ -55,14 +66,55 @@ public ApplicationGatewayWebApplicationFirewallConfiguration() { } [JsonProperty(PropertyName = "firewallMode")] public string FirewallMode { get; set; } + /// + /// Gets or sets the type of the web application firewall rule set. + /// Possible values are: 'OWASP'. + /// + [JsonProperty(PropertyName = "ruleSetType")] + public string RuleSetType { get; set; } + + /// + /// Gets or sets the version of the rule set type. + /// + [JsonProperty(PropertyName = "ruleSetVersion")] + public string RuleSetVersion { get; set; } + + /// + /// Gets or sets the disabled rule groups. + /// + [JsonProperty(PropertyName = "disabledRuleGroups")] + public IList DisabledRuleGroups { get; set; } + /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { + if (FirewallMode == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "FirewallMode"); + } + if (RuleSetType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RuleSetType"); + } + if (RuleSetVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RuleSetVersion"); + } + if (DisabledRuleGroups != null) + { + foreach (var element in DisabledRuleGroups) + { + if (element != null) + { + element.Validate(); + } + } + } } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs index 40a02eb86e16..525d96aceb34 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs @@ -119,7 +119,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1363,7 +1363,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1538,7 +1538,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1757,7 +1757,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1951,7 +1951,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs index c391afbcc5bb..d67a6eaf2fbd 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs @@ -492,7 +492,7 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "this.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs index aeca4d060053..e19347f56e70 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs @@ -119,7 +119,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -331,7 +331,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -514,7 +514,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -703,7 +703,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -880,7 +880,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs index 070dc4e02b9e..9a5badd7b810 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs @@ -101,7 +101,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -320,7 +320,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -529,7 +529,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -707,7 +707,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -908,7 +908,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1282,7 +1282,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1462,7 +1462,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1692,7 +1692,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1922,7 +1922,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2152,7 +2152,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2382,7 +2382,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2612,7 +2612,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2842,7 +2842,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs index d0991beed77d..f4c6230ac541 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs @@ -129,7 +129,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -400,7 +400,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -612,7 +612,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -819,7 +819,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -993,7 +993,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1170,7 +1170,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs index a7824035e5a0..b3c24481d2a9 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs @@ -119,7 +119,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs index d0d79d3e759c..df48c96625a5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs @@ -126,7 +126,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -378,7 +378,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -576,7 +576,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -768,7 +768,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { routeFilterRuleParameters = new RouteFilterRule(); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1007,7 +1007,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { routeFilterRuleParameters = new PatchRouteFilterRule(); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs index 2e88eb338d9e..b1503a90165e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs @@ -119,7 +119,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -361,7 +361,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -539,7 +539,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -726,7 +726,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -901,7 +901,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1127,7 +1127,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs index cdf2aeeb916f..f932e1b31272 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs @@ -119,7 +119,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -336,7 +336,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -514,7 +514,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs index 49913de1c6f5..3c1c572df681 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs @@ -126,7 +126,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -350,7 +350,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -548,7 +548,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -736,7 +736,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs index 8fce4b56a92e..32f094919c35 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs @@ -126,7 +126,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -738,7 +738,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs index e6ba2ddfeaac..011c231e0b09 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs @@ -129,7 +129,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -358,7 +358,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -740,7 +740,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs index 7565dd077bdd..51bf83fdccd5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs @@ -94,7 +94,7 @@ internal UsagesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs index c17abfa1ae4e..c0cfd3175707 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs @@ -121,7 +121,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -368,7 +368,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -790,7 +790,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1006,7 +1006,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1189,7 +1189,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1423,7 +1423,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs index eb992e20de22..129061612af9 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs @@ -120,7 +120,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -561,7 +561,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -848,7 +848,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1064,7 +1064,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1237,7 +1237,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1439,7 +1439,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1639,7 +1639,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1841,7 +1841,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs index e9249a583ea6..308efbfb5b0b 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs @@ -126,7 +126,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -734,7 +734,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs index 8dc887aadf03..b2fe8e257173 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs @@ -119,7 +119,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -707,7 +707,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -903,7 +903,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1078,7 +1078,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; From 4d7bbbc3957f491e7f9c8959604ee1ee84647778 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Fri, 17 Mar 2017 15:34:26 -0700 Subject: [PATCH 15/56] #WAF changed version in rest API calls of Network/SessionRecords. --- .../NetworkWatcherApiTest.json | 34 +- .../NextHopApiTest.json | 30 +- .../PacketCaptureApiTest.json | 86 +-- .../EmptyRouteTableTest.json | 40 +- .../RouteTableApiTest.json | 72 +- .../SubnetRouteTableTest.json | 42 +- .../RoutesApiTest.json | 98 +-- .../RoutesHopTypeTest.json | 82 +- .../TopologyApiTest.json | 14 +- .../TroubleshootApiTest.json | 308 ++++---- .../VerifyIpFlowApiTest.json | 36 +- .../ViewNsgRuleApiTest.json | 36 +- .../ApplicationGatewayApiTest.json | 364 ++++----- .../CheckDnsAvailabilityTest.json | 4 +- .../ExpandResourceTest.json | 224 +++--- ...ocalNettworkGatewayOperationsApisTest.json | 34 +- ...NetworkGatewayActiveActiveFeatureTest.json | 730 +++++++++--------- .../VirtualNetworkGatewayBgpRouteApiTest.json | 650 ++++++++-------- ...rkGatewayConnectionOperationsApisTest.json | 202 ++--- ...ConnectionSharedKeyOperationsApisTest.json | 194 ++--- ...alNetworkGatewayConnectionWithBgpTest.json | 384 ++++----- ...rtualNetworkGatewayOperationsApisTest.json | 256 +++--- ...alNetworkGatewayP2SOperationsApisTest.json | 224 +++--- .../CreateEmptyLoadBalancer.json | 32 +- .../LoadBalancerApiNicAssociationTest.json | 204 ++--- .../LoadBalancerApiTest.json | 70 +- ...BalancerApiTestWithDistributionPolicy.json | 94 +-- .../LoadBalancerApiTestWithDynamicIp.json | 70 +- .../LoadBalancerApiTestWithStaticIp.json | 70 +- .../LoadBalancerNatPoolTest.json | 72 +- .../LoadBalancerOutboundNatRuleTest.json | 62 +- .../UpdateLoadBalancerRule.json | 76 +- ...rtMultiIpConfigOnDifferentSubnetFails.json | 28 +- .../NetworkInterfaceApiTest.json | 100 +-- .../NetworkInterfaceApiTestIPv6.json | 100 +-- .../NetworkInterfaceDnsSettingsTest.json | 62 +- ...orkInterfaceDnsSettingsTestIdnsSuffix.json | 62 +- ...faceEffectiveNetworkSecurityGroupTest.json | 52 +- ...etworkInterfaceEnableIPForwardingTest.json | 76 +- .../NetworkInterfaceMultiIpConfigTest.json | 100 +-- ...workInterfaceNetworkSecurityGroupTest.json | 88 +-- ...nterfaceWithAcceleratedNetworkingTest.json | 24 +- .../NetworkSecurityGroupApiTest.json | 44 +- .../NetworkSecurityGroupWithRulesApiTest.json | 36 +- .../PublicIpAddressApiTest.json | 26 +- .../PublicIpAddressApiTestIPv6.json | 74 +- ...ApiTestWithIdletTimeoutAndReverseFqdn.json | 36 +- .../SecurityRuleWithRulesApiTest.json | 82 +- .../SubnetApiTest.json | 34 +- .../SubnetResourceNavigationLinksTest.json | 24 +- .../Networks.Tests.UsageTests/UsageTest.json | 24 +- .../VirtualNetworkPeeringApiTest.json | 106 +-- .../VirtualNetworkApiTest.json | 44 +- ...NetworkCheckIpAddressAvailabilityTest.json | 62 +- .../VirtualNetworkPeeringTest.json | 104 +-- 55 files changed, 3141 insertions(+), 3141 deletions(-) diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json index 483ad99cb2b6..1f5782cd10a0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -112,7 +112,7 @@ "9351b98e-77c4-44e2-bf8e-d990ae99baad" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/9351b98e-77c4-44e2-bf8e-d990ae99baad?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/9351b98e-77c4-44e2-bf8e-d990ae99baad?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -130,8 +130,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,8 +195,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -257,8 +257,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -316,8 +316,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -378,8 +378,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -412,7 +412,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -425,7 +425,7 @@ "fb2a42c3-0444-493f-a0fa-9621aa519be3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,8 +443,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmIyYTQyYzMtMDQ0NC00OTNmLWEwZmEtOTYyMWFhNTE5YmUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmIyYTQyYzMtMDQ0NC00OTNmLWEwZmEtOTYyMWFhNTE5YmUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json index 2a1a14579d64..e5e91146f35e 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json @@ -665,8 +665,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -715,7 +715,7 @@ "e5869a87-83b3-42bd-bf33-e9f605fae491" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e5869a87-83b3-42bd-bf33-e9f605fae491?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e5869a87-83b3-42bd-bf33-e9f605fae491?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +733,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkInterfaces/azsmnet8559?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODU1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkInterfaces/azsmnet8559?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODU1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Compute/virtualMachines/azsmnet7284\",\r\n \"sourceIPAddress\": \"10.17.3.4\",\r\n \"destinationIPAddress\": \"10.1.3.6\"\r\n}", "RequestHeaders": { @@ -906,7 +906,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -919,7 +919,7 @@ "9cc07329-1fde-4065-a053-e40cec04b207" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -937,8 +937,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Compute/virtualMachines/azsmnet7284\",\r\n \"sourceIPAddress\": \"10.17.3.4\",\r\n \"destinationIPAddress\": \"12.11.12.14\"\r\n}", "RequestHeaders": { @@ -980,7 +980,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -993,7 +993,7 @@ "7631bf51-f6c8-44ce-b10f-eb7a4f2b911a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,8 +1011,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/routeTables/azsmnet8754RT?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9yb3V0ZVRhYmxlcy9henNtbmV0ODc1NFJUP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/routeTables/azsmnet8754RT?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9yb3V0ZVRhYmxlcy9henNtbmV0ODc1NFJUP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json index c41050e1476a..5004e272b142 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json @@ -1047,8 +1047,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -1097,7 +1097,7 @@ "d475e169-eb3a-4ff1-85fd-1034f270cd84" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/d475e169-eb3a-4ff1-85fd-1034f270cd84?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/d475e169-eb3a-4ff1-85fd-1034f270cd84?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1115,8 +1115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Compute/virtualMachines/azsmnet2053\",\r\n \"storageLocation\": {\r\n \"filePath\": \"C:\\\\tmp\\\\Capture.cap\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1168,7 +1168,7 @@ "538eea79-b0ec-4dba-92e0-7c509ef0b7ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1186,8 +1186,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUzOGVlYTc5LWIwZWMtNGRiYS05MmUwLTdjNTA5ZWYwYjdlYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUzOGVlYTc5LWIwZWMtNGRiYS05MmUwLTdjNTA5ZWYwYjdlYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1242,8 +1242,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1366,8 +1366,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1403,7 +1403,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1416,7 +1416,7 @@ "ec9bb288-408a-41d0-ae84-f94fd6fedf27" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,8 +1434,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1496,8 +1496,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VjOWJiMjg4LTQwOGEtNDFkMC1hZTg0LWY5NGZkNmZlZGYyNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VjOWJiMjg4LTQwOGEtNDFkMC1hZTg0LWY5NGZkNmZlZGYyNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1552,8 +1552,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Compute/virtualMachines/azsmnet2053\",\r\n \"storageLocation\": {\r\n \"filePath\": \"C:\\\\tmp\\\\Capture.cap\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1605,7 +1605,7 @@ "4b310bbd-c281-4968-9e9a-b77e26e00f6e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1623,8 +1623,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiMzEwYmJkLWMyODEtNDk2OC05ZTlhLWI3N2UyNmUwMGY2ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiMzEwYmJkLWMyODEtNDk2OC05ZTlhLWI3N2UyNmUwMGY2ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1679,8 +1679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1738,8 +1738,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1800,8 +1800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1862,8 +1862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/stop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3N0b3A/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3N0b3A/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1896,7 +1896,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1909,7 +1909,7 @@ "c0703af9-ffc0-44bb-a758-a3ad480b26ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1927,8 +1927,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MwNzAzYWY5LWZmYzAtNDRiYi1hNzU4LWEzYWQ0ODBiMjZlYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MwNzAzYWY5LWZmYzAtNDRiYi1hNzU4LWEzYWQ0ODBiMjZlYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1983,8 +1983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2017,7 +2017,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2030,7 +2030,7 @@ "8702f3e3-43b6-4375-91cb-2702b45111c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2048,8 +2048,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3MDJmM2UzLTQzYjYtNDM3NS05MWNiLTI3MDJiNDUxMTFjNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3MDJmM2UzLTQzYjYtNDM3NS05MWNiLTI3MDJiNDUxMTFjNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json index 2bd834c02f21..adeee1464ac0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "35da7f93-8db2-43da-aaee-cbee33c4e92f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzVkYTdmOTMtOGRiMi00M2RhLWFhZWUtY2JlZTMzYzRlOTJmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzVkYTdmOTMtOGRiMi00M2RhLWFhZWUtY2JlZTMzYzRlOTJmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -510,7 +510,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -523,7 +523,7 @@ "2b8e410d-5522-437c-8e5f-16426f3e2b5a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -541,8 +541,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmI4ZTQxMGQtNTUyMi00MzdjLThlNWYtMTY0MjZmM2UyYjVhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmI4ZTQxMGQtNTUyMi00MzdjLThlNWYtMTY0MjZmM2UyYjVhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json index 7d7c856175ba..821324b2d08f 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet9901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "55728bff-dfad-4ff4-8aad-4ed50245308d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9901\",\r\n \"etag\": \"W/\\\"77513881-83f7-4b85-b66c-f2a740b9c821\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082/routes/azsmnet9901\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet640\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"77513881-83f7-4b85-b66c-f2a740b9c821\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -240,7 +240,7 @@ "5fc2c695-c0aa-4819-8ab7-2398c2fc9815" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -258,8 +258,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet640\",\r\n \"etag\": \"W/\\\"c9fdeab8-48f9-4c38-92b0-49b62d549d9b\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082/routes/azsmnet640\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"c9fdeab8-48f9-4c38-92b0-49b62d549d9b\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -313,7 +313,7 @@ "b7ab5b3a-9865-44ad-b846-198e40e424bf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,8 +331,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU3MjhiZmYtZGZhZC00ZmY0LThhYWQtNGVkNTAyNDUzMDhkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU3MjhiZmYtZGZhZC00ZmY0LThhYWQtNGVkNTAyNDUzMDhkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -386,8 +386,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -444,8 +444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,8 +508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -566,8 +566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -630,8 +630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -688,8 +688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,8 +752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjMmM2OTUtYzBhYS00ODE5LThhYjctMjM5OGMyZmM5ODE1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjMmM2OTUtYzBhYS00ODE5LThhYjctMjM5OGMyZmM5ODE1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -807,8 +807,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhYjViM2EtOTg2NS00NGFkLWI4NDYtMTk4ZTQwZTQyNGJmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhYjViM2EtOTg2NS00NGFkLWI4NDYtMTk4ZTQwZTQyNGJmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -895,7 +895,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -908,7 +908,7 @@ "0b9039be-45a5-44ea-a8b3-7fe457a1cd33" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -926,8 +926,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGI5MDM5YmUtNDVhNS00NGVhLWE4YjMtN2ZlNDU3YTFjZDMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGI5MDM5YmUtNDVhNS00NGVhLWE4YjMtN2ZlNDU3YTFjZDMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -981,8 +981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json index 024c07448d3a..6b8c7b0306d1 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet1701\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "db718a7a-2819-4a41-bffb-5feb27c54cd5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGI3MThhN2EtMjgxOS00YTQxLWJmZmItNWZlYjI3YzU0Y2Q1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGI3MThhN2EtMjgxOS00YTQxLWJmZmItNWZlYjI3YzU0Y2Q1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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 \"routeTable\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616\"\r\n }\r\n },\r\n \"name\": \"azsmnet5364\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -478,7 +478,7 @@ "3effea22-c97a-441b-bb82-cfb69337e2da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,8 +496,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2VmZmVhMjItYzk3YS00NDFiLWJiODItY2ZiNjkzMzdlMmRhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2VmZmVhMjItYzk3YS00NDFiLWJiODItY2ZiNjkzMzdlMmRhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926/subnets/azsmnet5364?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2L3N1Ym5ldHMvYXpzbW5ldDUzNjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926/subnets/azsmnet5364?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2L3N1Ym5ldHMvYXpzbW5ldDUzNjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json index c902904a598a..d98a8c9107da 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet8055\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "76a65d58-ba0b-4e45-bfe8-c136db94de75" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzZhNjVkNTgtYmEwYi00ZTQ1LWJmZTgtYzEzNmRiOTRkZTc1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzZhNjVkNTgtYmEwYi00ZTQ1LWJmZTgtYzEzNmRiOTRkZTc1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet7452\"\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "e16412d4-be93-44d3-adb5-c57c17c4b04b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2NDEyZDQtYmU5My00NGQzLWFkYjUtYzU3YzE3YzRiMDRiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2NDEyZDQtYmU5My00NGQzLWFkYjUtYzU3YzE3YzRiMDRiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -953,7 +953,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -966,7 +966,7 @@ "7ceea8ac-c52e-4ae5-9538-04668b6876d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,8 +984,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlZWE4YWMtYzUyZS00YWU1LTk1MzgtMDQ2NjhiNjg3NmQ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlZWE4YWMtYzUyZS00YWU1LTk1MzgtMDQ2NjhiNjg3NmQ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1039,8 +1039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1072,7 +1072,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1085,7 +1085,7 @@ "eb05162d-43fa-4257-a64e-cf2042a84145" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1103,8 +1103,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIwNTE2MmQtNDNmYS00MjU3LWE2NGUtY2YyMDQyYTg0MTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIwNTE2MmQtNDNmYS00MjU3LWE2NGUtY2YyMDQyYTg0MTQ1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1158,8 +1158,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1191,7 +1191,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1204,7 +1204,7 @@ "1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1222,8 +1222,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE5YTQwMTMtYTllZi00ZjIxLTk3M2MtN2U3ZWM5MWUzZWY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE5YTQwMTMtYTllZi00ZjIxLTk3M2MtN2U3ZWM5MWUzZWY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1277,8 +1277,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json index 8760a80a1ab2..02ee66eae483 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet9157\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlYzQyMWItZDFiOC00MzIwLThjNmItOWZmNTRjMWM4ZmE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlYzQyMWItZDFiOC00MzIwLThjNmItOWZmNTRjMWM4ZmE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet9228\"\r\n}", "RequestHeaders": { @@ -478,7 +478,7 @@ "bc0aef85-92ff-4497-91b2-395dbe161889" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,8 +496,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmMwYWVmODUtOTJmZi00NDk3LTkxYjItMzk1ZGJlMTYxODg5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmMwYWVmODUtOTJmZi00NDk3LTkxYjItMzk1ZGJlMTYxODg5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n },\r\n \"name\": \"azsmnet9790\"\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "47dc13fe-9612-4fd4-87bd-175568585ebe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDdkYzEzZmUtOTYxMi00ZmQ0LTg3YmQtMTc1NTY4NTg1ZWJlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDdkYzEzZmUtOTYxMi00ZmQ0LTg3YmQtMTc1NTY4NTg1ZWJlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"nextHopType\": \"None\"\r\n },\r\n \"name\": \"azsmnet4509\"\r\n}", "RequestHeaders": { @@ -844,7 +844,7 @@ "6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -862,8 +862,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmI2NjUwYTctM2IwZS00NmEyLWJiOGItY2JkMmRlMWQwZmUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmI2NjUwYTctM2IwZS00NmEyLWJiOGItY2JkMmRlMWQwZmUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -917,8 +917,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -975,8 +975,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1008,7 +1008,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1021,7 +1021,7 @@ "c12dc6cd-d1e1-4085-8d86-3eac68fdc33d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1039,8 +1039,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzEyZGM2Y2QtZDFlMS00MDg1LThkODYtM2VhYzY4ZmRjMzNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzEyZGM2Y2QtZDFlMS00MDg1LThkODYtM2VhYzY4ZmRjMzNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1094,8 +1094,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json index cd7c02ce37cb..1b27c1501acd 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json @@ -726,8 +726,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -776,7 +776,7 @@ "212074f1-8a6c-46e3-ba4f-d964fbe2c7c1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/212074f1-8a6c-46e3-ba4f-d964fbe2c7c1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/212074f1-8a6c-46e3-ba4f-d964fbe2c7c1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654/topology?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQvdG9wb2xvZ3k/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654/topology?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQvdG9wb2xvZ3k/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceGroupName\": \"azsmnet2771\"\r\n}", "RequestHeaders": { @@ -902,7 +902,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -918,7 +918,7 @@ "977c0f9b-3ef5-4b33-a841-46dbcee82fe1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json index 382e7c76626d..90da17bb11b2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet15\"\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "1ca0e867-c51b-4fef-851d-418988eaf043" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -133,8 +133,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTBlODY3LWM1MWItNGZlZi04NTFkLTQxODk4OGVhZjA0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTBlODY3LWM1MWItNGZlZi04NTFkLTQxODk4OGVhZjA0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -189,8 +189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -248,8 +248,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -366,7 +366,7 @@ "1cbebe68-0826-45e7-9f5d-870381f3a44c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,8 +384,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYmViZTY4LTA4MjYtNDVlNy05ZjVkLTg3MDM4MWYzYTQ0Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYmViZTY4LTA4MjYtNDVlNy05ZjVkLTg3MDM4MWYzYTQ0Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -440,8 +440,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -564,8 +564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDcvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDcvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -629,8 +629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376\"\r\n }\r\n },\r\n \"name\": \"azsmnet1522\"\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 },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "df09e118-3cc2-460c-8c31-14fef8a5b18d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -700,8 +700,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,8 +759,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -818,8 +818,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -877,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -936,8 +936,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -995,8 +995,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1113,8 +1113,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1172,8 +1172,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1231,8 +1231,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1290,8 +1290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1349,8 +1349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1408,8 +1408,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1467,8 +1467,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1526,8 +1526,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1585,8 +1585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1644,8 +1644,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1703,8 +1703,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1762,8 +1762,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1821,8 +1821,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1880,8 +1880,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1939,8 +1939,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1998,8 +1998,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2057,8 +2057,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2116,8 +2116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2175,8 +2175,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2234,8 +2234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2293,8 +2293,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2352,8 +2352,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2411,8 +2411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2470,8 +2470,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2529,8 +2529,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2588,8 +2588,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2647,8 +2647,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2706,8 +2706,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2765,8 +2765,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2824,8 +2824,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2883,8 +2883,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2942,8 +2942,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3001,8 +3001,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3060,8 +3060,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3119,8 +3119,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3178,8 +3178,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3237,8 +3237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3296,8 +3296,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,8 +3355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3414,8 +3414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3473,8 +3473,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3532,8 +3532,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3591,8 +3591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3650,8 +3650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3709,8 +3709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3768,8 +3768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3827,8 +3827,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3886,8 +3886,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3945,8 +3945,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4004,8 +4004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4063,8 +4063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4119,8 +4119,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4175,8 +4175,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4237,8 +4237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -4287,7 +4287,7 @@ "e7ecc344-7735-4bcd-876b-2ba738043a92" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e7ecc344-7735-4bcd-876b-2ba738043a92?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e7ecc344-7735-4bcd-876b-2ba738043a92?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4429,8 +4429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108/troubleshoot?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDgvdHJvdWJsZXNob290P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108/troubleshoot?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDgvdHJvdWJsZXNob290P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020\",\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Storage/storageAccounts/azsmnet62\",\r\n \"storagePath\": \"https://nwtestdbdzq4xsvskrei6.blob.core.windows.net/vhds\"\r\n }\r\n}", "RequestHeaders": { @@ -4472,7 +4472,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4485,7 +4485,7 @@ "de538d0a-5abe-455c-87cf-ad8890184879" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4503,8 +4503,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4562,8 +4562,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json index 5d04662ccffa..b1352a40cb04 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json @@ -714,8 +714,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -764,7 +764,7 @@ "c8656941-8f2e-429f-a1d8-e8b3f2cb69f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/c8656941-8f2e-429f-a1d8-e8b3f2cb69f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/c8656941-8f2e-429f-a1d8-e8b3f2cb69f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -847,8 +847,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NzAwMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NzAwMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -912,8 +912,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -977,8 +977,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,8 +1036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"default-allow-rdp\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/securityRules/default-allow-rdp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet3313\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000\"\r\n }\r\n ],\r\n \"resourceGuid\": \"a62c6ffb-62da-4576-82e9-a68a189ac62e\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg\",\r\n \"name\": \"azsmnet8060-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -1092,7 +1092,7 @@ "f6cbe102-c2a0-4c0f-89bf-f1b687a94704" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,8 +1110,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjZjYmUxMDItYzJhMC00YzBmLTg5YmYtZjFiNjg3YTk0NzA0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjZjYmUxMDItYzJhMC00YzBmLTg5YmYtZjFiNjg3YTk0NzA0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1166,8 +1166,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692/ipFlowVerify?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTIvaXBGbG93VmVyaWZ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692/ipFlowVerify?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTIvaXBGbG93VmVyaWZ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Compute/virtualMachines/azsmnet8060\",\r\n \"direction\": \"Outbound\",\r\n \"protocol\": \"TCP\",\r\n \"localPort\": \"80\",\r\n \"remotePort\": \"80\",\r\n \"localIPAddress\": \"10.17.3.4\",\r\n \"remoteIPAddress\": \"12.11.12.14\"\r\n}", "RequestHeaders": { @@ -1209,7 +1209,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/4264c957-2faa-4692-8c38-242a692e9799?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1222,7 +1222,7 @@ "4264c957-2faa-4692-8c38-242a692e9799" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/4264c957-2faa-4692-8c38-242a692e9799?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json index 1706ef515653..9a621745b15b 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json @@ -616,8 +616,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -666,7 +666,7 @@ "45676481-77c2-4ebe-bceb-39d71832bc4b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/45676481-77c2-4ebe-bceb-39d71832bc4b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/45676481-77c2-4ebe-bceb-39d71832bc4b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -749,8 +749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NDE5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NDE5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,8 +814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -879,8 +879,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"default-allow-rdp\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/securityRules/default-allow-rdp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet1718\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197\"\r\n }\r\n ],\r\n \"resourceGuid\": \"f93d2782-b4c9-4d0b-86d0-598825130420\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg\",\r\n \"name\": \"azsmnet2019-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -994,7 +994,7 @@ "6311637f-6802-48cb-b2df-da99aef9e651" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1012,8 +1012,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzMTE2MzdmLTY4MDItNDhjYi1iMmRmLWRhOTlhZWY5ZTY1MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzMTE2MzdmLTY4MDItNDhjYi1iMmRmLWRhOTlhZWY5ZTY1MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1068,8 +1068,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735/securityGroupView?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzUvc2VjdXJpdHlHcm91cFZpZXc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735/securityGroupView?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzUvc2VjdXJpdHlHcm91cFZpZXc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Compute/virtualMachines/azsmnet2019\"\r\n}", "RequestHeaders": { @@ -1111,7 +1111,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1124,7 +1124,7 @@ "eb1dc242-8ea0-44d9-abb5-711a6565abdb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json index 211e7bf6dd4c..0efc306131f2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet5890\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet5901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "71222849-9014-4ff9-9246-f27a40349b03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -133,8 +133,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -189,8 +189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -248,8 +248,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -378,8 +378,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet3365\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet4388\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet6124\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet2727\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet9197\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet2218\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9593\"\r\n },\r\n {\r\n \"name\": \"azsmnet6875\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet1710\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9515\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet5067\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet8609\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n },\r\n \"name\": \"azsmnet1800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n },\r\n \"name\": \"azsmnet3533\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -431,7 +431,7 @@ "8248159d-4703-478e-a374-caf55cf6018e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -449,8 +449,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,8 +508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -567,8 +567,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -626,8 +626,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -685,8 +685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -744,8 +744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -803,8 +803,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -921,8 +921,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -980,8 +980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1039,8 +1039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1098,8 +1098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1157,8 +1157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1216,8 +1216,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1275,8 +1275,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1334,8 +1334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,8 +1393,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1452,8 +1452,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1511,8 +1511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1570,8 +1570,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1629,8 +1629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1747,8 +1747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1806,8 +1806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1865,8 +1865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1924,8 +1924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1983,8 +1983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2039,8 +2039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2098,8 +2098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2163,8 +2163,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2228,8 +2228,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2265,7 +2265,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2293,8 +2293,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2324,7 +2324,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2352,8 +2352,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2402,7 +2402,7 @@ "b9b2c43b-9d12-4e3f-b1b2-c635b845cea0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2420,8 +2420,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"name\": \"azsmnet4961\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2476,7 +2476,7 @@ "4a050275-6023-4176-b8b9-1fb4c5495a05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2494,8 +2494,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2553,8 +2553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2618,8 +2618,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2677,8 +2677,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2727,7 +2727,7 @@ "31c62262-91c7-45ef-8c21-7d717c337a7c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2745,8 +2745,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"name\": \"azsmnet6912\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2801,7 +2801,7 @@ "5183ed56-0494-4453-a87f-f2fb9526ff4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2819,8 +2819,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2878,8 +2878,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2943,8 +2943,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,8 +3002,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3061,8 +3061,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3120,8 +3120,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3179,8 +3179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3238,8 +3238,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3297,8 +3297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3356,8 +3356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3415,8 +3415,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3474,8 +3474,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3533,8 +3533,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3592,8 +3592,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3651,8 +3651,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3710,8 +3710,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3769,8 +3769,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3828,8 +3828,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3887,8 +3887,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3946,8 +3946,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4005,8 +4005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4064,8 +4064,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4120,8 +4120,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4179,8 +4179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4238,8 +4238,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4297,8 +4297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4356,8 +4356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4415,8 +4415,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4474,8 +4474,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4530,8 +4530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -4564,7 +4564,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4574,7 +4574,7 @@ "796a9be1-c827-490e-b609-a4ad9394d044" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4592,8 +4592,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -4626,7 +4626,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4639,7 +4639,7 @@ "a3f3b726-de0a-4182-9301-e00e9195aba1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4657,8 +4657,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4716,8 +4716,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4775,8 +4775,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4834,8 +4834,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4890,8 +4890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4924,7 +4924,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4937,7 +4937,7 @@ "2f925788-a452-4929-b3ca-ea32aa3a2049" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4955,8 +4955,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5014,8 +5014,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5073,8 +5073,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json index 0efb805f49d7..6a6241b721d6 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -54,7 +54,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/WestUS/CheckDnsNameAvailability?domainNameLabel=domainnamelabel974&api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/WestUS/CheckDnsNameAvailability?domainNameLabel=domainnamelabel974&api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json index 27c907ea12ce..f60d98a40441 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3972\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "63049a58-9deb-4787-8a83-b3a45a2c5fe7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMwNDlhNTgtOWRlYi00Nzg3LThhODMtYjNhNDVhMmM1ZmU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMwNDlhNTgtOWRlYi00Nzg3LThhODMtYjNhNDVhMmM1ZmU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet8767\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "9f8c9c9e-889f-4fc1-b65d-8f015db88f41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWY4YzljOWUtODg5Zi00ZmMxLWI2NWQtOGYwMTVkYjg4ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWY4YzljOWUtODg5Zi00ZmMxLWI2NWQtOGYwMTVkYjg4ZjQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "95323aac-1af9-4bea-9208-20a3ff24e430" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/95323aac-1af9-4bea-9208-20a3ff24e430?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/95323aac-1af9-4bea-9208-20a3ff24e430?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/loadBalancingRules/azsmnet8160\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2241\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/frontendIPConfigurations/azsmnet8571\"\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\": \"azsmnet3666\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/inboundNatRules/azsmnet3666\"\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/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"6d43bb2b-1256-47c5-b80e-aa25fe73c9e2\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"6b94f5c4-a02b-433e-8301-ad3edf808428\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6d43bb2b-1256-47c5-b80e-aa25fe73c9e2\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "b970f182-e80e-40bd-ae0b-8565ec8d6362" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b970f182-e80e-40bd-ae0b-8565ec8d6362?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b970f182-e80e-40bd-ae0b-8565ec8d6362?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,8 +804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,8 +868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,8 +926,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -990,8 +990,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1039,7 +1039,7 @@ "34e7814c-9cc7-488b-a77c-b8fdae0a8309" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/34e7814c-9cc7-488b-a77c-b8fdae0a8309?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/34e7814c-9cc7-488b-a77c-b8fdae0a8309?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,8 +1057,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/loadBalancingRules/azsmnet8160\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2241\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\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/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"92f80873-6ab9-4054-a630-52d446e1b9ce\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"2dab4ece-7a8f-44b3-b328-2f6b34c8914c\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"92f80873-6ab9-4054-a630-52d446e1b9ce\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1109,7 +1109,7 @@ "9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,8 +1127,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1185,8 +1185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1249,8 +1249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1307,8 +1307,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1371,8 +1371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1420,7 +1420,7 @@ "57608f26-9c56-4a31-8690-b11106b25ef7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/57608f26-9c56-4a31-8690-b11106b25ef7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/57608f26-9c56-4a31-8690-b11106b25ef7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1438,8 +1438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "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/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/frontendIPConfigurations/azsmnet8571\"\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\": \"azsmnet7454\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/inboundNatRules/azsmnet7454\"\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/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"f5ead2b9-dfb3-4c70-b382-cb597537d3e9\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"044c708c-5c2f-434a-b7db-782cab3e1457\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f5ead2b9-dfb3-4c70-b382-cb597537d3e9\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1490,7 +1490,7 @@ "9735026c-2b5d-4417-885b-5eb7a95dddf5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9735026c-2b5d-4417-885b-5eb7a95dddf5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9735026c-2b5d-4417-885b-5eb7a95dddf5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1508,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1566,8 +1566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1630,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1752,8 +1752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752\"\r\n }\r\n },\r\n \"name\": \"azsmnet8571\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2241\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/probes/azsmnet359\"\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\": \"azsmnet8160\"\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\": \"azsmnet359\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\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\": \"azsmnet3666\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\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\": \"azsmnet7454\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "78dbe39e-320d-43c2-89f7-2599d29feafe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/78dbe39e-320d-43c2-89f7-2599d29feafe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/78dbe39e-320d-43c2-89f7-2599d29feafe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,8 +1819,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,8 +1877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1941,8 +1941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=InboundNatRules%2FbackendIPConfiguration", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9SW5ib3VuZE5hdFJ1bGVzJTJGYmFja2VuZElQQ29uZmlndXJhdGlvbg==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=InboundNatRules%2FbackendIPConfiguration", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9SW5ib3VuZE5hdFJ1bGVzJTJGYmFja2VuZElQQ29uZmlndXJhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,8 +2005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=BackendAddressPools%2FbackendIPConfigurations", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9QmFja2VuZEFkZHJlc3NQb29scyUyRmJhY2tlbmRJUENvbmZpZ3VyYXRpb25z", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=BackendAddressPools%2FbackendIPConfigurations", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9QmFja2VuZEFkZHJlc3NQb29scyUyRmJhY2tlbmRJUENvbmZpZ3VyYXRpb25z", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2069,8 +2069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=FrontendIPConfigurations%2FPublicIPAddress", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9RnJvbnRlbmRJUENvbmZpZ3VyYXRpb25zJTJGUHVibGljSVBBZGRyZXNz", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=FrontendIPConfigurations%2FPublicIPAddress", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9RnJvbnRlbmRJUENvbmZpZ3VyYXRpb25zJTJGUHVibGljSVBBZGRyZXNz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2133,8 +2133,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01&$expand=IPConfigurations%2FSubnet", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnMlMkZTdWJuZXQ=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01&$expand=IPConfigurations%2FSubnet", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnMlMkZTdWJuZXQ=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2197,8 +2197,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767?api-version=2016-12-01&$expand=IPConfigurations", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3L3N1Ym5ldHMvYXpzbW5ldDg3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnM=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767?api-version=2017-03-01&$expand=IPConfigurations", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3L3N1Ym5ldHMvYXpzbW5ldDg3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2261,8 +2261,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01&$expand=IPConfiguration", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbg==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01&$expand=IPConfiguration", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2325,8 +2325,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2358,7 +2358,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2371,7 +2371,7 @@ "c194265f-1af9-4890-9dd6-2f6bf311b1f0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2389,8 +2389,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzE5NDI2NWYtMWFmOS00ODkwLTlkZDYtMmY2YmYzMTFiMWYwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzE5NDI2NWYtMWFmOS00ODkwLTlkZDYtMmY2YmYzMTFiMWYwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2444,8 +2444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2498,8 +2498,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2531,7 +2531,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2544,7 +2544,7 @@ "f449f276-f45b-4305-915f-47738bf7f6fd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2562,8 +2562,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0OWYyNzYtZjQ1Yi00MzA1LTkxNWYtNDc3MzhiZjdmNmZkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0OWYyNzYtZjQ1Yi00MzA1LTkxNWYtNDc3MzhiZjdmNmZkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,8 +2617,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2650,7 +2650,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2663,7 +2663,7 @@ "8d49efb4-581f-4f95-a034-432313b88536" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2681,8 +2681,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ0OWVmYjQtNTgxZi00Zjk1LWEwMzQtNDMyMzEzYjg4NTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ0OWVmYjQtNTgxZi00Zjk1LWEwMzQtNDMyMzEzYjg4NTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2736,8 +2736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2769,7 +2769,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2782,7 +2782,7 @@ "b5d64b99-24d4-4fea-a1e4-60997d40b62c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2800,8 +2800,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjVkNjRiOTktMjRkNC00ZmVhLWExZTQtNjA5OTdkNDBiNjJjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjVkNjRiOTktMjRkNC00ZmVhLWExZTQtNjA5OTdkNDBiNjJjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2855,8 +2855,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2888,7 +2888,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2901,7 +2901,7 @@ "bf7ed969-af60-45e7-8c7b-f8d27b559259" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2919,8 +2919,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY3ZWQ5NjktYWY2MC00NWU3LThjN2ItZjhkMjdiNTU5MjU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY3ZWQ5NjktYWY2MC00NWU3LThjN2ItZjhkMjdiNTU5MjU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json index 232c2b5408a0..2f8b5baed7d9 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -154,7 +154,7 @@ "f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"9f9e478c-17a1-4c67-a1d8-6f5dbe36c7da\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"daf1ad3d-f575-4d15-84e5-170a27964e4d\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "bf766e1a-499b-4db3-9a49-7af4156734ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,7 +727,7 @@ "8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -758,7 +758,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json index 082078034fb3..83aac86fff61 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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/19feecf7-1262-46ca-81a7-31fb269a6325/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4458\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "30d02c07-62ad-4558-98d6-1cd51b453cfc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zMGQwMmMwNy02MmFkLTQ1NTgtOThkNi0xY2Q1MWI0NTNjZmM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zMGQwMmMwNy02MmFkLTQ1NTgtOThkNi0xY2Q1MWI0NTNjZmM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet29\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "6a608085-a8b7-4e79-91fc-57eef8cbe0b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YTYwODA4NS1hOGI3LTRlNzktOTFmYy01N2VlZjhjYmUwYjY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YTYwODA4NS1hOGI3LTRlNzktOTFmYy01N2VlZjhjYmUwYjY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "3fe7da97-a9b9-4adf-a265-5597f385db0e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zZmU3ZGE5Ny1hOWI5LTRhZGYtYTI2NS01NTk3ZjM4NWRiMGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zZmU3ZGE5Ny1hOWI5LTRhZGYtYTI2NS01NTk3ZjM4NWRiMGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -856,8 +856,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzMvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzMvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n }\r\n },\r\n \"name\": \"azsmnet2561\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": true,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "5414d5de-e04b-4b9a-ba01-72731d714424" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2561\",\r\n \"etag\": \"W/\\\"ba8d07bd-442b-4f06-ab8d-cfdd8693cd5d\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357/ipConfigurations/azsmnet2561\"\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\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.4,10.0.0.5\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"c6ebfb3a-f8cb-43c9-9225-940e6a855716\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"ba8d07bd-442b-4f06-ab8d-cfdd8693cd5d\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1045,7 +1045,7 @@ "190d20ca-f34d-4676-a46f-939e0784cec4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,8 +1063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2561\",\r\n \"etag\": \"W/\\\"6ce7ac36-c44a-4ca0-a090-a9785a0e0b13\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357/ipConfigurations/azsmnet2561\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": true,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\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\": \"c6ebfb3a-f8cb-43c9-9225-940e6a855716\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6ce7ac36-c44a-4ca0-a090-a9785a0e0b13\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1118,7 +1118,7 @@ "60437720-65a0-4ec6-8b38-cace67f6995d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1136,8 +1136,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1191,8 +1191,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1246,8 +1246,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1356,8 +1356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1411,8 +1411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1466,8 +1466,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1521,8 +1521,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1576,8 +1576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1631,8 +1631,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1686,8 +1686,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1741,8 +1741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1796,8 +1796,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1851,8 +1851,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1906,8 +1906,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1961,8 +1961,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2016,8 +2016,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2071,8 +2071,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2126,8 +2126,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2181,8 +2181,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2236,8 +2236,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2291,8 +2291,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2346,8 +2346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2401,8 +2401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2456,8 +2456,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2511,8 +2511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2566,8 +2566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2621,8 +2621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2676,8 +2676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2731,8 +2731,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2786,8 +2786,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2841,8 +2841,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2896,8 +2896,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,8 +2951,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3006,8 +3006,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3061,8 +3061,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3116,8 +3116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3171,8 +3171,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3226,8 +3226,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3281,8 +3281,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3336,8 +3336,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3391,8 +3391,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3446,8 +3446,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3501,8 +3501,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3556,8 +3556,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3611,8 +3611,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3666,8 +3666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3727,8 +3727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3782,8 +3782,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3843,8 +3843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3898,8 +3898,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3959,8 +3959,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4014,8 +4014,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4069,8 +4069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4124,8 +4124,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4179,8 +4179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4234,8 +4234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,8 +4289,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4344,8 +4344,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4399,8 +4399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4454,8 +4454,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4509,8 +4509,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4564,8 +4564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4619,8 +4619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4674,8 +4674,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4729,8 +4729,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4784,8 +4784,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4839,8 +4839,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4894,8 +4894,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4949,8 +4949,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5004,8 +5004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5059,8 +5059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5114,8 +5114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5169,8 +5169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5224,8 +5224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5279,8 +5279,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5334,8 +5334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5389,8 +5389,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5444,8 +5444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5499,8 +5499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5554,8 +5554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5609,8 +5609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5664,8 +5664,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5719,8 +5719,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5774,8 +5774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5829,8 +5829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5884,8 +5884,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5939,8 +5939,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5994,8 +5994,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6049,8 +6049,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,8 +6104,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6159,8 +6159,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6214,8 +6214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6269,8 +6269,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6324,8 +6324,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6379,8 +6379,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6434,8 +6434,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6489,8 +6489,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6544,8 +6544,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6599,8 +6599,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6654,8 +6654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6709,8 +6709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6764,8 +6764,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6819,8 +6819,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6874,8 +6874,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6929,8 +6929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6984,8 +6984,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7039,8 +7039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7094,8 +7094,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7149,8 +7149,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7204,8 +7204,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7259,8 +7259,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7314,8 +7314,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7369,8 +7369,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7424,8 +7424,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7479,8 +7479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7534,8 +7534,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7589,8 +7589,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7644,8 +7644,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7699,8 +7699,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7754,8 +7754,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7809,8 +7809,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7864,8 +7864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7919,8 +7919,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7974,8 +7974,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8029,8 +8029,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8084,8 +8084,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8139,8 +8139,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8194,8 +8194,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8249,8 +8249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8304,8 +8304,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8359,8 +8359,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8414,8 +8414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8469,8 +8469,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8524,8 +8524,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8579,8 +8579,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8634,8 +8634,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8689,8 +8689,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8744,8 +8744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8799,8 +8799,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8854,8 +8854,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8909,8 +8909,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8964,8 +8964,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9019,8 +9019,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9074,8 +9074,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9129,8 +9129,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9184,8 +9184,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9239,8 +9239,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9294,8 +9294,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9349,8 +9349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9404,8 +9404,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9459,8 +9459,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9514,8 +9514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9569,8 +9569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9624,8 +9624,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9679,8 +9679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9734,8 +9734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9789,8 +9789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9844,8 +9844,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9899,8 +9899,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9954,8 +9954,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10009,8 +10009,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10064,8 +10064,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json index 5b8d5fb67820..b2744435592a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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 \"2016-10-01\",\r\n \"2016-12-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 \"2016-10-01\",\r\n \"2016-12-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 \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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 \"2016-10-01\",\r\n \"2016-12-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 \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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 \"2016-10-01\",\r\n \"2017-03-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 \"2016-10-01\",\r\n \"2017-03-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 \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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 \"2016-10-01\",\r\n \"2017-03-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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet545\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -170,7 +170,7 @@ "63285282-cbb8-4a5b-876f-aa4b1a163faa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,8 +188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7547\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -241,7 +241,7 @@ "a7656262-acdf-45ca-9be7-124d86e5fff9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,8 +259,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc2NTYyNjItYWNkZi00NWNhLTliZTctMTI0ZDg2ZTVmZmY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc2NTYyNjItYWNkZi00NWNhLTliZTctMTI0ZDg2ZTVmZmY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -315,8 +315,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyODUyODItY2JiOC00YTViLTg3NmYtYWE0YjFhMTYzZmFhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyODUyODItY2JiOC00YTViLTg3NmYtYWE0YjFhMTYzZmFhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -371,8 +371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -430,8 +430,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -495,8 +495,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -619,8 +619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -737,7 +737,7 @@ "4a9c52ec-5191-49a1-b13c-a1690815ab65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,8 +755,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.2.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.2.1.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -808,7 +808,7 @@ "8663122b-5345-4a32-963d-2d0a08729eee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,8 +826,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YzUyZWMtNTE5MS00OWExLWIxM2MtYTE2OTA4MTVhYjY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YzUyZWMtNTE5MS00OWExLWIxM2MtYTE2OTA4MTVhYjY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -882,8 +882,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODY2MzEyMmItNTM0NS00YTMyLTk2M2QtMmQwYTA4NzI5ZWVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODY2MzEyMmItNTM0NS00YTMyLTk2M2QtMmQwYTA4NzI5ZWVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -997,8 +997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1056,8 +1056,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1121,8 +1121,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1186,8 +1186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n }\r\n },\r\n \"name\": \"azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1239,7 +1239,7 @@ "b132e059-7eb1-469f-914d-25c56708cedf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,8 +1257,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n }\r\n },\r\n \"name\": \"azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1310,7 +1310,7 @@ "6e41a746-ca55-49e5-88f9-fe74998f1c05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1328,8 +1328,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1387,8 +1387,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1446,8 +1446,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1505,8 +1505,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1564,8 +1564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1623,8 +1623,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1682,8 +1682,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1741,8 +1741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1800,8 +1800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1859,8 +1859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1918,8 +1918,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1977,8 +1977,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,8 +2036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2095,8 +2095,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2154,8 +2154,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2213,8 +2213,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2272,8 +2272,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2331,8 +2331,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2390,8 +2390,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2449,8 +2449,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2508,8 +2508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2567,8 +2567,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2626,8 +2626,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2685,8 +2685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2744,8 +2744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2803,8 +2803,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2862,8 +2862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2921,8 +2921,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2980,8 +2980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3039,8 +3039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3098,8 +3098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3157,8 +3157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3216,8 +3216,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3275,8 +3275,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3334,8 +3334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3393,8 +3393,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3452,8 +3452,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3511,8 +3511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3570,8 +3570,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3629,8 +3629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3688,8 +3688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3747,8 +3747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3806,8 +3806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3865,8 +3865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3924,8 +3924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3983,8 +3983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4042,8 +4042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4101,8 +4101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4160,8 +4160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4219,8 +4219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4278,8 +4278,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4337,8 +4337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4396,8 +4396,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4455,8 +4455,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4514,8 +4514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4573,8 +4573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4632,8 +4632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4691,8 +4691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4747,8 +4747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,8 +4806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4865,8 +4865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4924,8 +4924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4983,8 +4983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5042,8 +5042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5101,8 +5101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5160,8 +5160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5219,8 +5219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5278,8 +5278,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5337,8 +5337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5396,8 +5396,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5455,8 +5455,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5514,8 +5514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5573,8 +5573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5632,8 +5632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5691,8 +5691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5750,8 +5750,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5809,8 +5809,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5868,8 +5868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5927,8 +5927,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5986,8 +5986,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6045,8 +6045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,8 +6104,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6163,8 +6163,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6222,8 +6222,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6281,8 +6281,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6340,8 +6340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6399,8 +6399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6458,8 +6458,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6517,8 +6517,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6576,8 +6576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6635,8 +6635,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6694,8 +6694,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6753,8 +6753,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6812,8 +6812,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6871,8 +6871,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6930,8 +6930,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6989,8 +6989,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7048,8 +7048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7107,8 +7107,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7166,8 +7166,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7225,8 +7225,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7284,8 +7284,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7343,8 +7343,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7402,8 +7402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7461,8 +7461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7520,8 +7520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7579,8 +7579,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7638,8 +7638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7697,8 +7697,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7756,8 +7756,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7815,8 +7815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7874,8 +7874,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7933,8 +7933,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7992,8 +7992,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8051,8 +8051,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8110,8 +8110,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8169,8 +8169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8228,8 +8228,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8287,8 +8287,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8346,8 +8346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8402,8 +8402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8458,8 +8458,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8520,8 +8520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8576,8 +8576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8638,8 +8638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "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/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9299\",\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753/ipConfigurations/azsmnet9299\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"bgpPeeringAddress\": \"10.2.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"2fda482d-10af-4ff6-96ff-9b93a6827d20\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753\",\r\n \"name\": \"azsmnet6753\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet593\",\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/ipConfigurations/azsmnet593\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"3a28bce8-a0c8-411e-860a-a43a47f90ac1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880\",\r\n \"name\": \"azsmnet7880\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -8691,7 +8691,7 @@ "34bf47da-6691-4dbd-9400-89cb5668f526" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8709,8 +8709,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "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/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet593\",\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/ipConfigurations/azsmnet593\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"3a28bce8-a0c8-411e-860a-a43a47f90ac1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880\",\r\n \"name\": \"azsmnet7880\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9299\",\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753/ipConfigurations/azsmnet9299\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"bgpPeeringAddress\": \"10.2.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"2fda482d-10af-4ff6-96ff-9b93a6827d20\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753\",\r\n \"name\": \"azsmnet6753\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -8762,7 +8762,7 @@ "ad4396c8-658d-4849-afd3-e0f31838df91" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8780,8 +8780,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRiZjQ3ZGEtNjY5MS00ZGJkLTk0MDAtODljYjU2NjhmNTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRiZjQ3ZGEtNjY5MS00ZGJkLTk0MDAtODljYjU2NjhmNTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8836,8 +8836,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8892,8 +8892,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ0Mzk2YzgtNjU4ZC00ODQ5LWFmZDMtZTBmMzE4MzhkZjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ0Mzk2YzgtNjU4ZC00ODQ5LWFmZDMtZTBmMzE4MzhkZjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8948,8 +8948,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9004,8 +9004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getLearnedRoutes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getLearnedRoutes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9041,7 +9041,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9069,8 +9069,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZTFiZDFlNzAtOTI4OS00M2E2LThjY2MtY2I0MjI2MGJmZmM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZTFiZDFlNzAtOTI4OS00M2E2LThjY2MtY2I0MjI2MGJmZmM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9100,7 +9100,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9128,8 +9128,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getAdvertisedRoutes?peer=13.93.225.45&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTMuOTMuMjI1LjQ1JmFwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getAdvertisedRoutes?peer=13.93.225.45&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTMuOTMuMjI1LjQ1JmFwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9165,7 +9165,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9193,8 +9193,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTFjMWI3YTktZmU1Yi00Njg2LWI0MGEtMzkzODUxNzI4MmJiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTFjMWI3YTktZmU1Yi00Njg2LWI0MGEtMzkzODUxNzI4MmJiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9224,7 +9224,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9252,8 +9252,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getBgpPeerStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getBgpPeerStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9289,7 +9289,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9317,8 +9317,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjAwMmUyZWItYjdiZC00YmFlLTkxMTMtMjNlM2UzMDI2OWFiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjAwMmUyZWItYjdiZC00YmFlLTkxMTMtMjNlM2UzMDI2OWFiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9348,7 +9348,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json index d6ff23ddebdf..37cf76274276 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -154,7 +154,7 @@ "4b8f4da0-a5eb-4322-a768-7897aee4afb8" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -388,7 +388,7 @@ "5c7f3c04-22aa-4bcb-9b3f-b37081b187cd" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -622,7 +622,7 @@ "6058ae5d-6bc6-4d0a-af6f-db9aa1f92372" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +650,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,7 +701,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,7 +752,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -866,7 +866,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -967,7 +967,7 @@ "3c0f845a-886c-4824-98d7-99892538c8d2" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +995,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -1036,7 +1036,7 @@ "d92cddce-5df0-46b3-b974-40633cde5f4a" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1064,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1115,7 +1115,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1166,7 +1166,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1217,7 +1217,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1268,7 +1268,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1319,7 +1319,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1370,7 +1370,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1421,7 +1421,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1472,7 +1472,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1523,7 +1523,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1574,7 +1574,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1625,7 +1625,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1676,7 +1676,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1727,7 +1727,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1778,7 +1778,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1829,7 +1829,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1880,7 +1880,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1931,7 +1931,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1982,7 +1982,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2033,7 +2033,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2084,7 +2084,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2135,7 +2135,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2186,7 +2186,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2237,7 +2237,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2288,7 +2288,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2339,7 +2339,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2390,7 +2390,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2441,7 +2441,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2492,7 +2492,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2543,7 +2543,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2594,7 +2594,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2645,7 +2645,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2696,7 +2696,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2747,7 +2747,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2798,7 +2798,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2849,7 +2849,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,7 +2900,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,7 +2951,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,7 +3002,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,7 +3053,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3104,7 +3104,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3155,7 +3155,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3206,7 +3206,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3257,7 +3257,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3308,7 +3308,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3359,7 +3359,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3410,7 +3410,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3461,7 +3461,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3512,7 +3512,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3563,7 +3563,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3614,7 +3614,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3665,7 +3665,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3716,7 +3716,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3767,7 +3767,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3818,7 +3818,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3869,7 +3869,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3926,7 +3926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3977,7 +3977,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4034,7 +4034,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -4075,7 +4075,7 @@ "432d7bf3-ed0f-47af-abde-683f1d4d9614" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4103,7 +4103,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -4144,7 +4144,7 @@ "f11e8b40-095e-45e9-a2ac-4e54f2ce0750" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4172,7 +4172,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4223,7 +4223,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4274,7 +4274,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4325,7 +4325,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4382,7 +4382,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4433,7 +4433,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4490,7 +4490,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4541,7 +4541,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4592,7 +4592,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4643,7 +4643,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4694,7 +4694,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4751,7 +4751,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4804,7 +4804,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4836,7 +4836,7 @@ "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4845,7 +4845,7 @@ "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=2016-12-01" + "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-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4867,7 +4867,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4918,7 +4918,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json index a948a5e446bf..132f707c3425 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "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\": \"azsmnet6309\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "eb5f29b8-5fab-44b4-b927-5466cfb76a3f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -388,7 +388,7 @@ "6e2f0013-ed22-4360-b73f-5bd09a4ace9a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -518,7 +518,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -572,7 +572,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -632,7 +632,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -692,7 +692,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "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\": \"azsmnet4984\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", "RequestHeaders": { @@ -733,7 +733,7 @@ "8c869573-fa12-4c39-b527-1d87586fb4c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -761,7 +761,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -812,7 +812,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,7 +863,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -914,7 +914,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -965,7 +965,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1016,7 +1016,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1067,7 +1067,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,7 +1118,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,7 +1169,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1220,7 +1220,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1271,7 +1271,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1322,7 +1322,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1373,7 +1373,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1424,7 +1424,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1475,7 +1475,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1526,7 +1526,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1577,7 +1577,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1628,7 +1628,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1679,7 +1679,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1730,7 +1730,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1781,7 +1781,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1832,7 +1832,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1883,7 +1883,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1934,7 +1934,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1985,7 +1985,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,7 +2036,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2087,7 +2087,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2138,7 +2138,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2189,7 +2189,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2240,7 +2240,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2291,7 +2291,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2342,7 +2342,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2393,7 +2393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2444,7 +2444,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2495,7 +2495,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2546,7 +2546,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2597,7 +2597,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2648,7 +2648,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2699,7 +2699,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2750,7 +2750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2801,7 +2801,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2852,7 +2852,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2903,7 +2903,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2954,7 +2954,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3005,7 +3005,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3056,7 +3056,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,7 +3107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3158,7 +3158,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3209,7 +3209,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3260,7 +3260,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3311,7 +3311,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3362,7 +3362,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3413,7 +3413,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3464,7 +3464,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3515,7 +3515,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3566,7 +3566,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3617,7 +3617,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3674,7 +3674,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -3715,7 +3715,7 @@ "b8001171-5f00-409e-87fa-e09c8a5b6379" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3743,7 +3743,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3794,7 +3794,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3848,7 +3848,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3908,7 +3908,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"ef41f4e3-e37c-476c-b51a-af4d497e90c5\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4984\",\r\n \"etag\": \"W/\\\"ef41f4e3-e37c-476c-b51a-af4d497e90c5\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390/ipConfigurations/azsmnet4984\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734\"\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\": \"80eb4542-6628-4989-a71d-39c6f068cd88\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"4ab7c1aa-4feb-4aea-8359-f841f6196a5d\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140\",\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\": \"65b63583-7d30-4f32-acad-93ec0d844814\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n }\r\n}", "RequestHeaders": { @@ -3949,7 +3949,7 @@ "1a59d7cd-2129-4c2a-a110-32a47303d041" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3977,7 +3977,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4028,7 +4028,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4079,7 +4079,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4130,7 +4130,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4181,7 +4181,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4232,7 +4232,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,7 +4289,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey/reset?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey/reset?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyLength\": 50\r\n}", "RequestHeaders": { @@ -4327,7 +4327,7 @@ "b69cde55-32c9-4a0e-af56-dcdb6dbce3c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4336,7 +4336,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4358,7 +4358,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4409,7 +4409,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4460,7 +4460,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4511,7 +4511,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4562,7 +4562,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4619,7 +4619,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4670,7 +4670,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4727,7 +4727,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"TestSharedKeyValue\"\r\n}", "RequestHeaders": { @@ -4765,7 +4765,7 @@ "bb963c2b-266c-4f13-9b03-5fc08f2b72e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bb963c2b-266c-4f13-9b03-5fc08f2b72e9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bb963c2b-266c-4f13-9b03-5fc08f2b72e9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json index 6897cd7e9f13..4bb8134e88dc 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-01\",\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\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\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\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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 \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.0.1\",\r\n \"peerWeight\": 3\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "78d32121-6ff0-4710-a9e8-2f78bea12c93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzhkMzIxMjEtNmZmMC00NzEwLWE5ZTgtMmY3OGJlYTEyYzkzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzhkMzIxMjEtNmZmMC00NzEwLWE5ZTgtMmY3OGJlYTEyYzkzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"azsmnet5521\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "8beafd91-d79d-4589-97b2-5b325389aefc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJlYWZkOTEtZDc5ZC00NTg5LTk3YjItNWIzMjUzODlhZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJlYWZkOTEtZDc5ZC00NTg5LTk3YjItNWIzMjUzODlhZWZjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -661,7 +661,7 @@ "e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTk5ZTNiZjYtYzQxZC00YTFiLTgzYzgtNWIxZGI5MmMzOGU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTk5ZTNiZjYtYzQxZC00YTFiLTgzYzgtNWIxZGI5MmMzOGU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -856,8 +856,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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\": \"azsmnet1876\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "a6b8605e-b2cb-41c1-b1aa-e513acca5f3d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,8 +1045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1100,8 +1100,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,8 +1155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1210,8 +1210,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1265,8 +1265,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1320,8 +1320,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1375,8 +1375,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1430,8 +1430,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1485,8 +1485,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1540,8 +1540,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1595,8 +1595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1650,8 +1650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1705,8 +1705,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1760,8 +1760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1815,8 +1815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1870,8 +1870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1925,8 +1925,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1980,8 +1980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2035,8 +2035,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2090,8 +2090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2145,8 +2145,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2200,8 +2200,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2255,8 +2255,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2310,8 +2310,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2365,8 +2365,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2420,8 +2420,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2475,8 +2475,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2530,8 +2530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2585,8 +2585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2640,8 +2640,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2695,8 +2695,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2750,8 +2750,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2805,8 +2805,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2860,8 +2860,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2915,8 +2915,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2970,8 +2970,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3025,8 +3025,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3080,8 +3080,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3135,8 +3135,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3190,8 +3190,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3245,8 +3245,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3300,8 +3300,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,8 +3355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3410,8 +3410,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3465,8 +3465,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3520,8 +3520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3575,8 +3575,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3630,8 +3630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3685,8 +3685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3740,8 +3740,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3795,8 +3795,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3850,8 +3850,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3905,8 +3905,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3960,8 +3960,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4015,8 +4015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4070,8 +4070,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4125,8 +4125,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4180,8 +4180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4235,8 +4235,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4290,8 +4290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4345,8 +4345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4400,8 +4400,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4461,8 +4461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"32c67b34-47a9-4785-9eb9-8722485395b5\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1876\",\r\n \"etag\": \"W/\\\"32c67b34-47a9-4785-9eb9-8722485395b5\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443/ipConfigurations/azsmnet1876\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"c71d5327-5c99-4026-ab58-7ffc07376d0e\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"63abf0e6-b040-4de6-a636-cbd4774187c7\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914\",\r\n \"location\": \"westus\",\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 \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.0.1\",\r\n \"peerWeight\": 3\r\n },\r\n \"resourceGuid\": \"ba330a4b-c210-44c5-97af-d1e51b107ff8\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true\r\n }\r\n}", "RequestHeaders": { @@ -4513,7 +4513,7 @@ "eb58d262-bbdf-45a2-a70d-70193aa3ee9a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4531,8 +4531,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4586,8 +4586,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4641,8 +4641,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4696,8 +4696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4751,8 +4751,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,8 +4806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4867,8 +4867,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4928,8 +4928,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4982,8 +4982,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5015,7 +5015,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operationResults/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operationResults/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -5028,7 +5028,7 @@ "51dc46ba-57d0-4629-b51f-aac4c79cd525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5046,8 +5046,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5101,8 +5101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5156,8 +5156,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5211,8 +5211,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5266,8 +5266,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json index 4ff06a86938b..44f72614b643 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "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\": \"azsmnet5620\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -388,7 +388,7 @@ "9efcedaf-872b-4cd4-b72f-8eee2e7e207c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,7 +641,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "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\": \"azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n }\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 }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "4710b952-c826-4161-8f27-50bdd7631b76" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,7 +710,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"fc004675-36b4-4cac-8874-dd6c8b58dda3\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"etag\": \"W/\\\"fc004675-36b4-4cac-8874-dd6c8b58dda3\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/ipConfigurations/azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\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\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"resourceGuid\": \"f64a0bc5-ce07-40d6-b0cf-0f0d2f82dfd4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -751,7 +751,7 @@ "2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -779,7 +779,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -830,7 +830,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -881,7 +881,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -932,7 +932,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -983,7 +983,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1034,7 +1034,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1085,7 +1085,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1136,7 +1136,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1187,7 +1187,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1238,7 +1238,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1289,7 +1289,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1340,7 +1340,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1391,7 +1391,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1442,7 +1442,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1493,7 +1493,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1544,7 +1544,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1595,7 +1595,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1646,7 +1646,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1697,7 +1697,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1748,7 +1748,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1799,7 +1799,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1850,7 +1850,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1901,7 +1901,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1952,7 +1952,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2003,7 +2003,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2054,7 +2054,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2105,7 +2105,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2156,7 +2156,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2207,7 +2207,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2258,7 +2258,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2309,7 +2309,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2360,7 +2360,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2411,7 +2411,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2462,7 +2462,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2513,7 +2513,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2564,7 +2564,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2615,7 +2615,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2666,7 +2666,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2717,7 +2717,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2768,7 +2768,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2819,7 +2819,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2870,7 +2870,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2921,7 +2921,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2972,7 +2972,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3023,7 +3023,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3074,7 +3074,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3125,7 +3125,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3176,7 +3176,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3227,7 +3227,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3278,7 +3278,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3329,7 +3329,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3380,7 +3380,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3431,7 +3431,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3482,7 +3482,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3533,7 +3533,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3584,7 +3584,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3635,7 +3635,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3692,7 +3692,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3743,7 +3743,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3800,7 +3800,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3857,7 +3857,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3908,7 +3908,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3959,7 +3959,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4010,7 +4010,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4061,7 +4061,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4112,7 +4112,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4163,7 +4163,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4214,7 +4214,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4265,7 +4265,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4316,7 +4316,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4367,7 +4367,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4418,7 +4418,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4469,7 +4469,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4520,7 +4520,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4571,7 +4571,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4622,7 +4622,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4673,7 +4673,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4724,7 +4724,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4775,7 +4775,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4826,7 +4826,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4877,7 +4877,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4928,7 +4928,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4979,7 +4979,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5030,7 +5030,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5081,7 +5081,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5132,7 +5132,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5183,7 +5183,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5234,7 +5234,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5285,7 +5285,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5336,7 +5336,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5387,7 +5387,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5438,7 +5438,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5489,7 +5489,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5540,7 +5540,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5591,7 +5591,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5642,7 +5642,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5693,7 +5693,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/reset?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/reset?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"etag\": \"W/\\\"bed58f57-1501-4d2a-89ba-36596e39d7bb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"etag\": \"W/\\\"bed58f57-1501-4d2a-89ba-36596e39d7bb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/ipConfigurations/azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"resourceGuid\": \"f64a0bc5-ce07-40d6-b0cf-0f0d2f82dfd4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -5731,7 +5731,7 @@ "6e321e8b-08a6-4dac-9cc1-8538d6076418" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5740,7 +5740,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5762,7 +5762,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5813,7 +5813,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5864,7 +5864,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5915,7 +5915,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5972,7 +5972,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6025,7 +6025,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -6057,7 +6057,7 @@ "b9215e35-1973-47d3-82e9-3b589a195598" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6066,7 +6066,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -6088,7 +6088,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6139,7 +6139,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6190,7 +6190,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6241,7 +6241,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6292,7 +6292,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json index 52e4f2ba7502..b760fd2e4448 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -154,7 +154,7 @@ "df7c664a-b966-4896-a71c-e9b69c5d241d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "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\": \"azsmnet7750\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "4c6e88f6-ad73-44ae-8ef4-a6eb09648889" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -622,7 +622,7 @@ "218ab0aa-28e0-4540-ad17-302f788f97f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +650,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,7 +701,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,7 +752,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -866,7 +866,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "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\": \"azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -967,7 +967,7 @@ "725a8207-73b2-4243-8160-027ecd1459c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +995,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"27c4fa95-ba93-42c4-b0ef-1a00e8ecf6c0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"27c4fa95-ba93-42c4-b0ef-1a00e8ecf6c0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n }\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1036,7 +1036,7 @@ "548cbf18-9be7-408e-8dd7-c88eea8ccc44" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1064,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"etag\": \"W/\\\"ee0ba610-55d6-41be-87a9-24c72af4305e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"ee0ba610-55d6-41be-87a9-24c72af4305e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", @@ -1107,7 +1107,7 @@ "d9502d1c-0779-47c8-8eb8-dc11d001b75c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1135,7 +1135,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"2c449533-9222-49b1-a424-33f62dcf485f\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"2c449533-9222-49b1-a424-33f62dcf485f\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1176,7 +1176,7 @@ "20852412-192d-4114-8fa5-30be5be0038d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1204,7 +1204,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"8b0a76db-7ab8-448f-8007-5e9b94824109\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"8b0a76db-7ab8-448f-8007-5e9b94824109\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ]\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1245,7 +1245,7 @@ "24ba035c-dcb5-46a8-a399-149fc7a893f3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,7 +1273,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"bc01aa61-d64b-4cac-87e0-0a6d10fbc357\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"bc01aa61-d64b-4cac-87e0-0a6d10fbc357\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1314,7 +1314,7 @@ "8c6beedd-bd46-4d6a-b918-68dd9df39270" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1342,7 +1342,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,7 +1393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1444,7 +1444,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1495,7 +1495,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1546,7 +1546,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1597,7 +1597,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1648,7 +1648,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1699,7 +1699,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1750,7 +1750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1852,7 +1852,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1903,7 +1903,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1954,7 +1954,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,7 +2005,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2056,7 +2056,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2107,7 +2107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2158,7 +2158,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2209,7 +2209,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2260,7 +2260,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2311,7 +2311,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2362,7 +2362,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2413,7 +2413,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2464,7 +2464,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2515,7 +2515,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2566,7 +2566,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,7 +2617,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2668,7 +2668,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2719,7 +2719,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2770,7 +2770,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2821,7 +2821,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2872,7 +2872,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2923,7 +2923,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2974,7 +2974,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3025,7 +3025,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3076,7 +3076,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3127,7 +3127,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3178,7 +3178,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3229,7 +3229,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3280,7 +3280,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3331,7 +3331,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3382,7 +3382,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3433,7 +3433,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3484,7 +3484,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3535,7 +3535,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3586,7 +3586,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3637,7 +3637,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3688,7 +3688,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3739,7 +3739,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3790,7 +3790,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3841,7 +3841,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3892,7 +3892,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3943,7 +3943,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3994,7 +3994,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4045,7 +4045,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4096,7 +4096,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4147,7 +4147,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4198,7 +4198,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4255,7 +4255,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4306,7 +4306,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4363,7 +4363,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4415,7 +4415,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4473,7 +4473,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4524,7 +4524,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4581,7 +4581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4632,7 +4632,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4689,7 +4689,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4740,7 +4740,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4797,7 +4797,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4848,7 +4848,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4899,7 +4899,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4950,7 +4950,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5001,7 +5001,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5052,7 +5052,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/generatevpnclientpackage?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/generatevpnclientpackage?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"ProcessorArchitecture\": \"Amd64\"\r\n}", "RequestHeaders": { @@ -5093,7 +5093,7 @@ "434bbfd2-b60a-4b02-98a5-d395c70cf5b7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5102,7 +5102,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5124,7 +5124,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5175,7 +5175,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5226,7 +5226,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5277,7 +5277,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5328,7 +5328,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5379,7 +5379,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5430,7 +5430,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json index 27bd1568b9a4..ef8b88ae4458 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\"\r\n}", "RequestHeaders": { @@ -164,7 +164,7 @@ "fbb24308-d599-45e4-a362-a999ca8fc477" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/fbb24308-d599-45e4-a362-a999ca8fc477?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/fbb24308-d599-45e4-a362-a999ca8fc477?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,8 +182,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -304,8 +304,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -337,7 +337,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -350,7 +350,7 @@ "0efa3a1b-3d5e-4924-8bfb-be23c225d20e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzBlZmEzYTFiLTNkNWUtNDkyNC04YmZiLWJlMjNjMjI1ZDIwZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzBlZmEzYTFiLTNkNWUtNDkyNC04YmZiLWJlMjNjMjI1ZDIwZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json index e680c3d9052f..7aaf0bc4f44d 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3dad47db-7a5d-4764-b1a8-45e4c54ecb14" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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}", "RequestHeaders": { @@ -414,7 +414,7 @@ "33b0df37-361c-4610-a62c-2d0bd11d537e" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -658,7 +658,7 @@ "5cd1d728-5a6d-42ea-9e42-2cef079e7d37" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5cd1d728-5a6d-42ea-9e42-2cef079e7d37?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -728,7 +728,7 @@ "d42fc5c0-cca6-4177-bd4d-8308ba4890c1" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d42fc5c0-cca6-4177-bd4d-8308ba4890c1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,8 +804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,8 +868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,8 +926,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -990,8 +990,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -1039,7 +1039,7 @@ "7efab2e5-175c-433e-9f27-b08984133322" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7efab2e5-175c-433e-9f27-b08984133322?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,8 +1057,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -1109,7 +1109,7 @@ "9b45499d-e838-4b4e-9ce1-01e6d473764c" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9b45499d-e838-4b4e-9ce1-01e6d473764c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,8 +1127,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1185,8 +1185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1249,8 +1249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1307,8 +1307,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1371,8 +1371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -1420,7 +1420,7 @@ "278e7e1b-2137-4663-9235-2bad3fdfc102" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/278e7e1b-2137-4663-9235-2bad3fdfc102?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1438,8 +1438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -1490,7 +1490,7 @@ "ede67ae0-aeba-49e6-90df-5a5b53c7f6ce" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ede67ae0-aeba-49e6-90df-5a5b53c7f6ce?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1508,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1566,8 +1566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1630,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1752,8 +1752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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}", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "f8b75ac4-426a-4583-9e9c-4676d5661dfd" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/f8b75ac4-426a-4583-9e9c-4676d5661dfd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,8 +1819,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,8 +1877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1941,8 +1941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,8 +2005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2038,7 +2038,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2051,7 +2051,7 @@ "892ddc33-a56a-451c-9f96-b4cf3dc159d9" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2069,8 +2069,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2124,8 +2124,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2178,8 +2178,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2211,7 +2211,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2224,7 +2224,7 @@ "d91d7f13-838b-49b3-a16c-9fc285b57bd1" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2242,8 +2242,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2297,8 +2297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2330,7 +2330,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2343,7 +2343,7 @@ "1a21769a-b229-45d2-a730-3d208ae11c57" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2361,8 +2361,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2416,8 +2416,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2449,7 +2449,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2462,7 +2462,7 @@ "fd9fc03d-a4bb-43e4-9397-c11e79c53925" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2480,8 +2480,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2535,8 +2535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2568,7 +2568,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2581,7 +2581,7 @@ "5fbb2994-1d41-4726-ae24-018ff2a4399b" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2599,8 +2599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json index b09cbc549551..579f06f4a955 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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}", "RequestHeaders": { @@ -167,7 +167,7 @@ "9a4ad2fd-6e62-424d-b1ec-14962cca9cf4" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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}", "RequestHeaders": { @@ -411,7 +411,7 @@ "bef8bf1d-d1fc-4068-8735-3977bb3c34d9" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bef8bf1d-d1fc-4068-8735-3977bb3c34d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -727,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -760,7 +760,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -773,7 +773,7 @@ "7adb7a95-e3c0-45ff-8fc1-1180b47ae47c" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -791,8 +791,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -846,8 +846,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -879,7 +879,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -892,7 +892,7 @@ "d02ab371-ea0c-4a29-b3c1-a316877805ee" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -910,8 +910,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json index 557cc9bd3c91..33094a5f9c57 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\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\": \"azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "963fb0d9-d9da-442b-ba19-ed37d225501f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzk2M2ZiMGQ5LWQ5ZGEtNDQyYi1iYTE5LWVkMzdkMjI1NTAxZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzk2M2ZiMGQ5LWQ5ZGEtNDQyYi1iYTE5LWVkMzdkMjI1NTAxZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\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\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "5409a23a-b969-4ec0-b876-2d7fa5fd4bbc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5409a23a-b969-4ec0-b876-2d7fa5fd4bbc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5409a23a-b969-4ec0-b876-2d7fa5fd4bbc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"SourceIP\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\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\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "11fc7019-b17b-489e-b2b3-0f1f043f637b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/11fc7019-b17b-489e-b2b3-0f1f043f637b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/11fc7019-b17b-489e-b2b3-0f1f043f637b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"SourceIPProtocol\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\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\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -551,7 +551,7 @@ "0e5113c6-d8c6-4379-b111-8af4d1de4ac5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0e5113c6-d8c6-4379-b111-8af4d1de4ac5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0e5113c6-d8c6-4379-b111-8af4d1de4ac5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,8 +569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -627,8 +627,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -691,8 +691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -749,8 +749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,8 +813,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -871,8 +871,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -935,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -996,8 +996,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1050,8 +1050,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1083,7 +1083,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1096,7 +1096,7 @@ "53c70c1f-f3bc-49bc-82ad-3567f6427a52" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1114,8 +1114,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzUzYzcwYzFmLWYzYmMtNDliYy04MmFkLTM1NjdmNjQyN2E1Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzUzYzcwYzFmLWYzYmMtNDliYy04MmFkLTM1NjdmNjQyN2E1Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,8 +1169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1202,7 +1202,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1215,7 +1215,7 @@ "e27bbc83-c3a8-4eee-91c5-f17a3aef9423" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1233,8 +1233,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2UyN2JiYzgzLWMzYTgtNGVlZS05MWM1LWYxN2EzYWVmOTQyMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2UyN2JiYzgzLWMzYTgtNGVlZS05MWM1LWYxN2EzYWVmOTQyMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json index 1e89d8c1eae2..ad4c27c5ed16 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\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\": \"azsmnet1606\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "264ff5ef-2d86-4608-8e76-eac955cb406e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzI2NGZmNWVmLTJkODYtNDYwOC04ZTc2LWVhYzk1NWNiNDA2ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzI2NGZmNWVmLTJkODYtNDYwOC04ZTc2LWVhYzk1NWNiNDA2ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9826\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet1606\",\r\n \"etag\": \"W/\\\"08dd095e-7a95-4523-9219-23493907e2af\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239/subnets/azsmnet1606\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2958\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet6449\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/backendAddressPools/azsmnet2958\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/probes/azsmnet2286\"\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\": \"azsmnet2286\",\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\": \"azsmnet3126\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\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\": \"azsmnet2299\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\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}", "RequestHeaders": { @@ -411,7 +411,7 @@ "04b85831-52ed-4f78-b0ab-a589450ebbdc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/04b85831-52ed-4f78-b0ab-a589450ebbdc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/04b85831-52ed-4f78-b0ab-a589450ebbdc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "4b0345cf-ec91-4ace-9cca-e9431a22067d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzRiMDM0NWNmLWVjOTEtNGFjZS05Y2NhLWU5NDMxYTIyMDY3ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzRiMDM0NWNmLWVjOTEtNGFjZS05Y2NhLWU5NDMxYTIyMDY3ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -843,8 +843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -876,7 +876,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -889,7 +889,7 @@ "b6f5aa51-c004-419b-bff0-20344fcaf8ae" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2I2ZjVhYTUxLWMwMDQtNDE5Yi1iZmYwLTIwMzQ0ZmNhZjhhZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2I2ZjVhYTUxLWMwMDQtNDE5Yi1iZmYwLTIwMzQ0ZmNhZjhhZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json index 84e64b13d512..6d5bc862829a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\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\": \"azsmnet4614\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "5e54fcf7-11ac-48da-aac5-2fa0ba445a1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzVlNTRmY2Y3LTExYWMtNDhkYS1hYWM1LTJmYTBiYTQ0NWExZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzVlNTRmY2Y3LTExYWMtNDhkYS1hYWM1LTJmYTBiYTQ0NWExZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6881\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet4614\",\r\n \"etag\": \"W/\\\"c27c3a4a-61b2-471d-bc8e-e21fa2a01e7c\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103/subnets/azsmnet4614\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1565\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet2497\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/backendAddressPools/azsmnet1565\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/probes/azsmnet914\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet914\",\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\": \"azsmnet6108\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4420\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "9132b8e7-7535-4edc-93b0-8098b908e34e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/9132b8e7-7535-4edc-93b0-8098b908e34e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/9132b8e7-7535-4edc-93b0-8098b908e34e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "6e738e9c-4fb2-4b3d-a5dd-02972e66cde3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZlNzM4ZTljLTRmYjItNGIzZC1hNWRkLTAyOTcyZTY2Y2RlMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZlNzM4ZTljLTRmYjItNGIzZC1hNWRkLTAyOTcyZTY2Y2RlMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -843,8 +843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -876,7 +876,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -889,7 +889,7 @@ "32b8cf10-7428-4325-a94d-cb75ba3084dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzMyYjhjZjEwLTc0MjgtNDMyNS1hOTRkLWNiNzViYTMwODRkZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzMyYjhjZjEwLTc0MjgtNDMyNS1hOTRkLWNiNzViYTMwODRkZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json index 36470fd821d7..a27371ae40b2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"azsmnet6030\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWVjOWQzYWEtZTZmMy00MTgxLWE2N2UtZTVkYzRhYjM4MTVmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWVjOWQzYWEtZTZmMy00MTgxLWE2N2UtZTVkYzRhYjM4MTVmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6372\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"azsmnet5453\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 100,\r\n \"frontendPortRangeEnd\": 105,\r\n \"backendPort\": 81\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "9ef85cc4-df4b-4966-ab96-bfaeb3811312" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9ef85cc4-df4b-4966-ab96-bfaeb3811312?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9ef85cc4-df4b-4966-ab96-bfaeb3811312?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6372\",\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\",\r\n \"properties\": {\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/inboundNatPools/azsmnet5453\"\r\n }\r\n ],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"azsmnet5453\",\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/inboundNatPools/azsmnet5453\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 100,\r\n \"frontendPortRangeEnd\": 105,\r\n \"backendPort\": 81,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5745\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 107,\r\n \"frontendPortRangeEnd\": 110,\r\n \"backendPort\": 81\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"resourceGuid\": \"3b977636-5d80-427b-914a-bf079a283b97\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "a9d5f4ef-f803-4914-aa56-9d99163a25b8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/a9d5f4ef-f803-4914-aa56-9d99163a25b8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/a9d5f4ef-f803-4914-aa56-9d99163a25b8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -712,7 +712,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -725,7 +725,7 @@ "275fb0d7-293f-4025-8841-d3bd66ce4d17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjc1ZmIwZDctMjkzZi00MDI1LTg4NDEtZDNiZDY2Y2U0ZDE3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjc1ZmIwZDctMjkzZi00MDI1LTg4NDEtZDNiZDY2Y2U0ZDE3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -852,8 +852,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -885,7 +885,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -898,7 +898,7 @@ "bd3187d4-a3d1-4118-88b2-0938e6beb75e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -916,8 +916,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmQzMTg3ZDQtYTNkMS00MTE4LTg4YjItMDkzOGU2YmViNzVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmQzMTg3ZDQtYTNkMS00MTE4LTg4YjItMDkzOGU2YmViNzVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json index fd2b26e6eb40..05d2aa7931dc 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet339\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "5eacd067-d3d7-4e2a-89a8-8b633e85d30e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWVhY2QwNjctZDNkNy00ZTJhLTg5YTgtOGI2MzNlODVkMzBlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWVhY2QwNjctZDNkNy00ZTJhLTg5YTgtOGI2MzNlODVkMzBlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609\"\r\n }\r\n },\r\n \"name\": \"azsmnet6272\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet4688\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/frontendIPConfigurations/azsmnet6272\"\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\": \"azsmnet7538\"\r\n }\r\n ],\r\n \"outboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"allocatedOutboundPorts\": 1000,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/frontendIPConfigurations/azsmnet6272\"\r\n }\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/backendAddressPools/azsmnet4688\"\r\n }\r\n },\r\n \"name\": \"azsmnet8413\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "afa88ff0-3c18-4dcf-bf65-4c0fae290cba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/afa88ff0-3c18-4dcf-bf65-4c0fae290cba?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/afa88ff0-3c18-4dcf-bf65-4c0fae290cba?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "6f62b5b3-4ebe-4797-9fdd-e945b7728203" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmY2MmI1YjMtNGViZS00Nzk3LTlmZGQtZTk0NWI3NzI4MjAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmY2MmI1YjMtNGViZS00Nzk3LTlmZGQtZTk0NWI3NzI4MjAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "632e498b-bc6b-4467-a71a-f7ed2ceece4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyZTQ5OGItYmM2Yi00NDY3LWE3MWEtZjdlZDJjZWVjZTRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyZTQ5OGItYmM2Yi00NDY3LWE3MWEtZjdlZDJjZWVjZTRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json index e44730dcf956..e4028768b739 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\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\": \"azsmnet2252\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "08de78f1-3bc7-493f-bc67-f4597fb79770" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzA4ZGU3OGYxLTNiYzctNDkzZi1iYzY3LWY0NTk3ZmI3OTc3MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzA4ZGU3OGYxLTNiYzctNDkzZi1iYzY3LWY0NTk3ZmI3OTc3MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2040\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet2252\",\r\n \"etag\": \"W/\\\"ff72dc07-42e5-4d32-bcd1-6d92b4911872\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376/subnets/azsmnet2252\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet8297\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet8583\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "e136fa58-0f19-4a46-9e35-a6a7d24e223d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e136fa58-0f19-4a46-9e35-a6a7d24e223d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e136fa58-0f19-4a46-9e35-a6a7d24e223d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2040\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376/subnets/azsmnet2252\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet8297\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet8583\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/probes/azsmnet6266\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet6266\",\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 \"inboundNatPools\": [],\r\n \"outboundNatRules\": [],\r\n \"resourceGuid\": \"0296cf87-5d50-4fce-9fb0-055dae5af2de\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "6beeefcf-99bd-4697-828a-71ea9ab26d3d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6beeefcf-99bd-4697-828a-71ea9ab26d3d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6beeefcf-99bd-4697-828a-71ea9ab26d3d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -743,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -789,7 +789,7 @@ "6cd22eff-f535-476e-895b-85418749a134" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZjZDIyZWZmLWY1MzUtNDc2ZS04OTViLTg1NDE4NzQ5YTEzND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZjZDIyZWZmLWY1MzUtNDc2ZS04OTViLTg1NDE4NzQ5YTEzND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,8 +916,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -949,7 +949,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -962,7 +962,7 @@ "6bf37bbe-9cc4-4b2c-8776-e67472f3b824" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,8 +980,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZiZjM3YmJlLTljYzQtNGIyYy04Nzc2LWU2NzQ3MmYzYjgyND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZiZjM3YmJlLTljYzQtNGIyYy04Nzc2LWU2NzQ3MmYzYjgyND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json index ba20fb509f42..9dd530e44ea1 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8249\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2177\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "2f3e4c16-6339-4b37-b653-d4317887a159" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYzZTRjMTYtNjMzOS00YjM3LWI2NTMtZDQzMTc4ODdhMTU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYzZTRjMTYtNjMzOS00YjM3LWI2NTMtZDQzMTc4ODdhMTU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDgyNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDgyNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDIxNzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDIxNzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/networkInterfaces/azsmnet2520?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI1MjA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/networkInterfaces/azsmnet2520?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI1MjA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1712\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json index da8c945d43ac..0e5630780761 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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}", "RequestHeaders": { @@ -167,7 +167,7 @@ "12fbba8e-ab04-436d-84a1-625f46c202f6" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -414,7 +414,7 @@ "d494c757-68f0-45d0-9cf0-dba5c2cdcd05" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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}", "RequestHeaders": { @@ -658,7 +658,7 @@ "59f8cc76-3006-45fc-a35f-52a40040e9b4" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/59f8cc76-3006-45fc-a35f-52a40040e9b4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -976,8 +976,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1009,7 +1009,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1022,7 +1022,7 @@ "aa4769b3-0555-4b4d-bf93-ec75ac59336f" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1040,8 +1040,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1095,8 +1095,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1128,7 +1128,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1141,7 +1141,7 @@ "ec9b9318-944d-4129-9cc4-ac5b9aec2f4d" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1159,8 +1159,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1214,8 +1214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1247,7 +1247,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1260,7 +1260,7 @@ "26a085d4-53bb-4078-b6ae-c11c9ff3337d" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1278,8 +1278,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json index 7b9d10e3c6b3..fab8774ff389 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5051\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3881820c-25c4-43bc-a03a-305b8451d77f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM4ODE4MjBjLTI1YzQtNDNiYy1hMDNhLTMwNWI4NDUxZDc3Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM4ODE4MjBjLTI1YzQtNDNiYy1hMDNhLTMwNWI4NDUxZDc3Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\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\": \"azsmnet9491\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "406304b5-998f-438a-8b94-4f8e4c068d71" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzQwNjMwNGI1LTk5OGYtNDM4YS04Yjk0LTRmOGU0YzA2OGQ3MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzQwNjMwNGI1LTk5OGYtNDM4YS04Yjk0LTRmOGU0YzA2OGQ3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1L3N1Ym5ldHMvYXpzbW5ldDk0OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1L3N1Ym5ldHMvYXpzbW5ldDk0OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipv4ipconfig792\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ipv6ipconfig4450\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv6\",\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "bf2587c6-c933-42bf-8114-047fb0033458" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bf2587c6-c933-42bf-8114-047fb0033458?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bf2587c6-c933-42bf-8114-047fb0033458?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,8 +971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1004,7 +1004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1017,7 +1017,7 @@ "c8341a35-6cc2-49f2-8d26-351acab85730" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,8 +1035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2M4MzQxYTM1LTZjYzItNDlmMi04ZDI2LTM1MWFjYWI4NTczMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2M4MzQxYTM1LTZjYzItNDlmMi04ZDI2LTM1MWFjYWI4NTczMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,8 +1090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1123,7 +1123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1136,7 +1136,7 @@ "bb6bebcd-c58f-481e-9924-778276ae0606" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1154,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2JiNmJlYmNkLWM1OGYtNDgxZS05OTI0LTc3ODI3NmFlMDYwNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2JiNmJlYmNkLWM1OGYtNDgxZS05OTI0LTc3ODI3NmFlMDYwNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,8 +1209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1242,7 +1242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1255,7 +1255,7 @@ "ddd5be95-00cf-4031-993d-c2ec96e3812d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1273,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2RkZDViZTk1LTAwY2YtNDAzMS05OTNkLWMyZWM5NmUzODEyZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2RkZDViZTk1LTAwY2YtNDAzMS05OTNkLWMyZWM5NmUzODEyZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json index 673f1e1b90e3..6f00311ba6ef 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet9996\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3618ebb7-24be-434f-bbfc-3aeea1ed27e2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzYxOGViYjctMjRiZS00MzRmLWJiZmMtM2FlZWExZWQyN2UyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzYxOGViYjctMjRiZS00MzRmLWJiZmMtM2FlZWExZWQyN2UyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4L3N1Ym5ldHMvYXpzbW5ldDk5OTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4L3N1Ym5ldHMvYXpzbW5ldDk5OTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996\"\r\n }\r\n },\r\n \"name\": \"azsmnet5670\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"1.0.0.1\",\r\n \"1.0.0.2\"\r\n ],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "f273ca10-2b73-4b7a-adcb-843d2cf4894c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f273ca10-2b73-4b7a-adcb-843d2cf4894c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f273ca10-2b73-4b7a-adcb-843d2cf4894c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "999431c8-2c8c-40b2-9dd2-285624e3a112" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk5NDMxYzgtMmM4Yy00MGIyLTlkZDItMjg1NjI0ZTNhMTEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk5NDMxYzgtMmM4Yy00MGIyLTlkZDItMjg1NjI0ZTNhMTEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "610d0d8b-e937-4a27-806e-182f67105689" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjEwZDBkOGItZTkzNy00YTI3LTgwNmUtMTgyZjY3MTA1Njg5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjEwZDBkOGItZTkzNy00YTI3LTgwNmUtMTgyZjY3MTA1Njg5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json index 57b19b3557fb..b4e1ec9c6c64 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet7512\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "53e216aa-b677-4c58-9fc9-e541fdf21d11" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNlMjE2YWEtYjY3Ny00YzU4LTlmYzktZTU0MWZkZjIxZDExP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNlMjE2YWEtYjY3Ny00YzU4LTlmYzktZTU0MWZkZjIxZDExP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0L3N1Ym5ldHMvYXpzbW5ldDc1MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0L3N1Ym5ldHMvYXpzbW5ldDc1MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512\"\r\n }\r\n },\r\n \"name\": \"azsmnet6647\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"1.0.0.1\",\r\n \"1.0.0.2\"\r\n ],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "f86d4fc2-8e02-4294-b8bd-e381115a3769" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f86d4fc2-8e02-4294-b8bd-e381115a3769?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f86d4fc2-8e02-4294-b8bd-e381115a3769?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "930e8b36-b134-4dd6-9411-8b5e80fcfec0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwZThiMzYtYjEzNC00ZGQ2LTk0MTEtOGI1ZTgwZmNmZWMwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwZThiMzYtYjEzNC00ZGQ2LTk0MTEtOGI1ZTgwZmNmZWMwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "24b51407-43bc-4eb7-b256-69f74a70212d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjRiNTE0MDctNDNiYy00ZWI3LWIyNTYtNjlmNzRhNzAyMTJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjRiNTE0MDctNDNiYy00ZWI3LWIyNTYtNjlmNzRhNzAyMTJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json index aa9fbdfdfa34..22581ad6d0c2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet1289\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "7b73f3ff-87d1-4336-9503-1ecadcd8be0c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2I3M2YzZmYtODdkMS00MzM2LTk1MDMtMWVjYWRjZDhiZTBjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2I3M2YzZmYtODdkMS00MzM2LTk1MDMtMWVjYWRjZDhiZTBjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "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\": \"azsmnet9761\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -350,7 +350,7 @@ "d3d925f7-f43d-403b-b5e0-aafde256930d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDNkOTI1ZjctZjQzZC00MDNiLWI1ZTAtYWFmZGUyNTY5MzBkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDNkOTI1ZjctZjQzZC00MDNiLWI1ZTAtYWFmZGUyNTY5MzBkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9761\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/securityRules/azsmnet9761\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"df2612a2-9f2c-4641-ae62-31982ad26eec\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980\",\r\n \"location\": \"eastus\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612/subnets/azsmnet1289\"\r\n }\r\n },\r\n \"name\": \"azsmnet9385\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -594,7 +594,7 @@ "f2de0f45-a61a-436c-a77f-f6f1cfa32749" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/f2de0f45-a61a-436c-a77f-f6f1cfa32749?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/f2de0f45-a61a-436c-a77f-f6f1cfa32749?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,8 +612,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464/effectiveNetworkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464/effectiveNetworkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json index 81fd106807d0..756a58f041fe 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet6595\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "e16aeb62-7174-4d4b-9e7b-9dc47d3b300b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2YWViNjItNzE3NC00ZDRiLTllN2ItOWRjNDdkM2IzMDBiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2YWViNjItNzE3NC00ZDRiLTllN2ItOWRjNDdkM2IzMDBiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4L3N1Ym5ldHMvYXpzbW5ldDY1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4L3N1Ym5ldHMvYXpzbW5ldDY1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "eb361df5-f998-4434-bf5a-062492302f90" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb361df5-f998-4434-bf5a-062492302f90?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb361df5-f998-4434-bf5a-062492302f90?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet8404\",\r\n \"etag\": \"W/\\\"e11d6788-0f5a-4474-b07e-160df313fe1a\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682/ipConfigurations/azsmnet8404\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vlmtkxhqcrjuppuzwmwcy12tbb.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": true,\r\n \"resourceGuid\": \"7d6b5cca-b79f-4864-9ef4-c15a17a31419\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e11d6788-0f5a-4474-b07e-160df313fe1a\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -743,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -789,7 +789,7 @@ "37174060-7b1b-4ece-a928-3094a8d18845" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcxNzQwNjAtN2IxYi00ZWNlLWE5MjgtMzA5NGE4ZDE4ODQ1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcxNzQwNjAtN2IxYi00ZWNlLWE5MjgtMzA5NGE4ZDE4ODQ1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,8 +916,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -949,7 +949,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -962,7 +962,7 @@ "e0c0e99b-cd17-43b6-bcfa-73ece75e9605" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,8 +980,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBjMGU5OWItY2QxNy00M2I2LWJjZmEtNzNlY2U3NWU5NjA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBjMGU5OWItY2QxNy00M2I2LWJjZmEtNzNlY2U3NWU5NjA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json index a44bf35a0643..c9f0f48cfeae 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9820\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "445ecc2b-8cab-47c6-8cf5-f27ef58c6f41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDQ1ZWNjMmItOGNhYi00N2M2LThjZjUtZjI3ZWY1OGM2ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDQ1ZWNjMmItOGNhYi00N2M2LThjZjUtZjI3ZWY1OGM2ZjQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East 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\": \"azsmnet3029\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "2db579ed-ab30-4409-abed-01079ed6aadb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmRiNTc5ZWQtYWIzMC00NDA5LWFiZWQtMDEwNzllZDZhYWRiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmRiNTc5ZWQtYWIzMC00NDA5LWFiZWQtMDEwNzllZDZhYWRiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0L3N1Ym5ldHMvYXpzbW5ldDMwMjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0L3N1Ym5ldHMvYXpzbW5ldDMwMjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3794\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "cbefd58a-85af-4671-b8ef-8267d4df4747" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/cbefd58a-85af-4671-b8ef-8267d4df4747?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/cbefd58a-85af-4671-b8ef-8267d4df4747?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,8 +971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1004,7 +1004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1017,7 +1017,7 @@ "a4354010-5717-4653-af48-020895676b17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,8 +1035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQzNTQwMTAtNTcxNy00NjUzLWFmNDgtMDIwODk1Njc2YjE3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQzNTQwMTAtNTcxNy00NjUzLWFmNDgtMDIwODk1Njc2YjE3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,8 +1090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1123,7 +1123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1136,7 +1136,7 @@ "5cc2a384-0a40-4da2-9c34-859484e09efe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1154,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWNjMmEzODQtMGE0MC00ZGEyLTljMzQtODU5NDg0ZTA5ZWZlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWNjMmEzODQtMGE0MC00ZGEyLTljMzQtODU5NDg0ZTA5ZWZlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,8 +1209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1242,7 +1242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1255,7 +1255,7 @@ "0038f628-e452-4f45-812d-7efd6d0cac2d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1273,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDAzOGY2MjgtZTQ1Mi00ZjQ1LTgxMmQtN2VmZDZkMGNhYzJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDAzOGY2MjgtZTQ1Mi00ZjQ1LTgxMmQtN2VmZDZkMGNhYzJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json index aef34f068bfb..820a70192902 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet2837\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "bc9a8556-b961-40a0-9019-770a3478bece" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmM5YTg1NTYtYjk2MS00MGEwLTkwMTktNzcwYTM0NzhiZWNlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmM5YTg1NTYtYjk2MS00MGEwLTkwMTktNzcwYTM0NzhiZWNlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "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\": \"azsmnet40\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -350,7 +350,7 @@ "72821b37-7181-4fba-ac9f-666e4ae59d4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzI4MjFiMzctNzE4MS00ZmJhLWFjOWYtNjY2ZTRhZTU5ZDRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzI4MjFiMzctNzE4MS00ZmJhLWFjOWYtNjY2ZTRhZTU5ZDRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet40\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/securityRules/azsmnet40\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"934e8452-0070-43cf-9b4c-1e68110717eb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465\",\r\n \"location\": \"westus\"\r\n },\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/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053/subnets/azsmnet2837\"\r\n }\r\n },\r\n \"name\": \"azsmnet5652\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -594,7 +594,7 @@ "ca2465ca-7e5f-4d68-9014-559fd9ea6deb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ca2465ca-7e5f-4d68-9014-559fd9ea6deb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ca2465ca-7e5f-4d68-9014-559fd9ea6deb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,8 +612,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -767,7 +767,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -780,7 +780,7 @@ "1a83fd25-aad9-4b8c-8589-7b5470a4193c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,8 +798,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE4M2ZkMjUtYWFkOS00YjhjLTg1ODktN2I1NDcwYTQxOTNjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE4M2ZkMjUtYWFkOS00YjhjLTg1ODktN2I1NDcwYTQxOTNjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -853,8 +853,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -907,8 +907,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -940,7 +940,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -953,7 +953,7 @@ "41bd6817-bafa-41a2-9972-7f4fee825cea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -971,8 +971,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFiZDY4MTctYmFmYS00MWEyLTk5NzItN2Y0ZmVlODI1Y2VhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFiZDY4MTctYmFmYS00MWEyLTk5NzItN2Y0ZmVlODI1Y2VhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1026,8 +1026,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1059,7 +1059,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1072,7 +1072,7 @@ "fb7d529e-41e0-4aff-8e3e-21c68e56fd0e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1090,8 +1090,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmI3ZDUyOWUtNDFlMC00YWZmLThlM2UtMjFjNjhlNTZmZDBlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmI3ZDUyOWUtNDFlMC00YWZmLThlM2UtMjFjNjhlNTZmZDBlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json index efe657a09e5a..85475b1cd318 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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\": \"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 \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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-03-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-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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\": \"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 \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"azsmnet5615\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "944f01c2-77b2-40f8-82a9-e045b2d480b3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTQ0ZjAxYzItNzdiMi00MGY4LTgyYTktZTA0NWIyZDQ4MGIzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTQ0ZjAxYzItNzdiMi00MGY4LTgyYTktZTA0NWIyZDQ4MGIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDYvc3VibmV0cy9henNtbmV0NTYxNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDYvc3VibmV0cy9henNtbmV0NTYxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/networkInterfaces/azsmnet6898?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY4OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/networkInterfaces/azsmnet6898?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY4OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"azsmnet1333\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": true\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json index c0873c483e65..cad22f4219a0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "7120bd31-52fd-4930-8efa-92cca097ff1c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzEyMGJkMzEtNTJmZC00OTMwLThlZmEtOTJjY2EwOTdmZjFjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzEyMGJkMzEtNTJmZC00OTMwLThlZmEtOTJjY2EwOTdmZjFjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -568,7 +568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -581,7 +581,7 @@ "5643405a-4d6b-4219-99ec-4f36cefb7a10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -599,8 +599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTY0MzQwNWEtNGQ2Yi00MjE5LTk5ZWMtNGYzNmNlZmI3YTEwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTY0MzQwNWEtNGQ2Yi00MjE5LTk5ZWMtNGYzNmNlZmI3YTEwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json index f1753246321b..fcccf5847bff 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -154,7 +154,7 @@ "a57f505b-b51f-4237-9476-5550060e76c9" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -223,7 +223,7 @@ "6d429732-cf6e-4850-b7a9-9540b533611f" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -587,7 +587,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -644,7 +644,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -705,7 +705,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -756,7 +756,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -788,7 +788,7 @@ "ada432fe-0599-42de-9762-823b41e02fec" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -797,7 +797,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -819,7 +819,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json index a55bc2d58572..3b434935429b 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "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\": \"azsmnet9769\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "d3b1ceb3-fc95-45e0-874d-0553b5bab53b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -404,7 +404,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -461,7 +461,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -524,7 +524,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -556,7 +556,7 @@ "13308a66-8897-44ea-8df9-b12ca1d98e21" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,7 +565,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -587,7 +587,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json index 14847b6bb2a5..f20929eaa5fd 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"apiVersions\": [\r\n \"2016-12-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 \"apiVersions\": [\r\n \"2016-12-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/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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-03-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-03-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-03-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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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 \"apiVersions\": [\r\n \"2017-03-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 \"apiVersions\": [\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddressVersion\": \"IPv6\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"csmdnslabelpublicip1406\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "d39b9d63-14ac-4cb8-8bc6-629171fc57a2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDM5YjlkNjMtMTRhYy00Y2I4LThiYzYtNjI5MTcxZmM1N2EyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDM5YjlkNjMtMTRhYy00Y2I4LThiYzYtNjI5MTcxZmM1N2EyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -568,7 +568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -581,7 +581,7 @@ "fc579ad7-d1fe-49a3-99ca-9e301fbc0796" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -599,8 +599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM1NzlhZDctZDFmZS00OWEzLTk5Y2EtOWUzMDFmYmMwNzk2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM1NzlhZDctZDFmZS00OWEzLTk5Y2EtOWUzMDFmYmMwNzk2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -654,8 +654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"csmdnslabelpublicip1406\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -706,7 +706,7 @@ "83a5dde1-2b52-4c78-99bb-7ee5001ab69c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -724,8 +724,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNhNWRkZTEtMmI1Mi00Yzc4LTk5YmItN2VlNTAwMWFiNjljP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNhNWRkZTEtMmI1Mi00Yzc4LTk5YmItN2VlNTAwMWFiNjljP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -779,8 +779,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -837,8 +837,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -901,8 +901,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -934,7 +934,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -947,7 +947,7 @@ "a0b157e4-ac6d-46d0-9a73-dbc3fc69280c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -965,8 +965,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBiMTU3ZTQtYWM2ZC00NmQwLTlhNzMtZGJjM2ZjNjkyODBjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBiMTU3ZTQtYWM2ZC00NmQwLTlhNzMtZGJjM2ZjNjkyODBjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json index 0a8a05544ddc..aa335f46a5c0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2781\"\r\n },\r\n \"idleTimeoutInMinutes\": 16\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "3250be31-367d-4a1a-96ad-e25adb1815b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"ee1883f7-8770-41a4-a42a-514f7b1ee87d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2781\",\r\n \"fqdn\": \"azsmnet2781.australiasoutheast.cloudapp.azure.com\",\r\n \"reverseFqdn\": \"azsmnet2781.australiasoutheast.cloudapp.azure.com\"\r\n },\r\n \"idleTimeoutInMinutes\": 16,\r\n \"resourceGuid\": \"565a8af7-d851-4520-8442-5901971e7630\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "6b3e5417-f2af-47bb-a8b4-11ca41ec00f8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,7 +759,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -791,7 +791,7 @@ "2ece8ab6-7318-4954-b1ce-93646466f555" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -800,7 +800,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operationResults/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operationResults/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -822,7 +822,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json index ffb17767f641..d9b8ac02be8d 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "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\": \"azsmnet8397\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "9300ca35-e10e-4803-9a19-ccbe70a88005" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwMGNhMzUtZTEwZS00ODAzLTlhMTktY2NiZTcwYTg4MDA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwMGNhMzUtZTEwZS00ODAzLTlhMTktY2NiZTcwYTg4MDA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet8397?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgzOTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet8397?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgzOTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\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\": \"azsmnet816\"\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "b54f2a54-7610-4887-a5e4-3facc44b6e4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjU0ZjJhNTQtNzYxMC00ODg3LWE1ZTQtM2ZhY2M0NGI2ZTRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjU0ZjJhNTQtNzYxMC00ODg3LWE1ZTQtM2ZhY2M0NGI2ZTRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -892,7 +892,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -905,7 +905,7 @@ "b6870c53-cd86-4331-93a0-7049be9a172d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -923,8 +923,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY4NzBjNTMtY2Q4Ni00MzMxLTkzYTAtNzA0OWJlOWExNzJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY4NzBjNTMtY2Q4Ni00MzMxLTkzYTAtNzA0OWJlOWExNzJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -978,8 +978,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1011,7 +1011,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1024,7 +1024,7 @@ "8a91f8d2-0056-477a-9c1e-ebc67ec78aaa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1042,8 +1042,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGE5MWY4ZDItMDA1Ni00NzdhLTljMWUtZWJjNjdlYzc4YWFhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGE5MWY4ZDItMDA1Ni00NzdhLTljMWUtZWJjNjdlYzc4YWFhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1097,8 +1097,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json index bf091c25077e..dcb278467ec5 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "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\": \"azsmnet8334\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "2fcae6d6-c43b-4e96-b23c-61c0228b165a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"azsmnet5369\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "8b7446cd-d269-455b-a81c-29f8cd144774" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,7 +727,7 @@ "f78e960c-8975-4d9e-84fa-c28eea2d0bd2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -758,7 +758,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json index cce327763e55..81c9236fa178 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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/c1fd1678-d0fe-4253-a15f-a03eee323432/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet3524\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "ae5fd15b-d60b-4b34-9452-57746445103a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWU1ZmQxNWItZDYwYi00YjM0LTk0NTItNTc3NDY0NDUxMDNhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWU1ZmQxNWItZDYwYi00YjM0LTk0NTItNTc3NDY0NDUxMDNhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json index 5557a7e08d3a..2a677d5647cf 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"registrationState\": \"Registered\"\r\n}", + "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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "15044d4c-3df8-4152-a39c-c0255289b846" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTUwNDRkNGMtM2RmOC00MTUyLWEzOWMtYzAyNTUyODliODQ2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTUwNDRkNGMtM2RmOC00MTUyLWEzOWMtYzAyNTUyODliODQ2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/usages?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/usages?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json index a94124495b22..59cbd63f4bae 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json @@ -61,8 +61,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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.1.0/24\"\r\n },\r\n \"name\": \"azsmnet7919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet2000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -113,7 +113,7 @@ "bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -131,8 +131,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9iYzc3ZWI1Ny0wYjRjLTRmZTgtYWMwZS05OGJlYTJkNWYyYzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9iYzc3ZWI1Ny0wYjRjLTRmZTgtYWMwZS05OGJlYTJkNWYyYzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -186,8 +186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -244,8 +244,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -308,8 +308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -369,8 +369,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.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.1.1.0/24\"\r\n },\r\n \"name\": \"azsmnet7919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.2.0/24\"\r\n },\r\n \"name\": \"azsmnet2000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -475,7 +475,7 @@ "6f1e3332-1c7e-49be-8de6-e0d05d150ff9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -493,8 +493,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82ZjFlMzMzMi0xYzdlLTQ5YmUtOGRlNi1lMGQwNWQxNTBmZjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82ZjFlMzMzMi0xYzdlLTQ5YmUtOGRlNi1lMGQwNWQxNTBmZjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -548,8 +548,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -606,8 +606,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -667,8 +667,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,8 +728,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -789,8 +789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowVirtualNetworkAccess\": false,\r\n \"allowForwardedTraffic\": true,\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391\"\r\n }\r\n },\r\n \"name\": \"azsmnet3453\"\r\n}", "RequestHeaders": { @@ -841,7 +841,7 @@ "d5541592-049c-4c84-8b93-2f151349c8f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,8 +859,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kNTU0MTU5Mi0wNDljLTRjODQtOGI5My0yZjE1MTM0OWM4Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kNTU0MTU5Mi0wNDljLTRjODQtOGI5My0yZjE1MTM0OWM4Zjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -914,8 +914,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -972,8 +972,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,8 +1036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1069,7 +1069,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1082,7 +1082,7 @@ "6684a1f4-8428-45c0-bb6b-c25a44d4833c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1100,8 +1100,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82Njg0YTFmNC04NDI4LTQ1YzAtYmI2Yi1jMjVhNDRkNDgzM2M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82Njg0YTFmNC04NDI4LTQ1YzAtYmI2Yi1jMjVhNDRkNDgzM2M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,8 +1155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1188,7 +1188,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1201,7 +1201,7 @@ "c401ba88-eaec-4651-8550-e2b8795b28c4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1219,8 +1219,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jNDAxYmE4OC1lYWVjLTQ2NTEtODU1MC1lMmI4Nzk1YjI4YzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jNDAxYmE4OC1lYWVjLTQ2NTEtODU1MC1lMmI4Nzk1YjI4YzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1274,8 +1274,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1307,7 +1307,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1320,7 +1320,7 @@ "fbe9a49e-ee49-4cd2-9e6b-aec391eb8078" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,8 +1338,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mYmU5YTQ5ZS1lZTQ5LTRjZDItOWU2Yi1hZWMzOTFlYjgwNzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mYmU5YTQ5ZS1lZTQ5LTRjZDItOWU2Yi1hZWMzOTFlYjgwNzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json index 5719245c7dc1..b77db5b654ff 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "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-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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.1.0/24\"\r\n },\r\n \"name\": \"azsmnet1873\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet997\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "0d9b13a2-9865-4553-b38c-899a1b7f170f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ5YjEzYTItOTg2NS00NTUzLWIzOGMtODk5YTFiN2YxNzBmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ5YjEzYTItOTg2NS00NTUzLWIzOGMtODk5YTFiN2YxNzBmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -553,8 +553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -586,7 +586,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -599,7 +599,7 @@ "da3c92e3-ca15-4330-9719-bd5536d2cda5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,8 +617,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEzYzkyZTMtY2ExNS00MzMwLTk3MTktYmQ1NTM2ZDJjZGE1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEzYzkyZTMtY2ExNS00MzMwLTk3MTktYmQ1NTM2ZDJjZGE1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json index 0513cf5598ba..58834bc64100 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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/c1fd1678-d0fe-4253-a15f-a03eee323432/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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.1.0/24\"\r\n },\r\n \"name\": \"azsmnet3416\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3995e6e8-2a31-4716-9e9d-e974fdc5cee9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzk5NWU2ZTgtMmEzMS00NzE2LTllOWQtZTk3NGZkYzVjZWU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzk5NWU2ZTgtMmEzMS00NzE2LTllOWQtZTk3NGZkYzVjZWU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL3N1Ym5ldHMvYXpzbW5ldDM0MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL3N1Ym5ldHMvYXpzbW5ldDM0MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.1.9\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416\"\r\n }\r\n },\r\n \"name\": \"azsmnet4903\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "bcea5bd3-3988-4c94-8988-ce1128de88bc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/bcea5bd3-3988-4c94-8988-ce1128de88bc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/bcea5bd3-3988-4c94-8988-ce1128de88bc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.10&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuMTAmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.10&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuMTAmYXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -548,8 +548,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.9&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuOSZhcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.9&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuOSZhcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -642,7 +642,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -655,7 +655,7 @@ "d894dfdd-726f-461c-95b3-564fba881898" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -673,8 +673,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg5NGRmZGQtNzI2Zi00NjFjLTk1YjMtNTY0ZmJhODgxODk4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg5NGRmZGQtNzI2Zi00NjFjLTk1YjMtNTY0ZmJhODgxODk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,8 +728,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -761,7 +761,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -774,7 +774,7 @@ "de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,8 +792,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGUwNWJiY2EtYzNiYi00N2M5LThlZWUtYTNiZmM2YjQyYmIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGUwNWJiY2EtYzNiYi00N2M5LThlZWUtYTNiZmM2YjQyYmIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json index 632369a5eeb3..93160a190fb7 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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\": \"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 \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"registrationState\": \"Registered\"\r\n}", + "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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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-03-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-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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\": \"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 \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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.1.0/24\"\r\n },\r\n \"name\": \"azsmnet6700\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet7820\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -170,7 +170,7 @@ "e9c55f19-519e-4c28-a7c2-38d4c48caf56" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,8 +188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTljNTVmMTktNTE5ZS00YzI4LWE3YzItMzhkNGM0OGNhZjU2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTljNTVmMTktNTE5ZS00YzI4LWE3YzItMzhkNGM0OGNhZjU2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -244,8 +244,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -303,8 +303,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -368,8 +368,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -433,8 +433,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -498,8 +498,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"azsmnet6700\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -551,7 +551,7 @@ "53c9e2d1-865d-4bc5-9cab-925bf0afb411" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,8 +569,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNjOWUyZDEtODY1ZC00YmM1LTljYWItOTI1YmYwYWZiNDExP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNjOWUyZDEtODY1ZC00YmM1LTljYWItOTI1YmYwYWZiNDExP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -625,8 +625,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowForwardedTraffic\": true,\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -737,7 +737,7 @@ "abbc845f-7549-4105-9ab5-ed3270f676c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,8 +755,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWJiYzg0NWYtNzU0OS00MTA1LTlhYjUtZWQzMjcwZjY3NmM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWJiYzg0NWYtNzU0OS00MTA1LTlhYjUtZWQzMjcwZjY3NmM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -811,8 +811,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,8 +870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -935,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -997,8 +997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1059,8 +1059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1093,7 +1093,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1106,7 +1106,7 @@ "72f70e8c-36a1-4482-87ea-8576fcf7f823" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1124,8 +1124,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzJmNzBlOGMtMzZhMS00NDgyLTg3ZWEtODU3NmZjZjdmODIzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzJmNzBlOGMtMzZhMS00NDgyLTg3ZWEtODU3NmZjZjdmODIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1180,8 +1180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1214,7 +1214,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1227,7 +1227,7 @@ "bf6e70fe-9654-4caa-ab74-9a2a50cf683c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,8 +1245,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY2ZTcwZmUtOTY1NC00Y2FhLWFiNzQtOWEyYTUwY2Y2ODNjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY2ZTcwZmUtOTY1NC00Y2FhLWFiNzQtOWEyYTUwY2Y2ODNjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1335,7 +1335,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1348,7 +1348,7 @@ "1e1eff12-10ca-460f-9ff5-098c619eae9b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1366,8 +1366,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWUxZWZmMTItMTBjYS00NjBmLTlmZjUtMDk4YzYxOWVhZTliP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWUxZWZmMTItMTBjYS00NjBmLTlmZjUtMDk4YzYxOWVhZTliP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { From 678613cf53e6e067c478ac3199c28c35440b7e7b Mon Sep 17 00:00:00 2001 From: jobatzil Date: Fri, 17 Mar 2017 15:35:54 -0700 Subject: [PATCH 16/56] #WAF changed version in rest API calls of Compute/SessionRecords. --- .../TestOperations.json | 2 +- .../TestDCOSOperations.json | 2 +- .../TestSwarmOperations.json | 2 +- .../TestContainerServiceUpdateOperations.json | 2 +- .../TestExtImgGet.json | 2 +- .../TestExtImgListTypes.json | 2 +- .../TestExtImgListVersionsFilters.json | 2 +- .../TestExtImgListVersionsNoFilter.json | 2 +- .../TestVMExtensionOperations.json | 50 ++--- .../TestImageOperations.json | 50 ++--- .../TestListVMInSubscription.json | 100 +++++----- .../TestVMWithLinuxOSProfile.json | 50 ++--- .../TestVMWithWindowsOSProfile.json | 104 +++++----- .../TestListUsages.json | 50 ++--- .../TestVMCertificatesOperations.json | 30 +-- .../TestVMDataDiskScenario.json | 50 ++--- .../TestVMBootDiagnostics.json | 50 ++--- .../TestVMDiskEncryption.json | 26 +-- .../TestVMDiskSizeScenario.json | 50 ++--- .../TestVMBYOL.json | 50 ++--- .../TestVMMarketplace.json | 50 ++--- .../TestEffectiveRouteAndAcls.json | 78 ++++---- .../TestMultiIpConfigForMultiNICVM.json | 54 ++--- .../TestMultiNicVirtualMachineReference.json | 54 ++--- .../TestNicVirtualMachineReference.json | 36 ++-- .../TestVMOperations.json | 100 +++++----- .../TestVMOperations_Redeploy.json | 50 ++--- .../TestVMScaleSetMarketplace.json | 46 ++--- .../TestVMScaleSetWithApplciationGateway.json | 184 +++++++++--------- .../TestVMScaleSetBatchOperations.json | 50 ++--- .../TestVMScaleSetOperations.json | 50 ++--- ...TestVMScaleSetOperations_ManagedDisks.json | 50 ++--- .../TestVMScaleSetScenarioOperations.json | 50 ++--- ...narioOperations_ManagedDisks_PirImage.json | 50 ++--- .../TestVMScaleSetScalingOperations.json | 50 ++--- .../TestVMScaleSetUpdateOperations.json | 50 ++--- .../TestVMScaleSetVMOperations.json | 50 ++--- ...stVMScaleSetVMOperations_ManagedDisks.json | 50 ++--- .../TestVMScenarioOperations.json | 50 ++--- ...TestVMScenarioOperations_ManagedDisks.json | 50 ++--- 40 files changed, 939 insertions(+), 939 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index 41d56c39d77b..c90d66618049 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1092,4 +1092,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json index 9f1f1e8233ad..0d03fdb6250b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json @@ -2175,4 +2175,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json index e8045406bdd2..bd443a53e6ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json @@ -2123,4 +2123,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json index fc3756c3a85c..2c1a98ed6570 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json @@ -2618,4 +2618,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index abc449435cb7..2343de8f650a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index d76a89158bb8..bfb318f6ef31 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index a164c1a3195c..bc9057da8c35 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -315,4 +315,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index e90bf7aad7ff..7bc95fedbe54 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json index 7b51902196c4..0a2e78ddd7e3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9607\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "6636e9ed-13b1-43c5-a732-2887eca688b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2MzZlOWVkLTEzYjEtNDNjNS1hNzMyLTI4ODdlY2E2ODhiMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2MzZlOWVkLTEzYjEtNDNjNS1hNzMyLTI4ODdlY2E2ODhiMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn2885\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "7e286ad3-e71a-4d8b-806f-ca8598fdd719" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlMjg2YWQzLWU3MWEtNGQ4Yi04MDZmLWNhODU5OGZkZDcxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlMjg2YWQzLWU3MWEtNGQ4Yi04MDZmLWNhODU5OGZkZDcxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Ni9zdWJuZXRzL3NuMjg4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Ni9zdWJuZXRzL3NuMjg4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip219\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2885\",\r\n \"etag\": \"W/\\\"216e9617-87f7-4b32-b6fa-5142ab44799b\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "e80bc784-fc35-4952-b020-e1621d0bf8a7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e80bc784-fc35-4952-b020-e1621d0bf8a7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e80bc784-fc35-4952-b020-e1621d0bf8a7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json index a69ada7e46b9..1992ecada87d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn95\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "39693354-72da-4b98-912c-0543840dabb6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5NjkzMzU0LTcyZGEtNGI5OC05MTJjLTA1NDM4NDBkYWJiNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5NjkzMzU0LTcyZGEtNGI5OC05MTJjLTA1NDM4NDBkYWJiNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn3745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "74ff459b-e193-46be-957b-5dc4b1502e9c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc0ZmY0NTliLWUxOTMtNDZiZS05NTdiLTVkYzRiMTUwMmU5Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc0ZmY0NTliLWUxOTMtNDZiZS05NTdiLTVkYzRiMTUwMmU5Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTYvc3VibmV0cy9zbjM3NDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTYvc3VibmV0cy9zbjM3NDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2603\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3745\",\r\n \"etag\": \"W/\\\"e31795eb-9431-42b9-96d8-fc44fbb6b67a\\\"\",\r\n \"id\": \"/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -929,7 +929,7 @@ "8b8876a7-f4cb-4d78-811c-e45cd8fe3c30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/8b8876a7-f4cb-4d78-811c-e45cd8fe3c30?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/8b8876a7-f4cb-4d78-811c-e45cd8fe3c30?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1012,8 +1012,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json index 9f3d7f1636b1..8ab6f8f85bb7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5539\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "4c4ef2f1-1edb-4cc5-ba59-8747661ac781" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjNGVmMmYxLTFlZGItNGNjNS1iYTU5LTg3NDc2NjFhYzc4MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjNGVmMmYxLTFlZGItNGNjNS1iYTU5LTg3NDc2NjFhYzc4MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn2379\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "81c704c5-1a6c-4dc9-bf88-74afe2a418c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxYzcwNGM1LTFhNmMtNGRjOS1iZjg4LTc0YWZlMmE0MThjNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxYzcwNGM1LTFhNmMtNGRjOS1iZjg4LTc0YWZlMmE0MThjNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4L3N1Ym5ldHMvc24yMzc5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4L3N1Ym5ldHMvc24yMzc5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6468\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2379\",\r\n \"etag\": \"W/\\\"09124712-1dc7-43e1-a2e6-3126e9a76e54\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2188,8 +2188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2924\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -2240,7 +2240,7 @@ "8efdc1fe-e795-43dd-9479-ded9e5a47ad9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2258,8 +2258,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZmRjMWZlLWU3OTUtNDNkZC05NDc5LWRlZDllNWE0N2FkOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZmRjMWZlLWU3OTUtNDNkZC05NDc5LWRlZDllNWE0N2FkOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2313,8 +2313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2371,8 +2371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2435,8 +2435,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn4669\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2487,7 +2487,7 @@ "ac9b713b-6eff-4e4c-ba24-0d82224e4a79" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2505,8 +2505,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjOWI3MTNiLTZlZmYtNGU0Yy1iYTI0LTBkODIyMjRlNGE3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjOWI3MTNiLTZlZmYtNGU0Yy1iYTI0LTBkODIyMjRlNGE3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2560,8 +2560,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2618,8 +2618,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzL3N1Ym5ldHMvc240NjY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzL3N1Ym5ldHMvc240NjY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2682,8 +2682,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7345\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn4669\",\r\n \"etag\": \"W/\\\"f16b3546-733c-405b-9c3e-542b5dacf471\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2731,7 +2731,7 @@ "d9756ef5-b2b2-4814-9c1c-e70e981d4e9e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d9756ef5-b2b2-4814-9c1c-e70e981d4e9e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d9756ef5-b2b2-4814-9c1c-e70e981d4e9e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2749,8 +2749,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2807,8 +2807,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json index 5a9a58b22790..bf4dec1f61d3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8223\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d51a812f-0f0f-43b5-a4c8-0c8be66ddd86" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1MWE4MTJmLTBmMGYtNDNiNS1hNGM4LTBjOGJlNjZkZGQ4Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1MWE4MTJmLTBmMGYtNDNiNS1hNGM4LTBjOGJlNjZkZGQ4Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn637\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzllZjJjY2NhLWMwYWYtNGEwZi05ZGE0LWZjYzhlYWIyYzkxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzllZjJjY2NhLWMwYWYtNGEwZi05ZGE0LWZjYzhlYWIyYzkxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDkvc3VibmV0cy9zbjYzNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDkvc3VibmV0cy9zbjYzNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3362\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn637\",\r\n \"etag\": \"W/\\\"b12f0d00-284c-4afc-84d5-bfa2ac1437de\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "882e78bc-fa42-4b1b-85de-954de4f8fbd1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/882e78bc-fa42-4b1b-85de-954de4f8fbd1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/882e78bc-fa42-4b1b-85de-954de4f8fbd1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json index d18ba0cde08c..8d0a6f72550e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json @@ -1637,7 +1637,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1678,7 +1678,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1706,7 +1706,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1747,7 +1747,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1775,7 +1775,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1816,7 +1816,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1844,7 +1844,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1885,7 +1885,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1913,7 +1913,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1964,7 +1964,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2015,7 +2015,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2066,7 +2066,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2117,7 +2117,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2171,7 +2171,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2225,7 +2225,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2279,7 +2279,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2333,7 +2333,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2393,7 +2393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2453,7 +2453,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2513,7 +2513,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2573,7 +2573,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2614,7 +2614,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2642,7 +2642,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2683,7 +2683,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2711,7 +2711,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2752,7 +2752,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2780,7 +2780,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2821,7 +2821,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2849,7 +2849,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,7 +2900,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,7 +2951,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,7 +3002,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,7 +3053,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,7 +3107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3161,7 +3161,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3215,7 +3215,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3269,7 +3269,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3329,7 +3329,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3389,7 +3389,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3449,7 +3449,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3509,7 +3509,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3547,7 +3547,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3575,7 +3575,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3613,7 +3613,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3641,7 +3641,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3679,7 +3679,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3707,7 +3707,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3745,7 +3745,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3773,7 +3773,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3833,7 +3833,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3893,7 +3893,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3953,7 +3953,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json index e31e6dd1e481..c0516ccd4ff6 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8029\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "994ef8d3-0ac7-4a32-90bd-0df1f017983f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NGVmOGQzLTBhYzctNGEzMi05MGJkLTBkZjFmMDE3OTgzZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NGVmOGQzLTBhYzctNGEzMi05MGJkLTBkZjFmMDE3OTgzZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn5051\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "28ad7faf-ccb1-45c9-b3a5-bee442bb02ca" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI4YWQ3ZmFmLWNjYjEtNDVjOS1iM2E1LWJlZTQ0MmJiMDJjYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI4YWQ3ZmFmLWNjYjEtNDVjOS1iM2E1LWJlZTQ0MmJiMDJjYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODgvc3VibmV0cy9zbjUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODgvc3VibmV0cy9zbjUwNTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9892\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5051\",\r\n \"etag\": \"W/\\\"e390030a-9b9c-4215-9f89-6e13f66b5e5f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "9cdb43a7-671b-4bfa-a7ff-4debe63a5560" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cdb43a7-671b-4bfa-a7ff-4debe63a5560?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cdb43a7-671b-4bfa-a7ff-4debe63a5560?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json index 943c588a56a7..d2e6d376615f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json @@ -341,7 +341,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3075\"\r\n }\r\n },\r\n \"location\": \"EastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -376,7 +376,7 @@ "80c4066a-ebd2-4caa-aaad-68871f8585ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -404,12 +404,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -458,7 +458,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -512,7 +512,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824?api-version=2017-03-01", "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\": \"azsmnet5000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastAsia\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { @@ -547,7 +547,7 @@ "e2d620bb-8279-45da-b8de-5a21a32126b8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -575,12 +575,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -629,7 +629,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824/subnets/azsmnet5000?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824/subnets/azsmnet5000?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -683,7 +683,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2017-03-01", "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/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualNetworks/azsmnet7824/subnets/azsmnet5000\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062\"\r\n }\r\n },\r\n \"name\": \"azsmnet7651\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet6511\",\r\n \"location\": \"EastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -718,7 +718,7 @@ "bfdd585b-89c3-4940-9896-4253781658b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,12 +746,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -800,7 +800,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json index cc669591681f..65eb1d7665b2 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8464\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d56c878a-38f1-4da1-ae6e-ddf675e0fb70" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1NmM4NzhhLTM4ZjEtNGRhMS1hZTZlLWRkZjY3NWUwZmI3MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1NmM4NzhhLTM4ZjEtNGRhMS1hZTZlLWRkZjY3NWUwZmI3MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn7187\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9da20380-b57e-47ac-9bc1-443d5399f32a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkYTIwMzgwLWI1N2UtNDdhYy05YmMxLTQ0M2Q1Mzk5ZjMyYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkYTIwMzgwLWI1N2UtNDdhYy05YmMxLTQ0M2Q1Mzk5ZjMyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjIvc3VibmV0cy9zbjcxODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjIvc3VibmV0cy9zbjcxODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9679\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7187\",\r\n \"etag\": \"W/\\\"da8250cc-8608-4a5f-be2a-6da45670caf0\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "de247dca-53d2-4573-94cc-01e65fd1fc7f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/de247dca-53d2-4573-94cc-01e65fd1fc7f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/de247dca-53d2-4573-94cc-01e65fd1fc7f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json index f9ec7b96f0e7..f12a62aa579f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn1593\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d7c2562b-e785-415a-9688-fef7ccbaa06d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q3YzI1NjJiLWU3ODUtNDE1YS05Njg4LWZlZjdjY2JhYTA2ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q3YzI1NjJiLWU3ODUtNDE1YS05Njg4LWZlZjdjY2JhYTA2ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn7677\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9cbff61d-7049-4ed5-8f85-7ee3c41f919f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljYmZmNjFkLTcwNDktNGVkNS04Zjg1LTdlZTNjNDFmOTE5Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljYmZmNjFkLTcwNDktNGVkNS04Zjg1LTdlZTNjNDFmOTE5Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzUvc3VibmV0cy9zbjc2Nzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzUvc3VibmV0cy9zbjc2Nzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5437\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7677\",\r\n \"etag\": \"W/\\\"7d8534a4-69a9-4cee-b681-077fca187496\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "3a9d081b-8a92-401d-a802-6e73054d3a41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/3a9d081b-8a92-401d-a802-6e73054d3a41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/3a9d081b-8a92-401d-a802-6e73054d3a41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json index c51908d49888..5578452f9551 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json @@ -407,7 +407,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9021\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -448,7 +448,7 @@ "c3ff3024-263e-4233-bb1e-5f70638c0791" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -476,7 +476,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -527,7 +527,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,7 +641,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn936\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "e237b881-ddbc-4325-aa80-228a59600b22" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,7 +710,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -761,7 +761,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -815,7 +815,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782/subnets/sn936?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782/subnets/sn936?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -875,7 +875,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3879\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn936\",\r\n \"etag\": \"W/\\\"15a0ea2d-97d4-4630-a984-5254777a1a75\\\"\",\r\n \"id\": \"/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualNetworks/vn3782/subnets/sn936\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -913,7 +913,7 @@ "4e22ec02-1666-463b-bb77-96399ed3431b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/4e22ec02-1666-463b-bb77-96399ed3431b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/4e22ec02-1666-463b-bb77-96399ed3431b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -941,7 +941,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json index 7eb4047d430c..0b79ff8a3a58 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9166\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "ea8294d9-40db-47e5-b805-ef87b4a12e2b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VhODI5NGQ5LTQwZGItNDdlNS1iODA1LWVmODdiNGExMmUyYj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VhODI5NGQ5LTQwZGItNDdlNS1iODA1LWVmODdiNGExMmUyYj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn8501\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "9a33cc62-b116-4432-b93f-81126bd08197" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzNjYzYyLWIxMTYtNDQzMi1iOTNmLTgxMTI2YmQwODE5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzNjYzYyLWIxMTYtNDQzMi1iOTNmLTgxMTI2YmQwODE5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzUvc3VibmV0cy9zbjg1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzUvc3VibmV0cy9zbjg1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -984,8 +984,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3443\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn8501\",\r\n \"etag\": \"W/\\\"10a352e0-7b29-4928-a52a-679aedb25eb6\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1033,7 +1033,7 @@ "18f5cc6d-346e-4f66-b765-573eb950e1a4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/18f5cc6d-346e-4f66-b765-573eb950e1a4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/18f5cc6d-346e-4f66-b765-573eb950e1a4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1051,8 +1051,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1109,8 +1109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json index 7a928f3972ab..a8b217a38c22 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json @@ -368,8 +368,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3046\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -420,7 +420,7 @@ "a80a4050-fd45-499d-9ed3-fd2e55db1d66" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,8 +438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E4MGE0MDUwLWZkNDUtNDk5ZC05ZWQzLWZkMmU1NWRiMWQ2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E4MGE0MDUwLWZkNDUtNDk5ZC05ZWQzLWZkMmU1NWRiMWQ2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -493,8 +493,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn3834\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -667,7 +667,7 @@ "403bb37b-9d4f-4711-a2af-20e373c1d7dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -685,8 +685,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwM2JiMzdiLTlkNGYtNDcxMS1hMmFmLTIwZTM3M2MxZDdkZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwM2JiMzdiLTlkNGYtNDcxMS1hMmFmLTIwZTM3M2MxZDdkZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -740,8 +740,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzMvc3VibmV0cy9zbjM4MzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzMvc3VibmV0cy9zbjM4MzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9059\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3834\",\r\n \"etag\": \"W/\\\"f18e1229-16c3-4246-9af5-d2dfe51925f0\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -911,7 +911,7 @@ "7e328178-6311-4522-8e21-9413a3451485" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e328178-6311-4522-8e21-9413a3451485?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e328178-6311-4522-8e21-9413a3451485?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -929,8 +929,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json index 69a4cc544414..123ecc068932 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6298\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -603,7 +603,7 @@ "84da3aac-dd98-400f-b27d-da784d0989da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -621,8 +621,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0ZGEzYWFjLWRkOTgtNDAwZi1iMjdkLWRhNzg0ZDA5ODlkYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0ZGEzYWFjLWRkOTgtNDAwZi1iMjdkLWRhNzg0ZDA5ODlkYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn6013\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -850,7 +850,7 @@ "73697911-5120-4e19-b0e5-7f182991944f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -868,8 +868,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzczNjk3OTExLTUxMjAtNGUxOS1iMGU1LTdmMTgyOTkxOTQ0Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzczNjk3OTExLTUxMjAtNGUxOS1iMGU1LTdmMTgyOTkxOTQ0Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -981,8 +981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTMvc3VibmV0cy9zbjYwMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTMvc3VibmV0cy9zbjYwMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,8 +1045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6577\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn6013\",\r\n \"etag\": \"W/\\\"cfe5e54a-75df-4ad2-a5a2-8fe583ed14be\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1094,7 +1094,7 @@ "4347fe14-c13e-4892-9de8-1c974820ecde" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4347fe14-c13e-4892-9de8-1c974820ecde?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4347fe14-c13e-4892-9de8-1c974820ecde?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1112,8 +1112,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1170,8 +1170,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json index 4faa0edcb4c3..dcea29f91250 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"sn3213\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "8654168d-aa01-415e-b701-740a896b258e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg2NTQxNjhkLWFhMDEtNDE1ZS1iNzAxLTc0MGE4OTZiMjU4ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg2NTQxNjhkLWFhMDEtNDE1ZS1iNzAxLTc0MGE4OTZiMjU4ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTMvc3VibmV0cy9zbjMyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTMvc3VibmV0cy9zbjMyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "4a5504d2-1005-4476-9b4b-17b4fe52d078" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhNTUwNGQyLTEwMDUtNDQ3Ni05YjRiLTE3YjRmZTUyZDA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhNTUwNGQyLTEwMDUtNDQ3Ni05YjRiLTE3YjRmZTUyZDA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"875dc796-a63c-40a7-adcd-61639d94c346\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878\",\r\n \"location\": \"southeastasia\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn3213\",\r\n \"etag\": \"W/\\\"1fa85aa4-d945-4932-8271-c9b2ccda90e7\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213\"\r\n }\r\n },\r\n \"name\": \"ip2684\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "303a1a67-97e6-4deb-a885-e58f8a9fc538" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/303a1a67-97e6-4deb-a885-e58f8a9fc538?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/303a1a67-97e6-4deb-a885-e58f8a9fc538?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1112,8 +1112,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2308,8 +2308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveRouteTable?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveRouteTable?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2344,7 +2344,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/f8724991-1a19-44ac-ba19-9df36c1966e7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/f8724991-1a19-44ac-ba19-9df36c1966e7?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2372,8 +2372,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveNetworkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveNetworkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2408,7 +2408,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2436,8 +2436,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2466,7 +2466,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2494,8 +2494,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2524,7 +2524,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json index 763d211ad96d..d7067d72862a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "bbf2ee81-a708-465f-ab38-0bbf854c6397" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiZjJlZTgxLWE3MDgtNDY1Zi1hYjM4LTBiYmY4NTRjNjM5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiZjJlZTgxLWE3MDgtNDY1Zi1hYjM4LTBiYmY4NTRjNjM5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODEvc3VibmV0cy9zbjEyOTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODEvc3VibmV0cy9zbjEyOTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6347\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ip23520\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "a6539b36-087c-46fc-885d-73bfaa84757d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/a6539b36-087c-46fc-885d-73bfaa84757d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/a6539b36-087c-46fc-885d-73bfaa84757d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7139\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ip21965\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -978,7 +978,7 @@ "98169df6-ba37-4496-bee5-79f47beeb013" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/98169df6-ba37-4496-bee5-79f47beeb013?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/98169df6-ba37-4496-bee5-79f47beeb013?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,8 +996,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,8 +1118,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json index 82ddcb931ba2..bf21199a5dbf 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "337fb129-529f-4643-a826-b3ed73bb1b7c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzN2ZiMTI5LTUyOWYtNDY0My1hODI2LWIzZWQ3M2JiMWI3Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzN2ZiMTI5LTUyOWYtNDY0My1hODI2LWIzZWQ3M2JiMWI3Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTAvc3VibmV0cy9zbjU4MDA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTAvc3VibmV0cy9zbjU4MDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9564\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5800\",\r\n \"etag\": \"W/\\\"d8307e21-ccdd-4415-9c00-b49e3efb0c04\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "f3f1a2c0-4e36-4695-a3fd-061b0131e522" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f3f1a2c0-4e36-4695-a3fd-061b0131e522?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f3f1a2c0-4e36-4695-a3fd-061b0131e522?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7059\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5800\",\r\n \"etag\": \"W/\\\"d8307e21-ccdd-4415-9c00-b49e3efb0c04\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -978,7 +978,7 @@ "102888f0-a1bd-4ca8-a6d5-18908a0b0516" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/102888f0-a1bd-4ca8-a6d5-18908a0b0516?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/102888f0-a1bd-4ca8-a6d5-18908a0b0516?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,8 +996,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,8 +1118,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json index e2139287c0b3..a4f941794281 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn5961\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "2dc7ea7b-d165-45b3-9978-ac843843a8aa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYzdlYTdiLWQxNjUtNDViMy05OTc4LWFjODQzODQzYThhYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYzdlYTdiLWQxNjUtNDViMy05OTc4LWFjODQzODQzYThhYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NS9zdWJuZXRzL3NuNTk2MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NS9zdWJuZXRzL3NuNTk2MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5746\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5961\",\r\n \"etag\": \"W/\\\"bd2aed07-e14c-40f0-a7dd-4b22b6185f61\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "a450fac6-ae9c-41fd-bc66-148f9cda4883" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a450fac6-ae9c-41fd-bc66-148f9cda4883?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a450fac6-ae9c-41fd-bc66-148f9cda4883?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json index f568bcf40d9b..41b926cf4eca 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json @@ -492,8 +492,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8133\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -544,7 +544,7 @@ "5f63c140-65af-4671-8059-f064fabc83be" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,8 +562,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVmNjNjMTQwLTY1YWYtNDY3MS04MDU5LWYwNjRmYWJjODNiZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVmNjNjMTQwLTY1YWYtNDY3MS04MDU5LWYwNjRmYWJjODNiZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -617,8 +617,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -675,8 +675,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -739,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn7804\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -791,7 +791,7 @@ "e6754412-902f-4285-9d98-e3abea367247" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,8 +809,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2NzU0NDEyLTkwMmYtNDI4NS05ZDk4LWUzYWJlYTM2NzI0Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2NzU0NDEyLTkwMmYtNDI4NS05ZDk4LWUzYWJlYTM2NzI0Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -864,8 +864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0L3N1Ym5ldHMvc243ODA0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0L3N1Ym5ldHMvc243ODA0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -986,8 +986,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7212\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7804\",\r\n \"etag\": \"W/\\\"b30468c9-5ebf-4f38-bea7-a6a2354ae10e\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1035,7 +1035,7 @@ "76e05b02-e233-4f14-8a86-6d87844e90a6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/76e05b02-e233-4f14-8a86-6d87844e90a6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/76e05b02-e233-4f14-8a86-6d87844e90a6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1053,8 +1053,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1111,8 +1111,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3683,8 +3683,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7945\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -3735,7 +3735,7 @@ "304afb2c-100c-4420-96f6-519e50214408" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3753,8 +3753,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwNGFmYjJjLTEwMGMtNDQyMC05NmY2LTUxOWU1MDIxNDQwOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwNGFmYjJjLTEwMGMtNDQyMC05NmY2LTUxOWU1MDIxNDQwOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3808,8 +3808,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3866,8 +3866,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3930,8 +3930,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn2271\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3982,7 +3982,7 @@ "f124a6aa-8ff4-44de-9a2c-55cc8d035926" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4000,8 +4000,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMjRhNmFhLThmZjQtNDRkZS05YTJjLTU1Y2M4ZDAzNTkyNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMjRhNmFhLThmZjQtNDRkZS05YTJjLTU1Y2M4ZDAzNTkyNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4055,8 +4055,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4113,8 +4113,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3L3N1Ym5ldHMvc24yMjcxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3L3N1Ym5ldHMvc24yMjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4177,8 +4177,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6968\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2271\",\r\n \"etag\": \"W/\\\"daaa0816-ade5-4405-8b35-96b32c5610ce\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -4226,7 +4226,7 @@ "1780921b-6db3-46d5-bde3-139d1615b367" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1780921b-6db3-46d5-bde3-139d1615b367?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1780921b-6db3-46d5-bde3-139d1615b367?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4244,8 +4244,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4302,8 +4302,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json index 68ccfc09256c..696c3e77e0d5 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn4808\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "47a47f5f-fa54-4ac3-b001-4cc476eff4c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YTQ3ZjVmLWZhNTQtNGFjMy1iMDAxLTRjYzQ3NmVmZjRjMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YTQ3ZjVmLWZhNTQtNGFjMy1iMDAxLTRjYzQ3NmVmZjRjMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn8395\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "26eed63d-ddfd-4113-9aa8-e8bc80362e13" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZWVkNjNkLWRkZmQtNDExMy05YWE4LWU4YmM4MDM2MmUxMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZWVkNjNkLWRkZmQtNDExMy05YWE4LWU4YmM4MDM2MmUxMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0L3N1Ym5ldHMvc244Mzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0L3N1Ym5ldHMvc244Mzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9690\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn8395\",\r\n \"etag\": \"W/\\\"055220a9-8c65-4920-9ab2-28fc8ebfd619\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "d76e9f46-d499-4819-801b-45ff74cfc2a5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d76e9f46-d499-4819-801b-45ff74cfc2a5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d76e9f46-d499-4819-801b-45ff74cfc2a5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json index 38a91b91e568..78397188f46d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json @@ -530,8 +530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2658\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -572,7 +572,7 @@ "06fa6a94-8bba-4693-a01f-ce4143272113" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -600,8 +600,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZmE2YTk0LThiYmEtNDY5My1hMDFmLWNlNDE0MzI3MjExMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZmE2YTk0LThiYmEtNDY5My1hMDFmLWNlNDE0MzI3MjExMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -707,8 +707,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -768,8 +768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn3505\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -810,7 +810,7 @@ "2ee238c4-cbf5-4e03-8fa8-c934e7c46334" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -838,8 +838,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlZTIzOGM0LWNiZjUtNGUwMy04ZmE4LWM5MzRlN2M0NjMzND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlZTIzOGM0LWNiZjUtNGUwMy04ZmE4LWM5MzRlN2M0NjMzND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -945,8 +945,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769/subnets/sn3505?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5L3N1Ym5ldHMvc24zNTA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769/subnets/sn3505?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5L3N1Ym5ldHMvc24zNTA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1006,8 +1006,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7639\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3505\",\r\n \"etag\": \"W/\\\"938ab6d1-5c0f-47f1-89ee-6dcdabe7d802\\\"\",\r\n \"id\": \"/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualNetworks/vn6769/subnets/sn3505\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1045,7 +1045,7 @@ "2ae3f188-e69c-4a4b-a4ad-2821589e07f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ae3f188-e69c-4a4b-a4ad-2821589e07f7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ae3f188-e69c-4a4b-a4ad-2821589e07f7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1073,8 +1073,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json index d7edb379779d..86a60e40872e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json @@ -436,8 +436,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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.1.0/24\"\r\n },\r\n \"name\": \"sn18098\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"sn24269\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -489,7 +489,7 @@ "44fe5922-bec0-4e35-8656-6d00f3c019a2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,8 +507,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ0ZmU1OTIyLWJlYzAtNGUzNS04NjU2LTZkMDBmM2MwMTlhMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ0ZmU1OTIyLWJlYzAtNGUzNS04NjU2LTZkMDBmM2MwMTlhMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,8 +622,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn18098\"\r\n }\r\n },\r\n \"name\": \"gwIp3235\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn18098\"\r\n }\r\n },\r\n \"name\": \"fIp916\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"fPort5719\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"pool8495\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\"\r\n },\r\n \"name\": \"setting4841\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/frontendIPConfigurations/fIp916\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/frontendPorts/fPort5719\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"listener418\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/backendAddressPools/pool8495\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/backendHttpSettingsCollection/setting4841\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/httpListeners/listener418\"\r\n }\r\n },\r\n \"name\": \"rule4776\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -675,7 +675,7 @@ "0f1710a9-9b53-4323-9afd-6b59429cf0ef" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,8 +693,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,8 +752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -811,8 +811,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,8 +870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -988,8 +988,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1047,8 +1047,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1106,8 +1106,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1165,8 +1165,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1224,8 +1224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1283,8 +1283,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1342,8 +1342,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1401,8 +1401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1460,8 +1460,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1519,8 +1519,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1578,8 +1578,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1637,8 +1637,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1696,8 +1696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1755,8 +1755,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1814,8 +1814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1873,8 +1873,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1932,8 +1932,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1991,8 +1991,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2050,8 +2050,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2109,8 +2109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2168,8 +2168,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2227,8 +2227,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2286,8 +2286,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2345,8 +2345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2404,8 +2404,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2460,8 +2460,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2519,8 +2519,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2584,8 +2584,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2649,8 +2649,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3681\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2702,7 +2702,7 @@ "38870625-8082-4853-b530-4a242e83efd0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2720,8 +2720,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4ODcwNjI1LTgwODItNDg1My1iNTMwLTRhMjQyZTgzZWZkMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4ODcwNjI1LTgwODItNDg1My1iNTMwLTRhMjQyZTgzZWZkMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2776,8 +2776,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2835,8 +2835,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,8 +2900,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn24269\",\r\n \"etag\": \"W/\\\"150ae5ac-97a7-41fb-b256-0a2fca784095\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn24269\"\r\n }\r\n },\r\n \"name\": \"ip9271\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2950,7 +2950,7 @@ "0c0ac95e-e324-4552-add6-9caaa3218d5c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0c0ac95e-e324-4552-add6-9caaa3218d5c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0c0ac95e-e324-4552-add6-9caaa3218d5c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2968,8 +2968,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3027,8 +3027,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json index d933f67f40c9..4d2d9be26cb6 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json @@ -436,8 +436,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9414\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -489,7 +489,7 @@ "78f60a92-eefa-40f5-93cb-43b8a8ee7167" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,8 +507,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjYwYTkyLWVlZmEtNDBmNS05M2NiLTQzYjhhOGVlNzE2Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjYwYTkyLWVlZmEtNDBmNS05M2NiLTQzYjhhOGVlNzE2Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,8 +622,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -687,8 +687,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"sn8550\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -740,7 +740,7 @@ "0ec17ca2-2425-4609-a936-11bb1591b92d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -758,8 +758,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBlYzE3Y2EyLTI0MjUtNDYwOS1hOTM2LTExYmIxNTkxYjkyZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBlYzE3Y2EyLTI0MjUtNDYwOS1hOTM2LTExYmIxNTkxYjkyZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,8 +814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -873,8 +873,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2L3N1Ym5ldHMvc244NTUwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2L3N1Ym5ldHMvc244NTUwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn8550\",\r\n \"etag\": \"W/\\\"a366937d-2fa2-40b4-8aea-7f0fe553ac57\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550\"\r\n }\r\n },\r\n \"name\": \"ip9581\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -988,7 +988,7 @@ "82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1006,8 +1006,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1065,8 +1065,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json index 27b1188e2c10..1e74dd9b2d3f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9086\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "da9b1a55-b312-468d-8096-46f9d2d84c31" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhOWIxYTU1LWIzMTItNDY4ZC04MDk2LTQ2ZjlkMmQ4NGMzMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhOWIxYTU1LWIzMTItNDY4ZC04MDk2LTQ2ZjlkMmQ4NGMzMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "ace514d6-4d1a-4531-adaa-22341e2af8ff" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjZTUxNGQ2LTRkMWEtNDUzMS1hZGFhLTIyMzQxZTJhZjhmZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjZTUxNGQ2LTRkMWEtNDUzMS1hZGFhLTIyMzQxZTJhZjhmZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4L3N1Ym5ldHMvc24xNDYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4L3N1Ym5ldHMvc24xNDYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6612\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn1463\",\r\n \"etag\": \"W/\\\"b8b55829-c50d-45c9-a952-40ebfeab1faa\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "8045fa18-5003-4505-8e05-27cd594b0c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json index 86321f1b9e71..25e49b104910 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2213\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "c67351d2-991e-4b2b-a4a2-c4255eb4fd0a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M2NzM1MWQyLTk5MWUtNGIyYi1hNGEyLWM0MjU1ZWI0ZmQwYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M2NzM1MWQyLTk5MWUtNGIyYi1hNGEyLWM0MjU1ZWI0ZmQwYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn9982\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "cf87eff0-e701-4779-9199-51c0843ed22a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmODdlZmYwLWU3MDEtNDc3OS05MTk5LTUxYzA4NDNlZDIyYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmODdlZmYwLWU3MDEtNDc3OS05MTk5LTUxYzA4NDNlZDIyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544/subnets/sn9982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0L3N1Ym5ldHMvc245OTgyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544/subnets/sn9982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0L3N1Ym5ldHMvc245OTgyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6612\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn1463\",\r\n \"etag\": \"W/\\\"b8b55829-c50d-45c9-a952-40ebfeab1faa\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -939,7 +939,7 @@ "8045fa18-5003-4505-8e05-27cd594b0c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1015,8 +1015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json index aa3f952450a4..3c9acdd0c005 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6753\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmNjAyNWM3LTA3NmMtNGE1Zi1hNGQ3LTdiYTVjOGFkMTU0Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmNjAyNWM3LTA3NmMtNGE1Zi1hNGQ3LTdiYTVjOGFkMTU0Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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\": \"sn1959\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "40dc0178-41da-4050-b3de-1b9cda61769f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwZGMwMTc4LTQxZGEtNDA1MC1iM2RlLTFiOWNkYTYxNzY5Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwZGMwMTc4LTQxZGEtNDA1MC1iM2RlLTFiOWNkYTYxNzY5Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OC9zdWJuZXRzL3NuMTk1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OC9zdWJuZXRzL3NuMTk1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn1959\",\r\n \"etag\": \"W/\\\"315b667b-e5a5-4bf7-9ca1-3c756c990556\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959\"\r\n }\r\n },\r\n \"name\": \"ip8495\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "fdc47062-3147-4d64-a558-aeddaa06d489" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/fdc47062-3147-4d64-a558-aeddaa06d489?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/fdc47062-3147-4d64-a558-aeddaa06d489?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json index 65efff3fd90c..7ce305e78d3e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json @@ -462,8 +462,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8427\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -504,7 +504,7 @@ "5a7be3e7-4917-4fc3-adb4-f0f30862b743" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,8 +532,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhN2JlM2U3LTQ5MTctNGZjMy1hZGI0LWYwZjMwODYyYjc0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhN2JlM2U3LTQ5MTctNGZjMy1hZGI0LWYwZjMwODYyYjc0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,8 +584,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,8 +639,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -700,8 +700,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3544\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -742,7 +742,7 @@ "97e39527-4fe2-4f11-a000-30b224522828" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -770,8 +770,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3ZTM5NTI3LTRmZTItNGYxMS1hMDAwLTMwYjIyNDUyMjgyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3ZTM5NTI3LTRmZTItNGYxMS1hMDAwLTMwYjIyNDUyMjgyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -822,8 +822,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -877,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614/subnets/sn3544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQvc3VibmV0cy9zbjM1NDQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614/subnets/sn3544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQvc3VibmV0cy9zbjM1NDQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9831\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7797\",\r\n \"etag\": \"W/\\\"00863957-ff3e-4def-b190-536068ab6b8a\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn3361/subnets/sn7797\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -987,7 +987,7 @@ "63fc8e68-5baa-42d3-a024-786c8ac4c237" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/63fc8e68-5baa-42d3-a024-786c8ac4c237?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/63fc8e68-5baa-42d3-a024-786c8ac4c237?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1005,8 +1005,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1063,8 +1063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json index 3c51a0f0c79f..caec2953f73e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7283\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "d98b0164-8811-4992-bc62-12ae2f6a4d6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q5OGIwMTY0LTg4MTEtNDk5Mi1iYzYyLTEyYWUyZjZhNGQ2Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q5OGIwMTY0LTg4MTEtNDk5Mi1iYzYyLTEyYWUyZjZhNGQ2Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"sn2617\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1MmE3ZWI4LTVmZDEtNGNlYi1iNDc2LWRiMDBiYjFhM2YyYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1MmE3ZWI4LTVmZDEtNGNlYi1iNDc2LWRiMDBiYjFhM2YyYz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDIvc3VibmV0cy9zbjI2MTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDIvc3VibmV0cy9zbjI2MTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn2617\",\r\n \"etag\": \"W/\\\"07fd8634-fb1c-4560-89b4-44446884430c\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617\"\r\n }\r\n },\r\n \"name\": \"ip6264\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "9b7ae149-a4b7-4c0a-9785-a2eab99093b1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/9b7ae149-a4b7-4c0a-9785-a2eab99093b1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/9b7ae149-a4b7-4c0a-9785-a2eab99093b1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json index b206bfd84303..517e17290055 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5561\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "e96a5be1-467d-476e-9ba7-f0f30a9dd71c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5NmE1YmUxLTQ2N2QtNDc2ZS05YmE3LWYwZjMwYTlkZDcxYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5NmE1YmUxLTQ2N2QtNDc2ZS05YmE3LWYwZjMwYTlkZDcxYz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"sn7161\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "99c8c91d-bf0a-4441-8d95-a5c0225e8a8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5YzhjOTFkLWJmMGEtNDQ0MS04ZDk1LWE1YzAyMjVlOGE4Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5YzhjOTFkLWJmMGEtNDQ0MS04ZDk1LWE1YzAyMjVlOGE4Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODkvc3VibmV0cy9zbjcxNjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODkvc3VibmV0cy9zbjcxNjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn7161\",\r\n \"etag\": \"W/\\\"92758a28-66c5-46b6-b246-72ef99ff89fd\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161\"\r\n }\r\n },\r\n \"name\": \"ip6687\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "078149f6-abf2-45e7-94a3-6c8ff2392c8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/078149f6-abf2-45e7-94a3-6c8ff2392c8c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/078149f6-abf2-45e7-94a3-6c8ff2392c8c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json index 808d6f748fe9..46d6de9d08b1 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2964\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "1c3a79d8-d438-43d2-a925-ddaaea134ac5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjM2E3OWQ4LWQ0MzgtNDNkMi1hOTI1LWRkYWFlYTEzNGFjNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjM2E3OWQ4LWQ0MzgtNDNkMi1hOTI1LWRkYWFlYTEzNGFjNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "084b22a4-d2a9-487c-8839-bcc275001c17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4NGIyMmE0LWQyYTktNDg3Yy04ODM5LWJjYzI3NTAwMWMxNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4NGIyMmE0LWQyYTktNDg3Yy04ODM5LWJjYzI3NTAwMWMxNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTIvc3VibmV0cy9zbjczMzk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTIvc3VibmV0cy9zbjczMzk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip113\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7339\",\r\n \"etag\": \"W/\\\"a3b45832-20e5-4d44-abe5-ff58b76e03bd\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "ad73bf1e-8f8a-4924-b2a5-6d373e493e65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json index b324bef7e566..e2341e061f0f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2011\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "3f7e6f04-1fe3-44ef-b97e-70134912daa5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmN2U2ZjA0LTFmZTMtNDRlZi1iOTdlLTcwMTM0OTEyZGFhNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmN2U2ZjA0LTFmZTMtNDRlZi1iOTdlLTcwMTM0OTEyZGFhNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5066\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "88051c1a-684c-4042-ac22-1252651e0fa9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDUxYzFhLTY4NGMtNDA0Mi1hYzIyLTEyNTI2NTFlMGZhOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDUxYzFhLTY4NGMtNDA0Mi1hYzIyLTEyNTI2NTFlMGZhOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509/subnets/sn5066?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5L3N1Ym5ldHMvc241MDY2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509/subnets/sn5066?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5L3N1Ym5ldHMvc241MDY2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip113\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7339\",\r\n \"etag\": \"W/\\\"a3b45832-20e5-4d44-abe5-ff58b76e03bd\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -939,7 +939,7 @@ "ad73bf1e-8f8a-4924-b2a5-6d373e493e65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1015,8 +1015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json index 15864e8cbfd9..7ecb02018219 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json @@ -525,8 +525,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8116\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -577,7 +577,7 @@ "d265798f-874e-433f-b8ab-3641f409dd93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,8 +595,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QyNjU3OThmLTg3NGUtNDMzZi1iOGFiLTM2NDFmNDA5ZGQ5Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QyNjU3OThmLTg3NGUtNDMzZi1iOGFiLTM2NDFmNDA5ZGQ5Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -650,8 +650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -708,8 +708,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -772,8 +772,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn2745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -824,7 +824,7 @@ "026fbcdb-fd10-4808-9f9c-d173cbd731ee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -842,8 +842,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNmZiY2RiLWZkMTAtNDgwOC05ZjljLWQxNzNjYmQ3MzFlZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNmZiY2RiLWZkMTAtNDgwOC05ZjljLWQxNzNjYmQ3MzFlZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -897,8 +897,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -955,8 +955,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTEvc3VibmV0cy9zbjI3NDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTEvc3VibmV0cy9zbjI3NDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1019,8 +1019,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3862\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2745\",\r\n \"etag\": \"W/\\\"4020128b-b57c-4960-8176-a5d57670fcbf\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1068,7 +1068,7 @@ "9c622174-7a10-47b6-8f63-24820e573a2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9c622174-7a10-47b6-8f63-24820e573a2c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9c622174-7a10-47b6-8f63-24820e573a2c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,8 +1086,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1144,8 +1144,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json index e6274efd6a1e..742ef8be988d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json @@ -119,8 +119,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3148\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -161,7 +161,7 @@ "a0947abc-4d83-40ff-b67e-fc6cca95679b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,8 +189,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EwOTQ3YWJjLTRkODMtNDBmZi1iNjdlLWZjNmNjYTk1Njc5Yj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EwOTQ3YWJjLTRkODMtNDBmZi1iNjdlLWZjNmNjYTk1Njc5Yj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -241,8 +241,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -296,8 +296,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -357,8 +357,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7781\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -399,7 +399,7 @@ "393cefed-f783-4c10-9d9f-95056de294cf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,8 +427,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5M2NlZmVkLWY3ODMtNGMxMC05ZDlmLTk1MDU2ZGUyOTRjZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5M2NlZmVkLWY3ODMtNGMxMC05ZDlmLTk1MDU2ZGUyOTRjZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -479,8 +479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -534,8 +534,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTYvc3VibmV0cy9zbjc3ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTYvc3VibmV0cy9zbjc3ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -595,8 +595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9759\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7781\",\r\n \"etag\": \"W/\\\"a8b9d9fd-ede0-4d06-88a3-d2b857e42136\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -634,7 +634,7 @@ "b3e5bcca-6047-432c-9abc-0ec1597b463a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/b3e5bcca-6047-432c-9abc-0ec1597b463a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/b3e5bcca-6047-432c-9abc-0ec1597b463a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -662,8 +662,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -717,8 +717,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { From c8288be3734b0d8c229b3d348d371a9213661edd Mon Sep 17 00:00:00 2001 From: jobatzil Date: Fri, 17 Mar 2017 17:22:24 -0700 Subject: [PATCH 17/56] #WAF set x-ms-flatten to true for ApplicationGatewayFirewallRuleSet. --- .../ApplicationGatewaysOperations.cs | 176 ++++++++++++++++++ ...ApplicationGatewaysOperationsExtensions.cs | 28 +++ .../IApplicationGatewaysOperations.cs | 19 ++ ...cationGatewayAvailableWafRuleSetsResult.cs | 49 +++++ .../Models/ApplicationGatewayFirewallRule.cs | 56 ++++++ .../ApplicationGatewayFirewallRuleGroup.cs | 68 +++++++ .../ApplicationGatewayFirewallRuleSet.cs | 88 +++++++++ 7 files changed, 484 insertions(+) create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayAvailableWafRuleSetsResult.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs create mode 100644 src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs index eac66811a1e3..a42e9a17a111 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs @@ -723,6 +723,182 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } + /// + /// Gets all available web application firewall rule sets. + /// + /// + /// 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> GetAvailableWafRuleSetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetAvailableWafRuleSets", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets").ToString(); + _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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 application gateway. /// diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs index 25972ad8307a..3c37e2e28762 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs @@ -330,6 +330,34 @@ public static void Stop(this IApplicationGatewaysOperations operations, string r } } + /// + /// Gets all available web application firewall rule sets. + /// + /// + /// The operations group for this extension method. + /// + public static ApplicationGatewayAvailableWafRuleSetsResult GetAvailableWafRuleSets(this IApplicationGatewaysOperations operations) + { + return operations.GetAvailableWafRuleSetsAsync().GetAwaiter().GetResult(); + } + + /// + /// Gets all available web application firewall rule sets. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task GetAvailableWafRuleSetsAsync(this IApplicationGatewaysOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAvailableWafRuleSetsWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Deletes the specified application gateway. /// diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs index b91024daec0d..d1673d465aa3 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs @@ -215,6 +215,25 @@ public partial interface IApplicationGatewaysOperations /// Task> BackendHealthWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Gets all available web application firewall rule sets. + /// + /// + /// 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> GetAvailableWafRuleSetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Deletes the specified application gateway. /// /// diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayAvailableWafRuleSetsResult.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayAvailableWafRuleSetsResult.cs new file mode 100644 index 000000000000..5a34e78b0eaf --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayAvailableWafRuleSetsResult.cs @@ -0,0 +1,49 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Response for ApplicationGatewayAvailableWafRuleSets API service call. + /// + public partial class ApplicationGatewayAvailableWafRuleSetsResult + { + /// + /// Initializes a new instance of the + /// ApplicationGatewayAvailableWafRuleSetsResult class. + /// + public ApplicationGatewayAvailableWafRuleSetsResult() { } + + /// + /// Initializes a new instance of the + /// ApplicationGatewayAvailableWafRuleSetsResult class. + /// + /// The list of application gateway rule + /// sets. + public ApplicationGatewayAvailableWafRuleSetsResult(IList value = default(IList)) + { + Value = value; + } + + /// + /// Gets or sets the list of application gateway rule sets. + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs new file mode 100644 index 000000000000..cdb517e97dc4 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs @@ -0,0 +1,56 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Newtonsoft.Json; + using System.Linq; + + /// + /// A web application firewall rule. + /// + public partial class ApplicationGatewayFirewallRule + { + /// + /// Initializes a new instance of the ApplicationGatewayFirewallRule + /// class. + /// + public ApplicationGatewayFirewallRule() { } + + /// + /// Initializes a new instance of the ApplicationGatewayFirewallRule + /// class. + /// + /// The identifier of the web application firewall + /// rule. + /// The description of the web application + /// firewall rule. + public ApplicationGatewayFirewallRule(int? ruleId = default(int?), string description = default(string)) + { + RuleId = ruleId; + Description = description; + } + + /// + /// Gets or sets the identifier of the web application firewall rule. + /// + [JsonProperty(PropertyName = "ruleId")] + public int? RuleId { get; set; } + + /// + /// Gets or sets the description of the web application firewall rule. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs new file mode 100644 index 000000000000..daa89f41a263 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs @@ -0,0 +1,68 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A web application firewall rule group. + /// + public partial class ApplicationGatewayFirewallRuleGroup + { + /// + /// Initializes a new instance of the + /// ApplicationGatewayFirewallRuleGroup class. + /// + public ApplicationGatewayFirewallRuleGroup() { } + + /// + /// Initializes a new instance of the + /// ApplicationGatewayFirewallRuleGroup class. + /// + /// The name of the web application + /// firewall rule group. + /// The description of the web application + /// firewall rule group. + /// The rules of the web application firewall rule + /// group. + public ApplicationGatewayFirewallRuleGroup(string ruleGroupName = default(string), string description = default(string), IList rules = default(IList)) + { + RuleGroupName = ruleGroupName; + Description = description; + Rules = rules; + } + + /// + /// Gets or sets the name of the web application firewall rule group. + /// + [JsonProperty(PropertyName = "ruleGroupName")] + public string RuleGroupName { get; set; } + + /// + /// Gets or sets the description of the web application firewall rule + /// group. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + /// + /// Gets or sets the rules of the web application firewall rule group. + /// + [JsonProperty(PropertyName = "rules")] + public IList Rules { get; set; } + + } +} + diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs new file mode 100644 index 000000000000..15bd9c15b359 --- /dev/null +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs @@ -0,0 +1,88 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Network.Models +{ + using Azure; + using Management; + using Network; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A web application firewall rule set. + /// + [JsonTransformation] + public partial class ApplicationGatewayFirewallRuleSet : Resource + { + /// + /// Initializes a new instance of the ApplicationGatewayFirewallRuleSet + /// class. + /// + public ApplicationGatewayFirewallRuleSet() { } + + /// + /// Initializes a new instance of the ApplicationGatewayFirewallRuleSet + /// class. + /// + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource location. + /// Resource tags. + /// The provisioning state of the web + /// application firewall rule set. + /// The type of the web application firewall + /// rule set. + /// The version of the web application + /// firewall rule set type. + /// The rule groups of the web application + /// firewall rule set. + public ApplicationGatewayFirewallRuleSet(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), string ruleSetType = default(string), string ruleSetVersion = default(string), IList ruleGroups = default(IList)) + : base(id, name, type, location, tags) + { + ProvisioningState = provisioningState; + RuleSetType = ruleSetType; + RuleSetVersion = ruleSetVersion; + RuleGroups = ruleGroups; + } + + /// + /// Gets or sets the provisioning state of the web application firewall + /// rule set. + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; set; } + + /// + /// Gets or sets the type of the web application firewall rule set. + /// + [JsonProperty(PropertyName = "properties.ruleSetType")] + public string RuleSetType { get; set; } + + /// + /// Gets or sets the version of the web application firewall rule set + /// type. + /// + [JsonProperty(PropertyName = "properties.ruleSetVersion")] + public string RuleSetVersion { get; set; } + + /// + /// Gets or sets the rule groups of the web application firewall rule + /// set. + /// + [JsonProperty(PropertyName = "properties.ruleGroups")] + public IList RuleGroups { get; set; } + + } +} + From 1711cbae3f66c8857b2dda471de7c9ab23a43b14 Mon Sep 17 00:00:00 2001 From: Vlad Cananau Date: Mon, 20 Mar 2017 17:03:09 +0000 Subject: [PATCH 18/56] Revert AssemblyVersion to 2.1.0 because there are no breaking changes in this version --- .../Properties/AssemblyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs index 08c52ec8195a..be0278be1c03 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyTitle("Microsoft Azure Traffic Manager Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Traffic Manager management functions for managing the Microsoft Azure Traffic Manager service.")] -[assembly: AssemblyVersion("2.2.0.0")] +[assembly: AssemblyVersion("2.1.0.0")] [assembly: AssemblyFileVersion("2.2.0.0")] [assembly: AssemblyConfiguration("")] From c056c9d910c0f20b919c4fa725569b7f3ba764c7 Mon Sep 17 00:00:00 2001 From: Vlad Cananau Date: Mon, 20 Mar 2017 17:05:27 +0000 Subject: [PATCH 19/56] Revert AssemblyVersion to 2.0.0 because there are no breaking changes in this version --- .../Properties/AssemblyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs index be0278be1c03..e07e602f85de 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyTitle("Microsoft Azure Traffic Manager Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Traffic Manager management functions for managing the Microsoft Azure Traffic Manager service.")] -[assembly: AssemblyVersion("2.1.0.0")] +[assembly: AssemblyVersion("2.0.0.0")] [assembly: AssemblyFileVersion("2.2.0.0")] [assembly: AssemblyConfiguration("")] From 83501016bb0744278a7d4a388985c2c37fc80258 Mon Sep 17 00:00:00 2001 From: Jared Moore Date: Mon, 20 Mar 2017 11:37:52 -0700 Subject: [PATCH 20/56] Added license header --- .../SqlManagement/Sql.Tests/BlobAuditingTest.cs | 5 ++++- .../SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs | 5 ++++- .../SqlManagement/Sql.Tests/ThreatDetectionTest.cs | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs index f87fed18b244..67b925da1ccd 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/BlobAuditingTest.cs @@ -1,4 +1,7 @@ -using Microsoft.Azure.Management.Resources; +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Sql; using Microsoft.Azure.Management.Sql.Models; using Microsoft.Azure.Test.HttpRecorder; diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs index 656df842052a..eea57b55fd0e 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/DatabaseRestoreScenarioTests.cs @@ -1,4 +1,7 @@ -using Microsoft.Azure.Management.Resources; +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Sql; using Microsoft.Azure.Management.Sql.Models; using System; diff --git a/src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs b/src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs index d85bff000348..17ed223e5d86 100644 --- a/src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs +++ b/src/ResourceManagement/SqlManagement/Sql.Tests/ThreatDetectionTest.cs @@ -1,4 +1,7 @@ -using Microsoft.Azure.Management.Resources; +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Sql; using Microsoft.Azure.Management.Sql.Models; using System; From a9e559934aeda3d5d8b0cdf53a4aa106a50ca99a Mon Sep 17 00:00:00 2001 From: Jared Moore Date: Mon, 20 Mar 2017 11:41:16 -0700 Subject: [PATCH 21/56] Removed UpgradeLog.htm --- .../SqlManagement/UpgradeLog.htm | Bin 45212 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/ResourceManagement/SqlManagement/UpgradeLog.htm diff --git a/src/ResourceManagement/SqlManagement/UpgradeLog.htm b/src/ResourceManagement/SqlManagement/UpgradeLog.htm deleted file mode 100644 index 440107e06ed7d9284957287d7a09f346f653ae39..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 45212 zcmeI5X>%J#l7{>1Zp8ivSe&uwrFm1-;gK8!Pl+NWkrX9r=$POE9uhAR5HEZ7r|<6b zRLCZD*0rXXsm6e&5nU$4Y_`m=CNAz7Z6TOP2qqS%wdL7M1h3FuvM90xl z^epwN{KqV?)=!{u>~e7YuM@cDP>Ds57J(lbE8BhI^#|$`pn%! z`ma*ciF$+4OJJWw`;^$?x8&*$H*8B(xuV_SuQd3{;dB6$b1)FKo&vK%&jz9FWG1^@Ylo9e^a9fuDd{xq^HNJH{?|4#T)YAQ* zxikuW&(NcyvmL`7f7Y5r1o@Rlyn%Y+<{14vgHo-*tTlqoX2r+eEUox&tL=!#CJTek z8dt#CEMvj-Kosl4l8xSe$GDaiJ)*C>^e&$U_8Ka!MaJODD4I#f)_T(JX!4i^ZeGGk z*(-S-;^+yzK6g6jC?}4c7^z10xV@?#srT^E%r;+uc`3Sdo`5u;e6dsdA)5`vwsAR=wbnEF=LPJEB<~D~JdHlyN~Fe_yZ~AJ{4zOyr!v`j`3bU_ly}KZtG1+5 znz7rm-HgqvAS>p{2^)Fl@*MMxrB=s)W^-nJCAmj@H1o6BljgSajXpVvmOm@`4OT9{ zEN|U`BnSLt-}dlI0qlZYmzK?Rs zy{Dy*(G0>TX@Y$;fX0+0Tk)pWI254DLl@WMu@mo;O4qaoKS)65Em^g-7)P!&o0z;k zCa?4LAioYz%G>T8Xjk*ZSga;`CTy{Bo%eAM+)UF|uDgRQ}eYc)x( zX2+6-Fqf1CYJViw@*>Q-%`w95n|GAwmo|&EyoAHXduamm4+q>y+fyEo)C@HCmpSp$L;5Rva;qi36AE2!bBWM`YKjlQG4^y@1xDa-1k2B zy=GEe-=d`QhOD0MS(L4SAFueMt~CGjapU~n(2&E|X!-J%lHIo$)&5btvCjI^Ig9Mu zXQssw=6N#c;yInO7Wt*W7Pp=t!CnG>56-pf*?L`ApL26)6@4D_X-zkNJDfAUHO+X{ zsJ2*<$4;6g#GHI2*w#usXA6vRi#$oQ>;OUYB%KEhCdm|ZA5GR=zs$$h#LQ=srjSNa zS<^6rp?E;PIl++Yg;vkveNue8`!eY1mbUw%il=TqdC5N#jh}0bJ!#-HrQ`fDex^$V zugNTh#_$(7qj;j8eR6QWV9UdtSgXJ01;^)hHbW8?d80Z*DZIr=Nmchbc!@0U($53u z%WIWjB>H>KG2SZAUPHsM&SZAmujK_x>&KE`liYH%4L@#;>soPXW$g61(PxsX-+UwQ zSI3|KpjLCAYL7Oo(~RBvilf9P{MwD3!O%Lr`k{Ec={$K> zL5ie7btQ=sM>Qh1oEIF*$WPki$z#0LzjMs5^ZJ00Tm^_@dDo+63wUm!34SlV>iY)H%F@Iy0aVn^at?aryf>81~&lDZWD)Y{9{KU;h z_A^V)61UMB$9bw$_c^D`CuJ%H>3f1T(CS&M^LP(Ywk52N2AKKAq#x(Cyz4>erOYB_ zD`*8)bI|0yd@`8bmNJ;M=Hk~xpExCwTHdjA z`3&c_wk{7tV^J|vJxzK!$4&>DAF}OAog&pklzL8SA5{tS6N`?R9aOfD^1Wnt1y_{R zh_p3u#ZNW=@Rrw?l1~+<`JuDc%G)crx{8}9t5N!-z$%6?7fyCA?O~Z?9-ggp?m8V5 zFjg7$SdkXXyUDBHyj&Y?|H&B9=RNR_=7oXn)Y zd;Yb@PwMEqwW$|xOwvYVLpIpRH-d11q3$RD7P$M4^GkkjD8B(TN%$zw7U9PmcvqzE zIp0OjH#nYA=M&>?geN<|d{5aadb&%gF;@AD(Fbr{AzrcqPnA`);XI{}l-{82DOwOF ztN3`AJS`#vC7?|4EmOY&lnw6O@I)TjFy7!e{_Y;+2(oz%&vHL3g-k} znThL;JKMk?0QO5t>``usvobwCrQQ*kZc}oWyNlqz3xt=Hp8@s*+J8a6Kl0>?nvZFH zhMEHo-xuIBLvP3E!Dm|hNZm)Y@CC>d$d0nk7QtAxjyXS|w^vYg622*Gd!Nq*tt?Vk z@TF%S0$~SSo&#kLC~NfNBQ=&e8|ORB?^|eoNzYcf`?^4Qo`y=L#dTDF?^Xu9K1__mUkBTp|aQsAvvv&Wt%@kjS0 zyyPUMwC7RCQ>y0)eXAZt5pA6GD9UL5H7wW$c7GZTSmbvett)#nhsGaAi@rziE}$b9 zurC*A-4|E^%>a(kv9kAv{666K5t@C)m7b%VY>en|h~CzEu55>_nz9Bfz}K4N5$%rg zRPP2YgTV>sk7-}^q?3iq37YwUQuFBiFt�B6y;K?qqIq&Y|2q z6dG}*26(yzwZ>^p9>FZo%HX<;Z4(tQ!RG}qRxgt6H&{Mf(>a)1G5s#o1;}L-~H0LTh@{O|svM*QYT+L}^ zo37FMn%houwS?BzY++DRDfI3eH1L|MDee3MJ$=Z% z4bB&_9WUJRIcE!KTD=K)iRL{*o96tAGS_JHMamp-XPPrv zjQ4IVzj1bP0{b>g4>X(8y!8uqQr?K>h1Yy;=-(;rf8^N>mUS8E1Js$~{s0<5v+OHu z&N`TAO{)yeK4Co`U{zj&(*DvZpih>AJ&BP}u^PHos(I>71Z<01-a}+&00nQgn zya&=LWhy)`LC-hTC_#-;`f}m!El@*GWaZa@F+i)w)DoT*dj1hO*Yu|Xtp)WXc$9di zIFjb|yPPY!@|GvdKz~b}YcSp7d662jb{}c!hG+X6Khxd>6xpJTe5Ut6dqY|K6nU~j zjR#Qm9Gt{SeV*Q-eGDrr-LZ`Ueo_zSvHiXI?O!ue9%QFy6aRQNv4~Dj+r-akV?{9E zqD2)YUqLI*q5CGBt$4@v6!)c-r`+!n8dLKrSvkc6x6z^F*pX?pt>&kS3o1UUd20nN ze~n(>K-+Fnwt^)&baNuTkMoW@Gn6f&pJ%aJhiLkJbnXS#Kw5bR*ouKFVmZr`HK&c= zVxz`r@gX)ut0c!jpTJsPgRf?D>tOYT+Pe<+D798;R~AQe;dhi!4$>k$oT2<2mL;@X<+ec;|CAJIs= zb8G-vG4Y44RmB=~?*=UO_QM5jJ%VcU;9myPHTM+(-=(z^+S%vs9(35J_wo3Ng=P6`q-s61!q`#v zW#bwPXsuHyt~FTI@axk4sMTwYcUy(lh>&k83fNk9sFB_aWf(3>mUREpWzyK{yMN~) zz5brAZ!7Y)F0J3JzKG`b27A2!bM#58^m$!dz77Pf%)zzDV;rL{vw zkI&Oo=8klfYHE~7_XWMC_ju(?Nj~)!gR-#EgSS<_k$}5bxxb`#Lgz87r-%% z*FVAc7qZKYLQ|Ah|0P|D{FKmLdMC~#qgkpLHf9CBW4F9|*nA&-4?eY@4uOO0th|s{ z&YpNIq#YG`(R=63P%keH)3nrR(;A$OIdL(Ij={eg0(;dugY(Lf_E_JCqIomAg;Om& ze&&8s&OAS}@hCX1+U^Z{%Tf7it-?`nvb33}r;gcn(@JKS$$pxJN44fMk5+4_%GWu? zi`O1_qFj>Srd{IND_ci4GhY2jO;X(?tEaze>x8Uv*LnTrIaF)h)z_oh<4*PRj{m#R zqXjgvba8cGyQg83k{|Sz?O&=fsk|9^7aEP)4Ze1^rp?ALt5x$jH4o9wKHe*gd!4mBMjseW-;+K($a0cZC<)fcCu*fTPhGm(%Z?hmh#ZTuE65E zc&8YoIA;9TTv2zD-1g6sa^hzw+L0m5TEb2dNf^yx>-D(h<9iu5TQZDfc#MDhdRB&) zhVu{6Cce=o{nhuM^k|Sc-xR+e;PoJ}&rNe0+O{U-MqYZT$btXg~Kfp0C^r z@VS#MMRt_&VgGxgTIr`ohq0P%rgwm`R<*Wk>rlc|@@K~bcO2%9o!P2b8oSp{&wIZr ztZBt9r`k!D6PAtOY86}=tsc8-h*qL8tdMh8&VUy$)fi?nzdZ|Xx@2S6NvoIzJ6$pk zTNL)Z^hfEfov$92l)YmAMpQv^B^ip^O0Q{sPS@$#Yah8l7S~uo zx@}hltxcUfDX;fTm}{P^W4Z zznQvuBtNd<>tj<}#+$*V^_q7*GMed4Z&dugqayBAv@=5DaK5F{6345ZkrVg5y5~K$ zs@vkd?2V{zXGDoF%CFPx-Yk(;$9+zBr^Z`$E8ps9%*MJ?V>OHZ-=aN?kK}9$^~QN; z#<|Un!i-w0H_vWoO!2#U#!)rQ%^DE9DSy=%^yH;8^5P>e)lnPCP5q~N#4z4crDD@$>5H{JGU(%Q#J@5{#h5yePt$M?q3{B-@*+nT07ldvWI9?Ew}*rVR{Q8Zie4E^`HBHpd8O>6Bg$q#$SBbjFr zf7|OPX9a7=X+!i=XMT;txN2)fI@eBQ)iRXEV~RfRrdC+AY7k#1O4kV)hdzp}SiSZy zk(8-jwVz(KQVb}pK$?}e6#)Oni6~qz#vj%a4tR_DS>1Amfl6pSDoz`%JcKp0dhNtl zidNv6{_)sg)n3y|u81W2sF=O77=(Lz?Q1DPjruE9$#UwQU;7GDU_FadF=%P)gW_P8 z8B?#{zL%}6@`yfKiHKuRubqHd;HY|1e+8r-P1R~rceP`+kT_aYj=s^7SIRERIoZBuRxM#?fE>wke#4B9=$uRnYN8H`@e(aUYvUW>3~woQ?~z? z)Be@^Kc4Ef0M8XZIy#l|8Rq(WmGd{Y%yeZ~u>z`Knbs{R3iBFL`P_ zrBsp67@tvgZJ1%DeT3CN?TkFgJ_3(9j&i2|qtNb>gTS0*X9MkGKEt_c&2cOud1-6v zB{+;qoyGM}dW6)9HN~YcYmFt09n*&Gz-m@ww$sL+U8}Z3n@(%qc5vyYc5Vl++B2SvzZrM<|;q-RYUTa#=Gev7sy8{eW5&v=**zp_^K> zy0u36YP~o~FHTZFPU5vptsFW3PNr#{`X!syKJ_8|*|kvpo_AUs)o-brS}7heu8%>d z{H&}N>ObpwU_B44Sr06kftQ^1S7&G?cO95cYu1l=&-|`P>E1Wip3lhuQpQqN4sQBQ_N+WItuv%E^gMR@=NIKN`t@?{ zr;_ZM`SS5y`1J02G9ND8$0P)muFf{iyH8oGS*G>&XYv#%koTmFv}!t}_mwHv&3N zQ~8a4mSCCK?aTnm&?BCCZhH|a=g;;tRHkmo4Ls-mXQG+fwOb{QIoszv Date: Mon, 20 Mar 2017 21:36:55 +0000 Subject: [PATCH 22/56] Restore copyright header to generated files --- .../Generated/EndpointsOperations.cs | 6 ++++-- .../Generated/EndpointsOperationsExtensions.cs | 6 ++++-- .../Generated/GeographicHierarchiesOperations.cs | 6 ++++-- .../Generated/GeographicHierarchiesOperationsExtensions.cs | 6 ++++-- .../Generated/IEndpointsOperations.cs | 6 ++++-- .../Generated/IGeographicHierarchiesOperations.cs | 6 ++++-- .../Generated/IProfilesOperations.cs | 6 ++++-- .../Generated/ITrafficManagerManagementClient.cs | 7 ++++--- ...kTrafficManagerRelativeDnsNameAvailabilityParameters.cs | 6 ++++-- .../Generated/Models/DnsConfig.cs | 6 ++++-- .../Generated/Models/Endpoint.cs | 6 ++++-- .../Generated/Models/MonitorConfig.cs | 6 ++++-- .../Generated/Models/Page.cs | 6 ++++-- .../Generated/Models/Profile.cs | 6 ++++-- .../Generated/Models/Region.cs | 6 ++++-- .../Generated/Models/Resource.cs | 6 ++++-- .../Generated/Models/TrafficManagerGeographicHierarchy.cs | 6 ++++-- .../Generated/Models/TrafficManagerNameAvailability.cs | 6 ++++-- .../Generated/ProfilesOperations.cs | 6 ++++-- .../Generated/ProfilesOperationsExtensions.cs | 6 ++++-- .../Generated/TrafficManagerManagementClient.cs | 6 ++++-- 21 files changed, 84 insertions(+), 43 deletions(-) diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs index c11f29de1795..ba554f8db7cc 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperations.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs index fcff44526e2b..cc1b7759f7f9 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/EndpointsOperationsExtensions.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs index 74f6b248548b..9c04ce55f611 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs index fa40ac3d21de..48829a894563 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs index 81d802f0d2ab..82068ae86e03 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IEndpointsOperations.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs index 242794ab4a4b..30e17dc7d664 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs index f74a6a50f7e7..1ec90c4e2c53 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IProfilesOperations.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs index 0545a707b497..ebcdb0d27bbe 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ITrafficManagerManagementClient.cs @@ -1,7 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { using System; diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs index 8559c2416911..c23ca43861ef 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/CheckTrafficManagerRelativeDnsNameAvailabilityParameters.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs index 652ba02ae779..4b3ea29c654a 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/DnsConfig.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs index c5c4e8f94561..6a9462b32d6e 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Endpoint.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs index 7b8a5a27e85c..a0c48209dbdf 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/MonitorConfig.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs index 4fc398a563b6..f23d2075ea6d 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Page.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs index 4a2fb9819f6d..dd7e9be5a68b 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Profile.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs index f537f31c3cc4..094423cb2c56 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs index 75c174eaa7a4..48e099894ad6 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Resource.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs index 8ed009bdb424..c3b38282d3df 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs index d22f5a70d2ab..88b6333146bc 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerNameAvailability.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager.Models { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs index 1c2034b0ee73..5bd79460ac54 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperations.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs index 00e1632c484b..6807ea641474 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/ProfilesOperationsExtensions.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs index 6e3c792f3453..79205815fda5 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/TrafficManagerManagementClient.cs @@ -1,6 +1,8 @@ +// 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 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microsoft.Azure.Management.TrafficManager { From a245f838f5c74bd4cb2dead1f7114d48fa3df09b Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Mon, 20 Mar 2017 16:23:19 -0700 Subject: [PATCH 23/56] Using proper rest api spec for 2017-03-01 generation --- .../Models/ExpressRouteCircuitPeering.cs | 24 ++++++------- .../Generated/Models/IpsecPolicy.cs | 34 ++++++++++--------- .../Generated/Models/VirtualNetworkGateway.cs | 12 ++++--- 3 files changed, 37 insertions(+), 33 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs index 6fa656fae80b..d886ee1287cf 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ExpressRouteCircuitPeering.cs @@ -57,14 +57,14 @@ public ExpressRouteCircuitPeering() { } /// The GatewayManager Etag. /// Gets whether the provider or the /// customer last modified the peering. - /// The reference of the RouteFilter - /// resource. /// Gets name of the resource that is unique within /// a resource group. This name can be used to access the /// resource. /// A unique read-only string that changes whenever /// the resource is updated. - public ExpressRouteCircuitPeering(string id = default(string), string peeringType = default(string), string state = default(string), int? azureASN = default(int?), int? peerASN = default(int?), string primaryPeerAddressPrefix = default(string), string secondaryPeerAddressPrefix = default(string), string primaryAzurePort = default(string), string secondaryAzurePort = default(string), string sharedKey = default(string), int? vlanId = default(int?), ExpressRouteCircuitPeeringConfig microsoftPeeringConfig = default(ExpressRouteCircuitPeeringConfig), ExpressRouteCircuitStats stats = default(ExpressRouteCircuitStats), string provisioningState = default(string), string gatewayManagerEtag = default(string), string lastModifiedBy = default(string), RouteFilter routeFilter = default(RouteFilter), string name = default(string), string etag = default(string)) + /// The reference of the RouteFilter + /// resource. + public ExpressRouteCircuitPeering(string id = default(string), string peeringType = default(string), string state = default(string), int? azureASN = default(int?), int? peerASN = default(int?), string primaryPeerAddressPrefix = default(string), string secondaryPeerAddressPrefix = default(string), string primaryAzurePort = default(string), string secondaryAzurePort = default(string), string sharedKey = default(string), int? vlanId = default(int?), ExpressRouteCircuitPeeringConfig microsoftPeeringConfig = default(ExpressRouteCircuitPeeringConfig), ExpressRouteCircuitStats stats = default(ExpressRouteCircuitStats), string provisioningState = default(string), string gatewayManagerEtag = default(string), string lastModifiedBy = default(string), string name = default(string), string etag = default(string), RouteFilter routeFilter = default(RouteFilter)) : base(id) { PeeringType = peeringType; @@ -82,9 +82,9 @@ public ExpressRouteCircuitPeering() { } ProvisioningState = provisioningState; GatewayManagerEtag = gatewayManagerEtag; LastModifiedBy = lastModifiedBy; - RouteFilter = routeFilter; Name = name; Etag = etag; + RouteFilter = routeFilter; } /// @@ -183,12 +183,6 @@ public ExpressRouteCircuitPeering() { } [JsonProperty(PropertyName = "properties.lastModifiedBy")] public string LastModifiedBy { get; set; } - /// - /// Gets or sets the reference of the RouteFilter resource. - /// - [JsonProperty(PropertyName = "properties.routeFilter")] - public RouteFilter RouteFilter { get; set; } - /// /// Gets name of the resource that is unique within a resource group. /// This name can be used to access the resource. @@ -202,7 +196,11 @@ public ExpressRouteCircuitPeering() { } /// [JsonProperty(PropertyName = "etag")] public string Etag { get; protected set; } - + + /// + /// Gets or sets the reference of the RouteFilter resource. + /// + [JsonProperty(PropertyName = "properties.routeFilter")] + public RouteFilter RouteFilter { get; set; } } -} - +} \ No newline at end of file diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs index 57a5642d7e47..e1803527a254 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/IpsecPolicy.cs @@ -28,21 +28,23 @@ public IpsecPolicy() { } /// /// Initializes a new instance of the IpsecPolicy class. /// - /// The Security Association (SA) - /// lifetime in seconds for a site to site VPN tunnel. - /// The Security Association (SA) - /// payload size in KB for a site to site VPN tunnel. + /// The IPSec Security Association + /// (also called Quick Mode or Phase 2 SA) lifetime in seconds for a + /// site to site VPN tunnel. + /// The IPSec Security Association + /// (also called Quick Mode or Phase 2 SA) payload size in KB for a + /// site to site VPN tunnel. /// The IPSec encryption algorithm (IKE - /// phase 2). Possible values include: 'None', 'DES', 'DES3', 'AES128', + /// phase 1). Possible values include: 'None', 'DES', 'DES3', 'AES128', /// 'AES192', 'AES256', 'GCMAES128', 'GCMAES192', 'GCMAES256' /// The IPSec integrity algorithm (IKE - /// phase 2). Possible values include: 'MD5', 'SHA1', 'SHA256', + /// phase 1). Possible values include: 'MD5', 'SHA1', 'SHA256', /// 'GCMAES128', 'GCMAES192', 'GCMAES256' /// The IKE encryption algorithm (IKE phase - /// 1). Possible values include: 'DES', 'DES3', 'AES128', 'AES192', + /// 2). Possible values include: 'DES', 'DES3', 'AES128', 'AES192', /// 'AES256' /// The IKE integrity algorithm (IKE phase - /// 1). Possible values include: 'MD5', 'SHA1', 'SHA256', + /// 2). Possible values include: 'MD5', 'SHA1', 'SHA256', /// 'SHA384' /// The DH Groups used in IKE Phase 1 for initial /// SA. Possible values include: 'None', 'DHGroup1', 'DHGroup2', @@ -63,21 +65,21 @@ public IpsecPolicy(int saLifeTimeSeconds, int saDataSizeKilobytes, string ipsecE } /// - /// Gets or sets the Security Association (SA) lifetime in seconds for - /// a site to site VPN tunnel. + /// Gets or sets the IPSec Security Association (also called Quick Mode + /// or Phase 2 SA) lifetime in seconds for a site to site VPN tunnel. /// [JsonProperty(PropertyName = "saLifeTimeSeconds")] public int SaLifeTimeSeconds { get; set; } /// - /// Gets or sets the Security Association (SA) payload size in KB for a - /// site to site VPN tunnel. + /// Gets or sets the IPSec Security Association (also called Quick Mode + /// or Phase 2 SA) payload size in KB for a site to site VPN tunnel. /// [JsonProperty(PropertyName = "saDataSizeKilobytes")] public int SaDataSizeKilobytes { get; set; } /// - /// Gets or sets the IPSec encryption algorithm (IKE phase 2). Possible + /// Gets or sets the IPSec encryption algorithm (IKE phase 1). Possible /// values include: 'None', 'DES', 'DES3', 'AES128', 'AES192', /// 'AES256', 'GCMAES128', 'GCMAES192', 'GCMAES256' /// @@ -85,7 +87,7 @@ public IpsecPolicy(int saLifeTimeSeconds, int saDataSizeKilobytes, string ipsecE public string IpsecEncryption { get; set; } /// - /// Gets or sets the IPSec integrity algorithm (IKE phase 2). Possible + /// Gets or sets the IPSec integrity algorithm (IKE phase 1). Possible /// values include: 'MD5', 'SHA1', 'SHA256', 'GCMAES128', 'GCMAES192', /// 'GCMAES256' /// @@ -93,14 +95,14 @@ public IpsecPolicy(int saLifeTimeSeconds, int saDataSizeKilobytes, string ipsecE public string IpsecIntegrity { get; set; } /// - /// Gets or sets the IKE encryption algorithm (IKE phase 1). Possible + /// Gets or sets the IKE encryption algorithm (IKE phase 2). Possible /// values include: 'DES', 'DES3', 'AES128', 'AES192', 'AES256' /// [JsonProperty(PropertyName = "ikeEncryption")] public string IkeEncryption { get; set; } /// - /// Gets or sets the IKE integrity algorithm (IKE phase 1). Possible + /// Gets or sets the IKE integrity algorithm (IKE phase 2). Possible /// values include: 'MD5', 'SHA1', 'SHA256', 'SHA384' /// [JsonProperty(PropertyName = "ikeIntegrity")] diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs index fd24da61dcb0..ec6849f3713a 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs @@ -37,14 +37,14 @@ public VirtualNetworkGateway() { } /// The type of this virtual network gateway. /// Possible values are: 'Vpn' and 'ExpressRoute'. Possible values /// include: 'Vpn', 'ExpressRoute' + /// The type of this virtual network gateway. + /// Possible values are: 'PolicyBased' and 'RouteBased'. Possible + /// values include: 'PolicyBased', 'RouteBased' /// Resource ID. /// Resource name. /// Resource type. /// Resource location. /// Resource tags. - /// The type of this virtual network gateway. - /// Possible values are: 'PolicyBased' and 'RouteBased'. Possible - /// values include: 'PolicyBased', 'RouteBased' /// Whether BGP is enabled for this virtual /// network gateway or not. /// ActiveActive flag @@ -67,7 +67,7 @@ public VirtualNetworkGateway() { } /// 'Deleting', and 'Failed'. /// Gets a unique read-only string that changes /// whenever the resource is updated. - public VirtualNetworkGateway(IList ipConfigurations, string gatewayType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string vpnType = default(string), bool? enableBgp = default(bool?), bool? activeActive = default(bool?), SubResource gatewayDefaultSite = default(SubResource), VirtualNetworkGatewaySku sku = default(VirtualNetworkGatewaySku), VpnClientConfiguration vpnClientConfiguration = default(VpnClientConfiguration), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) + public VirtualNetworkGateway(IList ipConfigurations, string gatewayType, string vpnType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), bool? enableBgp = default(bool?), bool? activeActive = default(bool?), SubResource gatewayDefaultSite = default(SubResource), VirtualNetworkGatewaySku sku = default(VirtualNetworkGatewaySku), VpnClientConfiguration vpnClientConfiguration = default(VpnClientConfiguration), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) : base(id, name, type, location, tags) { IpConfigurations = ipConfigurations; @@ -184,6 +184,10 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "GatewayType"); } + if (VpnType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "VpnType"); + } if (IpConfigurations != null) { foreach (var element in IpConfigurations) From 8aeba43c5391b3598df6b531136178b28d761fe5 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Mon, 20 Mar 2017 18:44:41 -0700 Subject: [PATCH 24/56] #WAF Added web application firewall related tests and rerecorded agw tests. --- .../ApplicationGatewayApiTest.json | 2468 ++++++----------- .../Tests/ApplicationGatewayTests.cs | 96 +- 2 files changed, 864 insertions(+), 1700 deletions(-) diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json index 0efc306131f2..a31a2c72432a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourcegroups/csmrg1399?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlZ3JvdXBzL2NzbXJnMTM5OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourcegroups/csmrg7667?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlZ3JvdXBzL2NzbXJnNzY2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -13,7 +13,7 @@ "29" ], "x-ms-client-request-id": [ - "d2f3b90b-36c3-482b-9ad0-2a43568bd99c" + "1cc41b83-f589-41ec-86af-5ab5b9f93a6c" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399\",\r\n \"name\": \"csmrg1399\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667\",\r\n \"name\": \"csmrg7667\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:05:16 GMT" + "Mon, 20 Mar 2017 18:28:10 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "d83c6228-0c8c-4a5b-a06b-4f2c6aff4bb8" + "374be73c-c3d4-4572-a8a5-f19dbeaafe1b" ], "x-ms-correlation-request-id": [ - "d83c6228-0c8c-4a5b-a06b-4f2c6aff4bb8" + "374be73c-c3d4-4572-a8a5-f19dbeaafe1b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060517Z:d83c6228-0c8c-4a5b-a06b-4f2c6aff4bb8" + "WESTUS2:20170320T182810Z:374be73c-c3d4-4572-a8a5-f19dbeaafe1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,10 +62,10 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet5890\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet5901\"\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\": \"azsmnet2045\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet3830\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "530" ], "x-ms-client-request-id": [ - "3fdc6888-46a0-403a-985e-1c7af6ee12ee" + "bfeaadb1-4d53-47f7-992a-92cc59f2c072" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8548\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548\",\r\n \"etag\": \"W/\\\"e14df32d-1c7b-45b6-a65b-4a6fd9581449\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ae09bb00-01b1-4a63-b955-562ef6160d61\",\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\": \"azsmnet5890\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\",\r\n \"etag\": \"W/\\\"e14df32d-1c7b-45b6-a65b-4a6fd9581449\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\",\r\n \"etag\": \"W/\\\"e14df32d-1c7b-45b6-a65b-4a6fd9581449\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5723\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723\",\r\n \"etag\": \"W/\\\"ba008f64-bd90-4044-9d1b-00ff7887a691\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7b495bca-37d7-41a5-a7dc-b852bdd5a16d\",\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\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"ba008f64-bd90-4044-9d1b-00ff7887a691\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3830\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\",\r\n \"etag\": \"W/\\\"ba008f64-bd90-4044-9d1b-00ff7887a691\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1495" @@ -99,7 +99,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:05:25 GMT" + "Mon, 20 Mar 2017 18:28:11 GMT" ], "Pragma": [ "no-cache" @@ -112,35 +112,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "71222849-9014-4ff9-9246-f27a40349b03" + "698b709a-65ad-41d4-8e15-8b288e49d56b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/698b709a-65ad-41d4-8e15-8b288e49d56b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "721da15b-1fb1-4e31-aaf4-d15b7e24da03" + "5510930c-627b-4bb4-bcc1-79a308647b34" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060525Z:721da15b-1fb1-4e31-aaf4-d15b7e24da03" + "WESTUS2:20170320T182812Z:5510930c-627b-4bb4-bcc1-79a308647b34" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/698b709a-65ad-41d4-8e15-8b288e49d56b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82OThiNzA5YS02NWFkLTQxZDQtOGUxNS04YjI4OGU0OWQ1NmI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -155,7 +155,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:05:55 GMT" + "Mon, 20 Mar 2017 18:28:41 GMT" ], "Pragma": [ "no-cache" @@ -171,35 +171,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fef3bf8d-a7a9-4538-8f18-607ccf8bff00" + "d3544c15-586a-4c3b-954e-74160aa1f80d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14970" ], "x-ms-correlation-request-id": [ - "a3bfea55-e664-4b7a-8a28-69d0d52c218b" + "0a86abd0-3cb5-49bb-94a8-033e45ccc461" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060555Z:a3bfea55-e664-4b7a-8a28-69d0d52c218b" + "WESTUS2:20170320T182842Z:0a86abd0-3cb5-49bb-94a8-033e45ccc461" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8548\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ae09bb00-01b1-4a63-b955-562ef6160d61\",\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\": \"azsmnet5890\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5723\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b495bca-37d7-41a5-a7dc-b852bdd5a16d\",\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\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3830\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -211,7 +211,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:05:55 GMT" + "Mon, 20 Mar 2017 18:28:41 GMT" ], "Pragma": [ "no-cache" @@ -220,7 +220,7 @@ "chunked" ], "ETag": [ - "W/\"b1186a21-2966-4b8f-8f69-7f3de0645f69\"" + "W/\"a6abbb23-af62-48d7-80b7-ff9770259f65\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -230,41 +230,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "76396307-58ac-433d-8db8-a9dd6f67f9bc" + "373e11bb-13a5-45c9-b18c-b951f822f914" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14969" ], "x-ms-correlation-request-id": [ - "81180793-4f56-45fd-86d6-da679dd60d04" + "a8deb92c-358f-4efe-88e3-f61c1ee1bee1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060555Z:81180793-4f56-45fd-86d6-da679dd60d04" + "WESTUS2:20170320T182842Z:a8deb92c-358f-4efe-88e3-f61c1ee1bee1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abac72f6-7a67-4f8c-9040-7dbad7838019" + "3cdf7a4a-483f-489f-a753-e085e71c56e7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet8548\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ae09bb00-01b1-4a63-b955-562ef6160d61\",\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\": \"azsmnet5890\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet5723\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b495bca-37d7-41a5-a7dc-b852bdd5a16d\",\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\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3830\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -276,7 +276,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:06:28 GMT" + "Mon, 20 Mar 2017 18:28:42 GMT" ], "Pragma": [ "no-cache" @@ -285,7 +285,7 @@ "chunked" ], "ETag": [ - "W/\"b1186a21-2966-4b8f-8f69-7f3de0645f69\"" + "W/\"a6abbb23-af62-48d7-80b7-ff9770259f65\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -295,41 +295,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3dba8b2e-907e-43c4-82b6-a8fe9f66f005" + "3645bdf4-701d-49f1-9ce8-8c211069b113" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14968" ], "x-ms-correlation-request-id": [ - "8d65d120-7954-4a81-ab79-53122e6375a7" + "97ef57e6-0378-4a96-b715-89a69df8432c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060628Z:8d65d120-7954-4a81-ab79-53122e6375a7" + "WESTUS2:20170320T182842Z:97ef57e6-0378-4a96-b715-89a69df8432c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzL3N1Ym5ldHMvYXpzbW5ldDIwNDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35b1dd89-126b-4e5c-95a4-48af265ad9fd" + "0f33ee02-4da3-4d15-b91f-47ea9b237ac9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5890\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\",\r\n \"etag\": \"W/\\\"b1186a21-2966-4b8f-8f69-7f3de0645f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\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" @@ -341,7 +341,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:06:29 GMT" + "Mon, 20 Mar 2017 18:28:42 GMT" ], "Pragma": [ "no-cache" @@ -350,7 +350,7 @@ "chunked" ], "ETag": [ - "W/\"b1186a21-2966-4b8f-8f69-7f3de0645f69\"" + "W/\"a6abbb23-af62-48d7-80b7-ff9770259f65\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -360,50 +360,50 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0d00b048-5830-45d0-bc8a-b9aac817699c" + "2bc05fd8-7008-471c-a6f5-197e610333da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14967" ], "x-ms-correlation-request-id": [ - "b6a45196-27dc-4e45-8852-eee72b5c6ae5" + "8d97b74a-0f67-4b40-b188-3a8cdc923d7c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060629Z:b6a45196-27dc-4e45-8852-eee72b5c6ae5" + "WESTUS2:20170320T182842Z:8d97b74a-0f67-4b40-b188-3a8cdc923d7c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet3365\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet4388\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet6124\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet2727\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet9197\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet2218\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9593\"\r\n },\r\n {\r\n \"name\": \"azsmnet6875\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet1710\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9515\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet5067\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet8609\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n },\r\n \"name\": \"azsmnet1800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n },\r\n \"name\": \"azsmnet3533\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n },\r\n \"name\": \"azsmnet790\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet2995\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n },\r\n \"name\": \"azsmnet6486\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet5694\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet57\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet4411\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet1047\"\r\n },\r\n {\r\n \"name\": \"azsmnet2873\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet4293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet8504\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet2535\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet1579\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n },\r\n \"name\": \"azsmnet129\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n },\r\n \"name\": \"azsmnet3623\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "7291" + "7528" ], "x-ms-client-request-id": [ - "e2394a38-e3d2-484d-bc43-9524b4c4d6e6" + "0417e481-0641-47d6-8736-8f017fbf46a8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5344\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0eb472c3-3a15-4b2d-9218-34b2e3057b44\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3365\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/gatewayIPConfigurations/azsmnet3365\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet4388\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6124\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet2727\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9197\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9593\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1710\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9515\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5067\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8609\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet1800\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3533\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2218\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\",\r\n \"etag\": \"W/\\\"20ecbf6c-3a01-44a0-9c7b-b336f388dcc6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "15222" + "15452" ], "Content-Type": [ "application/json; charset=utf-8" @@ -415,7 +415,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:06:33 GMT" + "Mon, 20 Mar 2017 18:28:42 GMT" ], "Pragma": [ "no-cache" @@ -428,35 +428,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8248159d-4703-478e-a374-caf55cf6018e" + "88e5a493-f938-4a9c-9319-e1465ab17d5e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "8bc80e2d-9764-416f-a803-dcb8504ec49e" + "6f644e0d-1175-4350-b163-7b8e662d0aa6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060633Z:8bc80e2d-9764-416f-a803-dcb8504ec49e" + "WESTUS2:20170320T182843Z:6f644e0d-1175-4350-b163-7b8e662d0aa6" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -471,7 +471,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:07:14 GMT" + "Mon, 20 Mar 2017 18:29:13 GMT" ], "Pragma": [ "no-cache" @@ -490,32 +490,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0cbaaef0-3a4d-4cb9-bd1e-2b03b584f103" + "af46dfe3-0808-4087-a2aa-547603d3da8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14966" ], "x-ms-correlation-request-id": [ - "833e5df5-7b8d-4a48-bb4a-0acc6beec7ed" + "03209232-d362-4a88-ad8a-16234e1a2ad2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060714Z:833e5df5-7b8d-4a48-bb4a-0acc6beec7ed" + "WESTUS2:20170320T182913Z:03209232-d362-4a88-ad8a-16234e1a2ad2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -530,7 +530,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:07:44 GMT" + "Mon, 20 Mar 2017 18:29:43 GMT" ], "Pragma": [ "no-cache" @@ -549,32 +549,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c71fdb82-875c-40f3-9c38-d25e6ae0278a" + "abbdcf5e-1d6a-4353-97ec-23fff1f0e560" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14965" ], "x-ms-correlation-request-id": [ - "4b449db4-455f-457f-bbcc-eb049687ac8b" + "4301223a-2fc2-48f3-86d8-599cc195a9a0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060745Z:4b449db4-455f-457f-bbcc-eb049687ac8b" + "WESTUS2:20170320T182944Z:4301223a-2fc2-48f3-86d8-599cc195a9a0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -589,7 +589,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:08:14 GMT" + "Mon, 20 Mar 2017 18:30:13 GMT" ], "Pragma": [ "no-cache" @@ -608,32 +608,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "82d0465a-fb2d-40cf-8a29-c0cbcd5d5307" + "029003db-d5c4-42b0-8256-69341d71f095" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14964" ], "x-ms-correlation-request-id": [ - "c424b1f7-1caa-4b50-8979-cef6ba6ef87a" + "25a30940-e82d-4d04-aeeb-8d7aed4b0d9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060815Z:c424b1f7-1caa-4b50-8979-cef6ba6ef87a" + "WESTUS2:20170320T183014Z:25a30940-e82d-4d04-aeeb-8d7aed4b0d9e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -648,7 +648,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:08:44 GMT" + "Mon, 20 Mar 2017 18:30:43 GMT" ], "Pragma": [ "no-cache" @@ -667,32 +667,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "217865fb-2d85-4c08-9375-5e1569da6003" + "49ae3c34-cac9-4dd2-a883-fa97c49a991e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14963" ], "x-ms-correlation-request-id": [ - "f5e700da-94d7-48aa-9fd8-c71c5c57c044" + "3533479e-63bc-441d-9005-690daf926571" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060845Z:f5e700da-94d7-48aa-9fd8-c71c5c57c044" + "WESTUS2:20170320T183044Z:3533479e-63bc-441d-9005-690daf926571" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -707,7 +707,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:09:15 GMT" + "Mon, 20 Mar 2017 18:31:13 GMT" ], "Pragma": [ "no-cache" @@ -726,32 +726,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "75c20090-ffc4-4eae-bb86-91b6acc218da" + "bc0c7229-974d-4e0a-ab7b-bb1d4d3fd69d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14962" ], "x-ms-correlation-request-id": [ - "9d0dc019-1fd1-403c-b2f0-9602f76c5e19" + "e3831d8a-476f-45ae-92b5-37462c03b150" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060916Z:9d0dc019-1fd1-403c-b2f0-9602f76c5e19" + "WESTUS2:20170320T183114Z:e3831d8a-476f-45ae-92b5-37462c03b150" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -766,7 +766,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:09:45 GMT" + "Mon, 20 Mar 2017 18:31:44 GMT" ], "Pragma": [ "no-cache" @@ -785,32 +785,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d4a38a06-2926-4450-b939-fe42d2245037" + "d0488317-6c73-4806-a8a6-3f88bb94f90c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14961" ], "x-ms-correlation-request-id": [ - "fee4f667-3ae4-4c67-9f5d-346e72c65f63" + "1084f2bc-d27b-49ab-bbec-2f0535e9d188" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T060946Z:fee4f667-3ae4-4c67-9f5d-346e72c65f63" + "WESTUS2:20170320T183145Z:1084f2bc-d27b-49ab-bbec-2f0535e9d188" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -825,7 +825,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:10:15 GMT" + "Mon, 20 Mar 2017 18:32:14 GMT" ], "Pragma": [ "no-cache" @@ -844,32 +844,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5c1bdd26-2aa4-4a38-91e8-375a0ecc8fc2" + "d0fb25f8-c2c5-433e-8461-e23c2a4aa8a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14960" ], "x-ms-correlation-request-id": [ - "0a8bcab8-56a9-4192-9565-6ea59e008862" + "a8cf075a-424f-434b-8550-716c9b82dc4c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061016Z:0a8bcab8-56a9-4192-9565-6ea59e008862" + "WESTUS2:20170320T183215Z:a8cf075a-424f-434b-8550-716c9b82dc4c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -884,7 +884,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:10:46 GMT" + "Mon, 20 Mar 2017 18:32:44 GMT" ], "Pragma": [ "no-cache" @@ -903,32 +903,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7187bf34-8b72-4e68-bdc7-3ae9e83eef28" + "a3d996e2-a94a-4a74-8600-a188658e8a3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14959" ], "x-ms-correlation-request-id": [ - "7e8a394e-efa5-4dc9-be63-d4d29fbf4cbb" + "472e4769-f8eb-4293-bc77-fb7e9d429fc8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061046Z:7e8a394e-efa5-4dc9-be63-d4d29fbf4cbb" + "WESTUS2:20170320T183245Z:472e4769-f8eb-4293-bc77-fb7e9d429fc8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -943,7 +943,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:11:16 GMT" + "Mon, 20 Mar 2017 18:33:15 GMT" ], "Pragma": [ "no-cache" @@ -962,32 +962,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bb0a4cc7-b9e3-41f2-aecb-b621784eceee" + "75486a68-d683-4ef3-ba05-c396e56507d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14958" ], "x-ms-correlation-request-id": [ - "ddc4d1e4-7afd-41c7-8cf8-18c39f2f100a" + "d0ce09a3-bf50-4736-8c75-4ed80f232171" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061117Z:ddc4d1e4-7afd-41c7-8cf8-18c39f2f100a" + "WESTUS2:20170320T183315Z:d0ce09a3-bf50-4736-8c75-4ed80f232171" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1002,7 +1002,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:11:46 GMT" + "Mon, 20 Mar 2017 18:33:45 GMT" ], "Pragma": [ "no-cache" @@ -1021,32 +1021,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3769f175-65fb-429b-b191-2748f21721fb" + "dc6d9c68-e837-4c38-9fc7-b3ff9ccaf0cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14957" ], "x-ms-correlation-request-id": [ - "62b24489-9a61-4fec-80cb-f1c95dcdc1a8" + "315bb53e-269c-491c-b1df-4efdf0844bdb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061147Z:62b24489-9a61-4fec-80cb-f1c95dcdc1a8" + "WESTUS2:20170320T183345Z:315bb53e-269c-491c-b1df-4efdf0844bdb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1061,7 +1061,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:12:17 GMT" + "Mon, 20 Mar 2017 18:34:15 GMT" ], "Pragma": [ "no-cache" @@ -1080,32 +1080,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cc600879-2929-41dd-a1bd-7f7c796e88b6" + "a9566ce8-f323-4fca-8dd3-134e1af168a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14956" ], "x-ms-correlation-request-id": [ - "b41b615f-40c2-40d0-8f4c-05bf0ed44e1c" + "0a63d531-525a-4b42-88b7-7b9701322187" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061217Z:b41b615f-40c2-40d0-8f4c-05bf0ed44e1c" + "WESTUS2:20170320T183416Z:0a63d531-525a-4b42-88b7-7b9701322187" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1120,7 +1120,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:12:47 GMT" + "Mon, 20 Mar 2017 18:34:46 GMT" ], "Pragma": [ "no-cache" @@ -1139,32 +1139,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d3ab99e1-5468-445b-ada5-01054f23c04a" + "259b41d7-ed6c-47b8-8c0d-fbc170fafb80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14955" ], "x-ms-correlation-request-id": [ - "4b7c2895-b1af-4628-9e52-f8988f7dc243" + "fd24f3c3-0c0d-44aa-a925-58b16e34ee39" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061248Z:4b7c2895-b1af-4628-9e52-f8988f7dc243" + "WESTUS2:20170320T183446Z:fd24f3c3-0c0d-44aa-a925-58b16e34ee39" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1179,7 +1179,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:13:17 GMT" + "Mon, 20 Mar 2017 18:35:16 GMT" ], "Pragma": [ "no-cache" @@ -1198,32 +1198,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "889edc54-25fb-4cba-8344-29a8301154df" + "5aedb890-15ae-48e7-bc7a-42b7355430ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14954" ], "x-ms-correlation-request-id": [ - "00d78a52-a792-4f13-9f14-71126cbf0b8e" + "7e11adaf-357f-4b87-b9d8-5cc3aa82ced3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061318Z:00d78a52-a792-4f13-9f14-71126cbf0b8e" + "WESTUS2:20170320T183516Z:7e11adaf-357f-4b87-b9d8-5cc3aa82ced3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1238,7 +1238,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:13:48 GMT" + "Mon, 20 Mar 2017 18:35:46 GMT" ], "Pragma": [ "no-cache" @@ -1257,32 +1257,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4b5fa86b-b4eb-47de-951d-ab60bfa97e85" + "96ee560e-ab2d-417c-9058-f2c9287668bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14953" ], "x-ms-correlation-request-id": [ - "346f0b4c-d126-4926-b6df-c7dd5e92c19e" + "c31bd90d-743d-4ebb-aec2-0929c44b136f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061348Z:346f0b4c-d126-4926-b6df-c7dd5e92c19e" + "WESTUS2:20170320T183547Z:c31bd90d-743d-4ebb-aec2-0929c44b136f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1297,7 +1297,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:14:18 GMT" + "Mon, 20 Mar 2017 18:36:16 GMT" ], "Pragma": [ "no-cache" @@ -1316,32 +1316,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "074f0b39-19de-4281-9ee9-11faca2a6bde" + "b3e1cab2-beb5-4648-a1ca-d26d0be9c035" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14952" ], "x-ms-correlation-request-id": [ - "b74fbae6-38bd-4956-8ff0-9fdee973c3b5" + "b0524977-b267-4708-8fcd-bad494f55fd4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061419Z:b74fbae6-38bd-4956-8ff0-9fdee973c3b5" + "WESTUS2:20170320T183617Z:b0524977-b267-4708-8fcd-bad494f55fd4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1356,7 +1356,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:14:48 GMT" + "Mon, 20 Mar 2017 18:36:47 GMT" ], "Pragma": [ "no-cache" @@ -1375,32 +1375,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "71732e8e-9282-47cd-89b9-940e023c7711" + "3d035c12-f6a8-46ba-bbc8-420ef545a8c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14951" ], "x-ms-correlation-request-id": [ - "64dc5351-2768-40ef-9c2e-a87ec4864dd3" + "d4976d95-53cf-4e23-b2e1-89e775ff98f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061449Z:64dc5351-2768-40ef-9c2e-a87ec4864dd3" + "WESTUS2:20170320T183648Z:d4976d95-53cf-4e23-b2e1-89e775ff98f8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1415,7 +1415,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:15:19 GMT" + "Mon, 20 Mar 2017 18:37:17 GMT" ], "Pragma": [ "no-cache" @@ -1434,32 +1434,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "92f9d80e-7a81-4674-999f-515aab0638a5" + "c61e3129-f6ed-4c53-8f48-d0b368131bc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14950" ], "x-ms-correlation-request-id": [ - "4df38055-0e63-4195-8d24-270c923786e2" + "effbbf7e-366e-4c6c-8410-672b37f72ca1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061519Z:4df38055-0e63-4195-8d24-270c923786e2" + "WESTUS2:20170320T183718Z:effbbf7e-366e-4c6c-8410-672b37f72ca1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1474,7 +1474,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:15:49 GMT" + "Mon, 20 Mar 2017 18:37:48 GMT" ], "Pragma": [ "no-cache" @@ -1493,32 +1493,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "34f28e15-7e87-46b6-a2c4-3fcb86afd325" + "f6fac953-1972-435a-9745-e24d7c5f4494" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14949" ], "x-ms-correlation-request-id": [ - "33848f38-a9b0-4897-bc36-102a830e68e5" + "afc936c8-906b-4c7b-b7e2-3369f1e31e2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061550Z:33848f38-a9b0-4897-bc36-102a830e68e5" + "WESTUS2:20170320T183748Z:afc936c8-906b-4c7b-b7e2-3369f1e31e2d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1533,7 +1533,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:16:20 GMT" + "Mon, 20 Mar 2017 18:38:18 GMT" ], "Pragma": [ "no-cache" @@ -1552,32 +1552,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "39d7d8a3-e7b4-44b9-8280-37a9bf87d5ce" + "94366163-0125-416d-a290-e9975591d291" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14948" ], "x-ms-correlation-request-id": [ - "3a925edc-6ebf-40c5-a8d0-605aacb99182" + "f78b0a9e-8cf1-4b0a-a846-6d97cab0682e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061620Z:3a925edc-6ebf-40c5-a8d0-605aacb99182" + "WESTUS2:20170320T183818Z:f78b0a9e-8cf1-4b0a-a846-6d97cab0682e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1592,7 +1592,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:16:50 GMT" + "Mon, 20 Mar 2017 18:38:48 GMT" ], "Pragma": [ "no-cache" @@ -1611,32 +1611,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0741b92a-2d00-4b69-951d-e9e8cc42eaed" + "8542d0bd-c091-4285-b200-1a97e940df31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14947" ], "x-ms-correlation-request-id": [ - "a7c0de83-ace9-43d7-bc73-308ebfa35b85" + "cb3354de-11c6-41db-9284-70e75ae7c709" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061650Z:a7c0de83-ace9-43d7-bc73-308ebfa35b85" + "WESTUS2:20170320T183848Z:cb3354de-11c6-41db-9284-70e75ae7c709" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1651,7 +1651,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:17:20 GMT" + "Mon, 20 Mar 2017 18:39:18 GMT" ], "Pragma": [ "no-cache" @@ -1670,35 +1670,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cd2a13b2-92cf-4060-81c2-159969eb0818" + "34fb2f43-2095-42ea-804c-3b6bc4014eee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14946" ], "x-ms-correlation-request-id": [ - "8c4eb7a1-66d3-4035-bc47-07c013620038" + "12c98d13-a2b9-4850-8184-7b0ead542237" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061720Z:8c4eb7a1-66d3-4035-bc47-07c013620038" + "WESTUS2:20170320T183919Z:12c98d13-a2b9-4850-8184-7b0ead542237" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1710,7 +1710,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:17:50 GMT" + "Mon, 20 Mar 2017 18:39:49 GMT" ], "Pragma": [ "no-cache" @@ -1718,9 +1718,6 @@ "Transfer-Encoding": [ "chunked" ], - "Retry-After": [ - "10" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -1729,35 +1726,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fa4338b0-f756-4bc1-9af4-ecd64a7c240c" + "94eae946-eaba-41f9-8c22-5fc468bcd2d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14945" ], "x-ms-correlation-request-id": [ - "a8c056ca-ec66-476c-ac83-01e22fc9e4ac" + "c63c15a5-e15b-49c2-bedc-4f3f60984534" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061751Z:a8c056ca-ec66-476c-ac83-01e22fc9e4ac" + "WESTUS2:20170320T183949Z:c63c15a5-e15b-49c2-bedc-4f3f60984534" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1769,7 +1766,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:18:21 GMT" + "Mon, 20 Mar 2017 18:39:49 GMT" ], "Pragma": [ "no-cache" @@ -1777,8 +1774,8 @@ "Transfer-Encoding": [ "chunked" ], - "Retry-After": [ - "10" + "ETag": [ + "W/\"0cdab41d-75f6-49e8-826e-0ffeec80865e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1788,35 +1785,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "383b373f-127e-4bc5-b3c8-f6b655486c91" + "2365205a-72c2-476a-95ca-35927681b0b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14944" ], "x-ms-correlation-request-id": [ - "056520b7-d369-4326-beaf-9fc81b1b437a" + "93bf33b7-5a6c-4790-954a-694b5362bd08" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061821Z:056520b7-d369-4326-beaf-9fc81b1b437a" + "WESTUS2:20170320T183949Z:93bf33b7-5a6c-4790-954a-694b5362bd08" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "8403b1e1-b8aa-40a9-a17d-6a20f0d28f99" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1828,7 +1831,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:18:51 GMT" + "Mon, 20 Mar 2017 18:39:49 GMT" ], "Pragma": [ "no-cache" @@ -1836,8 +1839,8 @@ "Transfer-Encoding": [ "chunked" ], - "Retry-After": [ - "10" + "ETag": [ + "W/\"0cdab41d-75f6-49e8-826e-0ffeec80865e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1847,35 +1850,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f5013689-116c-4b24-a80b-29eb28469028" + "851b19a5-2815-4d34-96a3-f6070c57461e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14943" ], "x-ms-correlation-request-id": [ - "a6382ecf-ac7d-4f23-80f7-ec46de3b3265" + "975e765a-5e66-46d2-a453-6b471a29e52e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061851Z:a6382ecf-ac7d-4f23-80f7-ec46de3b3265" + "WESTUS2:20170320T183949Z:975e765a-5e66-46d2-a453-6b471a29e52e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f1bf7ea9-a8c0-4a7b-903d-717ec5447541" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1887,7 +1896,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:19:21 GMT" + "Mon, 20 Mar 2017 18:48:29 GMT" ], "Pragma": [ "no-cache" @@ -1895,8 +1904,8 @@ "Transfer-Encoding": [ "chunked" ], - "Retry-After": [ - "10" + "ETag": [ + "W/\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1906,36 +1915,45 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "877effb3-2733-4be8-9169-69d6985a9d9a" + "d673d73a-92ae-4b3a-9d6c-02264209cd0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14918" ], "x-ms-correlation-request-id": [ - "1ae17592-ac56-4a8f-8b18-e68e800d6d41" + "df5d74c4-9225-49c4-8482-a14d76b966a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061921Z:1ae17592-ac56-4a8f-8b18-e68e800d6d41" + "WESTUS2:20170320T184829Z:df5d74c4-9225-49c4-8482-a14d76b966a9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendhealth?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOS9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ed9426ad-82d7-4aa1-be55-a759346589cf" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "null", "ResponseHeaders": { + "Content-Length": [ + "4" + ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -1946,13 +1964,13 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:19:51 GMT" + "Mon, 20 Mar 2017 18:39:49 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "Location": [ + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/b6b485d2-d161-4ebe-8012-f412458d37f9?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1961,39 +1979,36 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-request-id": [ - "57230833-a2f2-492c-aac1-1c76e94582db" + "b6b485d2-d161-4ebe-8012-f412458d37f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "66b5adaa-4867-4942-a36d-7b34c63b9a1c" + "c98de22d-d022-4587-b2d0-e6c4e9ee6f6c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T061952Z:66b5adaa-4867-4942-a36d-7b34c63b9a1c" + "WESTUS2:20170320T183950Z:c98de22d-d022-4587-b2d0-e6c4e9ee6f6c" ] }, - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/b6b485d2-d161-4ebe-8012-f412458d37f9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9iNmI0ODVkMi1kMTYxLTRlYmUtODAxMi1mNDEyNDU4ZDM3Zjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"backendAddressPools\": [\r\n {\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unhealthy\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Healthy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Partial\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Partial\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2005,7 +2020,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:20:22 GMT" + "Mon, 20 Mar 2017 18:40:20 GMT" ], "Pragma": [ "no-cache" @@ -2013,6 +2028,9 @@ "Transfer-Encoding": [ "chunked" ], + "Location": [ + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/b6b485d2-d161-4ebe-8012-f412458d37f9?api-version=2017-03-01" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -2021,35 +2039,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "aa569cb5-cf89-494b-bc4f-0d07bc82ae4b" + "b6b485d2-d161-4ebe-8012-f412458d37f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14942" ], "x-ms-correlation-request-id": [ - "0edff2ea-98a5-4214-bef7-10bd029ba9cb" + "c20ae109-f4fa-4cca-9f55-8d76d829f9e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T062022Z:0edff2ea-98a5-4214-bef7-10bd029ba9cb" + "WESTUS2:20170320T184020Z:c20ae109-f4fa-4cca-9f55-8d76d829f9e0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlBdmFpbGFibGVXYWZSdWxlU2V0cz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1bf825d3-2576-4343-b0ad-408c3bca4759" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5344\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0eb472c3-3a15-4b2d-9218-34b2e3057b44\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3365\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/gatewayIPConfigurations/azsmnet3365\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet4388\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6124\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet2727\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9197\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9593\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1710\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9515\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5067\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8609\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet1800\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3533\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2218\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"OWASP_3.0\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets/\",\r\n \"type\": \"Microsoft.Network/applicationGatewayAvailableWafRuleSets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"3.0\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"REQUEST-910-IP-REPUTATION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 910011,\r\n \"description\": \"Rule 910011\"\r\n },\r\n {\r\n \"ruleId\": 910012,\r\n \"description\": \"Rule 910012\"\r\n },\r\n {\r\n \"ruleId\": 910000,\r\n \"description\": \"Request from Known Malicious Client (Based on previous traffic violations).\"\r\n },\r\n {\r\n \"ruleId\": 910100,\r\n \"description\": \"Client IP is from a HIGH Risk Country Location.\"\r\n },\r\n {\r\n \"ruleId\": 910120,\r\n \"description\": \"Rule 910120\"\r\n },\r\n {\r\n \"ruleId\": 910130,\r\n \"description\": \"Rule 910130\"\r\n },\r\n {\r\n \"ruleId\": 910150,\r\n \"description\": \"HTTP Blacklist match for search engine IP\"\r\n },\r\n {\r\n \"ruleId\": 910160,\r\n \"description\": \"HTTP Blacklist match for spammer IP\"\r\n },\r\n {\r\n \"ruleId\": 910170,\r\n \"description\": \"HTTP Blacklist match for suspicious IP\"\r\n },\r\n {\r\n \"ruleId\": 910180,\r\n \"description\": \"HTTP Blacklist match for harvester IP\"\r\n },\r\n {\r\n \"ruleId\": 910013,\r\n \"description\": \"Rule 910013\"\r\n },\r\n {\r\n \"ruleId\": 910014,\r\n \"description\": \"Rule 910014\"\r\n },\r\n {\r\n \"ruleId\": 910015,\r\n \"description\": \"Rule 910015\"\r\n },\r\n {\r\n \"ruleId\": 910016,\r\n \"description\": \"Rule 910016\"\r\n },\r\n {\r\n \"ruleId\": 910017,\r\n \"description\": \"Rule 910017\"\r\n },\r\n {\r\n \"ruleId\": 910018,\r\n \"description\": \"Rule 910018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-911-METHOD-ENFORCEMENT\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 911011,\r\n \"description\": \"Rule 911011\"\r\n },\r\n {\r\n \"ruleId\": 911012,\r\n \"description\": \"Rule 911012\"\r\n },\r\n {\r\n \"ruleId\": 911100,\r\n \"description\": \"Method is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 911013,\r\n \"description\": \"Rule 911013\"\r\n },\r\n {\r\n \"ruleId\": 911014,\r\n \"description\": \"Rule 911014\"\r\n },\r\n {\r\n \"ruleId\": 911015,\r\n \"description\": \"Rule 911015\"\r\n },\r\n {\r\n \"ruleId\": 911016,\r\n \"description\": \"Rule 911016\"\r\n },\r\n {\r\n \"ruleId\": 911017,\r\n \"description\": \"Rule 911017\"\r\n },\r\n {\r\n \"ruleId\": 911018,\r\n \"description\": \"Rule 911018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-912-DOS-PROTECTION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 912100,\r\n \"description\": \"Rule 912100\"\r\n },\r\n {\r\n \"ruleId\": 912012,\r\n \"description\": \"Rule 912012\"\r\n },\r\n {\r\n \"ruleId\": 912120,\r\n \"description\": \"Denial of Service (DoS) attack identified from %{tx.real_ip} (%{tx.dos_block_counter} hits since last alert)\"\r\n },\r\n {\r\n \"ruleId\": 912130,\r\n \"description\": \"Rule 912130\"\r\n },\r\n {\r\n \"ruleId\": 912140,\r\n \"description\": \"Rule 912140\"\r\n },\r\n {\r\n \"ruleId\": 912150,\r\n \"description\": \"Rule 912150\"\r\n },\r\n {\r\n \"ruleId\": 912160,\r\n \"description\": \"Rule 912160\"\r\n },\r\n {\r\n \"ruleId\": 912170,\r\n \"description\": \"Potential Denial of Service (DoS) Attack from %{tx.real_ip} - # of Request Bursts: %{ip.dos_burst_counter}\"\r\n },\r\n {\r\n \"ruleId\": 912013,\r\n \"description\": \"Rule 912013\"\r\n },\r\n {\r\n \"ruleId\": 912014,\r\n \"description\": \"Rule 912014\"\r\n },\r\n {\r\n \"ruleId\": 912019,\r\n \"description\": \"Rule 912019\"\r\n },\r\n {\r\n \"ruleId\": 912171,\r\n \"description\": \"Potential Denial of Service (DoS) Attack from %{tx.real_ip} - # of Request Bursts: %{ip.dos_burst_counter}\"\r\n },\r\n {\r\n \"ruleId\": 912015,\r\n \"description\": \"Rule 912015\"\r\n },\r\n {\r\n \"ruleId\": 912016,\r\n \"description\": \"Rule 912016\"\r\n },\r\n {\r\n \"ruleId\": 912017,\r\n \"description\": \"Rule 912017\"\r\n },\r\n {\r\n \"ruleId\": 912018,\r\n \"description\": \"Rule 912018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-913-SCANNER-DETECTION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 913011,\r\n \"description\": \"Rule 913011\"\r\n },\r\n {\r\n \"ruleId\": 913012,\r\n \"description\": \"Rule 913012\"\r\n },\r\n {\r\n \"ruleId\": 913100,\r\n \"description\": \"Found User-Agent associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913110,\r\n \"description\": \"Found request header associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913120,\r\n \"description\": \"Found request filename/argument associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913013,\r\n \"description\": \"Rule 913013\"\r\n },\r\n {\r\n \"ruleId\": 913014,\r\n \"description\": \"Rule 913014\"\r\n },\r\n {\r\n \"ruleId\": 913101,\r\n \"description\": \"Found User-Agent associated with scripting/generic HTTP client\"\r\n },\r\n {\r\n \"ruleId\": 913102,\r\n \"description\": \"Found User-Agent associated with web crawler/bot\"\r\n },\r\n {\r\n \"ruleId\": 913015,\r\n \"description\": \"Rule 913015\"\r\n },\r\n {\r\n \"ruleId\": 913016,\r\n \"description\": \"Rule 913016\"\r\n },\r\n {\r\n \"ruleId\": 913017,\r\n \"description\": \"Rule 913017\"\r\n },\r\n {\r\n \"ruleId\": 913018,\r\n \"description\": \"Rule 913018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-920-PROTOCOL-ENFORCEMENT\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 920011,\r\n \"description\": \"Rule 920011\"\r\n },\r\n {\r\n \"ruleId\": 920012,\r\n \"description\": \"Rule 920012\"\r\n },\r\n {\r\n \"ruleId\": 920100,\r\n \"description\": \"Invalid HTTP Request Line\"\r\n },\r\n {\r\n \"ruleId\": 920130,\r\n \"description\": \"Failed to parse request body.\"\r\n },\r\n {\r\n \"ruleId\": 920140,\r\n \"description\": \"Multipart request body failed strict validation: PE %{REQBODY_PROCESSOR_ERROR}, BQ %{MULTIPART_BOUNDARY_QUOTED}, BW %{MULTIPART_BOUNDARY_WHITESPACE}, DB %{MULTIPART_DATA_BEFORE}, DA %{MULTIPART_DATA_AFTER}, HF %{MULTIPART_HEADER_FOLDING}, LF %{MULTIPART_LF_LINE}, SM %{MULTIPART_SEMICOLON_MISSING}, IQ %{MULTIPART_INVALID_QUOTING}, IH %{MULTIPART_INVALID_HEADER_FOLDING}, FLE %{MULTIPART_FILE_LIMIT_EXCEEDED}\"\r\n },\r\n {\r\n \"ruleId\": 920160,\r\n \"description\": \"Content-Length HTTP header is not numeric.\"\r\n },\r\n {\r\n \"ruleId\": 920170,\r\n \"description\": \"GET or HEAD Request with Body Content.\"\r\n },\r\n {\r\n \"ruleId\": 920180,\r\n \"description\": \"POST request missing Content-Length Header.\"\r\n },\r\n {\r\n \"ruleId\": 920190,\r\n \"description\": \"Range: Invalid Last Byte Value.\"\r\n },\r\n {\r\n \"ruleId\": 920210,\r\n \"description\": \"Multiple/Conflicting Connection Header Data Found.\"\r\n },\r\n {\r\n \"ruleId\": 920220,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920240,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920250,\r\n \"description\": \"UTF8 Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920260,\r\n \"description\": \"Unicode Full/Half Width Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920270,\r\n \"description\": \"Invalid character in request (null character)\"\r\n },\r\n {\r\n \"ruleId\": 920280,\r\n \"description\": \"Request Missing a Host Header\"\r\n },\r\n {\r\n \"ruleId\": 920290,\r\n \"description\": \"Empty Host Header\"\r\n },\r\n {\r\n \"ruleId\": 920310,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920311,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920330,\r\n \"description\": \"Empty User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 920340,\r\n \"description\": \"Request Containing Content, but Missing Content-Type header\"\r\n },\r\n {\r\n \"ruleId\": 920350,\r\n \"description\": \"Host header is a numeric IP address\"\r\n },\r\n {\r\n \"ruleId\": 920380,\r\n \"description\": \"Too many arguments in request\"\r\n },\r\n {\r\n \"ruleId\": 920360,\r\n \"description\": \"Argument name too long\"\r\n },\r\n {\r\n \"ruleId\": 920370,\r\n \"description\": \"Argument value too long\"\r\n },\r\n {\r\n \"ruleId\": 920390,\r\n \"description\": \"Total arguments size exceeded\"\r\n },\r\n {\r\n \"ruleId\": 920400,\r\n \"description\": \"Uploaded file size too large\"\r\n },\r\n {\r\n \"ruleId\": 920410,\r\n \"description\": \"Total uploaded files size too large\"\r\n },\r\n {\r\n \"ruleId\": 920420,\r\n \"description\": \"Request content type is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 920430,\r\n \"description\": \"HTTP protocol version is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 920440,\r\n \"description\": \"URL file extension is restricted by policy\"\r\n },\r\n {\r\n \"ruleId\": 920450,\r\n \"description\": \"HTTP header is restricted by policy (%{MATCHED_VAR})\"\r\n },\r\n {\r\n \"ruleId\": 920013,\r\n \"description\": \"Rule 920013\"\r\n },\r\n {\r\n \"ruleId\": 920014,\r\n \"description\": \"Rule 920014\"\r\n },\r\n {\r\n \"ruleId\": 920200,\r\n \"description\": \"Range: Too many fields (6 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920201,\r\n \"description\": \"Range: Too many fields for pdf request (35 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920230,\r\n \"description\": \"Multiple URL Encoding Detected\"\r\n },\r\n {\r\n \"ruleId\": 920300,\r\n \"description\": \"Request Missing an Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920271,\r\n \"description\": \"Invalid character in request (non printable characters)\"\r\n },\r\n {\r\n \"ruleId\": 920320,\r\n \"description\": \"Missing User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 920015,\r\n \"description\": \"Rule 920015\"\r\n },\r\n {\r\n \"ruleId\": 920016,\r\n \"description\": \"Rule 920016\"\r\n },\r\n {\r\n \"ruleId\": 920272,\r\n \"description\": \"Invalid character in request (outside of printable chars below ascii 127)\"\r\n },\r\n {\r\n \"ruleId\": 920017,\r\n \"description\": \"Rule 920017\"\r\n },\r\n {\r\n \"ruleId\": 920018,\r\n \"description\": \"Rule 920018\"\r\n },\r\n {\r\n \"ruleId\": 920202,\r\n \"description\": \"Range: Too many fields for pdf request (6 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920273,\r\n \"description\": \"Invalid character in request (outside of very strict set)\"\r\n },\r\n {\r\n \"ruleId\": 920274,\r\n \"description\": \"Invalid character in request headers (outside of very strict set)\"\r\n },\r\n {\r\n \"ruleId\": 920460,\r\n \"description\": \"Rule 920460\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-921-PROTOCOL-ATTACK\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 921011,\r\n \"description\": \"Rule 921011\"\r\n },\r\n {\r\n \"ruleId\": 921012,\r\n \"description\": \"Rule 921012\"\r\n },\r\n {\r\n \"ruleId\": 921100,\r\n \"description\": \"HTTP Request Smuggling Attack.\"\r\n },\r\n {\r\n \"ruleId\": 921110,\r\n \"description\": \"HTTP Request Smuggling Attack\"\r\n },\r\n {\r\n \"ruleId\": 921120,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 921130,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 921140,\r\n \"description\": \"HTTP Header Injection Attack via headers\"\r\n },\r\n {\r\n \"ruleId\": 921150,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF detected)\"\r\n },\r\n {\r\n \"ruleId\": 921160,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF and header-name detected)\"\r\n },\r\n {\r\n \"ruleId\": 921013,\r\n \"description\": \"Rule 921013\"\r\n },\r\n {\r\n \"ruleId\": 921014,\r\n \"description\": \"Rule 921014\"\r\n },\r\n {\r\n \"ruleId\": 921151,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF detected)\"\r\n },\r\n {\r\n \"ruleId\": 921015,\r\n \"description\": \"Rule 921015\"\r\n },\r\n {\r\n \"ruleId\": 921016,\r\n \"description\": \"Rule 921016\"\r\n },\r\n {\r\n \"ruleId\": 921170,\r\n \"description\": \"Rule 921170\"\r\n },\r\n {\r\n \"ruleId\": 921180,\r\n \"description\": \"HTTP Parameter Pollution (%{TX.1})\"\r\n },\r\n {\r\n \"ruleId\": 921017,\r\n \"description\": \"Rule 921017\"\r\n },\r\n {\r\n \"ruleId\": 921018,\r\n \"description\": \"Rule 921018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-930-APPLICATION-ATTACK-LFI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 930011,\r\n \"description\": \"Rule 930011\"\r\n },\r\n {\r\n \"ruleId\": 930012,\r\n \"description\": \"Rule 930012\"\r\n },\r\n {\r\n \"ruleId\": 930100,\r\n \"description\": \"Path Traversal Attack (/../)\"\r\n },\r\n {\r\n \"ruleId\": 930110,\r\n \"description\": \"Path Traversal Attack (/../)\"\r\n },\r\n {\r\n \"ruleId\": 930120,\r\n \"description\": \"OS File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 930130,\r\n \"description\": \"Restricted File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 930013,\r\n \"description\": \"Rule 930013\"\r\n },\r\n {\r\n \"ruleId\": 930014,\r\n \"description\": \"Rule 930014\"\r\n },\r\n {\r\n \"ruleId\": 930015,\r\n \"description\": \"Rule 930015\"\r\n },\r\n {\r\n \"ruleId\": 930016,\r\n \"description\": \"Rule 930016\"\r\n },\r\n {\r\n \"ruleId\": 930017,\r\n \"description\": \"Rule 930017\"\r\n },\r\n {\r\n \"ruleId\": 930018,\r\n \"description\": \"Rule 930018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-931-APPLICATION-ATTACK-RFI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 931011,\r\n \"description\": \"Rule 931011\"\r\n },\r\n {\r\n \"ruleId\": 931012,\r\n \"description\": \"Rule 931012\"\r\n },\r\n {\r\n \"ruleId\": 931100,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Parameter using IP Address\"\r\n },\r\n {\r\n \"ruleId\": 931110,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Common RFI Vulnerable Parameter Name used w/URL Payload\"\r\n },\r\n {\r\n \"ruleId\": 931120,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Payload Used w/Trailing Question Mark Character (?)\"\r\n },\r\n {\r\n \"ruleId\": 931013,\r\n \"description\": \"Rule 931013\"\r\n },\r\n {\r\n \"ruleId\": 931014,\r\n \"description\": \"Rule 931014\"\r\n },\r\n {\r\n \"ruleId\": 931130,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Off-Domain Reference/Link\"\r\n },\r\n {\r\n \"ruleId\": 931015,\r\n \"description\": \"Rule 931015\"\r\n },\r\n {\r\n \"ruleId\": 931016,\r\n \"description\": \"Rule 931016\"\r\n },\r\n {\r\n \"ruleId\": 931017,\r\n \"description\": \"Rule 931017\"\r\n },\r\n {\r\n \"ruleId\": 931018,\r\n \"description\": \"Rule 931018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-932-APPLICATION-ATTACK-RCE\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 932011,\r\n \"description\": \"Rule 932011\"\r\n },\r\n {\r\n \"ruleId\": 932012,\r\n \"description\": \"Rule 932012\"\r\n },\r\n {\r\n \"ruleId\": 932120,\r\n \"description\": \"Remote Command Execution: Windows PowerShell Command Found\"\r\n },\r\n {\r\n \"ruleId\": 932130,\r\n \"description\": \"Remote Command Execution: Unix Shell Expression Found\"\r\n },\r\n {\r\n \"ruleId\": 932140,\r\n \"description\": \"Remote Command Execution: Windows FOR/IF Command Found\"\r\n },\r\n {\r\n \"ruleId\": 932160,\r\n \"description\": \"Remote Command Execution: Unix Shell Code Found\"\r\n },\r\n {\r\n \"ruleId\": 932170,\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\"\r\n },\r\n {\r\n \"ruleId\": 932171,\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\"\r\n },\r\n {\r\n \"ruleId\": 932013,\r\n \"description\": \"Rule 932013\"\r\n },\r\n {\r\n \"ruleId\": 932014,\r\n \"description\": \"Rule 932014\"\r\n },\r\n {\r\n \"ruleId\": 932015,\r\n \"description\": \"Rule 932015\"\r\n },\r\n {\r\n \"ruleId\": 932016,\r\n \"description\": \"Rule 932016\"\r\n },\r\n {\r\n \"ruleId\": 932017,\r\n \"description\": \"Rule 932017\"\r\n },\r\n {\r\n \"ruleId\": 932018,\r\n \"description\": \"Rule 932018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-933-APPLICATION-ATTACK-PHP\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 933011,\r\n \"description\": \"Rule 933011\"\r\n },\r\n {\r\n \"ruleId\": 933012,\r\n \"description\": \"Rule 933012\"\r\n },\r\n {\r\n \"ruleId\": 933100,\r\n \"description\": \"PHP Injection Attack: Opening/Closing Tag Found\"\r\n },\r\n {\r\n \"ruleId\": 933110,\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\"\r\n },\r\n {\r\n \"ruleId\": 933120,\r\n \"description\": \"PHP Injection Attack: Configuration Directive Found\"\r\n },\r\n {\r\n \"ruleId\": 933130,\r\n \"description\": \"PHP Injection Attack: Variables Found\"\r\n },\r\n {\r\n \"ruleId\": 933150,\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Name Found\"\r\n },\r\n {\r\n \"ruleId\": 933160,\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933180,\r\n \"description\": \"PHP Injection Attack: Variable Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933013,\r\n \"description\": \"Rule 933013\"\r\n },\r\n {\r\n \"ruleId\": 933014,\r\n \"description\": \"Rule 933014\"\r\n },\r\n {\r\n \"ruleId\": 933151,\r\n \"description\": \"PHP Injection Attack: Medium-Risk PHP Function Name Found\"\r\n },\r\n {\r\n \"ruleId\": 933015,\r\n \"description\": \"Rule 933015\"\r\n },\r\n {\r\n \"ruleId\": 933016,\r\n \"description\": \"Rule 933016\"\r\n },\r\n {\r\n \"ruleId\": 933131,\r\n \"description\": \"PHP Injection Attack: Variables Found\"\r\n },\r\n {\r\n \"ruleId\": 933161,\r\n \"description\": \"PHP Injection Attack: Low-Value PHP Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933111,\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\"\r\n },\r\n {\r\n \"ruleId\": 933017,\r\n \"description\": \"Rule 933017\"\r\n },\r\n {\r\n \"ruleId\": 933018,\r\n \"description\": \"Rule 933018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-941-APPLICATION-ATTACK-XSS\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 941011,\r\n \"description\": \"Rule 941011\"\r\n },\r\n {\r\n \"ruleId\": 941012,\r\n \"description\": \"Rule 941012\"\r\n },\r\n {\r\n \"ruleId\": 941100,\r\n \"description\": \"XSS Attack Detected via libinjection\"\r\n },\r\n {\r\n \"ruleId\": 941110,\r\n \"description\": \"XSS Filter - Category 1: Script Tag Vector\"\r\n },\r\n {\r\n \"ruleId\": 941130,\r\n \"description\": \"XSS Filter - Category 3: Attribute Vector\"\r\n },\r\n {\r\n \"ruleId\": 941140,\r\n \"description\": \"XSS Filter - Category 4: Javascript URI Vector\"\r\n },\r\n {\r\n \"ruleId\": 941150,\r\n \"description\": \"XSS Filter - Category 5: Disallowed HTML Attributes\"\r\n },\r\n {\r\n \"ruleId\": 941180,\r\n \"description\": \"Node-Validator Blacklist Keywords\"\r\n },\r\n {\r\n \"ruleId\": 941190,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941200,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941210,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941220,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941230,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941240,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941260,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941270,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941280,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941290,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941300,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941310,\r\n \"description\": \"US-ASCII Malformed Encoding XSS Filter - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941350,\r\n \"description\": \"UTF-7 Encoding IE XSS - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941013,\r\n \"description\": \"Rule 941013\"\r\n },\r\n {\r\n \"ruleId\": 941014,\r\n \"description\": \"Rule 941014\"\r\n },\r\n {\r\n \"ruleId\": 941320,\r\n \"description\": \"Possible XSS Attack Detected - HTML Tag Handler\"\r\n },\r\n {\r\n \"ruleId\": 941015,\r\n \"description\": \"Rule 941015\"\r\n },\r\n {\r\n \"ruleId\": 941016,\r\n \"description\": \"Rule 941016\"\r\n },\r\n {\r\n \"ruleId\": 941017,\r\n \"description\": \"Rule 941017\"\r\n },\r\n {\r\n \"ruleId\": 941018,\r\n \"description\": \"Rule 941018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-942-APPLICATION-ATTACK-SQLI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 942011,\r\n \"description\": \"Rule 942011\"\r\n },\r\n {\r\n \"ruleId\": 942012,\r\n \"description\": \"Rule 942012\"\r\n },\r\n {\r\n \"ruleId\": 942100,\r\n \"description\": \"SQL Injection Attack Detected via libinjection\"\r\n },\r\n {\r\n \"ruleId\": 942140,\r\n \"description\": \"SQL Injection Attack: Common DB Names Detected\"\r\n },\r\n {\r\n \"ruleId\": 942160,\r\n \"description\": \"Detects blind sqli tests using sleep() or benchmark().\"\r\n },\r\n {\r\n \"ruleId\": 942170,\r\n \"description\": \"Detects SQL benchmark and sleep injection attempts including conditional queries\"\r\n },\r\n {\r\n \"ruleId\": 942230,\r\n \"description\": \"Detects conditional SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 942270,\r\n \"description\": \"Looking for basic sql injection. Common attack string for mysql, oracle and others.\"\r\n },\r\n {\r\n \"ruleId\": 942290,\r\n \"description\": \"Finds basic MongoDB SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 942320,\r\n \"description\": \"Detects MySQL and PostgreSQL stored procedure/function injections\"\r\n },\r\n {\r\n \"ruleId\": 942350,\r\n \"description\": \"Detects MySQL UDF injection and other data/structure manipulation attempts\"\r\n },\r\n {\r\n \"ruleId\": 942013,\r\n \"description\": \"Rule 942013\"\r\n },\r\n {\r\n \"ruleId\": 942014,\r\n \"description\": \"Rule 942014\"\r\n },\r\n {\r\n \"ruleId\": 942150,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942410,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942440,\r\n \"description\": \"SQL Comment Sequence Detected.\"\r\n },\r\n {\r\n \"ruleId\": 942450,\r\n \"description\": \"SQL Hex Encoding Identified\"\r\n },\r\n {\r\n \"ruleId\": 942015,\r\n \"description\": \"Rule 942015\"\r\n },\r\n {\r\n \"ruleId\": 942016,\r\n \"description\": \"Rule 942016\"\r\n },\r\n {\r\n \"ruleId\": 942251,\r\n \"description\": \"Detects HAVING injections\"\r\n },\r\n {\r\n \"ruleId\": 942460,\r\n \"description\": \"Meta-Character Anomaly Detection Alert - Repetitive Non-Word Characters\"\r\n },\r\n {\r\n \"ruleId\": 942017,\r\n \"description\": \"Rule 942017\"\r\n },\r\n {\r\n \"ruleId\": 942018,\r\n \"description\": \"Rule 942018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-943-APPLICATION-ATTACK-SESSION-FIXATION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 943011,\r\n \"description\": \"Rule 943011\"\r\n },\r\n {\r\n \"ruleId\": 943012,\r\n \"description\": \"Rule 943012\"\r\n },\r\n {\r\n \"ruleId\": 943100,\r\n \"description\": \"Possible Session Fixation Attack: Setting Cookie Values in HTML\"\r\n },\r\n {\r\n \"ruleId\": 943110,\r\n \"description\": \"Possible Session Fixation Attack: SessionID Parameter Name with Off-Domain Referer\"\r\n },\r\n {\r\n \"ruleId\": 943120,\r\n \"description\": \"Possible Session Fixation Attack: SessionID Parameter Name with No Referer\"\r\n },\r\n {\r\n \"ruleId\": 943013,\r\n \"description\": \"Rule 943013\"\r\n },\r\n {\r\n \"ruleId\": 943014,\r\n \"description\": \"Rule 943014\"\r\n },\r\n {\r\n \"ruleId\": 943015,\r\n \"description\": \"Rule 943015\"\r\n },\r\n {\r\n \"ruleId\": 943016,\r\n \"description\": \"Rule 943016\"\r\n },\r\n {\r\n \"ruleId\": 943017,\r\n \"description\": \"Rule 943017\"\r\n },\r\n {\r\n \"ruleId\": 943018,\r\n \"description\": \"Rule 943018\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"OWASP_2.2.9\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets/\",\r\n \"type\": \"Microsoft.Network/applicationGatewayAvailableWafRuleSets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_20_protocol_violations\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960911,\r\n \"description\": \"Invalid HTTP Request Line\"\r\n },\r\n {\r\n \"ruleId\": 981227,\r\n \"description\": \"Apache Error: Invalid URI in Request.\"\r\n },\r\n {\r\n \"ruleId\": 960912,\r\n \"description\": \"Failed to parse request body.\"\r\n },\r\n {\r\n \"ruleId\": 960914,\r\n \"description\": \"Multipart request body failed strict validation: PE %{REQBODY_PROCESSOR_ERROR}, BQ %{MULTIPART_BOUNDARY_QUOTED}, BW %{MULTIPART_BOUNDARY_WHITESPACE}, DB %{MULTIPART_DATA_BEFORE}, DA %{MULTIPART_DATA_AFTER}, HF %{MULTIPART_HEADER_FOLDING}, LF %{MULTIPART_LF_LINE}, SM %{MULTIPART_SEMICOLON_MISSING}, IQ %{MULTIPART_INVALID_QUOTING}, IH %{MULTIPART_INVALID_HEADER_FOLDING}, FLE %{MULTIPART_FILE_LIMIT_EXCEEDED}\"\r\n },\r\n {\r\n \"ruleId\": 960915,\r\n \"description\": \"Multipart parser detected a possible unmatched boundary.\"\r\n },\r\n {\r\n \"ruleId\": 960016,\r\n \"description\": \"Content-Length HTTP header is not numeric.\"\r\n },\r\n {\r\n \"ruleId\": 960011,\r\n \"description\": \"GET or HEAD Request with Body Content.\"\r\n },\r\n {\r\n \"ruleId\": 960012,\r\n \"description\": \"POST request missing Content-Length Header.\"\r\n },\r\n {\r\n \"ruleId\": 960902,\r\n \"description\": \"Invalid Use of Identity Encoding.\"\r\n },\r\n {\r\n \"ruleId\": 960022,\r\n \"description\": \"Expect Header Not Allowed for HTTP 1.0.\"\r\n },\r\n {\r\n \"ruleId\": 960020,\r\n \"description\": \"Pragma Header requires Cache-Control Header for HTTP/1.1 requests.\"\r\n },\r\n {\r\n \"ruleId\": 958291,\r\n \"description\": \"Range: field exists and begins with 0.\"\r\n },\r\n {\r\n \"ruleId\": 958230,\r\n \"description\": \"Range: Invalid Last Byte Value.\"\r\n },\r\n {\r\n \"ruleId\": 958295,\r\n \"description\": \"Multiple/Conflicting Connection Header Data Found.\"\r\n },\r\n {\r\n \"ruleId\": 950107,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950109,\r\n \"description\": \"Multiple URL Encoding Detected\"\r\n },\r\n {\r\n \"ruleId\": 950108,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950801,\r\n \"description\": \"UTF8 Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950116,\r\n \"description\": \"Unicode Full/Half Width Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 960901,\r\n \"description\": \"Invalid character in request\"\r\n },\r\n {\r\n \"ruleId\": 960018,\r\n \"description\": \"Invalid character in request\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_21_protocol_anomalies\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960008,\r\n \"description\": \"Request Missing a Host Header\"\r\n },\r\n {\r\n \"ruleId\": 960007,\r\n \"description\": \"Empty Host Header\"\r\n },\r\n {\r\n \"ruleId\": 960015,\r\n \"description\": \"Request Missing an Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 960021,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 960009,\r\n \"description\": \"Request Missing a User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 960006,\r\n \"description\": \"Empty User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 960904,\r\n \"description\": \"Request Containing Content, but Missing Content-Type header\"\r\n },\r\n {\r\n \"ruleId\": 960017,\r\n \"description\": \"Host header is a numeric IP address\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_23_request_limits\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960209,\r\n \"description\": \"Argument name too long\"\r\n },\r\n {\r\n \"ruleId\": 960208,\r\n \"description\": \"Argument value too long\"\r\n },\r\n {\r\n \"ruleId\": 960335,\r\n \"description\": \"Too many arguments in request\"\r\n },\r\n {\r\n \"ruleId\": 960341,\r\n \"description\": \"Total arguments size exceeded\"\r\n },\r\n {\r\n \"ruleId\": 960342,\r\n \"description\": \"Uploaded file size too large\"\r\n },\r\n {\r\n \"ruleId\": 960343,\r\n \"description\": \"Total uploaded files size too large\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_30_http_policy\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960032,\r\n \"description\": \"Method is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960010,\r\n \"description\": \"Request content type is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960034,\r\n \"description\": \"HTTP protocol version is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960035,\r\n \"description\": \"URL file extension is restricted by policy\"\r\n },\r\n {\r\n \"ruleId\": 960038,\r\n \"description\": \"HTTP header is restricted by policy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 990002,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990901,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990902,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990012,\r\n \"description\": \"Rogue web site crawler\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_40_generic_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960024,\r\n \"description\": \"Meta-Character Anomaly Detection Alert - Repetative Non-Word Characters\"\r\n },\r\n {\r\n \"ruleId\": 950008,\r\n \"description\": \"Injection of Undocumented ColdFusion Tags\"\r\n },\r\n {\r\n \"ruleId\": 950010,\r\n \"description\": \"LDAP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950011,\r\n \"description\": \"SSI injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950018,\r\n \"description\": \"Universal PDF XSS URL Detected.\"\r\n },\r\n {\r\n \"ruleId\": 950019,\r\n \"description\": \"Email Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950012,\r\n \"description\": \"HTTP Request Smuggling Attack.\"\r\n },\r\n {\r\n \"ruleId\": 950910,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 950911,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 950117,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950118,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950119,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950120,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Off-Domain Reference/Link\"\r\n },\r\n {\r\n \"ruleId\": 981133,\r\n \"description\": \"Rule 981133\"\r\n },\r\n {\r\n \"ruleId\": 981134,\r\n \"description\": \"Rule 981134\"\r\n },\r\n {\r\n \"ruleId\": 950009,\r\n \"description\": \"Session Fixation Attack\"\r\n },\r\n {\r\n \"ruleId\": 950003,\r\n \"description\": \"Session Fixation\"\r\n },\r\n {\r\n \"ruleId\": 950000,\r\n \"description\": \"Session Fixation\"\r\n },\r\n {\r\n \"ruleId\": 950005,\r\n \"description\": \"Remote File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950002,\r\n \"description\": \"System Command Access\"\r\n },\r\n {\r\n \"ruleId\": 950006,\r\n \"description\": \"System Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 959151,\r\n \"description\": \"PHP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 958976,\r\n \"description\": \"PHP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 958977,\r\n \"description\": \"PHP Injection Attack\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 981231,\r\n \"description\": \"SQL Comment Sequence Detected.\"\r\n },\r\n {\r\n \"ruleId\": 981260,\r\n \"description\": \"SQL Hex Encoding Identified\"\r\n },\r\n {\r\n \"ruleId\": 981320,\r\n \"description\": \"SQL Injection Attack: Common DB Names Detected\"\r\n },\r\n {\r\n \"ruleId\": 981300,\r\n \"description\": \"Rule 981300\"\r\n },\r\n {\r\n \"ruleId\": 981301,\r\n \"description\": \"Rule 981301\"\r\n },\r\n {\r\n \"ruleId\": 981302,\r\n \"description\": \"Rule 981302\"\r\n },\r\n {\r\n \"ruleId\": 981303,\r\n \"description\": \"Rule 981303\"\r\n },\r\n {\r\n \"ruleId\": 981304,\r\n \"description\": \"Rule 981304\"\r\n },\r\n {\r\n \"ruleId\": 981305,\r\n \"description\": \"Rule 981305\"\r\n },\r\n {\r\n \"ruleId\": 981306,\r\n \"description\": \"Rule 981306\"\r\n },\r\n {\r\n \"ruleId\": 981307,\r\n \"description\": \"Rule 981307\"\r\n },\r\n {\r\n \"ruleId\": 981308,\r\n \"description\": \"Rule 981308\"\r\n },\r\n {\r\n \"ruleId\": 981309,\r\n \"description\": \"Rule 981309\"\r\n },\r\n {\r\n \"ruleId\": 981310,\r\n \"description\": \"Rule 981310\"\r\n },\r\n {\r\n \"ruleId\": 981311,\r\n \"description\": \"Rule 981311\"\r\n },\r\n {\r\n \"ruleId\": 981312,\r\n \"description\": \"Rule 981312\"\r\n },\r\n {\r\n \"ruleId\": 981313,\r\n \"description\": \"Rule 981313\"\r\n },\r\n {\r\n \"ruleId\": 981314,\r\n \"description\": \"Rule 981314\"\r\n },\r\n {\r\n \"ruleId\": 981315,\r\n \"description\": \"Rule 981315\"\r\n },\r\n {\r\n \"ruleId\": 981316,\r\n \"description\": \"Rule 981316\"\r\n },\r\n {\r\n \"ruleId\": 981317,\r\n \"description\": \"SQL SELECT Statement Anomaly Detection Alert\"\r\n },\r\n {\r\n \"ruleId\": 950007,\r\n \"description\": \"Blind SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950001,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950908,\r\n \"description\": \"SQL Injection Attack.\"\r\n },\r\n {\r\n \"ruleId\": 959073,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 981272,\r\n \"description\": \"Detects blind sqli tests using sleep() or benchmark().\"\r\n },\r\n {\r\n \"ruleId\": 981250,\r\n \"description\": \"Detects SQL benchmark and sleep injection attempts including conditional queries\"\r\n },\r\n {\r\n \"ruleId\": 981241,\r\n \"description\": \"Detects conditional SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 981276,\r\n \"description\": \"Looking for basic sql injection. Common attack string for mysql, oracle and others.\"\r\n },\r\n {\r\n \"ruleId\": 981270,\r\n \"description\": \"Finds basic MongoDB SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 981253,\r\n \"description\": \"Detects MySQL and PostgreSQL stored procedure/function injections\"\r\n },\r\n {\r\n \"ruleId\": 981251,\r\n \"description\": \"Detects MySQL UDF injection and other data/structure manipulation attempts\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_41_xss_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 973336,\r\n \"description\": \"XSS Filter - Category 1: Script Tag Vector\"\r\n },\r\n {\r\n \"ruleId\": 973338,\r\n \"description\": \"XSS Filter - Category 3: Javascript URI Vector\"\r\n },\r\n {\r\n \"ruleId\": 981136,\r\n \"description\": \"Rule 981136\"\r\n },\r\n {\r\n \"ruleId\": 981018,\r\n \"description\": \"Rule 981018\"\r\n },\r\n {\r\n \"ruleId\": 958016,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958414,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958032,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958026,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958027,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958054,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958418,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958034,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958019,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958013,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958408,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958012,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958423,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958002,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958017,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958007,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958047,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958410,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958415,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958022,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958405,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958419,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958028,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958057,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958031,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958006,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958033,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958038,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958409,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958001,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958005,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958404,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958023,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958010,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958411,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958422,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958036,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958000,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958018,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958406,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958040,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958052,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958037,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958049,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958030,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958041,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958416,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958024,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958059,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958417,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958020,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958045,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958004,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958421,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958009,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958025,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958413,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958051,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958420,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958407,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958056,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958011,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958412,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958008,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958046,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958039,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958003,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 973300,\r\n \"description\": \"Possible XSS Attack Detected - HTML Tag Handler\"\r\n },\r\n {\r\n \"ruleId\": 973301,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973302,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973303,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973304,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973305,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973306,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973307,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973308,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973309,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973311,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973313,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973314,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973331,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973315,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973330,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973327,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973326,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973346,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973345,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973324,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973323,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973348,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973321,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973320,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973318,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973317,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973329,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973328,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_42_tight_security\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 950103,\r\n \"description\": \"Path Traversal Attack\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_45_trojans\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 950110,\r\n \"description\": \"Backdoor access\"\r\n },\r\n {\r\n \"ruleId\": 950921,\r\n \"description\": \"Backdoor access\"\r\n },\r\n {\r\n \"ruleId\": 950922,\r\n \"description\": \"Backdoor access\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2061,7 +2085,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:20:22 GMT" + "Mon, 20 Mar 2017 18:40:21 GMT" ], "Pragma": [ "no-cache" @@ -2069,9 +2093,6 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "W/\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\"" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -2080,41 +2101,115 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a7b67055-77b3-449c-ba29-1b96a7cef455" + "5a244f95-9b46-4376-ba0b-5496952aca6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14941" ], "x-ms-correlation-request-id": [ - "195f11bb-fada-4751-b621-a5b86bbfeebc" + "f5efdb20-377e-47fe-b68f-7c16aacfcbf9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170215T062022Z:195f11bb-fada-4751-b621-a5b86bbfeebc" + "WESTUS2:20170320T184022Z:f5efdb20-377e-47fe-b68f-7c16aacfcbf9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "471" + ], + "x-ms-client-request-id": [ + "8fd838dd-c1bb-46d5-abd8-71a9851e8153" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\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\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.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": [ + "1506" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 20 Mar 2017 18:40:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5e84c760-5a76-4408-ade5-d7f33c89686a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5e84c760-5a76-4408-ade5-d7f33c89686a?api-version=2017-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "f952cfce-8302-4fe0-a8bd-599c7a160f41" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170320T184023Z:f952cfce-8302-4fe0-a8bd-599c7a160f41" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"name\": \"azsmnet132\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2043" + ], "x-ms-client-request-id": [ - "831783c6-e142-4dea-ac54-0f7449fcf022" + "28fb2499-15c5-4d06-a8b3-d1a8a54bc089" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5344\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0eb472c3-3a15-4b2d-9218-34b2e3057b44\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3365\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/gatewayIPConfigurations/azsmnet3365\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet4388\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6124\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet2727\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9197\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9593\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1710\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9515\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5067\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8609\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet1800\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3533\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2218\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"14c9c011-3b17-4a8d-a2b6-ec273bea52b1\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"14c9c011-3b17-4a8d-a2b6-ec273bea52b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.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" @@ -2126,7 +2221,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:29:48 GMT" + "Mon, 20 Mar 2017 18:40:24 GMT" ], "Pragma": [ "no-cache" @@ -2134,8 +2229,8 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "W/\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\"" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2145,41 +2240,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "beb72cba-9ba4-4a19-af1b-5f7db44a7937" + "f54a9526-0e12-4d82-a0dd-1e07f32276e8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" ], "x-ms-correlation-request-id": [ - "0b541ba7-f6f5-4ca0-860d-7c0f8b6c30c9" + "447c1304-289f-4bc6-ad41-3ddfde83cbf0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T062948Z:0b541ba7-f6f5-4ca0-860d-7c0f8b6c30c9" + "WESTUS2:20170320T184024Z:447c1304-289f-4bc6-ad41-3ddfde83cbf0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "8b814552-e665-40a2-903e-94803671fa93" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5344\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0eb472c3-3a15-4b2d-9218-34b2e3057b44\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3365\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/gatewayIPConfigurations/azsmnet3365\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet4388\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6124\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet2727\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9197\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9593\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet6875\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1710\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet9515\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet5067\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8609\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet1800\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet1800\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3533\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/requestRoutingRules/azsmnet3533\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2218\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\",\r\n \"etag\": \"W/\\\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\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\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.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" @@ -2191,7 +2283,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:44:04 GMT" + "Mon, 20 Mar 2017 18:40:23 GMT" ], "Pragma": [ "no-cache" @@ -2200,7 +2292,7 @@ "chunked" ], "ETag": [ - "W/\"552dda90-d6b1-4b9b-9458-8fb85bf19a75\"" + "W/\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2210,45 +2302,42 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "28b90ab9-a86b-4089-8acd-3ffd6b4e64dd" + "5ee6a394-d3d6-4492-9e91-da7692202105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14940" ], "x-ms-correlation-request-id": [ - "432bd57a-9290-4fd3-a012-225c9af92563" + "1d0f8124-16a0-474c-915f-c1dbc41dc944" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064405Z:432bd57a-9290-4fd3-a012-225c9af92563" + "WESTUS2:20170320T184023Z:1d0f8124-16a0-474c-915f-c1dbc41dc944" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed23ef29-0572-482a-8422-b3ec0c5e725e" + "641fcc15-e13d-441c-8dd6-437ec6667b1c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "null", + "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\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\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.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": [ - "4" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -2259,51 +2348,54 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:17 GMT" + "Mon, 20 Mar 2017 18:40:23 GMT" ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" + "Transfer-Encoding": [ + "chunked" ], - "Retry-After": [ - "10" + "ETag": [ + "W/\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "e0c8c88a-c232-47c3-b283-c70aa32018ee" + "9ae8c8c3-c295-4777-bc4d-72f30c81a277" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" ], "x-ms-correlation-request-id": [ - "41b092b5-84eb-45eb-a73b-009abfdf0ab8" + "52f5b721-6aaa-4e10-abf5-839160ff3b89" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063018Z:41b092b5-84eb-45eb-a73b-009abfdf0ab8" + "WESTUS2:20170320T184023Z:52f5b721-6aaa-4e10-abf5-839160ff3b89" ] }, - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"backendAddressPools\": [\r\n {\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unhealthy\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Healthy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unhealthy\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Unhealthy\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"40bb2e1d-0e63-4842-bad4-e9e3fbf3369b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"40bb2e1d-0e63-4842-bad4-e9e3fbf3369b\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.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" @@ -2315,7 +2407,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:47 GMT" + "Mon, 20 Mar 2017 18:44:26 GMT" ], "Pragma": [ "no-cache" @@ -2323,8 +2415,8 @@ "Transfer-Encoding": [ "chunked" ], - "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" + "ETag": [ + "W/\"40bb2e1d-0e63-4842-bad4-e9e3fbf3369b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2334,28 +2426,28 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e0c8c88a-c232-47c3-b283-c70aa32018ee" + "76979272-8b96-4eaf-999f-ef18514e17d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14928" ], "x-ms-correlation-request-id": [ - "8ab45254-be18-4387-beac-9a2208781346" + "bfdcc9bd-016b-4286-81bb-a47b26a26834" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063048Z:8ab45254-be18-4387-beac-9a2208781346" + "WESTUS2:20170320T184426Z:bfdcc9bd-016b-4286-81bb-a47b26a26834" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2364,17 +2456,17 @@ "471" ], "x-ms-client-request-id": [ - "7d672790-5114-465a-9889-db3a1d7cb35d" + "f9113d59-2633-4507-9fa5-41c3b67466d9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\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\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\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\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.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": [ "1509" @@ -2389,7 +2481,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:49 GMT" + "Mon, 20 Mar 2017 18:40:23 GMT" ], "Pragma": [ "no-cache" @@ -2399,31 +2491,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b9b2c43b-9d12-4e3f-b1b2-c635b845cea0" + "db051329-684d-4e73-a53e-2ce1d604769a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/db051329-684d-4e73-a53e-2ce1d604769a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1193" ], "x-ms-correlation-request-id": [ - "3d78a611-c9a4-4cb9-8efd-8d6fa963fb90" + "3a9d61e2-bf36-4afa-9ae3-62ed922c5356" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063050Z:3d78a611-c9a4-4cb9-8efd-8d6fa963fb90" + "WESTUS2:20170320T184024Z:3a9d61e2-bf36-4afa-9ae3-62ed922c5356" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"name\": \"azsmnet4961\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\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 \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"name\": \"azsmnet3331\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2432,17 +2524,17 @@ "2046" ], "x-ms-client-request-id": [ - "9a2079e2-b549-4528-8e13-3d7f5d00e741" + "0d3643a1-e045-4791-9957-2ff6a0d3270b" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"b39fc270-8250-4b50-a8fd-424b69dc1bb8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"b39fc270-8250-4b50-a8fd-424b69dc1bb8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"1e44bbad-bc83-48a6-8508-e4311a79fe5d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"1e44bbad-bc83-48a6-8508-e4311a79fe5d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.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" @@ -2454,7 +2546,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:51 GMT" + "Mon, 20 Mar 2017 18:44:26 GMT" ], "Pragma": [ "no-cache" @@ -2473,38 +2565,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4a050275-6023-4176-b8b9-1fb4c5495a05" + "4033969c-40d6-4b34-9f88-6305f195888e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1191" ], "x-ms-correlation-request-id": [ - "b383ca4c-ba7a-46b9-97e8-286483c0b620" + "8453b598-5b98-4e37-9b10-9f545cef0634" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063052Z:b383ca4c-ba7a-46b9-97e8-286483c0b620" + "WESTUS2:20170320T184426Z:8453b598-5b98-4e37-9b10-9f545cef0634" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\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\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\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\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.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" @@ -2516,7 +2608,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:50 GMT" + "Mon, 20 Mar 2017 18:40:23 GMT" ], "Pragma": [ "no-cache" @@ -2525,7 +2617,7 @@ "chunked" ], "ETag": [ - "W/\"786fc028-5f3c-4a96-9f1b-be41eabc275f\"" + "W/\"2802e74d-0306-417c-bcde-b4aafba7b66d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2535,41 +2627,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0da9e6c0-7c0a-43f4-89b9-c4ea753845e8" + "6663d153-4164-48b8-ac97-fb90c2ddd19f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14938" ], "x-ms-correlation-request-id": [ - "b451dd5d-604e-4758-b006-914c3e7b0aae" + "5190aa11-392f-473b-b425-9925ff8991ce" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063050Z:b451dd5d-604e-4758-b006-914c3e7b0aae" + "WESTUS2:20170320T184024Z:5190aa11-392f-473b-b425-9925ff8991ce" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cdc4caa-d37c-4bb5-89d5-86d89d93cb0c" + "6a91b69f-72c4-4c12-a52e-6cc9cb15a1aa" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\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\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\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\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.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" @@ -2581,7 +2673,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:50 GMT" + "Mon, 20 Mar 2017 18:40:24 GMT" ], "Pragma": [ "no-cache" @@ -2590,7 +2682,7 @@ "chunked" ], "ETag": [ - "W/\"786fc028-5f3c-4a96-9f1b-be41eabc275f\"" + "W/\"2802e74d-0306-417c-bcde-b4aafba7b66d\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2600,35 +2692,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "36b6fc39-6cb3-43a7-9b5d-3286d3f301d7" + "2ca70137-5930-4f92-be2d-2fa788d9f063" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14937" ], "x-ms-correlation-request-id": [ - "2f19e339-325f-4941-a4f1-85c474db9a5d" + "72aa8fab-3c7a-4072-8247-2b0cb192fb2b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063051Z:2f19e339-325f-4941-a4f1-85c474db9a5d" + "WESTUS2:20170320T184024Z:72aa8fab-3c7a-4072-8247-2b0cb192fb2b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet4961\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"etag\": \"W/\\\"b2a09076-3ec7-47f9-80f4-454bcd8b1525\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"b2a09076-3ec7-47f9-80f4-454bcd8b1525\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"7c256e7c-1963-43c0-88ab-19dd1db2d50f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7c256e7c-1963-43c0-88ab-19dd1db2d50f\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.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" @@ -2640,7 +2732,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:40:30 GMT" + "Mon, 20 Mar 2017 18:48:28 GMT" ], "Pragma": [ "no-cache" @@ -2649,7 +2741,7 @@ "chunked" ], "ETag": [ - "W/\"b2a09076-3ec7-47f9-80f4-454bcd8b1525\"" + "W/\"7c256e7c-1963-43c0-88ab-19dd1db2d50f\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2659,51 +2751,36 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9a9df301-56aa-4fd0-9532-ef7ded81ed8b" + "26833811-b532-49e1-ae1a-037cf48e0b1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14919" ], "x-ms-correlation-request-id": [ - "bff8845b-fd14-4229-b9e7-e2c8e24cea2e" + "1134b132-c3df-4dfa-a48f-314395f1424d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064030Z:bff8845b-fd14-4229-b9e7-e2c8e24cea2e" + "WESTUS2:20170320T184828Z:1134b132-c3df-4dfa-a48f-314395f1424d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "471" - ], - "x-ms-client-request-id": [ - "38aae05b-e98d-42c5-b530-bda459e7436f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\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\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1509" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -2714,60 +2791,54 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:51 GMT" + "Mon, 20 Mar 2017 18:40:53 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Retry-After": [ + "10" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ - "31c62262-91c7-45ef-8c21-7d717c337a7c" + "Vary": [ + "Accept-Encoding" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2017-03-01" + "x-ms-request-id": [ + "4f799a62-b21f-4b01-91ef-aeb40b02ed8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14936" ], "x-ms-correlation-request-id": [ - "e86f1604-569e-47c1-8fec-a98e4c149f0f" + "7428a521-897f-4043-af44-4e7d279047f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063051Z:e86f1604-569e-47c1-8fec-a98e4c149f0f" + "WESTUS2:20170320T184054Z:7428a521-897f-4043-af44-4e7d279047f5" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"name\": \"azsmnet6912\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2046" - ], - "x-ms-client-request-id": [ - "ea41e0bc-544d-4f67-85b0-891f64e2e8ae" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"e50c0a70-0521-4f44-919f-a20ff19228e2\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"e50c0a70-0521-4f44-919f-a20ff19228e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2779,7 +2850,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:40:30 GMT" + "Mon, 20 Mar 2017 18:41:23 GMT" ], "Pragma": [ "no-cache" @@ -2798,38 +2869,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5183ed56-0494-4453-a87f-f2fb9526ff4e" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01" + "36990cc4-cae9-47d0-a015-7693329d1596" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" ], "x-ms-correlation-request-id": [ - "e63b5c21-6c0a-46c8-b09e-ebd1db27fb2c" + "b05a1fed-27e4-48fb-98d0-c5ea1027bf2d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064030Z:e63b5c21-6c0a-46c8-b09e-ebd1db27fb2c" + "WESTUS2:20170320T184124Z:b05a1fed-27e4-48fb-98d0-c5ea1027bf2d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\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\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2841,7 +2909,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:51 GMT" + "Mon, 20 Mar 2017 18:41:55 GMT" ], "Pragma": [ "no-cache" @@ -2849,8 +2917,8 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "W/\"46896004-bae1-46c5-9443-58bae607eb26\"" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2860,41 +2928,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "999b0d3c-537a-4a7c-bc74-3cb8848a8f8e" + "2df53e0e-a8c9-4e19-8279-86e4800e6b76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14934" ], "x-ms-correlation-request-id": [ - "26e61b27-eef6-4bce-b4c1-ff2872ca7f30" + "82c36fa7-e432-416e-bde4-41a57248bf86" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063052Z:26e61b27-eef6-4bce-b4c1-ff2872ca7f30" + "WESTUS2:20170320T184155Z:82c36fa7-e432-416e-bde4-41a57248bf86" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "fda72df0-4107-4201-8501-9ac5c68cc895" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\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\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2906,7 +2968,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:30:51 GMT" + "Mon, 20 Mar 2017 18:42:25 GMT" ], "Pragma": [ "no-cache" @@ -2914,8 +2976,8 @@ "Transfer-Encoding": [ "chunked" ], - "ETag": [ - "W/\"46896004-bae1-46c5-9443-58bae607eb26\"" + "Retry-After": [ + "10" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2925,35 +2987,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0bbef9f2-69ff-4a3c-9f31-8dbda784eca6" + "8111eccb-7304-49ae-8268-c4d525888f6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14933" ], "x-ms-correlation-request-id": [ - "aec1bf95-2577-45db-ac38-8f6944765d82" + "1e940111-781b-4e88-9a6c-2435d6188ff6" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063052Z:aec1bf95-2577-45db-ac38-8f6944765d82" + "WESTUS2:20170320T184225Z:1e940111-781b-4e88-9a6c-2435d6188ff6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet6912\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"etag\": \"W/\\\"7f8a8a73-09ee-4c0a-a244-a396de4ed8ae\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7f8a8a73-09ee-4c0a-a244-a396de4ed8ae\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2965,833 +3027,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:44:04 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "ETag": [ - "W/\"7f8a8a73-09ee-4c0a-a244-a396de4ed8ae\"" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "12086126-14f6-4115-94f4-e3fcf6f59beb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "4a815a3c-3c6a-445a-835d-b65a9a5756b7" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064404Z:4a815a3c-3c6a-445a-835d-b65a9a5756b7" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:31:22 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": [ - "5d9553fe-326c-49cc-9cf6-6e2594cab7af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "025a039f-15b1-419d-aec3-6bd0a496de38" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063122Z:025a039f-15b1-419d-aec3-6bd0a496de38" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:31:52 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": [ - "cf2321c7-59ba-40cf-99ab-6f2bc24f318a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-correlation-request-id": [ - "2d81a75a-f9fa-481f-8b79-9459e513aae5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063153Z:2d81a75a-f9fa-481f-8b79-9459e513aae5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:32:22 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": [ - "9f1cebbc-8953-41a3-9703-3247fba99bea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-correlation-request-id": [ - "e3fe1b0a-21b8-40c5-ba6f-ef6136501c95" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063223Z:e3fe1b0a-21b8-40c5-ba6f-ef6136501c95" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:32:53 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": [ - "99cc3cef-c2a2-4fca-88eb-831e81f96ad8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-correlation-request-id": [ - "1ee5b5d2-8bdd-4311-a876-2ed62663f238" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063253Z:1ee5b5d2-8bdd-4311-a876-2ed62663f238" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:33:23 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": [ - "76d399fd-eabd-416e-a33c-f0e30a0b56aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "8dd5429e-5f68-46bd-aff5-3614f4f7701c" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063324Z:8dd5429e-5f68-46bd-aff5-3614f4f7701c" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:33:53 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": [ - "1f6f930f-dd88-4a90-8ba4-e73b2fcef1b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-correlation-request-id": [ - "fa3a26e8-a72b-4600-8507-623ed59bbb15" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063354Z:fa3a26e8-a72b-4600-8507-623ed59bbb15" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:34:24 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": [ - "422aef92-fea8-4234-93b8-898478412b27" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-correlation-request-id": [ - "f3ad4300-a3e7-41c4-8672-fce49f090d5f" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063424Z:f3ad4300-a3e7-41c4-8672-fce49f090d5f" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:34:54 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": [ - "89048c86-ad82-4eb4-8e01-0390816aa5e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-correlation-request-id": [ - "b6168ec2-beb5-416e-a6ac-54f96c330212" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063455Z:b6168ec2-beb5-416e-a6ac-54f96c330212" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:35:25 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": [ - "79073859-567e-4974-ad7e-d40a4620bb3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-correlation-request-id": [ - "13dcc8cc-c212-4240-a2ce-90666b0881e5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063525Z:13dcc8cc-c212-4240-a2ce-90666b0881e5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:35:56 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": [ - "75044b96-b044-42d0-af08-a1d8bbab74b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-correlation-request-id": [ - "ccad75cd-a010-44b0-8acc-dcf691df6371" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063556Z:ccad75cd-a010-44b0-8acc-dcf691df6371" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:36:26 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": [ - "55c79dd9-0834-4ecf-8d35-76dfbb39a509" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-correlation-request-id": [ - "1ccbb544-a3a0-4a82-8d18-4a7674388944" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063626Z:1ccbb544-a3a0-4a82-8d18-4a7674388944" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:36:56 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": [ - "d3508fc5-5fad-4dbd-b51c-9013b2cc720a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-correlation-request-id": [ - "aba1e8ca-9c70-44bd-be5e-b69164df2f6d" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063656Z:aba1e8ca-9c70-44bd-be5e-b69164df2f6d" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:37:26 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": [ - "3a50fb9b-cbc4-4bf9-ba45-c5560eb7d58b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "x-ms-correlation-request-id": [ - "9f4658ec-a311-4382-801e-a7884383cc36" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063727Z:9f4658ec-a311-4382-801e-a7884383cc36" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:37:56 GMT" + "Mon, 20 Mar 2017 18:42:54 GMT" ], "Pragma": [ "no-cache" @@ -3810,32 +3046,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "775cae85-1eb7-4843-9d43-65d2d06fd9e6" + "dbbb5478-96f5-43c5-843f-c39c5906c80c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14932" ], "x-ms-correlation-request-id": [ - "e63cba51-35a2-4d25-8dab-ea41ce1d30c3" + "e9cfb5a3-ac55-4174-831e-663aab74fe2d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063757Z:e63cba51-35a2-4d25-8dab-ea41ce1d30c3" + "WESTUS2:20170320T184255Z:e9cfb5a3-ac55-4174-831e-663aab74fe2d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3850,7 +3086,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:38:27 GMT" + "Mon, 20 Mar 2017 18:43:25 GMT" ], "Pragma": [ "no-cache" @@ -3869,32 +3105,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "59a9d280-8587-4ab7-827d-783dcf6e676a" + "429c5f44-5c8f-4d30-b062-b92d5f4dce2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14931" ], "x-ms-correlation-request-id": [ - "97d40bc0-919b-4fc5-bf25-8c41a8bc3597" + "56805eb7-1601-4b24-a833-9f8154d1b574" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063827Z:97d40bc0-919b-4fc5-bf25-8c41a8bc3597" + "WESTUS2:20170320T184325Z:56805eb7-1601-4b24-a833-9f8154d1b574" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3909,7 +3145,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:38:58 GMT" + "Mon, 20 Mar 2017 18:43:55 GMT" ], "Pragma": [ "no-cache" @@ -3928,35 +3164,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9b1d2d3b-5891-474b-9b32-eb442cd92a52" + "62194e52-db8a-44e3-a99d-b8cfc4fe7423" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14930" ], "x-ms-correlation-request-id": [ - "47d3a78c-e086-4aee-85e2-e74088bc8e35" + "15dea197-de81-4e48-a884-8abe4e7139b1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063858Z:47d3a78c-e086-4aee-85e2-e74088bc8e35" + "WESTUS2:20170320T184355Z:15dea197-de81-4e48-a884-8abe4e7139b1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3968,7 +3204,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:39:28 GMT" + "Mon, 20 Mar 2017 18:44:26 GMT" ], "Pragma": [ "no-cache" @@ -3976,9 +3212,6 @@ "Transfer-Encoding": [ "chunked" ], - "Retry-After": [ - "10" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -3987,32 +3220,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a33220c7-9d62-40eb-b9b0-63a3891e8c36" + "053fa53f-c378-49f1-8be8-0e9708139700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14929" ], "x-ms-correlation-request-id": [ - "820cb1b2-b90d-4317-9a7d-11fab76bd716" + "48d3087d-4945-47ad-a046-342d99fdb2c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063928Z:820cb1b2-b90d-4317-9a7d-11fab76bd716" + "WESTUS2:20170320T184426Z:48d3087d-4945-47ad-a046-342d99fdb2c9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4027,7 +3260,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:39:58 GMT" + "Mon, 20 Mar 2017 18:44:56 GMT" ], "Pragma": [ "no-cache" @@ -4046,88 +3279,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8660098c-0633-484d-82d4-00501eb0bac9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "1b041af5-71db-49e0-a1c7-696a684aea84" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T063959Z:1b041af5-71db-49e0-a1c7-696a684aea84" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:40:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "41e48435-ecc4-4e6d-a80a-4bdb40ee6836" + "7844d083-e2c6-4183-805c-faf01f61c11a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14927" ], "x-ms-correlation-request-id": [ - "ef7413fb-67d7-4346-82f5-ad4b4e2d9ce5" + "005f2e1b-76cf-4393-8724-075fb42ca665" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064029Z:ef7413fb-67d7-4346-82f5-ad4b4e2d9ce5" + "WESTUS2:20170320T184456Z:005f2e1b-76cf-4393-8724-075fb42ca665" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4142,7 +3319,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:41:00 GMT" + "Mon, 20 Mar 2017 18:45:26 GMT" ], "Pragma": [ "no-cache" @@ -4161,32 +3338,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "450b8168-e034-41b2-b403-8a36c3378080" + "9146f75c-b526-4576-a15c-d049e72d7d48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14926" ], "x-ms-correlation-request-id": [ - "6283fa3c-13f1-47c2-afc8-005cf23935dd" + "3457d411-f6f5-4874-9793-0cdf90f5dd1c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064101Z:6283fa3c-13f1-47c2-afc8-005cf23935dd" + "WESTUS2:20170320T184527Z:3457d411-f6f5-4874-9793-0cdf90f5dd1c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4201,7 +3378,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:41:30 GMT" + "Mon, 20 Mar 2017 18:45:56 GMT" ], "Pragma": [ "no-cache" @@ -4220,32 +3397,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4bd44328-f2d1-4431-90db-953fec74ab1b" + "fef8b978-ef46-4e74-992f-320fd60b26a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14925" ], "x-ms-correlation-request-id": [ - "4143ee37-f7db-4e08-b0d2-ba5412d9b1cd" + "6794837c-242a-4ff9-b241-6a5671e1c322" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064131Z:4143ee37-f7db-4e08-b0d2-ba5412d9b1cd" + "WESTUS2:20170320T184557Z:6794837c-242a-4ff9-b241-6a5671e1c322" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4260,7 +3437,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:42:01 GMT" + "Mon, 20 Mar 2017 18:46:27 GMT" ], "Pragma": [ "no-cache" @@ -4279,32 +3456,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "007c9cbf-fb24-4f43-84eb-936eb3564e65" + "936dbbeb-19c4-4886-9e31-78f60c64871a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14924" ], "x-ms-correlation-request-id": [ - "1a185cf3-111b-4528-8439-c788e345e271" + "7118f1ae-6390-417c-93b6-3e336f758388" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064201Z:1a185cf3-111b-4528-8439-c788e345e271" + "WESTUS2:20170320T184627Z:7118f1ae-6390-417c-93b6-3e336f758388" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4319,7 +3496,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:42:32 GMT" + "Mon, 20 Mar 2017 18:46:57 GMT" ], "Pragma": [ "no-cache" @@ -4338,32 +3515,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "03c54ead-fa6a-485f-b31e-afcd61e0dd07" + "760506c7-19d1-49f1-a62b-14ef42897a80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14923" ], "x-ms-correlation-request-id": [ - "7c3e0380-d7cd-46ca-beed-23121070b5fd" + "5f69a5b3-b88d-4781-829a-f9c1db0bcca2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064232Z:7c3e0380-d7cd-46ca-beed-23121070b5fd" + "WESTUS2:20170320T184657Z:5f69a5b3-b88d-4781-829a-f9c1db0bcca2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4378,7 +3555,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:43:02 GMT" + "Mon, 20 Mar 2017 18:47:27 GMT" ], "Pragma": [ "no-cache" @@ -4397,32 +3574,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9c0349f1-5646-4e83-80df-dca41c53064b" + "e45bf5f5-1b12-4eec-a151-bec13340765c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14922" ], "x-ms-correlation-request-id": [ - "01db4140-0b8a-4dcf-9c24-0d253a48a99c" + "5107fba9-96ee-433f-b6b8-591bc591a6bc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064302Z:01db4140-0b8a-4dcf-9c24-0d253a48a99c" + "WESTUS2:20170320T184727Z:5107fba9-96ee-433f-b6b8-591bc591a6bc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4437,7 +3614,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:43:32 GMT" + "Mon, 20 Mar 2017 18:47:57 GMT" ], "Pragma": [ "no-cache" @@ -4456,32 +3633,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "85819383-0eb1-4cdc-ab8c-03bf2de6a814" + "b8629352-0df2-4efe-8723-d7a0ef0c4248" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14921" ], "x-ms-correlation-request-id": [ - "35d638f5-6ae9-4f21-8281-cef8d0f03ebd" + "e4a197e7-848a-480f-8d6b-98a96228d122" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064333Z:35d638f5-6ae9-4f21-8281-cef8d0f03ebd" + "WESTUS2:20170320T184758Z:e4a197e7-848a-480f-8d6b-98a96228d122" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -4496,7 +3673,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:44:03 GMT" + "Mon, 20 Mar 2017 18:48:28 GMT" ], "Pragma": [ "no-cache" @@ -4512,38 +3689,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3e05fed9-1a32-4a66-ac70-7e170645b844" + "fe726313-485e-409f-91bd-d3149bdf228f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14920" ], "x-ms-correlation-request-id": [ - "8e1844ee-e11c-43c9-b9e8-ced4f57c53fc" + "4e6d2fda-f4b3-4032-9728-59d503e18b25" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064403Z:8e1844ee-e11c-43c9-b9e8-ced4f57c53fc" + "WESTUS2:20170320T184828Z:4e6d2fda-f4b3-4032-9728-59d503e18b25" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/start?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOS9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28a6eea0-faab-466c-8991-c9592396d220" + "7e51950e-8d15-4585-98c2-b36633fd5511" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "", @@ -4558,54 +3735,54 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:44:04 GMT" + "Mon, 20 Mar 2017 18:48:29 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/1f9896d4-b69c-4277-80f0-8bd7bef87769?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "796a9be1-c827-490e-b609-a4ad9394d044" + "1f9896d4-b69c-4277-80f0-8bd7bef87769" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/1f9896d4-b69c-4277-80f0-8bd7bef87769?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1190" ], "x-ms-correlation-request-id": [ - "862caf86-6e94-4e1d-bbe1-0980783d6381" + "52bedd86-4d74-4584-b855-e9c28e34b11f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064404Z:862caf86-6e94-4e1d-bbe1-0980783d6381" + "WESTUS2:20170320T184829Z:52bedd86-4d74-4584-b855-e9c28e34b11f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOS9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da8b1d86-c53c-4ec8-8bb6-a706c30a22ab" + "88f48fe8-f135-4e7d-8015-192594509110" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "", @@ -4620,13 +3797,13 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:44:05 GMT" + "Mon, 20 Mar 2017 18:48:29 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4636,35 +3813,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "a3f3b726-de0a-4182-9301-e00e9195aba1" + "09e10dcb-3fb0-4036-97c9-9420cc720bb7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1189" ], "x-ms-correlation-request-id": [ - "bb0f4506-dfaf-4279-b000-3eee7134515a" + "7a5e893d-ea2b-434e-8af2-452d0e7267a7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064405Z:bb0f4506-dfaf-4279-b000-3eee7134515a" + "WESTUS2:20170320T184829Z:7a5e893d-ea2b-434e-8af2-452d0e7267a7" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4679,7 +3856,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:44:35 GMT" + "Mon, 20 Mar 2017 18:48:59 GMT" ], "Pragma": [ "no-cache" @@ -4698,32 +3875,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "43a3c893-9fe4-4a65-9074-e974f4afdb93" + "d19212d5-73d1-496e-8b18-a9dbdd78d356" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14917" ], "x-ms-correlation-request-id": [ - "3eb11df9-e9aa-44d4-b409-56fd417396bc" + "412b2840-6af6-4bfd-9f2b-0868a4ac157e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064435Z:3eb11df9-e9aa-44d4-b409-56fd417396bc" + "WESTUS2:20170320T184859Z:412b2840-6af6-4bfd-9f2b-0868a4ac157e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4738,7 +3915,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:45:05 GMT" + "Mon, 20 Mar 2017 18:49:29 GMT" ], "Pragma": [ "no-cache" @@ -4757,32 +3934,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dba3b76e-a8e1-4207-a48e-a71fc6445d3f" + "238f98cd-59f1-4bc7-8d01-6087dca04a86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14916" ], "x-ms-correlation-request-id": [ - "a03e2bed-226b-4c21-9f85-1c7faf5ca753" + "39172f04-fe7d-4ce1-a601-22dd3627b450" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064506Z:a03e2bed-226b-4c21-9f85-1c7faf5ca753" + "WESTUS2:20170320T184930Z:39172f04-fe7d-4ce1-a601-22dd3627b450" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4797,7 +3974,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:45:36 GMT" + "Mon, 20 Mar 2017 18:49:59 GMT" ], "Pragma": [ "no-cache" @@ -4816,32 +3993,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9b31e572-145c-4255-8cf0-8da3163c213a" + "d9d57609-a16e-412d-a936-2a9982f355e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14915" ], "x-ms-correlation-request-id": [ - "58764999-f236-4207-bde3-1524f70ef9a7" + "6086ca03-4dc8-46c6-8f10-35c6d39fbbc5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064536Z:58764999-f236-4207-bde3-1524f70ef9a7" + "WESTUS2:20170320T185000Z:6086ca03-4dc8-46c6-8f10-35c6d39fbbc5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -4856,7 +4033,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:46:06 GMT" + "Mon, 20 Mar 2017 18:50:29 GMT" ], "Pragma": [ "no-cache" @@ -4872,38 +4049,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bba89165-3e48-4246-aadf-76c872485ab0" + "754fd0ac-d4af-45d7-a24a-d03bb6d012a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14914" ], "x-ms-correlation-request-id": [ - "419f83e4-5448-4b8a-a7bd-240a21056c82" + "60cb780d-672f-46b7-9b3d-e246ddded87a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064607Z:419f83e4-5448-4b8a-a7bd-240a21056c82" + "WESTUS2:20170320T185030Z:60cb780d-672f-46b7-9b3d-e246ddded87a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26a37aba-7ddf-4b09-b56d-a6ab3a908002" + "17ac7490-10d7-4a76-af5f-32d16397ec5f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "", @@ -4918,13 +4095,13 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:46:07 GMT" + "Mon, 20 Mar 2017 18:50:30 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4934,94 +4111,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2f925788-a452-4929-b3ca-ea32aa3a2049" + "44b9f1fb-5e69-4836-9cde-431b82315b03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1188" ], "x-ms-correlation-request-id": [ - "f80f1bc2-5468-418d-ae64-131e6f1f959f" + "eb0ee3bf-4afc-49cc-a0a4-1b3e43e30bc5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064607Z:f80f1bc2-5468-418d-ae64-131e6f1f959f" + "WESTUS2:20170320T185031Z:eb0ee3bf-4afc-49cc-a0a4-1b3e43e30bc5" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 15 Feb 2017 06:46: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": [ - "27928e5f-f661-4b60-8416-2c649e9bb4ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-correlation-request-id": [ - "b1013732-7544-4b27-95f1-4080b1ad73b5" - ], - "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064638Z:b1013732-7544-4b27-95f1-4080b1ad73b5" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80NGI5ZjFmYi01ZTY5LTQ4MzYtOWNkZS00MzFiODIzMTViMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -5036,7 +4154,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:47:07 GMT" + "Mon, 20 Mar 2017 18:51:01 GMT" ], "Pragma": [ "no-cache" @@ -5055,32 +4173,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7c754182-d2e5-4e91-a739-7576f67eb9a0" + "a7abeea8-161e-456d-87cd-52ef0ebaa524" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14913" ], "x-ms-correlation-request-id": [ - "6182935e-7800-4d81-9258-dadb60464787" + "8bcaf0ae-7379-4a14-8f83-a65cdd89a482" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064708Z:6182935e-7800-4d81-9258-dadb60464787" + "WESTUS2:20170320T185101Z:8bcaf0ae-7379-4a14-8f83-a65cdd89a482" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80NGI5ZjFmYi01ZTY5LTQ4MzYtOWNkZS00MzFiODIzMTViMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/8.3.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -5095,7 +4213,7 @@ "no-cache" ], "Date": [ - "Wed, 15 Feb 2017 06:47:38 GMT" + "Mon, 20 Mar 2017 18:51:31 GMT" ], "Pragma": [ "no-cache" @@ -5111,19 +4229,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f1a97006-4989-4aa5-8cfb-440d174a51f7" + "034ed006-4c28-45db-84ad-f2d4c07feb2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14912" ], "x-ms-correlation-request-id": [ - "26e78f73-2837-4960-a0c4-d88f01211ad1" + "c7f64b00-c6fa-49c9-8fe5-9ac5d3ed7bc3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170215T064738Z:26e78f73-2837-4960-a0c4-d88f01211ad1" + "WESTUS2:20170320T185131Z:c7f64b00-c6fa-49c9-8fe5-9ac5d3ed7bc3" ] }, "StatusCode": 200 @@ -5131,33 +4249,33 @@ ], "Names": { "ApplicationGatewayApiTest": [ - "csmrg1399", - "azsmnet8548", - "azsmnet5890", - "azsmnet5901", - "azsmnet5344", - "azsmnet4961", - "azsmnet6912" + "csmrg7667", + "azsmnet5723", + "azsmnet2045", + "azsmnet3830", + "azsmnet9819", + "azsmnet132", + "azsmnet3331" ], "CreateApplicationGateway": [ - "azsmnet3365", - "azsmnet6124", - "azsmnet2727", - "azsmnet9197", - "azsmnet9593", - "azsmnet6875", - "azsmnet1710", - "azsmnet9515", - "azsmnet1800", - "azsmnet3533", - "azsmnet5067", - "azsmnet8609", - "azsmnet2218", - "azsmnet1430", - "azsmnet4388" + "azsmnet790", + "azsmnet6486", + "azsmnet5694", + "azsmnet57", + "azsmnet1047", + "azsmnet2873", + "azsmnet4293", + "azsmnet8504", + "azsmnet129", + "azsmnet3623", + "azsmnet2535", + "azsmnet1579", + "azsmnet4411", + "azsmnet4106", + "azsmnet2995" ] }, "Variables": { "SubscriptionId": "70a5cb48-f9db-44e5-b819-936d54cc83d4" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs index 70f57d9158f2..3294f6718183 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs @@ -98,21 +98,21 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn var appGw = new ApplicationGateway() { - Location = location, + Location = location, SslPolicy = new ApplicationGatewaySslPolicy() - { - DisabledSslProtocols = new List() + { + DisabledSslProtocols = new List() { ApplicationGatewaySslProtocol.TLSv10, ApplicationGatewaySslProtocol.TLSv11 } - }, + }, Sku = new ApplicationGatewaySku() - { - Name = ApplicationGatewaySkuName.WAFMedium, - Tier = ApplicationGatewayTier.WAF, - Capacity = 2 - }, + { + Name = ApplicationGatewaySkuName.WAFMedium, + Tier = ApplicationGatewayTier.WAF, + Capacity = 2 + }, GatewayIPConfigurations = new List() { new ApplicationGatewayIPConfiguration() @@ -124,8 +124,8 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn } } }, - FrontendIPConfigurations = new List() - { + FrontendIPConfigurations = new List() + { new ApplicationGatewayFrontendIPConfiguration() { Name = frontendIPConfigName, @@ -133,8 +133,8 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn Subnet = new SubResource() { Id = subnet.Id - } - } + } + } }, FrontendPorts = new List { @@ -189,7 +189,7 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn Name = nicBackendAddressPoolName, } }, - BackendHttpSettingsCollection = new List + BackendHttpSettingsCollection = new List { new ApplicationGatewayBackendHttpSettings() { @@ -214,7 +214,7 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn Name = backendHttpSettings2Name, Port = 443, Protocol = ApplicationGatewayProtocol.Https, - CookieBasedAffinity = ApplicationGatewayCookieBasedAffinity.Enabled, + CookieBasedAffinity = ApplicationGatewayCookieBasedAffinity.Enabled, AuthenticationCertificates = new List() { new SubResource() @@ -389,23 +389,40 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn { Enabled = true, FirewallMode = ApplicationGatewayFirewallMode.Prevention, - }, + RuleSetType = "OWASP", + RuleSetVersion = "2.2.9", + DisabledRuleGroups = new List() + { + new ApplicationGatewayFirewallDisabledRuleGroup( + "crs_41_sql_injection_attacks", + new List() { 981318 }) + } + } }; return appGw; } private void CompareApplicationGateway(ApplicationGateway gw1, ApplicationGateway gw2) { - Assert.Equal(gw1.Sku.Name, gw2.Sku.Name); - Assert.Equal(gw1.Sku.Tier, gw2.Sku.Tier); - Assert.Equal(gw1.Sku.Capacity, gw2.Sku.Capacity); + // compare count of child resources Assert.Equal(gw1.GatewayIPConfigurations.Count, gw2.GatewayIPConfigurations.Count); Assert.Equal(gw1.FrontendIPConfigurations.Count, gw2.FrontendIPConfigurations.Count); Assert.Equal(gw1.FrontendPorts.Count, gw2.FrontendPorts.Count); Assert.Equal(gw1.Probes.Count, gw2.Probes.Count); Assert.Equal(gw1.BackendAddressPools.Count, gw2.BackendAddressPools.Count); Assert.Equal(gw1.BackendHttpSettingsCollection.Count, gw2.BackendHttpSettingsCollection.Count); - for(int i = 0; i < gw1.BackendHttpSettingsCollection.Count; i++) + Assert.Equal(gw1.HttpListeners.Count, gw2.HttpListeners.Count); + Assert.Equal(gw1.RequestRoutingRules.Count, gw2.RequestRoutingRules.Count); + Assert.Equal(gw1.SslPolicy.DisabledSslProtocols.Count, gw2.SslPolicy.DisabledSslProtocols.Count); + Assert.Equal(gw1.AuthenticationCertificates.Count, gw2.AuthenticationCertificates.Count); + + // compare sku + Assert.Equal(gw1.Sku.Name, gw2.Sku.Name); + Assert.Equal(gw1.Sku.Tier, gw2.Sku.Tier); + Assert.Equal(gw1.Sku.Capacity, gw2.Sku.Capacity); + + // compare connectionDraining + for (int i = 0; i < gw1.BackendHttpSettingsCollection.Count; i++) { if(gw1.BackendHttpSettingsCollection[i].ConnectionDraining != null) { @@ -418,12 +435,26 @@ private void CompareApplicationGateway(ApplicationGateway gw1, ApplicationGatewa Assert.Null(gw2.BackendHttpSettingsCollection[i].ConnectionDraining); } } - Assert.Equal(gw1.HttpListeners.Count, gw2.HttpListeners.Count); - Assert.Equal(gw1.RequestRoutingRules.Count, gw2.RequestRoutingRules.Count); - Assert.Equal(gw1.SslPolicy.DisabledSslProtocols.Count, gw2.SslPolicy.DisabledSslProtocols.Count); - Assert.Equal(gw1.AuthenticationCertificates.Count, gw2.AuthenticationCertificates.Count); + + //compare WAF Assert.Equal(gw1.WebApplicationFirewallConfiguration.Enabled, gw2.WebApplicationFirewallConfiguration.Enabled); Assert.Equal(gw1.WebApplicationFirewallConfiguration.FirewallMode, gw2.WebApplicationFirewallConfiguration.FirewallMode); + Assert.Equal(gw1.WebApplicationFirewallConfiguration.RuleSetType, gw2.WebApplicationFirewallConfiguration.RuleSetType); + Assert.Equal(gw1.WebApplicationFirewallConfiguration.RuleSetVersion, gw2.WebApplicationFirewallConfiguration.RuleSetVersion); + if (gw1.WebApplicationFirewallConfiguration.DisabledRuleGroups != null) + { + Assert.NotNull(gw2.WebApplicationFirewallConfiguration.DisabledRuleGroups); + Assert.Equal(gw1.WebApplicationFirewallConfiguration.DisabledRuleGroups.Count, gw2.WebApplicationFirewallConfiguration.DisabledRuleGroups.Count); + for(int i = 0; i < gw1.WebApplicationFirewallConfiguration.DisabledRuleGroups.Count; i++) + { + Assert.Equal(gw1.WebApplicationFirewallConfiguration.DisabledRuleGroups[i].RuleGroupName, gw2.WebApplicationFirewallConfiguration.DisabledRuleGroups[i].RuleGroupName); + Assert.Equal(gw1.WebApplicationFirewallConfiguration.DisabledRuleGroups[i].Rules, gw2.WebApplicationFirewallConfiguration.DisabledRuleGroups[i].Rules); + } + } + else + { + Assert.Empty(gw2.WebApplicationFirewallConfiguration.DisabledRuleGroups); + } } [Fact] @@ -506,11 +537,26 @@ public void ApplicationGatewayApiTest() Assert.Equal(appGwName, getGateway.Name); CompareApplicationGateway(appGw, getGateway); - //Get AppGw backend health + // Get AppGw backend health var backendHealth = networkManagementClient.ApplicationGateways.BackendHealth(resourceGroupName, appGwName); Assert.Equal(1, backendHealth.BackendAddressPools.Count); Assert.Equal(2, backendHealth.BackendAddressPools[0].BackendHttpSettingsCollection.Count); + // Get available WAF rule sets (validate first result set) + var availableWAFRuleSets = networkManagementClient.ApplicationGateways.GetAvailableWafRuleSets(); + Assert.NotNull(availableWAFRuleSets); + Assert.NotEmpty(availableWAFRuleSets.Value); + Assert.NotNull(availableWAFRuleSets.Value[0].Name); + Assert.NotNull(availableWAFRuleSets.Value[0].RuleSetType); + Assert.NotNull(availableWAFRuleSets.Value[0].RuleSetVersion); + Assert.NotEmpty(availableWAFRuleSets.Value[0].RuleGroups); + Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].Description); + Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].RuleGroupName); + Assert.NotEmpty(availableWAFRuleSets.Value[0].RuleGroups[0].Rules); + Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].Rules[0].Description); + Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].Rules[0].RuleId); + + // Create Nics string nic1name = TestUtilities.GenerateName(); string nic2name = TestUtilities.GenerateName(); From 86b2b89b57f3348c22750207e1a804e6776fd4c1 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Mon, 20 Mar 2017 18:56:26 -0700 Subject: [PATCH 25/56] #WAF removed unneccessary file ending changes created by the PS script for updating the api version number in SessionRecords. --- .../Compute.Tests.AvailabilitySetTests/TestOperations.json | 2 +- .../TestDCOSOperations.json | 2 +- .../TestSwarmOperations.json | 2 +- .../TestContainerServiceUpdateOperations.json | 2 +- .../SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json | 2 +- .../Compute.Tests.ExtImgTests/TestExtImgListTypes.json | 2 +- .../TestExtImgListVersionsFilters.json | 2 +- .../TestExtImgListVersionsNoFilter.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index c90d66618049..41d56c39d77b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1092,4 +1092,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json index 0d03fdb6250b..9f1f1e8233ad 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json @@ -2175,4 +2175,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json index bd443a53e6ff..e8045406bdd2 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json @@ -2123,4 +2123,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json index 2c1a98ed6570..fc3756c3a85c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json @@ -2618,4 +2618,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index 2343de8f650a..abc449435cb7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index bfb318f6ef31..d76a89158bb8 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index bc9057da8c35..a164c1a3195c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -315,4 +315,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index 7bc95fedbe54..e90bf7aad7ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file From ae215230461809fb8a10b58e9851892eb831d3b1 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Mon, 20 Mar 2017 19:20:56 -0700 Subject: [PATCH 26/56] #WAF updated comment for ApplicationGatewayFirewallDisabledRuleGroup.rules. --- .../Models/ApplicationGatewayFirewallDisabledRuleGroup.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs index eb9e127d9bbd..adc055c12b67 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs @@ -35,7 +35,7 @@ public ApplicationGatewayFirewallDisabledRuleGroup() { } /// The name of the rule group that will be /// disabled. /// The list of rules that will be disabled. If - /// empty, all rules of the rule group will be disabled. + /// null, all rules of the rule group will be disabled. public ApplicationGatewayFirewallDisabledRuleGroup(string ruleGroupName, IList rules = default(IList)) { RuleGroupName = ruleGroupName; @@ -49,7 +49,7 @@ public ApplicationGatewayFirewallDisabledRuleGroup() { } public string RuleGroupName { get; set; } /// - /// Gets or sets the list of rules that will be disabled. If empty, all + /// Gets or sets the list of rules that will be disabled. If null, all /// rules of the rule group will be disabled. /// [JsonProperty(PropertyName = "rules")] From 91ea4b3d88528ad1164ceff5a797daec1c1efdc3 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Mon, 20 Mar 2017 19:40:08 -0700 Subject: [PATCH 27/56] #WAF incremented assembly version. --- .../Properties/AssemblyInfo.cs | 4 ++-- .../Network/Microsoft.Azure.Management.Network/project.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs index 31b13a51ad32..3a079d1447c2 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.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("9.1.0.0")] -[assembly: AssemblyFileVersion("9.1.0.0")] +[assembly: AssemblyVersion("9.2.0.0")] +[assembly: AssemblyFileVersion("9.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json index d8484bf93b04..93058cacb507 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json @@ -1,6 +1,6 @@ { - "version": "9.1.0-preview", + "version": "9.2.0-preview", "description": "Provides management capabilities for Network services.", "authors": [ "Microsoft" ], From 86f6cd39b32cb1224805179c25549195228ee870 Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Tue, 21 Mar 2017 09:11:41 -0700 Subject: [PATCH 28/56] Update Network test versions to 2017-03-01 --- .../TestOperations.json | 2 +- .../TestDCOSOperations.json | 2 +- .../TestSwarmOperations.json | 2 +- .../TestContainerServiceUpdateOperations.json | 2 +- .../TestExtImgGet.json | 2 +- .../TestExtImgListTypes.json | 2 +- .../TestExtImgListVersionsFilters.json | 2 +- .../TestExtImgListVersionsNoFilter.json | 2 +- .../TestVMExtensionOperations.json | 50 +- .../TestImageOperations.json | 50 +- .../TestListVMInSubscription.json | 100 +-- .../TestVMWithLinuxOSProfile.json | 50 +- .../TestVMWithWindowsOSProfile.json | 104 +-- .../TestListUsages.json | 50 +- .../TestVMCertificatesOperations.json | 30 +- .../TestVMDataDiskScenario.json | 50 +- .../TestVMBootDiagnostics.json | 50 +- .../TestVMDiskEncryption.json | 26 +- .../TestVMDiskSizeScenario.json | 50 +- .../TestVMBYOL.json | 50 +- .../TestVMMarketplace.json | 50 +- .../TestEffectiveRouteAndAcls.json | 78 +- .../TestMultiIpConfigForMultiNICVM.json | 54 +- .../TestMultiNicVirtualMachineReference.json | 54 +- .../TestNicVirtualMachineReference.json | 36 +- .../TestVMOperations.json | 100 +-- .../TestVMOperations_Redeploy.json | 50 +- .../TestVMScaleSetMarketplace.json | 46 +- .../TestVMScaleSetWithApplciationGateway.json | 184 ++--- .../TestVMScaleSetBatchOperations.json | 50 +- .../TestVMScaleSetOperations.json | 50 +- ...TestVMScaleSetOperations_ManagedDisks.json | 50 +- .../TestVMScaleSetScenarioOperations.json | 50 +- ...narioOperations_ManagedDisks_PirImage.json | 50 +- .../TestVMScaleSetScalingOperations.json | 50 +- .../TestVMScaleSetUpdateOperations.json | 50 +- .../TestVMScaleSetVMOperations.json | 50 +- ...stVMScaleSetVMOperations_ManagedDisks.json | 50 +- .../TestVMScenarioOperations.json | 50 +- ...TestVMScenarioOperations_ManagedDisks.json | 50 +- .../NetworkWatcherApiTest.json | 34 +- .../NextHopApiTest.json | 30 +- .../PacketCaptureApiTest.json | 86 +-- .../EmptyRouteTableTest.json | 40 +- .../RouteTableApiTest.json | 72 +- .../SubnetRouteTableTest.json | 42 +- .../RoutesApiTest.json | 98 +-- .../RoutesHopTypeTest.json | 82 +- .../TopologyApiTest.json | 14 +- .../TroubleshootApiTest.json | 308 ++++---- .../VerifyIpFlowApiTest.json | 36 +- .../ViewNsgRuleApiTest.json | 36 +- .../ApplicationGatewayApiTest.json | 364 ++++----- .../CheckDnsAvailabilityTest.json | 4 +- .../ExpandResourceTest.json | 224 +++--- ...ocalNettworkGatewayOperationsApisTest.json | 34 +- ...NetworkGatewayActiveActiveFeatureTest.json | 730 +++++++++--------- .../VirtualNetworkGatewayBgpRouteApiTest.json | 650 ++++++++-------- ...rkGatewayConnectionOperationsApisTest.json | 202 ++--- ...ConnectionSharedKeyOperationsApisTest.json | 194 ++--- ...alNetworkGatewayConnectionWithBgpTest.json | 384 ++++----- ...atewayConnectionWithIpsecPoliciesTest.json | 4 +- ...rtualNetworkGatewayOperationsApisTest.json | 256 +++--- ...alNetworkGatewayP2SOperationsApisTest.json | 224 +++--- .../CreateEmptyLoadBalancer.json | 32 +- .../LoadBalancerApiNicAssociationTest.json | 204 ++--- .../LoadBalancerApiTest.json | 70 +- ...BalancerApiTestWithDistributionPolicy.json | 94 +-- .../LoadBalancerApiTestWithDynamicIp.json | 70 +- .../LoadBalancerApiTestWithStaticIp.json | 70 +- .../LoadBalancerNatPoolTest.json | 72 +- .../LoadBalancerOutboundNatRuleTest.json | 62 +- .../UpdateLoadBalancerRule.json | 76 +- ...rtMultiIpConfigOnDifferentSubnetFails.json | 28 +- .../NetworkInterfaceApiTest.json | 100 +-- .../NetworkInterfaceApiTestIPv6.json | 100 +-- .../NetworkInterfaceDnsSettingsTest.json | 62 +- ...orkInterfaceDnsSettingsTestIdnsSuffix.json | 62 +- ...faceEffectiveNetworkSecurityGroupTest.json | 52 +- ...etworkInterfaceEnableIPForwardingTest.json | 76 +- .../NetworkInterfaceMultiIpConfigTest.json | 100 +-- ...workInterfaceNetworkSecurityGroupTest.json | 88 +-- ...nterfaceWithAcceleratedNetworkingTest.json | 24 +- .../NetworkSecurityGroupApiTest.json | 44 +- .../NetworkSecurityGroupWithRulesApiTest.json | 36 +- .../PublicIpAddressApiTest.json | 26 +- .../PublicIpAddressApiTestIPv6.json | 74 +- ...ApiTestWithIdletTimeoutAndReverseFqdn.json | 36 +- .../SecurityRuleWithRulesApiTest.json | 82 +- .../SubnetApiTest.json | 34 +- .../SubnetResourceNavigationLinksTest.json | 24 +- .../Networks.Tests.UsageTests/UsageTest.json | 24 +- .../VirtualNetworkPeeringApiTest.json | 106 +-- .../VirtualNetworkApiTest.json | 44 +- ...NetworkCheckIpAddressAvailabilityTest.json | 62 +- .../VirtualNetworkPeeringTest.json | 104 +-- 96 files changed, 4082 insertions(+), 4082 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index 41d56c39d77b..c90d66618049 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1092,4 +1092,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json index 9f1f1e8233ad..0d03fdb6250b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json @@ -2175,4 +2175,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json index e8045406bdd2..bd443a53e6ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json @@ -2123,4 +2123,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json index fc3756c3a85c..2c1a98ed6570 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json @@ -2618,4 +2618,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index abc449435cb7..2343de8f650a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index d76a89158bb8..bfb318f6ef31 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index a164c1a3195c..bc9057da8c35 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -315,4 +315,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index e90bf7aad7ff..7bc95fedbe54 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json index 7b51902196c4..0a2e78ddd7e3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9607\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "6636e9ed-13b1-43c5-a732-2887eca688b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2MzZlOWVkLTEzYjEtNDNjNS1hNzMyLTI4ODdlY2E2ODhiMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2MzZlOWVkLTEzYjEtNDNjNS1hNzMyLTI4ODdlY2E2ODhiMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn2885\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "7e286ad3-e71a-4d8b-806f-ca8598fdd719" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlMjg2YWQzLWU3MWEtNGQ4Yi04MDZmLWNhODU5OGZkZDcxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlMjg2YWQzLWU3MWEtNGQ4Yi04MDZmLWNhODU5OGZkZDcxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Ni9zdWJuZXRzL3NuMjg4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Ni9zdWJuZXRzL3NuMjg4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip219\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2885\",\r\n \"etag\": \"W/\\\"216e9617-87f7-4b32-b6fa-5142ab44799b\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "e80bc784-fc35-4952-b020-e1621d0bf8a7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e80bc784-fc35-4952-b020-e1621d0bf8a7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e80bc784-fc35-4952-b020-e1621d0bf8a7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json index a69ada7e46b9..1992ecada87d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn95\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "39693354-72da-4b98-912c-0543840dabb6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5NjkzMzU0LTcyZGEtNGI5OC05MTJjLTA1NDM4NDBkYWJiNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5NjkzMzU0LTcyZGEtNGI5OC05MTJjLTA1NDM4NDBkYWJiNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn3745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "74ff459b-e193-46be-957b-5dc4b1502e9c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc0ZmY0NTliLWUxOTMtNDZiZS05NTdiLTVkYzRiMTUwMmU5Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc0ZmY0NTliLWUxOTMtNDZiZS05NTdiLTVkYzRiMTUwMmU5Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTYvc3VibmV0cy9zbjM3NDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTYvc3VibmV0cy9zbjM3NDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2603\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3745\",\r\n \"etag\": \"W/\\\"e31795eb-9431-42b9-96d8-fc44fbb6b67a\\\"\",\r\n \"id\": \"/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -929,7 +929,7 @@ "8b8876a7-f4cb-4d78-811c-e45cd8fe3c30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/8b8876a7-f4cb-4d78-811c-e45cd8fe3c30?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/8b8876a7-f4cb-4d78-811c-e45cd8fe3c30?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1012,8 +1012,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json index 9f3d7f1636b1..8ab6f8f85bb7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5539\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "4c4ef2f1-1edb-4cc5-ba59-8747661ac781" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjNGVmMmYxLTFlZGItNGNjNS1iYTU5LTg3NDc2NjFhYzc4MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjNGVmMmYxLTFlZGItNGNjNS1iYTU5LTg3NDc2NjFhYzc4MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn2379\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "81c704c5-1a6c-4dc9-bf88-74afe2a418c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxYzcwNGM1LTFhNmMtNGRjOS1iZjg4LTc0YWZlMmE0MThjNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxYzcwNGM1LTFhNmMtNGRjOS1iZjg4LTc0YWZlMmE0MThjNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4L3N1Ym5ldHMvc24yMzc5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4L3N1Ym5ldHMvc24yMzc5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6468\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2379\",\r\n \"etag\": \"W/\\\"09124712-1dc7-43e1-a2e6-3126e9a76e54\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2188,8 +2188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2924\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -2240,7 +2240,7 @@ "8efdc1fe-e795-43dd-9479-ded9e5a47ad9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2258,8 +2258,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZmRjMWZlLWU3OTUtNDNkZC05NDc5LWRlZDllNWE0N2FkOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZmRjMWZlLWU3OTUtNDNkZC05NDc5LWRlZDllNWE0N2FkOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2313,8 +2313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2371,8 +2371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2435,8 +2435,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn4669\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2487,7 +2487,7 @@ "ac9b713b-6eff-4e4c-ba24-0d82224e4a79" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2505,8 +2505,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjOWI3MTNiLTZlZmYtNGU0Yy1iYTI0LTBkODIyMjRlNGE3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjOWI3MTNiLTZlZmYtNGU0Yy1iYTI0LTBkODIyMjRlNGE3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2560,8 +2560,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2618,8 +2618,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzL3N1Ym5ldHMvc240NjY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzL3N1Ym5ldHMvc240NjY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2682,8 +2682,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7345\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn4669\",\r\n \"etag\": \"W/\\\"f16b3546-733c-405b-9c3e-542b5dacf471\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2731,7 +2731,7 @@ "d9756ef5-b2b2-4814-9c1c-e70e981d4e9e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d9756ef5-b2b2-4814-9c1c-e70e981d4e9e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d9756ef5-b2b2-4814-9c1c-e70e981d4e9e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2749,8 +2749,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2807,8 +2807,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json index 5a9a58b22790..bf4dec1f61d3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8223\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d51a812f-0f0f-43b5-a4c8-0c8be66ddd86" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1MWE4MTJmLTBmMGYtNDNiNS1hNGM4LTBjOGJlNjZkZGQ4Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1MWE4MTJmLTBmMGYtNDNiNS1hNGM4LTBjOGJlNjZkZGQ4Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn637\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzllZjJjY2NhLWMwYWYtNGEwZi05ZGE0LWZjYzhlYWIyYzkxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzllZjJjY2NhLWMwYWYtNGEwZi05ZGE0LWZjYzhlYWIyYzkxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDkvc3VibmV0cy9zbjYzNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDkvc3VibmV0cy9zbjYzNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3362\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn637\",\r\n \"etag\": \"W/\\\"b12f0d00-284c-4afc-84d5-bfa2ac1437de\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "882e78bc-fa42-4b1b-85de-954de4f8fbd1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/882e78bc-fa42-4b1b-85de-954de4f8fbd1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/882e78bc-fa42-4b1b-85de-954de4f8fbd1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json index d18ba0cde08c..8d0a6f72550e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json @@ -1637,7 +1637,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1678,7 +1678,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1706,7 +1706,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1747,7 +1747,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1775,7 +1775,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1816,7 +1816,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1844,7 +1844,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1885,7 +1885,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1913,7 +1913,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1964,7 +1964,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2015,7 +2015,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2066,7 +2066,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2117,7 +2117,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2171,7 +2171,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2225,7 +2225,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2279,7 +2279,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2333,7 +2333,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2393,7 +2393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2453,7 +2453,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2513,7 +2513,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2573,7 +2573,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2614,7 +2614,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2642,7 +2642,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2683,7 +2683,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2711,7 +2711,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2752,7 +2752,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2780,7 +2780,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2821,7 +2821,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2849,7 +2849,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,7 +2900,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,7 +2951,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,7 +3002,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,7 +3053,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,7 +3107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3161,7 +3161,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3215,7 +3215,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3269,7 +3269,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3329,7 +3329,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3389,7 +3389,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3449,7 +3449,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3509,7 +3509,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3547,7 +3547,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3575,7 +3575,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3613,7 +3613,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3641,7 +3641,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3679,7 +3679,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3707,7 +3707,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3745,7 +3745,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3773,7 +3773,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3833,7 +3833,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3893,7 +3893,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3953,7 +3953,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json index e31e6dd1e481..c0516ccd4ff6 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8029\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "994ef8d3-0ac7-4a32-90bd-0df1f017983f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NGVmOGQzLTBhYzctNGEzMi05MGJkLTBkZjFmMDE3OTgzZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NGVmOGQzLTBhYzctNGEzMi05MGJkLTBkZjFmMDE3OTgzZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn5051\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "28ad7faf-ccb1-45c9-b3a5-bee442bb02ca" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI4YWQ3ZmFmLWNjYjEtNDVjOS1iM2E1LWJlZTQ0MmJiMDJjYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI4YWQ3ZmFmLWNjYjEtNDVjOS1iM2E1LWJlZTQ0MmJiMDJjYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODgvc3VibmV0cy9zbjUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODgvc3VibmV0cy9zbjUwNTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9892\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5051\",\r\n \"etag\": \"W/\\\"e390030a-9b9c-4215-9f89-6e13f66b5e5f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "9cdb43a7-671b-4bfa-a7ff-4debe63a5560" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cdb43a7-671b-4bfa-a7ff-4debe63a5560?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cdb43a7-671b-4bfa-a7ff-4debe63a5560?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json index 943c588a56a7..d2e6d376615f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json @@ -341,7 +341,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3075\"\r\n }\r\n },\r\n \"location\": \"EastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -376,7 +376,7 @@ "80c4066a-ebd2-4caa-aaad-68871f8585ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -404,12 +404,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -458,7 +458,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -512,7 +512,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824?api-version=2017-03-01", "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\": \"azsmnet5000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastAsia\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { @@ -547,7 +547,7 @@ "e2d620bb-8279-45da-b8de-5a21a32126b8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -575,12 +575,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -629,7 +629,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824/subnets/azsmnet5000?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824/subnets/azsmnet5000?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -683,7 +683,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2017-03-01", "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/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualNetworks/azsmnet7824/subnets/azsmnet5000\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062\"\r\n }\r\n },\r\n \"name\": \"azsmnet7651\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet6511\",\r\n \"location\": \"EastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -718,7 +718,7 @@ "bfdd585b-89c3-4940-9896-4253781658b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,12 +746,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -800,7 +800,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json index cc669591681f..65eb1d7665b2 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8464\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d56c878a-38f1-4da1-ae6e-ddf675e0fb70" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1NmM4NzhhLTM4ZjEtNGRhMS1hZTZlLWRkZjY3NWUwZmI3MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1NmM4NzhhLTM4ZjEtNGRhMS1hZTZlLWRkZjY3NWUwZmI3MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn7187\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9da20380-b57e-47ac-9bc1-443d5399f32a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkYTIwMzgwLWI1N2UtNDdhYy05YmMxLTQ0M2Q1Mzk5ZjMyYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkYTIwMzgwLWI1N2UtNDdhYy05YmMxLTQ0M2Q1Mzk5ZjMyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjIvc3VibmV0cy9zbjcxODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjIvc3VibmV0cy9zbjcxODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9679\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7187\",\r\n \"etag\": \"W/\\\"da8250cc-8608-4a5f-be2a-6da45670caf0\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "de247dca-53d2-4573-94cc-01e65fd1fc7f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/de247dca-53d2-4573-94cc-01e65fd1fc7f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/de247dca-53d2-4573-94cc-01e65fd1fc7f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json index f9ec7b96f0e7..f12a62aa579f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn1593\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d7c2562b-e785-415a-9688-fef7ccbaa06d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q3YzI1NjJiLWU3ODUtNDE1YS05Njg4LWZlZjdjY2JhYTA2ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q3YzI1NjJiLWU3ODUtNDE1YS05Njg4LWZlZjdjY2JhYTA2ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn7677\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9cbff61d-7049-4ed5-8f85-7ee3c41f919f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljYmZmNjFkLTcwNDktNGVkNS04Zjg1LTdlZTNjNDFmOTE5Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljYmZmNjFkLTcwNDktNGVkNS04Zjg1LTdlZTNjNDFmOTE5Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzUvc3VibmV0cy9zbjc2Nzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzUvc3VibmV0cy9zbjc2Nzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5437\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7677\",\r\n \"etag\": \"W/\\\"7d8534a4-69a9-4cee-b681-077fca187496\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "3a9d081b-8a92-401d-a802-6e73054d3a41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/3a9d081b-8a92-401d-a802-6e73054d3a41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/3a9d081b-8a92-401d-a802-6e73054d3a41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json index c51908d49888..5578452f9551 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json @@ -407,7 +407,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9021\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -448,7 +448,7 @@ "c3ff3024-263e-4233-bb1e-5f70638c0791" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -476,7 +476,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -527,7 +527,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,7 +641,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn936\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "e237b881-ddbc-4325-aa80-228a59600b22" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,7 +710,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -761,7 +761,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -815,7 +815,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782/subnets/sn936?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782/subnets/sn936?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -875,7 +875,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3879\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn936\",\r\n \"etag\": \"W/\\\"15a0ea2d-97d4-4630-a984-5254777a1a75\\\"\",\r\n \"id\": \"/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualNetworks/vn3782/subnets/sn936\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -913,7 +913,7 @@ "4e22ec02-1666-463b-bb77-96399ed3431b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/4e22ec02-1666-463b-bb77-96399ed3431b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/4e22ec02-1666-463b-bb77-96399ed3431b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -941,7 +941,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json index 7eb4047d430c..0b79ff8a3a58 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9166\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "ea8294d9-40db-47e5-b805-ef87b4a12e2b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VhODI5NGQ5LTQwZGItNDdlNS1iODA1LWVmODdiNGExMmUyYj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VhODI5NGQ5LTQwZGItNDdlNS1iODA1LWVmODdiNGExMmUyYj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn8501\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "9a33cc62-b116-4432-b93f-81126bd08197" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzNjYzYyLWIxMTYtNDQzMi1iOTNmLTgxMTI2YmQwODE5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzNjYzYyLWIxMTYtNDQzMi1iOTNmLTgxMTI2YmQwODE5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzUvc3VibmV0cy9zbjg1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzUvc3VibmV0cy9zbjg1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -984,8 +984,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3443\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn8501\",\r\n \"etag\": \"W/\\\"10a352e0-7b29-4928-a52a-679aedb25eb6\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1033,7 +1033,7 @@ "18f5cc6d-346e-4f66-b765-573eb950e1a4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/18f5cc6d-346e-4f66-b765-573eb950e1a4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/18f5cc6d-346e-4f66-b765-573eb950e1a4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1051,8 +1051,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1109,8 +1109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json index 7a928f3972ab..a8b217a38c22 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json @@ -368,8 +368,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3046\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -420,7 +420,7 @@ "a80a4050-fd45-499d-9ed3-fd2e55db1d66" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,8 +438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E4MGE0MDUwLWZkNDUtNDk5ZC05ZWQzLWZkMmU1NWRiMWQ2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E4MGE0MDUwLWZkNDUtNDk5ZC05ZWQzLWZkMmU1NWRiMWQ2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -493,8 +493,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn3834\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -667,7 +667,7 @@ "403bb37b-9d4f-4711-a2af-20e373c1d7dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -685,8 +685,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwM2JiMzdiLTlkNGYtNDcxMS1hMmFmLTIwZTM3M2MxZDdkZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwM2JiMzdiLTlkNGYtNDcxMS1hMmFmLTIwZTM3M2MxZDdkZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -740,8 +740,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzMvc3VibmV0cy9zbjM4MzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzMvc3VibmV0cy9zbjM4MzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9059\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3834\",\r\n \"etag\": \"W/\\\"f18e1229-16c3-4246-9af5-d2dfe51925f0\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -911,7 +911,7 @@ "7e328178-6311-4522-8e21-9413a3451485" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e328178-6311-4522-8e21-9413a3451485?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e328178-6311-4522-8e21-9413a3451485?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -929,8 +929,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json index 69a4cc544414..123ecc068932 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6298\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -603,7 +603,7 @@ "84da3aac-dd98-400f-b27d-da784d0989da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -621,8 +621,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0ZGEzYWFjLWRkOTgtNDAwZi1iMjdkLWRhNzg0ZDA5ODlkYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0ZGEzYWFjLWRkOTgtNDAwZi1iMjdkLWRhNzg0ZDA5ODlkYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn6013\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -850,7 +850,7 @@ "73697911-5120-4e19-b0e5-7f182991944f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -868,8 +868,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzczNjk3OTExLTUxMjAtNGUxOS1iMGU1LTdmMTgyOTkxOTQ0Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzczNjk3OTExLTUxMjAtNGUxOS1iMGU1LTdmMTgyOTkxOTQ0Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -981,8 +981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTMvc3VibmV0cy9zbjYwMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTMvc3VibmV0cy9zbjYwMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,8 +1045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6577\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn6013\",\r\n \"etag\": \"W/\\\"cfe5e54a-75df-4ad2-a5a2-8fe583ed14be\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1094,7 +1094,7 @@ "4347fe14-c13e-4892-9de8-1c974820ecde" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4347fe14-c13e-4892-9de8-1c974820ecde?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4347fe14-c13e-4892-9de8-1c974820ecde?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1112,8 +1112,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1170,8 +1170,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json index 4faa0edcb4c3..dcea29f91250 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"sn3213\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "8654168d-aa01-415e-b701-740a896b258e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg2NTQxNjhkLWFhMDEtNDE1ZS1iNzAxLTc0MGE4OTZiMjU4ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg2NTQxNjhkLWFhMDEtNDE1ZS1iNzAxLTc0MGE4OTZiMjU4ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTMvc3VibmV0cy9zbjMyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTMvc3VibmV0cy9zbjMyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "4a5504d2-1005-4476-9b4b-17b4fe52d078" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhNTUwNGQyLTEwMDUtNDQ3Ni05YjRiLTE3YjRmZTUyZDA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhNTUwNGQyLTEwMDUtNDQ3Ni05YjRiLTE3YjRmZTUyZDA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"875dc796-a63c-40a7-adcd-61639d94c346\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878\",\r\n \"location\": \"southeastasia\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn3213\",\r\n \"etag\": \"W/\\\"1fa85aa4-d945-4932-8271-c9b2ccda90e7\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213\"\r\n }\r\n },\r\n \"name\": \"ip2684\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "303a1a67-97e6-4deb-a885-e58f8a9fc538" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/303a1a67-97e6-4deb-a885-e58f8a9fc538?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/303a1a67-97e6-4deb-a885-e58f8a9fc538?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1112,8 +1112,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2308,8 +2308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveRouteTable?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveRouteTable?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2344,7 +2344,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/f8724991-1a19-44ac-ba19-9df36c1966e7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/f8724991-1a19-44ac-ba19-9df36c1966e7?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2372,8 +2372,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveNetworkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveNetworkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2408,7 +2408,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2436,8 +2436,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2466,7 +2466,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2494,8 +2494,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2524,7 +2524,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json index 763d211ad96d..d7067d72862a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "bbf2ee81-a708-465f-ab38-0bbf854c6397" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiZjJlZTgxLWE3MDgtNDY1Zi1hYjM4LTBiYmY4NTRjNjM5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiZjJlZTgxLWE3MDgtNDY1Zi1hYjM4LTBiYmY4NTRjNjM5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODEvc3VibmV0cy9zbjEyOTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODEvc3VibmV0cy9zbjEyOTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6347\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ip23520\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "a6539b36-087c-46fc-885d-73bfaa84757d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/a6539b36-087c-46fc-885d-73bfaa84757d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/a6539b36-087c-46fc-885d-73bfaa84757d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7139\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ip21965\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -978,7 +978,7 @@ "98169df6-ba37-4496-bee5-79f47beeb013" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/98169df6-ba37-4496-bee5-79f47beeb013?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/98169df6-ba37-4496-bee5-79f47beeb013?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,8 +996,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,8 +1118,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json index 82ddcb931ba2..bf21199a5dbf 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "337fb129-529f-4643-a826-b3ed73bb1b7c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzN2ZiMTI5LTUyOWYtNDY0My1hODI2LWIzZWQ3M2JiMWI3Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzN2ZiMTI5LTUyOWYtNDY0My1hODI2LWIzZWQ3M2JiMWI3Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTAvc3VibmV0cy9zbjU4MDA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTAvc3VibmV0cy9zbjU4MDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9564\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5800\",\r\n \"etag\": \"W/\\\"d8307e21-ccdd-4415-9c00-b49e3efb0c04\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "f3f1a2c0-4e36-4695-a3fd-061b0131e522" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f3f1a2c0-4e36-4695-a3fd-061b0131e522?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f3f1a2c0-4e36-4695-a3fd-061b0131e522?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7059\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5800\",\r\n \"etag\": \"W/\\\"d8307e21-ccdd-4415-9c00-b49e3efb0c04\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -978,7 +978,7 @@ "102888f0-a1bd-4ca8-a6d5-18908a0b0516" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/102888f0-a1bd-4ca8-a6d5-18908a0b0516?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/102888f0-a1bd-4ca8-a6d5-18908a0b0516?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,8 +996,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,8 +1118,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json index e2139287c0b3..a4f941794281 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn5961\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "2dc7ea7b-d165-45b3-9978-ac843843a8aa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYzdlYTdiLWQxNjUtNDViMy05OTc4LWFjODQzODQzYThhYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYzdlYTdiLWQxNjUtNDViMy05OTc4LWFjODQzODQzYThhYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NS9zdWJuZXRzL3NuNTk2MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NS9zdWJuZXRzL3NuNTk2MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5746\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5961\",\r\n \"etag\": \"W/\\\"bd2aed07-e14c-40f0-a7dd-4b22b6185f61\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "a450fac6-ae9c-41fd-bc66-148f9cda4883" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a450fac6-ae9c-41fd-bc66-148f9cda4883?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a450fac6-ae9c-41fd-bc66-148f9cda4883?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json index f568bcf40d9b..41b926cf4eca 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json @@ -492,8 +492,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8133\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -544,7 +544,7 @@ "5f63c140-65af-4671-8059-f064fabc83be" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,8 +562,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVmNjNjMTQwLTY1YWYtNDY3MS04MDU5LWYwNjRmYWJjODNiZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVmNjNjMTQwLTY1YWYtNDY3MS04MDU5LWYwNjRmYWJjODNiZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -617,8 +617,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -675,8 +675,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -739,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn7804\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -791,7 +791,7 @@ "e6754412-902f-4285-9d98-e3abea367247" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,8 +809,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2NzU0NDEyLTkwMmYtNDI4NS05ZDk4LWUzYWJlYTM2NzI0Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2NzU0NDEyLTkwMmYtNDI4NS05ZDk4LWUzYWJlYTM2NzI0Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -864,8 +864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0L3N1Ym5ldHMvc243ODA0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0L3N1Ym5ldHMvc243ODA0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -986,8 +986,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7212\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7804\",\r\n \"etag\": \"W/\\\"b30468c9-5ebf-4f38-bea7-a6a2354ae10e\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1035,7 +1035,7 @@ "76e05b02-e233-4f14-8a86-6d87844e90a6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/76e05b02-e233-4f14-8a86-6d87844e90a6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/76e05b02-e233-4f14-8a86-6d87844e90a6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1053,8 +1053,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1111,8 +1111,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3683,8 +3683,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7945\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -3735,7 +3735,7 @@ "304afb2c-100c-4420-96f6-519e50214408" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3753,8 +3753,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwNGFmYjJjLTEwMGMtNDQyMC05NmY2LTUxOWU1MDIxNDQwOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwNGFmYjJjLTEwMGMtNDQyMC05NmY2LTUxOWU1MDIxNDQwOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3808,8 +3808,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3866,8 +3866,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3930,8 +3930,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn2271\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3982,7 +3982,7 @@ "f124a6aa-8ff4-44de-9a2c-55cc8d035926" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4000,8 +4000,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMjRhNmFhLThmZjQtNDRkZS05YTJjLTU1Y2M4ZDAzNTkyNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMjRhNmFhLThmZjQtNDRkZS05YTJjLTU1Y2M4ZDAzNTkyNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4055,8 +4055,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4113,8 +4113,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3L3N1Ym5ldHMvc24yMjcxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3L3N1Ym5ldHMvc24yMjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4177,8 +4177,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6968\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2271\",\r\n \"etag\": \"W/\\\"daaa0816-ade5-4405-8b35-96b32c5610ce\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -4226,7 +4226,7 @@ "1780921b-6db3-46d5-bde3-139d1615b367" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1780921b-6db3-46d5-bde3-139d1615b367?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1780921b-6db3-46d5-bde3-139d1615b367?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4244,8 +4244,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4302,8 +4302,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json index 68ccfc09256c..696c3e77e0d5 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn4808\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "47a47f5f-fa54-4ac3-b001-4cc476eff4c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YTQ3ZjVmLWZhNTQtNGFjMy1iMDAxLTRjYzQ3NmVmZjRjMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YTQ3ZjVmLWZhNTQtNGFjMy1iMDAxLTRjYzQ3NmVmZjRjMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn8395\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "26eed63d-ddfd-4113-9aa8-e8bc80362e13" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZWVkNjNkLWRkZmQtNDExMy05YWE4LWU4YmM4MDM2MmUxMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZWVkNjNkLWRkZmQtNDExMy05YWE4LWU4YmM4MDM2MmUxMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0L3N1Ym5ldHMvc244Mzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0L3N1Ym5ldHMvc244Mzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9690\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn8395\",\r\n \"etag\": \"W/\\\"055220a9-8c65-4920-9ab2-28fc8ebfd619\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "d76e9f46-d499-4819-801b-45ff74cfc2a5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d76e9f46-d499-4819-801b-45ff74cfc2a5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d76e9f46-d499-4819-801b-45ff74cfc2a5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json index 38a91b91e568..78397188f46d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json @@ -530,8 +530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2658\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -572,7 +572,7 @@ "06fa6a94-8bba-4693-a01f-ce4143272113" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -600,8 +600,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZmE2YTk0LThiYmEtNDY5My1hMDFmLWNlNDE0MzI3MjExMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZmE2YTk0LThiYmEtNDY5My1hMDFmLWNlNDE0MzI3MjExMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -707,8 +707,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -768,8 +768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn3505\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -810,7 +810,7 @@ "2ee238c4-cbf5-4e03-8fa8-c934e7c46334" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -838,8 +838,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlZTIzOGM0LWNiZjUtNGUwMy04ZmE4LWM5MzRlN2M0NjMzND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlZTIzOGM0LWNiZjUtNGUwMy04ZmE4LWM5MzRlN2M0NjMzND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -945,8 +945,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769/subnets/sn3505?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5L3N1Ym5ldHMvc24zNTA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769/subnets/sn3505?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5L3N1Ym5ldHMvc24zNTA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1006,8 +1006,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7639\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3505\",\r\n \"etag\": \"W/\\\"938ab6d1-5c0f-47f1-89ee-6dcdabe7d802\\\"\",\r\n \"id\": \"/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualNetworks/vn6769/subnets/sn3505\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1045,7 +1045,7 @@ "2ae3f188-e69c-4a4b-a4ad-2821589e07f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ae3f188-e69c-4a4b-a4ad-2821589e07f7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ae3f188-e69c-4a4b-a4ad-2821589e07f7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1073,8 +1073,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json index d7edb379779d..86a60e40872e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json @@ -436,8 +436,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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.1.0/24\"\r\n },\r\n \"name\": \"sn18098\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"sn24269\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -489,7 +489,7 @@ "44fe5922-bec0-4e35-8656-6d00f3c019a2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,8 +507,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ0ZmU1OTIyLWJlYzAtNGUzNS04NjU2LTZkMDBmM2MwMTlhMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ0ZmU1OTIyLWJlYzAtNGUzNS04NjU2LTZkMDBmM2MwMTlhMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,8 +622,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn18098\"\r\n }\r\n },\r\n \"name\": \"gwIp3235\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn18098\"\r\n }\r\n },\r\n \"name\": \"fIp916\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"fPort5719\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"pool8495\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\"\r\n },\r\n \"name\": \"setting4841\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/frontendIPConfigurations/fIp916\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/frontendPorts/fPort5719\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"listener418\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/backendAddressPools/pool8495\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/backendHttpSettingsCollection/setting4841\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/httpListeners/listener418\"\r\n }\r\n },\r\n \"name\": \"rule4776\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -675,7 +675,7 @@ "0f1710a9-9b53-4323-9afd-6b59429cf0ef" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,8 +693,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,8 +752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -811,8 +811,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,8 +870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -988,8 +988,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1047,8 +1047,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1106,8 +1106,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1165,8 +1165,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1224,8 +1224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1283,8 +1283,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1342,8 +1342,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1401,8 +1401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1460,8 +1460,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1519,8 +1519,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1578,8 +1578,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1637,8 +1637,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1696,8 +1696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1755,8 +1755,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1814,8 +1814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1873,8 +1873,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1932,8 +1932,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1991,8 +1991,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2050,8 +2050,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2109,8 +2109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2168,8 +2168,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2227,8 +2227,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2286,8 +2286,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2345,8 +2345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2404,8 +2404,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2460,8 +2460,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2519,8 +2519,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2584,8 +2584,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2649,8 +2649,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3681\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2702,7 +2702,7 @@ "38870625-8082-4853-b530-4a242e83efd0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2720,8 +2720,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4ODcwNjI1LTgwODItNDg1My1iNTMwLTRhMjQyZTgzZWZkMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4ODcwNjI1LTgwODItNDg1My1iNTMwLTRhMjQyZTgzZWZkMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2776,8 +2776,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2835,8 +2835,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,8 +2900,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn24269\",\r\n \"etag\": \"W/\\\"150ae5ac-97a7-41fb-b256-0a2fca784095\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn24269\"\r\n }\r\n },\r\n \"name\": \"ip9271\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2950,7 +2950,7 @@ "0c0ac95e-e324-4552-add6-9caaa3218d5c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0c0ac95e-e324-4552-add6-9caaa3218d5c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0c0ac95e-e324-4552-add6-9caaa3218d5c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2968,8 +2968,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3027,8 +3027,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json index d933f67f40c9..4d2d9be26cb6 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json @@ -436,8 +436,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9414\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -489,7 +489,7 @@ "78f60a92-eefa-40f5-93cb-43b8a8ee7167" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,8 +507,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjYwYTkyLWVlZmEtNDBmNS05M2NiLTQzYjhhOGVlNzE2Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjYwYTkyLWVlZmEtNDBmNS05M2NiLTQzYjhhOGVlNzE2Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,8 +622,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -687,8 +687,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"sn8550\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -740,7 +740,7 @@ "0ec17ca2-2425-4609-a936-11bb1591b92d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -758,8 +758,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBlYzE3Y2EyLTI0MjUtNDYwOS1hOTM2LTExYmIxNTkxYjkyZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBlYzE3Y2EyLTI0MjUtNDYwOS1hOTM2LTExYmIxNTkxYjkyZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,8 +814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -873,8 +873,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2L3N1Ym5ldHMvc244NTUwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2L3N1Ym5ldHMvc244NTUwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn8550\",\r\n \"etag\": \"W/\\\"a366937d-2fa2-40b4-8aea-7f0fe553ac57\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550\"\r\n }\r\n },\r\n \"name\": \"ip9581\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -988,7 +988,7 @@ "82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1006,8 +1006,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1065,8 +1065,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json index 27b1188e2c10..1e74dd9b2d3f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9086\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "da9b1a55-b312-468d-8096-46f9d2d84c31" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhOWIxYTU1LWIzMTItNDY4ZC04MDk2LTQ2ZjlkMmQ4NGMzMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhOWIxYTU1LWIzMTItNDY4ZC04MDk2LTQ2ZjlkMmQ4NGMzMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "ace514d6-4d1a-4531-adaa-22341e2af8ff" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjZTUxNGQ2LTRkMWEtNDUzMS1hZGFhLTIyMzQxZTJhZjhmZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjZTUxNGQ2LTRkMWEtNDUzMS1hZGFhLTIyMzQxZTJhZjhmZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4L3N1Ym5ldHMvc24xNDYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4L3N1Ym5ldHMvc24xNDYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6612\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn1463\",\r\n \"etag\": \"W/\\\"b8b55829-c50d-45c9-a952-40ebfeab1faa\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "8045fa18-5003-4505-8e05-27cd594b0c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json index 86321f1b9e71..25e49b104910 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2213\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "c67351d2-991e-4b2b-a4a2-c4255eb4fd0a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M2NzM1MWQyLTk5MWUtNGIyYi1hNGEyLWM0MjU1ZWI0ZmQwYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M2NzM1MWQyLTk5MWUtNGIyYi1hNGEyLWM0MjU1ZWI0ZmQwYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn9982\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "cf87eff0-e701-4779-9199-51c0843ed22a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmODdlZmYwLWU3MDEtNDc3OS05MTk5LTUxYzA4NDNlZDIyYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmODdlZmYwLWU3MDEtNDc3OS05MTk5LTUxYzA4NDNlZDIyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544/subnets/sn9982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0L3N1Ym5ldHMvc245OTgyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544/subnets/sn9982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0L3N1Ym5ldHMvc245OTgyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6612\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn1463\",\r\n \"etag\": \"W/\\\"b8b55829-c50d-45c9-a952-40ebfeab1faa\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -939,7 +939,7 @@ "8045fa18-5003-4505-8e05-27cd594b0c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1015,8 +1015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json index aa3f952450a4..3c9acdd0c005 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6753\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmNjAyNWM3LTA3NmMtNGE1Zi1hNGQ3LTdiYTVjOGFkMTU0Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmNjAyNWM3LTA3NmMtNGE1Zi1hNGQ3LTdiYTVjOGFkMTU0Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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\": \"sn1959\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "40dc0178-41da-4050-b3de-1b9cda61769f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwZGMwMTc4LTQxZGEtNDA1MC1iM2RlLTFiOWNkYTYxNzY5Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwZGMwMTc4LTQxZGEtNDA1MC1iM2RlLTFiOWNkYTYxNzY5Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OC9zdWJuZXRzL3NuMTk1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OC9zdWJuZXRzL3NuMTk1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn1959\",\r\n \"etag\": \"W/\\\"315b667b-e5a5-4bf7-9ca1-3c756c990556\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959\"\r\n }\r\n },\r\n \"name\": \"ip8495\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "fdc47062-3147-4d64-a558-aeddaa06d489" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/fdc47062-3147-4d64-a558-aeddaa06d489?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/fdc47062-3147-4d64-a558-aeddaa06d489?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json index 65efff3fd90c..7ce305e78d3e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json @@ -462,8 +462,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8427\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -504,7 +504,7 @@ "5a7be3e7-4917-4fc3-adb4-f0f30862b743" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,8 +532,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhN2JlM2U3LTQ5MTctNGZjMy1hZGI0LWYwZjMwODYyYjc0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhN2JlM2U3LTQ5MTctNGZjMy1hZGI0LWYwZjMwODYyYjc0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,8 +584,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,8 +639,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -700,8 +700,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3544\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -742,7 +742,7 @@ "97e39527-4fe2-4f11-a000-30b224522828" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -770,8 +770,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3ZTM5NTI3LTRmZTItNGYxMS1hMDAwLTMwYjIyNDUyMjgyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3ZTM5NTI3LTRmZTItNGYxMS1hMDAwLTMwYjIyNDUyMjgyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -822,8 +822,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -877,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614/subnets/sn3544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQvc3VibmV0cy9zbjM1NDQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614/subnets/sn3544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQvc3VibmV0cy9zbjM1NDQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9831\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7797\",\r\n \"etag\": \"W/\\\"00863957-ff3e-4def-b190-536068ab6b8a\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn3361/subnets/sn7797\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -987,7 +987,7 @@ "63fc8e68-5baa-42d3-a024-786c8ac4c237" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/63fc8e68-5baa-42d3-a024-786c8ac4c237?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/63fc8e68-5baa-42d3-a024-786c8ac4c237?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1005,8 +1005,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1063,8 +1063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json index 3c51a0f0c79f..caec2953f73e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7283\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "d98b0164-8811-4992-bc62-12ae2f6a4d6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q5OGIwMTY0LTg4MTEtNDk5Mi1iYzYyLTEyYWUyZjZhNGQ2Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q5OGIwMTY0LTg4MTEtNDk5Mi1iYzYyLTEyYWUyZjZhNGQ2Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"sn2617\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1MmE3ZWI4LTVmZDEtNGNlYi1iNDc2LWRiMDBiYjFhM2YyYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1MmE3ZWI4LTVmZDEtNGNlYi1iNDc2LWRiMDBiYjFhM2YyYz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDIvc3VibmV0cy9zbjI2MTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDIvc3VibmV0cy9zbjI2MTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn2617\",\r\n \"etag\": \"W/\\\"07fd8634-fb1c-4560-89b4-44446884430c\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617\"\r\n }\r\n },\r\n \"name\": \"ip6264\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "9b7ae149-a4b7-4c0a-9785-a2eab99093b1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/9b7ae149-a4b7-4c0a-9785-a2eab99093b1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/9b7ae149-a4b7-4c0a-9785-a2eab99093b1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json index b206bfd84303..517e17290055 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5561\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "e96a5be1-467d-476e-9ba7-f0f30a9dd71c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5NmE1YmUxLTQ2N2QtNDc2ZS05YmE3LWYwZjMwYTlkZDcxYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5NmE1YmUxLTQ2N2QtNDc2ZS05YmE3LWYwZjMwYTlkZDcxYz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"sn7161\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "99c8c91d-bf0a-4441-8d95-a5c0225e8a8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5YzhjOTFkLWJmMGEtNDQ0MS04ZDk1LWE1YzAyMjVlOGE4Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5YzhjOTFkLWJmMGEtNDQ0MS04ZDk1LWE1YzAyMjVlOGE4Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODkvc3VibmV0cy9zbjcxNjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODkvc3VibmV0cy9zbjcxNjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn7161\",\r\n \"etag\": \"W/\\\"92758a28-66c5-46b6-b246-72ef99ff89fd\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161\"\r\n }\r\n },\r\n \"name\": \"ip6687\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "078149f6-abf2-45e7-94a3-6c8ff2392c8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/078149f6-abf2-45e7-94a3-6c8ff2392c8c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/078149f6-abf2-45e7-94a3-6c8ff2392c8c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json index 808d6f748fe9..46d6de9d08b1 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2964\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "1c3a79d8-d438-43d2-a925-ddaaea134ac5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjM2E3OWQ4LWQ0MzgtNDNkMi1hOTI1LWRkYWFlYTEzNGFjNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjM2E3OWQ4LWQ0MzgtNDNkMi1hOTI1LWRkYWFlYTEzNGFjNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "084b22a4-d2a9-487c-8839-bcc275001c17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4NGIyMmE0LWQyYTktNDg3Yy04ODM5LWJjYzI3NTAwMWMxNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4NGIyMmE0LWQyYTktNDg3Yy04ODM5LWJjYzI3NTAwMWMxNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTIvc3VibmV0cy9zbjczMzk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTIvc3VibmV0cy9zbjczMzk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip113\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7339\",\r\n \"etag\": \"W/\\\"a3b45832-20e5-4d44-abe5-ff58b76e03bd\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "ad73bf1e-8f8a-4924-b2a5-6d373e493e65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json index b324bef7e566..e2341e061f0f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2011\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "3f7e6f04-1fe3-44ef-b97e-70134912daa5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmN2U2ZjA0LTFmZTMtNDRlZi1iOTdlLTcwMTM0OTEyZGFhNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmN2U2ZjA0LTFmZTMtNDRlZi1iOTdlLTcwMTM0OTEyZGFhNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5066\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "88051c1a-684c-4042-ac22-1252651e0fa9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDUxYzFhLTY4NGMtNDA0Mi1hYzIyLTEyNTI2NTFlMGZhOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDUxYzFhLTY4NGMtNDA0Mi1hYzIyLTEyNTI2NTFlMGZhOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509/subnets/sn5066?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5L3N1Ym5ldHMvc241MDY2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509/subnets/sn5066?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5L3N1Ym5ldHMvc241MDY2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip113\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7339\",\r\n \"etag\": \"W/\\\"a3b45832-20e5-4d44-abe5-ff58b76e03bd\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -939,7 +939,7 @@ "ad73bf1e-8f8a-4924-b2a5-6d373e493e65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1015,8 +1015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json index 15864e8cbfd9..7ecb02018219 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json @@ -525,8 +525,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8116\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -577,7 +577,7 @@ "d265798f-874e-433f-b8ab-3641f409dd93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,8 +595,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QyNjU3OThmLTg3NGUtNDMzZi1iOGFiLTM2NDFmNDA5ZGQ5Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QyNjU3OThmLTg3NGUtNDMzZi1iOGFiLTM2NDFmNDA5ZGQ5Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -650,8 +650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -708,8 +708,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -772,8 +772,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn2745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -824,7 +824,7 @@ "026fbcdb-fd10-4808-9f9c-d173cbd731ee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -842,8 +842,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNmZiY2RiLWZkMTAtNDgwOC05ZjljLWQxNzNjYmQ3MzFlZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNmZiY2RiLWZkMTAtNDgwOC05ZjljLWQxNzNjYmQ3MzFlZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -897,8 +897,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -955,8 +955,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTEvc3VibmV0cy9zbjI3NDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTEvc3VibmV0cy9zbjI3NDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1019,8 +1019,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3862\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2745\",\r\n \"etag\": \"W/\\\"4020128b-b57c-4960-8176-a5d57670fcbf\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1068,7 +1068,7 @@ "9c622174-7a10-47b6-8f63-24820e573a2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9c622174-7a10-47b6-8f63-24820e573a2c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9c622174-7a10-47b6-8f63-24820e573a2c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,8 +1086,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1144,8 +1144,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json index e6274efd6a1e..742ef8be988d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json @@ -119,8 +119,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3148\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -161,7 +161,7 @@ "a0947abc-4d83-40ff-b67e-fc6cca95679b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,8 +189,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EwOTQ3YWJjLTRkODMtNDBmZi1iNjdlLWZjNmNjYTk1Njc5Yj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EwOTQ3YWJjLTRkODMtNDBmZi1iNjdlLWZjNmNjYTk1Njc5Yj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -241,8 +241,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -296,8 +296,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -357,8 +357,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7781\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -399,7 +399,7 @@ "393cefed-f783-4c10-9d9f-95056de294cf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,8 +427,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5M2NlZmVkLWY3ODMtNGMxMC05ZDlmLTk1MDU2ZGUyOTRjZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5M2NlZmVkLWY3ODMtNGMxMC05ZDlmLTk1MDU2ZGUyOTRjZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -479,8 +479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -534,8 +534,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTYvc3VibmV0cy9zbjc3ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTYvc3VibmV0cy9zbjc3ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -595,8 +595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9759\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7781\",\r\n \"etag\": \"W/\\\"a8b9d9fd-ede0-4d06-88a3-d2b857e42136\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -634,7 +634,7 @@ "b3e5bcca-6047-432c-9abc-0ec1597b463a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/b3e5bcca-6047-432c-9abc-0ec1597b463a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/b3e5bcca-6047-432c-9abc-0ec1597b463a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -662,8 +662,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -717,8 +717,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json index 483ad99cb2b6..1f5782cd10a0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -112,7 +112,7 @@ "9351b98e-77c4-44e2-bf8e-d990ae99baad" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/9351b98e-77c4-44e2-bf8e-d990ae99baad?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/9351b98e-77c4-44e2-bf8e-d990ae99baad?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -130,8 +130,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,8 +195,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -257,8 +257,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -316,8 +316,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -378,8 +378,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -412,7 +412,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -425,7 +425,7 @@ "fb2a42c3-0444-493f-a0fa-9621aa519be3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,8 +443,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmIyYTQyYzMtMDQ0NC00OTNmLWEwZmEtOTYyMWFhNTE5YmUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmIyYTQyYzMtMDQ0NC00OTNmLWEwZmEtOTYyMWFhNTE5YmUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json index 2a1a14579d64..e5e91146f35e 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json @@ -665,8 +665,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -715,7 +715,7 @@ "e5869a87-83b3-42bd-bf33-e9f605fae491" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e5869a87-83b3-42bd-bf33-e9f605fae491?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e5869a87-83b3-42bd-bf33-e9f605fae491?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +733,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkInterfaces/azsmnet8559?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODU1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkInterfaces/azsmnet8559?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODU1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Compute/virtualMachines/azsmnet7284\",\r\n \"sourceIPAddress\": \"10.17.3.4\",\r\n \"destinationIPAddress\": \"10.1.3.6\"\r\n}", "RequestHeaders": { @@ -906,7 +906,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -919,7 +919,7 @@ "9cc07329-1fde-4065-a053-e40cec04b207" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -937,8 +937,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Compute/virtualMachines/azsmnet7284\",\r\n \"sourceIPAddress\": \"10.17.3.4\",\r\n \"destinationIPAddress\": \"12.11.12.14\"\r\n}", "RequestHeaders": { @@ -980,7 +980,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -993,7 +993,7 @@ "7631bf51-f6c8-44ce-b10f-eb7a4f2b911a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,8 +1011,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/routeTables/azsmnet8754RT?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9yb3V0ZVRhYmxlcy9henNtbmV0ODc1NFJUP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/routeTables/azsmnet8754RT?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9yb3V0ZVRhYmxlcy9henNtbmV0ODc1NFJUP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json index c41050e1476a..5004e272b142 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json @@ -1047,8 +1047,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -1097,7 +1097,7 @@ "d475e169-eb3a-4ff1-85fd-1034f270cd84" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/d475e169-eb3a-4ff1-85fd-1034f270cd84?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/d475e169-eb3a-4ff1-85fd-1034f270cd84?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1115,8 +1115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Compute/virtualMachines/azsmnet2053\",\r\n \"storageLocation\": {\r\n \"filePath\": \"C:\\\\tmp\\\\Capture.cap\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1168,7 +1168,7 @@ "538eea79-b0ec-4dba-92e0-7c509ef0b7ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1186,8 +1186,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUzOGVlYTc5LWIwZWMtNGRiYS05MmUwLTdjNTA5ZWYwYjdlYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUzOGVlYTc5LWIwZWMtNGRiYS05MmUwLTdjNTA5ZWYwYjdlYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1242,8 +1242,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1366,8 +1366,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1403,7 +1403,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1416,7 +1416,7 @@ "ec9bb288-408a-41d0-ae84-f94fd6fedf27" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,8 +1434,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1496,8 +1496,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VjOWJiMjg4LTQwOGEtNDFkMC1hZTg0LWY5NGZkNmZlZGYyNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VjOWJiMjg4LTQwOGEtNDFkMC1hZTg0LWY5NGZkNmZlZGYyNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1552,8 +1552,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Compute/virtualMachines/azsmnet2053\",\r\n \"storageLocation\": {\r\n \"filePath\": \"C:\\\\tmp\\\\Capture.cap\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1605,7 +1605,7 @@ "4b310bbd-c281-4968-9e9a-b77e26e00f6e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1623,8 +1623,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiMzEwYmJkLWMyODEtNDk2OC05ZTlhLWI3N2UyNmUwMGY2ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiMzEwYmJkLWMyODEtNDk2OC05ZTlhLWI3N2UyNmUwMGY2ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1679,8 +1679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1738,8 +1738,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1800,8 +1800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1862,8 +1862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/stop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3N0b3A/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3N0b3A/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1896,7 +1896,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1909,7 +1909,7 @@ "c0703af9-ffc0-44bb-a758-a3ad480b26ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1927,8 +1927,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MwNzAzYWY5LWZmYzAtNDRiYi1hNzU4LWEzYWQ0ODBiMjZlYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MwNzAzYWY5LWZmYzAtNDRiYi1hNzU4LWEzYWQ0ODBiMjZlYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1983,8 +1983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2017,7 +2017,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2030,7 +2030,7 @@ "8702f3e3-43b6-4375-91cb-2702b45111c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2048,8 +2048,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3MDJmM2UzLTQzYjYtNDM3NS05MWNiLTI3MDJiNDUxMTFjNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3MDJmM2UzLTQzYjYtNDM3NS05MWNiLTI3MDJiNDUxMTFjNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json index 2bd834c02f21..adeee1464ac0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "35da7f93-8db2-43da-aaee-cbee33c4e92f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzVkYTdmOTMtOGRiMi00M2RhLWFhZWUtY2JlZTMzYzRlOTJmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzVkYTdmOTMtOGRiMi00M2RhLWFhZWUtY2JlZTMzYzRlOTJmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -510,7 +510,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -523,7 +523,7 @@ "2b8e410d-5522-437c-8e5f-16426f3e2b5a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -541,8 +541,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmI4ZTQxMGQtNTUyMi00MzdjLThlNWYtMTY0MjZmM2UyYjVhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmI4ZTQxMGQtNTUyMi00MzdjLThlNWYtMTY0MjZmM2UyYjVhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json index 7d7c856175ba..821324b2d08f 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet9901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "55728bff-dfad-4ff4-8aad-4ed50245308d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9901\",\r\n \"etag\": \"W/\\\"77513881-83f7-4b85-b66c-f2a740b9c821\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082/routes/azsmnet9901\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet640\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"77513881-83f7-4b85-b66c-f2a740b9c821\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -240,7 +240,7 @@ "5fc2c695-c0aa-4819-8ab7-2398c2fc9815" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -258,8 +258,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet640\",\r\n \"etag\": \"W/\\\"c9fdeab8-48f9-4c38-92b0-49b62d549d9b\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082/routes/azsmnet640\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"c9fdeab8-48f9-4c38-92b0-49b62d549d9b\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -313,7 +313,7 @@ "b7ab5b3a-9865-44ad-b846-198e40e424bf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,8 +331,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU3MjhiZmYtZGZhZC00ZmY0LThhYWQtNGVkNTAyNDUzMDhkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU3MjhiZmYtZGZhZC00ZmY0LThhYWQtNGVkNTAyNDUzMDhkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -386,8 +386,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -444,8 +444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,8 +508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -566,8 +566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -630,8 +630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -688,8 +688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,8 +752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjMmM2OTUtYzBhYS00ODE5LThhYjctMjM5OGMyZmM5ODE1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjMmM2OTUtYzBhYS00ODE5LThhYjctMjM5OGMyZmM5ODE1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -807,8 +807,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhYjViM2EtOTg2NS00NGFkLWI4NDYtMTk4ZTQwZTQyNGJmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhYjViM2EtOTg2NS00NGFkLWI4NDYtMTk4ZTQwZTQyNGJmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -895,7 +895,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -908,7 +908,7 @@ "0b9039be-45a5-44ea-a8b3-7fe457a1cd33" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -926,8 +926,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGI5MDM5YmUtNDVhNS00NGVhLWE4YjMtN2ZlNDU3YTFjZDMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGI5MDM5YmUtNDVhNS00NGVhLWE4YjMtN2ZlNDU3YTFjZDMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -981,8 +981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json index 024c07448d3a..6b8c7b0306d1 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet1701\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "db718a7a-2819-4a41-bffb-5feb27c54cd5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGI3MThhN2EtMjgxOS00YTQxLWJmZmItNWZlYjI3YzU0Y2Q1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGI3MThhN2EtMjgxOS00YTQxLWJmZmItNWZlYjI3YzU0Y2Q1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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 \"routeTable\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616\"\r\n }\r\n },\r\n \"name\": \"azsmnet5364\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -478,7 +478,7 @@ "3effea22-c97a-441b-bb82-cfb69337e2da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,8 +496,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2VmZmVhMjItYzk3YS00NDFiLWJiODItY2ZiNjkzMzdlMmRhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2VmZmVhMjItYzk3YS00NDFiLWJiODItY2ZiNjkzMzdlMmRhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926/subnets/azsmnet5364?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2L3N1Ym5ldHMvYXpzbW5ldDUzNjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926/subnets/azsmnet5364?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2L3N1Ym5ldHMvYXpzbW5ldDUzNjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json index c902904a598a..d98a8c9107da 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet8055\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "76a65d58-ba0b-4e45-bfe8-c136db94de75" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzZhNjVkNTgtYmEwYi00ZTQ1LWJmZTgtYzEzNmRiOTRkZTc1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzZhNjVkNTgtYmEwYi00ZTQ1LWJmZTgtYzEzNmRiOTRkZTc1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet7452\"\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "e16412d4-be93-44d3-adb5-c57c17c4b04b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2NDEyZDQtYmU5My00NGQzLWFkYjUtYzU3YzE3YzRiMDRiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2NDEyZDQtYmU5My00NGQzLWFkYjUtYzU3YzE3YzRiMDRiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -953,7 +953,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -966,7 +966,7 @@ "7ceea8ac-c52e-4ae5-9538-04668b6876d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,8 +984,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlZWE4YWMtYzUyZS00YWU1LTk1MzgtMDQ2NjhiNjg3NmQ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlZWE4YWMtYzUyZS00YWU1LTk1MzgtMDQ2NjhiNjg3NmQ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1039,8 +1039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1072,7 +1072,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1085,7 +1085,7 @@ "eb05162d-43fa-4257-a64e-cf2042a84145" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1103,8 +1103,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIwNTE2MmQtNDNmYS00MjU3LWE2NGUtY2YyMDQyYTg0MTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIwNTE2MmQtNDNmYS00MjU3LWE2NGUtY2YyMDQyYTg0MTQ1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1158,8 +1158,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1191,7 +1191,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1204,7 +1204,7 @@ "1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1222,8 +1222,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE5YTQwMTMtYTllZi00ZjIxLTk3M2MtN2U3ZWM5MWUzZWY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE5YTQwMTMtYTllZi00ZjIxLTk3M2MtN2U3ZWM5MWUzZWY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1277,8 +1277,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json index 8760a80a1ab2..02ee66eae483 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet9157\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlYzQyMWItZDFiOC00MzIwLThjNmItOWZmNTRjMWM4ZmE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlYzQyMWItZDFiOC00MzIwLThjNmItOWZmNTRjMWM4ZmE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet9228\"\r\n}", "RequestHeaders": { @@ -478,7 +478,7 @@ "bc0aef85-92ff-4497-91b2-395dbe161889" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,8 +496,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmMwYWVmODUtOTJmZi00NDk3LTkxYjItMzk1ZGJlMTYxODg5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmMwYWVmODUtOTJmZi00NDk3LTkxYjItMzk1ZGJlMTYxODg5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n },\r\n \"name\": \"azsmnet9790\"\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "47dc13fe-9612-4fd4-87bd-175568585ebe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDdkYzEzZmUtOTYxMi00ZmQ0LTg3YmQtMTc1NTY4NTg1ZWJlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDdkYzEzZmUtOTYxMi00ZmQ0LTg3YmQtMTc1NTY4NTg1ZWJlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"nextHopType\": \"None\"\r\n },\r\n \"name\": \"azsmnet4509\"\r\n}", "RequestHeaders": { @@ -844,7 +844,7 @@ "6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -862,8 +862,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmI2NjUwYTctM2IwZS00NmEyLWJiOGItY2JkMmRlMWQwZmUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmI2NjUwYTctM2IwZS00NmEyLWJiOGItY2JkMmRlMWQwZmUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -917,8 +917,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -975,8 +975,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1008,7 +1008,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1021,7 +1021,7 @@ "c12dc6cd-d1e1-4085-8d86-3eac68fdc33d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1039,8 +1039,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzEyZGM2Y2QtZDFlMS00MDg1LThkODYtM2VhYzY4ZmRjMzNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzEyZGM2Y2QtZDFlMS00MDg1LThkODYtM2VhYzY4ZmRjMzNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1094,8 +1094,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json index cd7c02ce37cb..1b27c1501acd 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json @@ -726,8 +726,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -776,7 +776,7 @@ "212074f1-8a6c-46e3-ba4f-d964fbe2c7c1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/212074f1-8a6c-46e3-ba4f-d964fbe2c7c1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/212074f1-8a6c-46e3-ba4f-d964fbe2c7c1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654/topology?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQvdG9wb2xvZ3k/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654/topology?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQvdG9wb2xvZ3k/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceGroupName\": \"azsmnet2771\"\r\n}", "RequestHeaders": { @@ -902,7 +902,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -918,7 +918,7 @@ "977c0f9b-3ef5-4b33-a841-46dbcee82fe1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json index 382e7c76626d..90da17bb11b2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet15\"\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "1ca0e867-c51b-4fef-851d-418988eaf043" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -133,8 +133,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTBlODY3LWM1MWItNGZlZi04NTFkLTQxODk4OGVhZjA0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTBlODY3LWM1MWItNGZlZi04NTFkLTQxODk4OGVhZjA0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -189,8 +189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -248,8 +248,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -366,7 +366,7 @@ "1cbebe68-0826-45e7-9f5d-870381f3a44c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,8 +384,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYmViZTY4LTA4MjYtNDVlNy05ZjVkLTg3MDM4MWYzYTQ0Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYmViZTY4LTA4MjYtNDVlNy05ZjVkLTg3MDM4MWYzYTQ0Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -440,8 +440,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -564,8 +564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDcvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDcvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -629,8 +629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376\"\r\n }\r\n },\r\n \"name\": \"azsmnet1522\"\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 },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "df09e118-3cc2-460c-8c31-14fef8a5b18d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -700,8 +700,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,8 +759,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -818,8 +818,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -877,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -936,8 +936,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -995,8 +995,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1113,8 +1113,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1172,8 +1172,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1231,8 +1231,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1290,8 +1290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1349,8 +1349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1408,8 +1408,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1467,8 +1467,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1526,8 +1526,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1585,8 +1585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1644,8 +1644,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1703,8 +1703,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1762,8 +1762,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1821,8 +1821,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1880,8 +1880,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1939,8 +1939,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1998,8 +1998,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2057,8 +2057,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2116,8 +2116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2175,8 +2175,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2234,8 +2234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2293,8 +2293,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2352,8 +2352,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2411,8 +2411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2470,8 +2470,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2529,8 +2529,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2588,8 +2588,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2647,8 +2647,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2706,8 +2706,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2765,8 +2765,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2824,8 +2824,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2883,8 +2883,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2942,8 +2942,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3001,8 +3001,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3060,8 +3060,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3119,8 +3119,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3178,8 +3178,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3237,8 +3237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3296,8 +3296,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,8 +3355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3414,8 +3414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3473,8 +3473,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3532,8 +3532,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3591,8 +3591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3650,8 +3650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3709,8 +3709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3768,8 +3768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3827,8 +3827,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3886,8 +3886,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3945,8 +3945,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4004,8 +4004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4063,8 +4063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4119,8 +4119,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4175,8 +4175,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4237,8 +4237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -4287,7 +4287,7 @@ "e7ecc344-7735-4bcd-876b-2ba738043a92" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e7ecc344-7735-4bcd-876b-2ba738043a92?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e7ecc344-7735-4bcd-876b-2ba738043a92?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4429,8 +4429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108/troubleshoot?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDgvdHJvdWJsZXNob290P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108/troubleshoot?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDgvdHJvdWJsZXNob290P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020\",\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Storage/storageAccounts/azsmnet62\",\r\n \"storagePath\": \"https://nwtestdbdzq4xsvskrei6.blob.core.windows.net/vhds\"\r\n }\r\n}", "RequestHeaders": { @@ -4472,7 +4472,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4485,7 +4485,7 @@ "de538d0a-5abe-455c-87cf-ad8890184879" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4503,8 +4503,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4562,8 +4562,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json index 5d04662ccffa..b1352a40cb04 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json @@ -714,8 +714,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -764,7 +764,7 @@ "c8656941-8f2e-429f-a1d8-e8b3f2cb69f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/c8656941-8f2e-429f-a1d8-e8b3f2cb69f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/c8656941-8f2e-429f-a1d8-e8b3f2cb69f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -847,8 +847,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NzAwMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NzAwMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -912,8 +912,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -977,8 +977,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,8 +1036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"default-allow-rdp\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/securityRules/default-allow-rdp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet3313\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000\"\r\n }\r\n ],\r\n \"resourceGuid\": \"a62c6ffb-62da-4576-82e9-a68a189ac62e\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg\",\r\n \"name\": \"azsmnet8060-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -1092,7 +1092,7 @@ "f6cbe102-c2a0-4c0f-89bf-f1b687a94704" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,8 +1110,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjZjYmUxMDItYzJhMC00YzBmLTg5YmYtZjFiNjg3YTk0NzA0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjZjYmUxMDItYzJhMC00YzBmLTg5YmYtZjFiNjg3YTk0NzA0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1166,8 +1166,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692/ipFlowVerify?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTIvaXBGbG93VmVyaWZ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692/ipFlowVerify?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTIvaXBGbG93VmVyaWZ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Compute/virtualMachines/azsmnet8060\",\r\n \"direction\": \"Outbound\",\r\n \"protocol\": \"TCP\",\r\n \"localPort\": \"80\",\r\n \"remotePort\": \"80\",\r\n \"localIPAddress\": \"10.17.3.4\",\r\n \"remoteIPAddress\": \"12.11.12.14\"\r\n}", "RequestHeaders": { @@ -1209,7 +1209,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/4264c957-2faa-4692-8c38-242a692e9799?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1222,7 +1222,7 @@ "4264c957-2faa-4692-8c38-242a692e9799" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/4264c957-2faa-4692-8c38-242a692e9799?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json index 1706ef515653..9a621745b15b 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json @@ -616,8 +616,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -666,7 +666,7 @@ "45676481-77c2-4ebe-bceb-39d71832bc4b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/45676481-77c2-4ebe-bceb-39d71832bc4b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/45676481-77c2-4ebe-bceb-39d71832bc4b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -749,8 +749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NDE5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NDE5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,8 +814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -879,8 +879,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"default-allow-rdp\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/securityRules/default-allow-rdp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet1718\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197\"\r\n }\r\n ],\r\n \"resourceGuid\": \"f93d2782-b4c9-4d0b-86d0-598825130420\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg\",\r\n \"name\": \"azsmnet2019-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -994,7 +994,7 @@ "6311637f-6802-48cb-b2df-da99aef9e651" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1012,8 +1012,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzMTE2MzdmLTY4MDItNDhjYi1iMmRmLWRhOTlhZWY5ZTY1MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzMTE2MzdmLTY4MDItNDhjYi1iMmRmLWRhOTlhZWY5ZTY1MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1068,8 +1068,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735/securityGroupView?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzUvc2VjdXJpdHlHcm91cFZpZXc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735/securityGroupView?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzUvc2VjdXJpdHlHcm91cFZpZXc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Compute/virtualMachines/azsmnet2019\"\r\n}", "RequestHeaders": { @@ -1111,7 +1111,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1124,7 +1124,7 @@ "eb1dc242-8ea0-44d9-abb5-711a6565abdb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json index 211e7bf6dd4c..0efc306131f2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet5890\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet5901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "71222849-9014-4ff9-9246-f27a40349b03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -133,8 +133,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -189,8 +189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -248,8 +248,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -378,8 +378,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet3365\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet4388\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet6124\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet2727\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet9197\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet2218\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9593\"\r\n },\r\n {\r\n \"name\": \"azsmnet6875\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet1710\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9515\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet5067\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet8609\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n },\r\n \"name\": \"azsmnet1800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n },\r\n \"name\": \"azsmnet3533\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -431,7 +431,7 @@ "8248159d-4703-478e-a374-caf55cf6018e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -449,8 +449,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,8 +508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -567,8 +567,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -626,8 +626,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -685,8 +685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -744,8 +744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -803,8 +803,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -921,8 +921,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -980,8 +980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1039,8 +1039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1098,8 +1098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1157,8 +1157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1216,8 +1216,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1275,8 +1275,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1334,8 +1334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,8 +1393,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1452,8 +1452,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1511,8 +1511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1570,8 +1570,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1629,8 +1629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1747,8 +1747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1806,8 +1806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1865,8 +1865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1924,8 +1924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1983,8 +1983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2039,8 +2039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2098,8 +2098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2163,8 +2163,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2228,8 +2228,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2265,7 +2265,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2293,8 +2293,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2324,7 +2324,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2352,8 +2352,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2402,7 +2402,7 @@ "b9b2c43b-9d12-4e3f-b1b2-c635b845cea0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2420,8 +2420,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"name\": \"azsmnet4961\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2476,7 +2476,7 @@ "4a050275-6023-4176-b8b9-1fb4c5495a05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2494,8 +2494,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2553,8 +2553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2618,8 +2618,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2677,8 +2677,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2727,7 +2727,7 @@ "31c62262-91c7-45ef-8c21-7d717c337a7c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2745,8 +2745,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"name\": \"azsmnet6912\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2801,7 +2801,7 @@ "5183ed56-0494-4453-a87f-f2fb9526ff4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2819,8 +2819,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2878,8 +2878,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2943,8 +2943,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,8 +3002,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3061,8 +3061,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3120,8 +3120,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3179,8 +3179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3238,8 +3238,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3297,8 +3297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3356,8 +3356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3415,8 +3415,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3474,8 +3474,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3533,8 +3533,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3592,8 +3592,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3651,8 +3651,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3710,8 +3710,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3769,8 +3769,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3828,8 +3828,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3887,8 +3887,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3946,8 +3946,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4005,8 +4005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4064,8 +4064,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4120,8 +4120,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4179,8 +4179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4238,8 +4238,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4297,8 +4297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4356,8 +4356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4415,8 +4415,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4474,8 +4474,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4530,8 +4530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -4564,7 +4564,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4574,7 +4574,7 @@ "796a9be1-c827-490e-b609-a4ad9394d044" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4592,8 +4592,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -4626,7 +4626,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4639,7 +4639,7 @@ "a3f3b726-de0a-4182-9301-e00e9195aba1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4657,8 +4657,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4716,8 +4716,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4775,8 +4775,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4834,8 +4834,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4890,8 +4890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4924,7 +4924,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4937,7 +4937,7 @@ "2f925788-a452-4929-b3ca-ea32aa3a2049" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4955,8 +4955,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5014,8 +5014,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5073,8 +5073,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json index 0efb805f49d7..6a6241b721d6 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -54,7 +54,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/WestUS/CheckDnsNameAvailability?domainNameLabel=domainnamelabel974&api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/WestUS/CheckDnsNameAvailability?domainNameLabel=domainnamelabel974&api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json index 27c907ea12ce..f60d98a40441 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3972\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "63049a58-9deb-4787-8a83-b3a45a2c5fe7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMwNDlhNTgtOWRlYi00Nzg3LThhODMtYjNhNDVhMmM1ZmU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMwNDlhNTgtOWRlYi00Nzg3LThhODMtYjNhNDVhMmM1ZmU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet8767\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "9f8c9c9e-889f-4fc1-b65d-8f015db88f41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWY4YzljOWUtODg5Zi00ZmMxLWI2NWQtOGYwMTVkYjg4ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWY4YzljOWUtODg5Zi00ZmMxLWI2NWQtOGYwMTVkYjg4ZjQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "95323aac-1af9-4bea-9208-20a3ff24e430" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/95323aac-1af9-4bea-9208-20a3ff24e430?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/95323aac-1af9-4bea-9208-20a3ff24e430?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/loadBalancingRules/azsmnet8160\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2241\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/frontendIPConfigurations/azsmnet8571\"\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\": \"azsmnet3666\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/inboundNatRules/azsmnet3666\"\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/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"6d43bb2b-1256-47c5-b80e-aa25fe73c9e2\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"6b94f5c4-a02b-433e-8301-ad3edf808428\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6d43bb2b-1256-47c5-b80e-aa25fe73c9e2\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "b970f182-e80e-40bd-ae0b-8565ec8d6362" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b970f182-e80e-40bd-ae0b-8565ec8d6362?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b970f182-e80e-40bd-ae0b-8565ec8d6362?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,8 +804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,8 +868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,8 +926,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -990,8 +990,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1039,7 +1039,7 @@ "34e7814c-9cc7-488b-a77c-b8fdae0a8309" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/34e7814c-9cc7-488b-a77c-b8fdae0a8309?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/34e7814c-9cc7-488b-a77c-b8fdae0a8309?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,8 +1057,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/loadBalancingRules/azsmnet8160\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2241\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\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/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"92f80873-6ab9-4054-a630-52d446e1b9ce\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"2dab4ece-7a8f-44b3-b328-2f6b34c8914c\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"92f80873-6ab9-4054-a630-52d446e1b9ce\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1109,7 +1109,7 @@ "9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,8 +1127,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1185,8 +1185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1249,8 +1249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1307,8 +1307,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1371,8 +1371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1420,7 +1420,7 @@ "57608f26-9c56-4a31-8690-b11106b25ef7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/57608f26-9c56-4a31-8690-b11106b25ef7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/57608f26-9c56-4a31-8690-b11106b25ef7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1438,8 +1438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "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/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/frontendIPConfigurations/azsmnet8571\"\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\": \"azsmnet7454\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/inboundNatRules/azsmnet7454\"\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/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"f5ead2b9-dfb3-4c70-b382-cb597537d3e9\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"044c708c-5c2f-434a-b7db-782cab3e1457\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f5ead2b9-dfb3-4c70-b382-cb597537d3e9\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1490,7 +1490,7 @@ "9735026c-2b5d-4417-885b-5eb7a95dddf5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9735026c-2b5d-4417-885b-5eb7a95dddf5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9735026c-2b5d-4417-885b-5eb7a95dddf5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1508,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1566,8 +1566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1630,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1752,8 +1752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752\"\r\n }\r\n },\r\n \"name\": \"azsmnet8571\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2241\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/probes/azsmnet359\"\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\": \"azsmnet8160\"\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\": \"azsmnet359\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\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\": \"azsmnet3666\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\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\": \"azsmnet7454\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "78dbe39e-320d-43c2-89f7-2599d29feafe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/78dbe39e-320d-43c2-89f7-2599d29feafe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/78dbe39e-320d-43c2-89f7-2599d29feafe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,8 +1819,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,8 +1877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1941,8 +1941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=InboundNatRules%2FbackendIPConfiguration", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9SW5ib3VuZE5hdFJ1bGVzJTJGYmFja2VuZElQQ29uZmlndXJhdGlvbg==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=InboundNatRules%2FbackendIPConfiguration", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9SW5ib3VuZE5hdFJ1bGVzJTJGYmFja2VuZElQQ29uZmlndXJhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,8 +2005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=BackendAddressPools%2FbackendIPConfigurations", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9QmFja2VuZEFkZHJlc3NQb29scyUyRmJhY2tlbmRJUENvbmZpZ3VyYXRpb25z", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=BackendAddressPools%2FbackendIPConfigurations", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9QmFja2VuZEFkZHJlc3NQb29scyUyRmJhY2tlbmRJUENvbmZpZ3VyYXRpb25z", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2069,8 +2069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=FrontendIPConfigurations%2FPublicIPAddress", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9RnJvbnRlbmRJUENvbmZpZ3VyYXRpb25zJTJGUHVibGljSVBBZGRyZXNz", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=FrontendIPConfigurations%2FPublicIPAddress", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9RnJvbnRlbmRJUENvbmZpZ3VyYXRpb25zJTJGUHVibGljSVBBZGRyZXNz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2133,8 +2133,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01&$expand=IPConfigurations%2FSubnet", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnMlMkZTdWJuZXQ=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01&$expand=IPConfigurations%2FSubnet", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnMlMkZTdWJuZXQ=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2197,8 +2197,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767?api-version=2016-12-01&$expand=IPConfigurations", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3L3N1Ym5ldHMvYXpzbW5ldDg3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnM=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767?api-version=2017-03-01&$expand=IPConfigurations", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3L3N1Ym5ldHMvYXpzbW5ldDg3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2261,8 +2261,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01&$expand=IPConfiguration", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbg==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01&$expand=IPConfiguration", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2325,8 +2325,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2358,7 +2358,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2371,7 +2371,7 @@ "c194265f-1af9-4890-9dd6-2f6bf311b1f0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2389,8 +2389,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzE5NDI2NWYtMWFmOS00ODkwLTlkZDYtMmY2YmYzMTFiMWYwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzE5NDI2NWYtMWFmOS00ODkwLTlkZDYtMmY2YmYzMTFiMWYwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2444,8 +2444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2498,8 +2498,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2531,7 +2531,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2544,7 +2544,7 @@ "f449f276-f45b-4305-915f-47738bf7f6fd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2562,8 +2562,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0OWYyNzYtZjQ1Yi00MzA1LTkxNWYtNDc3MzhiZjdmNmZkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0OWYyNzYtZjQ1Yi00MzA1LTkxNWYtNDc3MzhiZjdmNmZkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,8 +2617,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2650,7 +2650,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2663,7 +2663,7 @@ "8d49efb4-581f-4f95-a034-432313b88536" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2681,8 +2681,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ0OWVmYjQtNTgxZi00Zjk1LWEwMzQtNDMyMzEzYjg4NTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ0OWVmYjQtNTgxZi00Zjk1LWEwMzQtNDMyMzEzYjg4NTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2736,8 +2736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2769,7 +2769,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2782,7 +2782,7 @@ "b5d64b99-24d4-4fea-a1e4-60997d40b62c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2800,8 +2800,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjVkNjRiOTktMjRkNC00ZmVhLWExZTQtNjA5OTdkNDBiNjJjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjVkNjRiOTktMjRkNC00ZmVhLWExZTQtNjA5OTdkNDBiNjJjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2855,8 +2855,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2888,7 +2888,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2901,7 +2901,7 @@ "bf7ed969-af60-45e7-8c7b-f8d27b559259" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2919,8 +2919,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY3ZWQ5NjktYWY2MC00NWU3LThjN2ItZjhkMjdiNTU5MjU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY3ZWQ5NjktYWY2MC00NWU3LThjN2ItZjhkMjdiNTU5MjU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json index 232c2b5408a0..2f8b5baed7d9 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -154,7 +154,7 @@ "f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"9f9e478c-17a1-4c67-a1d8-6f5dbe36c7da\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"daf1ad3d-f575-4d15-84e5-170a27964e4d\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "bf766e1a-499b-4db3-9a49-7af4156734ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,7 +727,7 @@ "8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -758,7 +758,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json index 082078034fb3..83aac86fff61 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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/19feecf7-1262-46ca-81a7-31fb269a6325/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4458\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "30d02c07-62ad-4558-98d6-1cd51b453cfc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zMGQwMmMwNy02MmFkLTQ1NTgtOThkNi0xY2Q1MWI0NTNjZmM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zMGQwMmMwNy02MmFkLTQ1NTgtOThkNi0xY2Q1MWI0NTNjZmM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet29\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "6a608085-a8b7-4e79-91fc-57eef8cbe0b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YTYwODA4NS1hOGI3LTRlNzktOTFmYy01N2VlZjhjYmUwYjY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YTYwODA4NS1hOGI3LTRlNzktOTFmYy01N2VlZjhjYmUwYjY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "3fe7da97-a9b9-4adf-a265-5597f385db0e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zZmU3ZGE5Ny1hOWI5LTRhZGYtYTI2NS01NTk3ZjM4NWRiMGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zZmU3ZGE5Ny1hOWI5LTRhZGYtYTI2NS01NTk3ZjM4NWRiMGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -856,8 +856,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzMvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzMvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n }\r\n },\r\n \"name\": \"azsmnet2561\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": true,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "5414d5de-e04b-4b9a-ba01-72731d714424" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2561\",\r\n \"etag\": \"W/\\\"ba8d07bd-442b-4f06-ab8d-cfdd8693cd5d\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357/ipConfigurations/azsmnet2561\"\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\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.4,10.0.0.5\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"c6ebfb3a-f8cb-43c9-9225-940e6a855716\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"ba8d07bd-442b-4f06-ab8d-cfdd8693cd5d\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1045,7 +1045,7 @@ "190d20ca-f34d-4676-a46f-939e0784cec4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,8 +1063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2561\",\r\n \"etag\": \"W/\\\"6ce7ac36-c44a-4ca0-a090-a9785a0e0b13\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357/ipConfigurations/azsmnet2561\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": true,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\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\": \"c6ebfb3a-f8cb-43c9-9225-940e6a855716\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6ce7ac36-c44a-4ca0-a090-a9785a0e0b13\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1118,7 +1118,7 @@ "60437720-65a0-4ec6-8b38-cace67f6995d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1136,8 +1136,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1191,8 +1191,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1246,8 +1246,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1356,8 +1356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1411,8 +1411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1466,8 +1466,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1521,8 +1521,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1576,8 +1576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1631,8 +1631,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1686,8 +1686,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1741,8 +1741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1796,8 +1796,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1851,8 +1851,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1906,8 +1906,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1961,8 +1961,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2016,8 +2016,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2071,8 +2071,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2126,8 +2126,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2181,8 +2181,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2236,8 +2236,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2291,8 +2291,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2346,8 +2346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2401,8 +2401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2456,8 +2456,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2511,8 +2511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2566,8 +2566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2621,8 +2621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2676,8 +2676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2731,8 +2731,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2786,8 +2786,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2841,8 +2841,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2896,8 +2896,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,8 +2951,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3006,8 +3006,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3061,8 +3061,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3116,8 +3116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3171,8 +3171,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3226,8 +3226,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3281,8 +3281,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3336,8 +3336,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3391,8 +3391,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3446,8 +3446,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3501,8 +3501,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3556,8 +3556,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3611,8 +3611,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3666,8 +3666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3727,8 +3727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3782,8 +3782,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3843,8 +3843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3898,8 +3898,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3959,8 +3959,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4014,8 +4014,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4069,8 +4069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4124,8 +4124,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4179,8 +4179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4234,8 +4234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,8 +4289,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4344,8 +4344,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4399,8 +4399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4454,8 +4454,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4509,8 +4509,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4564,8 +4564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4619,8 +4619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4674,8 +4674,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4729,8 +4729,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4784,8 +4784,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4839,8 +4839,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4894,8 +4894,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4949,8 +4949,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5004,8 +5004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5059,8 +5059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5114,8 +5114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5169,8 +5169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5224,8 +5224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5279,8 +5279,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5334,8 +5334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5389,8 +5389,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5444,8 +5444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5499,8 +5499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5554,8 +5554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5609,8 +5609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5664,8 +5664,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5719,8 +5719,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5774,8 +5774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5829,8 +5829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5884,8 +5884,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5939,8 +5939,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5994,8 +5994,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6049,8 +6049,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,8 +6104,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6159,8 +6159,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6214,8 +6214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6269,8 +6269,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6324,8 +6324,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6379,8 +6379,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6434,8 +6434,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6489,8 +6489,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6544,8 +6544,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6599,8 +6599,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6654,8 +6654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6709,8 +6709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6764,8 +6764,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6819,8 +6819,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6874,8 +6874,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6929,8 +6929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6984,8 +6984,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7039,8 +7039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7094,8 +7094,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7149,8 +7149,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7204,8 +7204,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7259,8 +7259,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7314,8 +7314,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7369,8 +7369,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7424,8 +7424,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7479,8 +7479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7534,8 +7534,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7589,8 +7589,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7644,8 +7644,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7699,8 +7699,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7754,8 +7754,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7809,8 +7809,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7864,8 +7864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7919,8 +7919,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7974,8 +7974,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8029,8 +8029,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8084,8 +8084,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8139,8 +8139,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8194,8 +8194,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8249,8 +8249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8304,8 +8304,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8359,8 +8359,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8414,8 +8414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8469,8 +8469,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8524,8 +8524,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8579,8 +8579,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8634,8 +8634,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8689,8 +8689,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8744,8 +8744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8799,8 +8799,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8854,8 +8854,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8909,8 +8909,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8964,8 +8964,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9019,8 +9019,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9074,8 +9074,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9129,8 +9129,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9184,8 +9184,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9239,8 +9239,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9294,8 +9294,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9349,8 +9349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9404,8 +9404,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9459,8 +9459,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9514,8 +9514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9569,8 +9569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9624,8 +9624,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9679,8 +9679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9734,8 +9734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9789,8 +9789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9844,8 +9844,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9899,8 +9899,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9954,8 +9954,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10009,8 +10009,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10064,8 +10064,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json index 5b8d5fb67820..b2744435592a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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 \"2016-10-01\",\r\n \"2016-12-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 \"2016-10-01\",\r\n \"2016-12-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 \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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 \"2016-10-01\",\r\n \"2016-12-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 \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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 \"2016-10-01\",\r\n \"2017-03-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 \"2016-10-01\",\r\n \"2017-03-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 \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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 \"2016-10-01\",\r\n \"2017-03-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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet545\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -170,7 +170,7 @@ "63285282-cbb8-4a5b-876f-aa4b1a163faa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,8 +188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7547\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -241,7 +241,7 @@ "a7656262-acdf-45ca-9be7-124d86e5fff9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,8 +259,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc2NTYyNjItYWNkZi00NWNhLTliZTctMTI0ZDg2ZTVmZmY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc2NTYyNjItYWNkZi00NWNhLTliZTctMTI0ZDg2ZTVmZmY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -315,8 +315,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyODUyODItY2JiOC00YTViLTg3NmYtYWE0YjFhMTYzZmFhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyODUyODItY2JiOC00YTViLTg3NmYtYWE0YjFhMTYzZmFhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -371,8 +371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -430,8 +430,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -495,8 +495,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -619,8 +619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -737,7 +737,7 @@ "4a9c52ec-5191-49a1-b13c-a1690815ab65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,8 +755,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.2.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.2.1.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -808,7 +808,7 @@ "8663122b-5345-4a32-963d-2d0a08729eee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,8 +826,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YzUyZWMtNTE5MS00OWExLWIxM2MtYTE2OTA4MTVhYjY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YzUyZWMtNTE5MS00OWExLWIxM2MtYTE2OTA4MTVhYjY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -882,8 +882,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODY2MzEyMmItNTM0NS00YTMyLTk2M2QtMmQwYTA4NzI5ZWVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODY2MzEyMmItNTM0NS00YTMyLTk2M2QtMmQwYTA4NzI5ZWVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -997,8 +997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1056,8 +1056,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1121,8 +1121,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1186,8 +1186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n }\r\n },\r\n \"name\": \"azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1239,7 +1239,7 @@ "b132e059-7eb1-469f-914d-25c56708cedf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,8 +1257,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n }\r\n },\r\n \"name\": \"azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1310,7 +1310,7 @@ "6e41a746-ca55-49e5-88f9-fe74998f1c05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1328,8 +1328,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1387,8 +1387,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1446,8 +1446,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1505,8 +1505,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1564,8 +1564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1623,8 +1623,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1682,8 +1682,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1741,8 +1741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1800,8 +1800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1859,8 +1859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1918,8 +1918,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1977,8 +1977,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,8 +2036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2095,8 +2095,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2154,8 +2154,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2213,8 +2213,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2272,8 +2272,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2331,8 +2331,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2390,8 +2390,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2449,8 +2449,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2508,8 +2508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2567,8 +2567,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2626,8 +2626,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2685,8 +2685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2744,8 +2744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2803,8 +2803,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2862,8 +2862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2921,8 +2921,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2980,8 +2980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3039,8 +3039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3098,8 +3098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3157,8 +3157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3216,8 +3216,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3275,8 +3275,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3334,8 +3334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3393,8 +3393,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3452,8 +3452,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3511,8 +3511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3570,8 +3570,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3629,8 +3629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3688,8 +3688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3747,8 +3747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3806,8 +3806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3865,8 +3865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3924,8 +3924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3983,8 +3983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4042,8 +4042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4101,8 +4101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4160,8 +4160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4219,8 +4219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4278,8 +4278,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4337,8 +4337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4396,8 +4396,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4455,8 +4455,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4514,8 +4514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4573,8 +4573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4632,8 +4632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4691,8 +4691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4747,8 +4747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,8 +4806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4865,8 +4865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4924,8 +4924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4983,8 +4983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5042,8 +5042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5101,8 +5101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5160,8 +5160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5219,8 +5219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5278,8 +5278,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5337,8 +5337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5396,8 +5396,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5455,8 +5455,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5514,8 +5514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5573,8 +5573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5632,8 +5632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5691,8 +5691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5750,8 +5750,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5809,8 +5809,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5868,8 +5868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5927,8 +5927,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5986,8 +5986,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6045,8 +6045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,8 +6104,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6163,8 +6163,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6222,8 +6222,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6281,8 +6281,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6340,8 +6340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6399,8 +6399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6458,8 +6458,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6517,8 +6517,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6576,8 +6576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6635,8 +6635,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6694,8 +6694,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6753,8 +6753,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6812,8 +6812,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6871,8 +6871,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6930,8 +6930,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6989,8 +6989,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7048,8 +7048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7107,8 +7107,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7166,8 +7166,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7225,8 +7225,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7284,8 +7284,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7343,8 +7343,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7402,8 +7402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7461,8 +7461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7520,8 +7520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7579,8 +7579,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7638,8 +7638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7697,8 +7697,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7756,8 +7756,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7815,8 +7815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7874,8 +7874,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7933,8 +7933,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7992,8 +7992,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8051,8 +8051,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8110,8 +8110,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8169,8 +8169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8228,8 +8228,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8287,8 +8287,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8346,8 +8346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8402,8 +8402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8458,8 +8458,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8520,8 +8520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8576,8 +8576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8638,8 +8638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "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/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9299\",\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753/ipConfigurations/azsmnet9299\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"bgpPeeringAddress\": \"10.2.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"2fda482d-10af-4ff6-96ff-9b93a6827d20\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753\",\r\n \"name\": \"azsmnet6753\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet593\",\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/ipConfigurations/azsmnet593\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"3a28bce8-a0c8-411e-860a-a43a47f90ac1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880\",\r\n \"name\": \"azsmnet7880\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -8691,7 +8691,7 @@ "34bf47da-6691-4dbd-9400-89cb5668f526" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8709,8 +8709,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "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/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet593\",\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/ipConfigurations/azsmnet593\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"3a28bce8-a0c8-411e-860a-a43a47f90ac1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880\",\r\n \"name\": \"azsmnet7880\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9299\",\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753/ipConfigurations/azsmnet9299\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"bgpPeeringAddress\": \"10.2.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"2fda482d-10af-4ff6-96ff-9b93a6827d20\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753\",\r\n \"name\": \"azsmnet6753\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -8762,7 +8762,7 @@ "ad4396c8-658d-4849-afd3-e0f31838df91" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8780,8 +8780,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRiZjQ3ZGEtNjY5MS00ZGJkLTk0MDAtODljYjU2NjhmNTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRiZjQ3ZGEtNjY5MS00ZGJkLTk0MDAtODljYjU2NjhmNTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8836,8 +8836,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8892,8 +8892,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ0Mzk2YzgtNjU4ZC00ODQ5LWFmZDMtZTBmMzE4MzhkZjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ0Mzk2YzgtNjU4ZC00ODQ5LWFmZDMtZTBmMzE4MzhkZjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8948,8 +8948,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9004,8 +9004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getLearnedRoutes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getLearnedRoutes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9041,7 +9041,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9069,8 +9069,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZTFiZDFlNzAtOTI4OS00M2E2LThjY2MtY2I0MjI2MGJmZmM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZTFiZDFlNzAtOTI4OS00M2E2LThjY2MtY2I0MjI2MGJmZmM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9100,7 +9100,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9128,8 +9128,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getAdvertisedRoutes?peer=13.93.225.45&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTMuOTMuMjI1LjQ1JmFwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getAdvertisedRoutes?peer=13.93.225.45&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTMuOTMuMjI1LjQ1JmFwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9165,7 +9165,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9193,8 +9193,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTFjMWI3YTktZmU1Yi00Njg2LWI0MGEtMzkzODUxNzI4MmJiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTFjMWI3YTktZmU1Yi00Njg2LWI0MGEtMzkzODUxNzI4MmJiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9224,7 +9224,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9252,8 +9252,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getBgpPeerStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getBgpPeerStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9289,7 +9289,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9317,8 +9317,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjAwMmUyZWItYjdiZC00YmFlLTkxMTMtMjNlM2UzMDI2OWFiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjAwMmUyZWItYjdiZC00YmFlLTkxMTMtMjNlM2UzMDI2OWFiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9348,7 +9348,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json index d6ff23ddebdf..37cf76274276 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -154,7 +154,7 @@ "4b8f4da0-a5eb-4322-a768-7897aee4afb8" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -388,7 +388,7 @@ "5c7f3c04-22aa-4bcb-9b3f-b37081b187cd" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -622,7 +622,7 @@ "6058ae5d-6bc6-4d0a-af6f-db9aa1f92372" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +650,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,7 +701,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,7 +752,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -866,7 +866,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -967,7 +967,7 @@ "3c0f845a-886c-4824-98d7-99892538c8d2" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +995,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -1036,7 +1036,7 @@ "d92cddce-5df0-46b3-b974-40633cde5f4a" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1064,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1115,7 +1115,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1166,7 +1166,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1217,7 +1217,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1268,7 +1268,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1319,7 +1319,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1370,7 +1370,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1421,7 +1421,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1472,7 +1472,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1523,7 +1523,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1574,7 +1574,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1625,7 +1625,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1676,7 +1676,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1727,7 +1727,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1778,7 +1778,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1829,7 +1829,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1880,7 +1880,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1931,7 +1931,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1982,7 +1982,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2033,7 +2033,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2084,7 +2084,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2135,7 +2135,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2186,7 +2186,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2237,7 +2237,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2288,7 +2288,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2339,7 +2339,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2390,7 +2390,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2441,7 +2441,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2492,7 +2492,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2543,7 +2543,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2594,7 +2594,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2645,7 +2645,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2696,7 +2696,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2747,7 +2747,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2798,7 +2798,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2849,7 +2849,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,7 +2900,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,7 +2951,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,7 +3002,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,7 +3053,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3104,7 +3104,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3155,7 +3155,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3206,7 +3206,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3257,7 +3257,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3308,7 +3308,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3359,7 +3359,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3410,7 +3410,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3461,7 +3461,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3512,7 +3512,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3563,7 +3563,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3614,7 +3614,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3665,7 +3665,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3716,7 +3716,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3767,7 +3767,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3818,7 +3818,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3869,7 +3869,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3926,7 +3926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3977,7 +3977,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4034,7 +4034,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -4075,7 +4075,7 @@ "432d7bf3-ed0f-47af-abde-683f1d4d9614" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4103,7 +4103,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -4144,7 +4144,7 @@ "f11e8b40-095e-45e9-a2ac-4e54f2ce0750" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4172,7 +4172,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4223,7 +4223,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4274,7 +4274,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4325,7 +4325,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4382,7 +4382,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4433,7 +4433,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4490,7 +4490,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4541,7 +4541,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4592,7 +4592,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4643,7 +4643,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4694,7 +4694,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4751,7 +4751,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4804,7 +4804,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4836,7 +4836,7 @@ "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4845,7 +4845,7 @@ "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=2016-12-01" + "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-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4867,7 +4867,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4918,7 +4918,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json index a948a5e446bf..132f707c3425 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "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\": \"azsmnet6309\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "eb5f29b8-5fab-44b4-b927-5466cfb76a3f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -388,7 +388,7 @@ "6e2f0013-ed22-4360-b73f-5bd09a4ace9a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -518,7 +518,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -572,7 +572,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -632,7 +632,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -692,7 +692,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "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\": \"azsmnet4984\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", "RequestHeaders": { @@ -733,7 +733,7 @@ "8c869573-fa12-4c39-b527-1d87586fb4c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -761,7 +761,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -812,7 +812,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,7 +863,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -914,7 +914,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -965,7 +965,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1016,7 +1016,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1067,7 +1067,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,7 +1118,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,7 +1169,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1220,7 +1220,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1271,7 +1271,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1322,7 +1322,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1373,7 +1373,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1424,7 +1424,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1475,7 +1475,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1526,7 +1526,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1577,7 +1577,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1628,7 +1628,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1679,7 +1679,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1730,7 +1730,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1781,7 +1781,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1832,7 +1832,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1883,7 +1883,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1934,7 +1934,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1985,7 +1985,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,7 +2036,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2087,7 +2087,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2138,7 +2138,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2189,7 +2189,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2240,7 +2240,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2291,7 +2291,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2342,7 +2342,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2393,7 +2393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2444,7 +2444,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2495,7 +2495,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2546,7 +2546,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2597,7 +2597,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2648,7 +2648,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2699,7 +2699,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2750,7 +2750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2801,7 +2801,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2852,7 +2852,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2903,7 +2903,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2954,7 +2954,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3005,7 +3005,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3056,7 +3056,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,7 +3107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3158,7 +3158,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3209,7 +3209,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3260,7 +3260,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3311,7 +3311,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3362,7 +3362,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3413,7 +3413,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3464,7 +3464,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3515,7 +3515,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3566,7 +3566,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3617,7 +3617,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3674,7 +3674,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -3715,7 +3715,7 @@ "b8001171-5f00-409e-87fa-e09c8a5b6379" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3743,7 +3743,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3794,7 +3794,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3848,7 +3848,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3908,7 +3908,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"ef41f4e3-e37c-476c-b51a-af4d497e90c5\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4984\",\r\n \"etag\": \"W/\\\"ef41f4e3-e37c-476c-b51a-af4d497e90c5\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390/ipConfigurations/azsmnet4984\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734\"\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\": \"80eb4542-6628-4989-a71d-39c6f068cd88\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"4ab7c1aa-4feb-4aea-8359-f841f6196a5d\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140\",\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\": \"65b63583-7d30-4f32-acad-93ec0d844814\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n }\r\n}", "RequestHeaders": { @@ -3949,7 +3949,7 @@ "1a59d7cd-2129-4c2a-a110-32a47303d041" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3977,7 +3977,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4028,7 +4028,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4079,7 +4079,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4130,7 +4130,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4181,7 +4181,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4232,7 +4232,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,7 +4289,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey/reset?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey/reset?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyLength\": 50\r\n}", "RequestHeaders": { @@ -4327,7 +4327,7 @@ "b69cde55-32c9-4a0e-af56-dcdb6dbce3c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4336,7 +4336,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4358,7 +4358,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4409,7 +4409,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4460,7 +4460,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4511,7 +4511,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4562,7 +4562,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4619,7 +4619,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4670,7 +4670,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4727,7 +4727,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"TestSharedKeyValue\"\r\n}", "RequestHeaders": { @@ -4765,7 +4765,7 @@ "bb963c2b-266c-4f13-9b03-5fc08f2b72e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bb963c2b-266c-4f13-9b03-5fc08f2b72e9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bb963c2b-266c-4f13-9b03-5fc08f2b72e9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json index 6897cd7e9f13..4bb8134e88dc 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-01\",\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\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\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\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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 \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.0.1\",\r\n \"peerWeight\": 3\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "78d32121-6ff0-4710-a9e8-2f78bea12c93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzhkMzIxMjEtNmZmMC00NzEwLWE5ZTgtMmY3OGJlYTEyYzkzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzhkMzIxMjEtNmZmMC00NzEwLWE5ZTgtMmY3OGJlYTEyYzkzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"azsmnet5521\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "8beafd91-d79d-4589-97b2-5b325389aefc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJlYWZkOTEtZDc5ZC00NTg5LTk3YjItNWIzMjUzODlhZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJlYWZkOTEtZDc5ZC00NTg5LTk3YjItNWIzMjUzODlhZWZjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -661,7 +661,7 @@ "e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTk5ZTNiZjYtYzQxZC00YTFiLTgzYzgtNWIxZGI5MmMzOGU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTk5ZTNiZjYtYzQxZC00YTFiLTgzYzgtNWIxZGI5MmMzOGU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -856,8 +856,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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\": \"azsmnet1876\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "a6b8605e-b2cb-41c1-b1aa-e513acca5f3d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,8 +1045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1100,8 +1100,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,8 +1155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1210,8 +1210,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1265,8 +1265,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1320,8 +1320,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1375,8 +1375,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1430,8 +1430,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1485,8 +1485,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1540,8 +1540,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1595,8 +1595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1650,8 +1650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1705,8 +1705,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1760,8 +1760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1815,8 +1815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1870,8 +1870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1925,8 +1925,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1980,8 +1980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2035,8 +2035,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2090,8 +2090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2145,8 +2145,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2200,8 +2200,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2255,8 +2255,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2310,8 +2310,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2365,8 +2365,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2420,8 +2420,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2475,8 +2475,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2530,8 +2530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2585,8 +2585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2640,8 +2640,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2695,8 +2695,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2750,8 +2750,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2805,8 +2805,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2860,8 +2860,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2915,8 +2915,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2970,8 +2970,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3025,8 +3025,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3080,8 +3080,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3135,8 +3135,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3190,8 +3190,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3245,8 +3245,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3300,8 +3300,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,8 +3355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3410,8 +3410,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3465,8 +3465,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3520,8 +3520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3575,8 +3575,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3630,8 +3630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3685,8 +3685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3740,8 +3740,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3795,8 +3795,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3850,8 +3850,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3905,8 +3905,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3960,8 +3960,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4015,8 +4015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4070,8 +4070,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4125,8 +4125,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4180,8 +4180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4235,8 +4235,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4290,8 +4290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4345,8 +4345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4400,8 +4400,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4461,8 +4461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"32c67b34-47a9-4785-9eb9-8722485395b5\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1876\",\r\n \"etag\": \"W/\\\"32c67b34-47a9-4785-9eb9-8722485395b5\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443/ipConfigurations/azsmnet1876\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"c71d5327-5c99-4026-ab58-7ffc07376d0e\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"63abf0e6-b040-4de6-a636-cbd4774187c7\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914\",\r\n \"location\": \"westus\",\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 \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.0.1\",\r\n \"peerWeight\": 3\r\n },\r\n \"resourceGuid\": \"ba330a4b-c210-44c5-97af-d1e51b107ff8\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true\r\n }\r\n}", "RequestHeaders": { @@ -4513,7 +4513,7 @@ "eb58d262-bbdf-45a2-a70d-70193aa3ee9a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4531,8 +4531,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4586,8 +4586,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4641,8 +4641,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4696,8 +4696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4751,8 +4751,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,8 +4806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4867,8 +4867,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4928,8 +4928,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4982,8 +4982,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5015,7 +5015,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operationResults/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operationResults/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -5028,7 +5028,7 @@ "51dc46ba-57d0-4629-b51f-aac4c79cd525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5046,8 +5046,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5101,8 +5101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5156,8 +5156,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5211,8 +5211,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5266,8 +5266,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json index 7568b934988f..36fd5f5e3db8 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithIpsecPoliciesTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/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 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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\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 \"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 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 ],\r\n \"apiVersions\": [\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\": \"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 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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\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-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-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-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\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\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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-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-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\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-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\": \"routeFilters\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/87a5ac72-534b-4d65-a553-b9b956d6b8d8/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 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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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\": \"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 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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\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-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-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"routeFilters\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5537,4 +5537,4 @@ "Variables": { "SubscriptionId": "87a5ac72-534b-4d65-a553-b9b956d6b8d8" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json index 4ff06a86938b..44f72614b643 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "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\": \"azsmnet5620\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -388,7 +388,7 @@ "9efcedaf-872b-4cd4-b72f-8eee2e7e207c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,7 +641,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "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\": \"azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n }\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 }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "4710b952-c826-4161-8f27-50bdd7631b76" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,7 +710,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"fc004675-36b4-4cac-8874-dd6c8b58dda3\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"etag\": \"W/\\\"fc004675-36b4-4cac-8874-dd6c8b58dda3\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/ipConfigurations/azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\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\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"resourceGuid\": \"f64a0bc5-ce07-40d6-b0cf-0f0d2f82dfd4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -751,7 +751,7 @@ "2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -779,7 +779,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -830,7 +830,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -881,7 +881,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -932,7 +932,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -983,7 +983,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1034,7 +1034,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1085,7 +1085,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1136,7 +1136,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1187,7 +1187,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1238,7 +1238,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1289,7 +1289,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1340,7 +1340,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1391,7 +1391,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1442,7 +1442,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1493,7 +1493,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1544,7 +1544,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1595,7 +1595,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1646,7 +1646,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1697,7 +1697,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1748,7 +1748,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1799,7 +1799,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1850,7 +1850,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1901,7 +1901,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1952,7 +1952,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2003,7 +2003,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2054,7 +2054,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2105,7 +2105,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2156,7 +2156,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2207,7 +2207,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2258,7 +2258,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2309,7 +2309,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2360,7 +2360,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2411,7 +2411,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2462,7 +2462,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2513,7 +2513,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2564,7 +2564,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2615,7 +2615,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2666,7 +2666,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2717,7 +2717,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2768,7 +2768,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2819,7 +2819,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2870,7 +2870,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2921,7 +2921,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2972,7 +2972,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3023,7 +3023,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3074,7 +3074,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3125,7 +3125,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3176,7 +3176,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3227,7 +3227,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3278,7 +3278,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3329,7 +3329,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3380,7 +3380,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3431,7 +3431,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3482,7 +3482,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3533,7 +3533,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3584,7 +3584,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3635,7 +3635,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3692,7 +3692,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3743,7 +3743,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3800,7 +3800,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3857,7 +3857,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3908,7 +3908,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3959,7 +3959,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4010,7 +4010,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4061,7 +4061,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4112,7 +4112,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4163,7 +4163,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4214,7 +4214,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4265,7 +4265,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4316,7 +4316,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4367,7 +4367,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4418,7 +4418,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4469,7 +4469,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4520,7 +4520,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4571,7 +4571,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4622,7 +4622,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4673,7 +4673,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4724,7 +4724,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4775,7 +4775,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4826,7 +4826,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4877,7 +4877,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4928,7 +4928,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4979,7 +4979,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5030,7 +5030,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5081,7 +5081,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5132,7 +5132,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5183,7 +5183,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5234,7 +5234,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5285,7 +5285,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5336,7 +5336,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5387,7 +5387,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5438,7 +5438,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5489,7 +5489,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5540,7 +5540,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5591,7 +5591,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5642,7 +5642,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5693,7 +5693,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/reset?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/reset?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"etag\": \"W/\\\"bed58f57-1501-4d2a-89ba-36596e39d7bb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"etag\": \"W/\\\"bed58f57-1501-4d2a-89ba-36596e39d7bb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/ipConfigurations/azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"resourceGuid\": \"f64a0bc5-ce07-40d6-b0cf-0f0d2f82dfd4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -5731,7 +5731,7 @@ "6e321e8b-08a6-4dac-9cc1-8538d6076418" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5740,7 +5740,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5762,7 +5762,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5813,7 +5813,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5864,7 +5864,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5915,7 +5915,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5972,7 +5972,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6025,7 +6025,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -6057,7 +6057,7 @@ "b9215e35-1973-47d3-82e9-3b589a195598" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6066,7 +6066,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -6088,7 +6088,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6139,7 +6139,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6190,7 +6190,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6241,7 +6241,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6292,7 +6292,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json index 52e4f2ba7502..b760fd2e4448 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -154,7 +154,7 @@ "df7c664a-b966-4896-a71c-e9b69c5d241d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "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\": \"azsmnet7750\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "4c6e88f6-ad73-44ae-8ef4-a6eb09648889" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -622,7 +622,7 @@ "218ab0aa-28e0-4540-ad17-302f788f97f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +650,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,7 +701,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,7 +752,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -866,7 +866,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "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\": \"azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -967,7 +967,7 @@ "725a8207-73b2-4243-8160-027ecd1459c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +995,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"27c4fa95-ba93-42c4-b0ef-1a00e8ecf6c0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"27c4fa95-ba93-42c4-b0ef-1a00e8ecf6c0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n }\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1036,7 +1036,7 @@ "548cbf18-9be7-408e-8dd7-c88eea8ccc44" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1064,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"etag\": \"W/\\\"ee0ba610-55d6-41be-87a9-24c72af4305e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"ee0ba610-55d6-41be-87a9-24c72af4305e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", @@ -1107,7 +1107,7 @@ "d9502d1c-0779-47c8-8eb8-dc11d001b75c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1135,7 +1135,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"2c449533-9222-49b1-a424-33f62dcf485f\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"2c449533-9222-49b1-a424-33f62dcf485f\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1176,7 +1176,7 @@ "20852412-192d-4114-8fa5-30be5be0038d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1204,7 +1204,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"8b0a76db-7ab8-448f-8007-5e9b94824109\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"8b0a76db-7ab8-448f-8007-5e9b94824109\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ]\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1245,7 +1245,7 @@ "24ba035c-dcb5-46a8-a399-149fc7a893f3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,7 +1273,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"bc01aa61-d64b-4cac-87e0-0a6d10fbc357\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"bc01aa61-d64b-4cac-87e0-0a6d10fbc357\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1314,7 +1314,7 @@ "8c6beedd-bd46-4d6a-b918-68dd9df39270" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1342,7 +1342,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,7 +1393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1444,7 +1444,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1495,7 +1495,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1546,7 +1546,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1597,7 +1597,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1648,7 +1648,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1699,7 +1699,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1750,7 +1750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1852,7 +1852,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1903,7 +1903,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1954,7 +1954,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,7 +2005,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2056,7 +2056,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2107,7 +2107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2158,7 +2158,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2209,7 +2209,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2260,7 +2260,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2311,7 +2311,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2362,7 +2362,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2413,7 +2413,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2464,7 +2464,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2515,7 +2515,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2566,7 +2566,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,7 +2617,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2668,7 +2668,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2719,7 +2719,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2770,7 +2770,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2821,7 +2821,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2872,7 +2872,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2923,7 +2923,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2974,7 +2974,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3025,7 +3025,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3076,7 +3076,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3127,7 +3127,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3178,7 +3178,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3229,7 +3229,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3280,7 +3280,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3331,7 +3331,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3382,7 +3382,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3433,7 +3433,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3484,7 +3484,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3535,7 +3535,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3586,7 +3586,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3637,7 +3637,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3688,7 +3688,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3739,7 +3739,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3790,7 +3790,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3841,7 +3841,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3892,7 +3892,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3943,7 +3943,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3994,7 +3994,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4045,7 +4045,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4096,7 +4096,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4147,7 +4147,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4198,7 +4198,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4255,7 +4255,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4306,7 +4306,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4363,7 +4363,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4415,7 +4415,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4473,7 +4473,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4524,7 +4524,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4581,7 +4581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4632,7 +4632,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4689,7 +4689,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4740,7 +4740,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4797,7 +4797,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4848,7 +4848,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4899,7 +4899,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4950,7 +4950,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5001,7 +5001,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5052,7 +5052,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/generatevpnclientpackage?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/generatevpnclientpackage?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"ProcessorArchitecture\": \"Amd64\"\r\n}", "RequestHeaders": { @@ -5093,7 +5093,7 @@ "434bbfd2-b60a-4b02-98a5-d395c70cf5b7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5102,7 +5102,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5124,7 +5124,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5175,7 +5175,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5226,7 +5226,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5277,7 +5277,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5328,7 +5328,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5379,7 +5379,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5430,7 +5430,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json index 27bd1568b9a4..ef8b88ae4458 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\"\r\n}", "RequestHeaders": { @@ -164,7 +164,7 @@ "fbb24308-d599-45e4-a362-a999ca8fc477" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/fbb24308-d599-45e4-a362-a999ca8fc477?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/fbb24308-d599-45e4-a362-a999ca8fc477?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,8 +182,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -304,8 +304,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -337,7 +337,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -350,7 +350,7 @@ "0efa3a1b-3d5e-4924-8bfb-be23c225d20e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzBlZmEzYTFiLTNkNWUtNDkyNC04YmZiLWJlMjNjMjI1ZDIwZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzBlZmEzYTFiLTNkNWUtNDkyNC04YmZiLWJlMjNjMjI1ZDIwZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json index e680c3d9052f..7aaf0bc4f44d 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3dad47db-7a5d-4764-b1a8-45e4c54ecb14" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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}", "RequestHeaders": { @@ -414,7 +414,7 @@ "33b0df37-361c-4610-a62c-2d0bd11d537e" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -658,7 +658,7 @@ "5cd1d728-5a6d-42ea-9e42-2cef079e7d37" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5cd1d728-5a6d-42ea-9e42-2cef079e7d37?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -728,7 +728,7 @@ "d42fc5c0-cca6-4177-bd4d-8308ba4890c1" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d42fc5c0-cca6-4177-bd4d-8308ba4890c1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,8 +804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,8 +868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,8 +926,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -990,8 +990,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -1039,7 +1039,7 @@ "7efab2e5-175c-433e-9f27-b08984133322" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7efab2e5-175c-433e-9f27-b08984133322?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,8 +1057,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -1109,7 +1109,7 @@ "9b45499d-e838-4b4e-9ce1-01e6d473764c" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9b45499d-e838-4b4e-9ce1-01e6d473764c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,8 +1127,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1185,8 +1185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1249,8 +1249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1307,8 +1307,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1371,8 +1371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -1420,7 +1420,7 @@ "278e7e1b-2137-4663-9235-2bad3fdfc102" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/278e7e1b-2137-4663-9235-2bad3fdfc102?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1438,8 +1438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -1490,7 +1490,7 @@ "ede67ae0-aeba-49e6-90df-5a5b53c7f6ce" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ede67ae0-aeba-49e6-90df-5a5b53c7f6ce?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1508,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1566,8 +1566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1630,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1752,8 +1752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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}", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "f8b75ac4-426a-4583-9e9c-4676d5661dfd" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/f8b75ac4-426a-4583-9e9c-4676d5661dfd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,8 +1819,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,8 +1877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1941,8 +1941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,8 +2005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2038,7 +2038,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2051,7 +2051,7 @@ "892ddc33-a56a-451c-9f96-b4cf3dc159d9" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2069,8 +2069,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2124,8 +2124,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2178,8 +2178,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2211,7 +2211,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2224,7 +2224,7 @@ "d91d7f13-838b-49b3-a16c-9fc285b57bd1" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2242,8 +2242,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2297,8 +2297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2330,7 +2330,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2343,7 +2343,7 @@ "1a21769a-b229-45d2-a730-3d208ae11c57" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2361,8 +2361,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2416,8 +2416,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2449,7 +2449,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2462,7 +2462,7 @@ "fd9fc03d-a4bb-43e4-9397-c11e79c53925" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2480,8 +2480,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2535,8 +2535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2568,7 +2568,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2581,7 +2581,7 @@ "5fbb2994-1d41-4726-ae24-018ff2a4399b" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2599,8 +2599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json index b09cbc549551..579f06f4a955 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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}", "RequestHeaders": { @@ -167,7 +167,7 @@ "9a4ad2fd-6e62-424d-b1ec-14962cca9cf4" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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}", "RequestHeaders": { @@ -411,7 +411,7 @@ "bef8bf1d-d1fc-4068-8735-3977bb3c34d9" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bef8bf1d-d1fc-4068-8735-3977bb3c34d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -727,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -760,7 +760,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -773,7 +773,7 @@ "7adb7a95-e3c0-45ff-8fc1-1180b47ae47c" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -791,8 +791,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -846,8 +846,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -879,7 +879,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -892,7 +892,7 @@ "d02ab371-ea0c-4a29-b3c1-a316877805ee" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -910,8 +910,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json index 557cc9bd3c91..33094a5f9c57 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\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\": \"azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "963fb0d9-d9da-442b-ba19-ed37d225501f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzk2M2ZiMGQ5LWQ5ZGEtNDQyYi1iYTE5LWVkMzdkMjI1NTAxZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzk2M2ZiMGQ5LWQ5ZGEtNDQyYi1iYTE5LWVkMzdkMjI1NTAxZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\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\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "5409a23a-b969-4ec0-b876-2d7fa5fd4bbc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5409a23a-b969-4ec0-b876-2d7fa5fd4bbc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5409a23a-b969-4ec0-b876-2d7fa5fd4bbc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"SourceIP\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\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\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "11fc7019-b17b-489e-b2b3-0f1f043f637b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/11fc7019-b17b-489e-b2b3-0f1f043f637b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/11fc7019-b17b-489e-b2b3-0f1f043f637b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"SourceIPProtocol\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\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\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -551,7 +551,7 @@ "0e5113c6-d8c6-4379-b111-8af4d1de4ac5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0e5113c6-d8c6-4379-b111-8af4d1de4ac5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0e5113c6-d8c6-4379-b111-8af4d1de4ac5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,8 +569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -627,8 +627,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -691,8 +691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -749,8 +749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,8 +813,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -871,8 +871,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -935,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -996,8 +996,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1050,8 +1050,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1083,7 +1083,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1096,7 +1096,7 @@ "53c70c1f-f3bc-49bc-82ad-3567f6427a52" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1114,8 +1114,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzUzYzcwYzFmLWYzYmMtNDliYy04MmFkLTM1NjdmNjQyN2E1Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzUzYzcwYzFmLWYzYmMtNDliYy04MmFkLTM1NjdmNjQyN2E1Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,8 +1169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1202,7 +1202,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1215,7 +1215,7 @@ "e27bbc83-c3a8-4eee-91c5-f17a3aef9423" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1233,8 +1233,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2UyN2JiYzgzLWMzYTgtNGVlZS05MWM1LWYxN2EzYWVmOTQyMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2UyN2JiYzgzLWMzYTgtNGVlZS05MWM1LWYxN2EzYWVmOTQyMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json index 1e89d8c1eae2..ad4c27c5ed16 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\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\": \"azsmnet1606\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "264ff5ef-2d86-4608-8e76-eac955cb406e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzI2NGZmNWVmLTJkODYtNDYwOC04ZTc2LWVhYzk1NWNiNDA2ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzI2NGZmNWVmLTJkODYtNDYwOC04ZTc2LWVhYzk1NWNiNDA2ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9826\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet1606\",\r\n \"etag\": \"W/\\\"08dd095e-7a95-4523-9219-23493907e2af\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239/subnets/azsmnet1606\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2958\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet6449\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/backendAddressPools/azsmnet2958\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/probes/azsmnet2286\"\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\": \"azsmnet2286\",\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\": \"azsmnet3126\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\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\": \"azsmnet2299\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\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}", "RequestHeaders": { @@ -411,7 +411,7 @@ "04b85831-52ed-4f78-b0ab-a589450ebbdc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/04b85831-52ed-4f78-b0ab-a589450ebbdc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/04b85831-52ed-4f78-b0ab-a589450ebbdc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "4b0345cf-ec91-4ace-9cca-e9431a22067d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzRiMDM0NWNmLWVjOTEtNGFjZS05Y2NhLWU5NDMxYTIyMDY3ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzRiMDM0NWNmLWVjOTEtNGFjZS05Y2NhLWU5NDMxYTIyMDY3ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -843,8 +843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -876,7 +876,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -889,7 +889,7 @@ "b6f5aa51-c004-419b-bff0-20344fcaf8ae" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2I2ZjVhYTUxLWMwMDQtNDE5Yi1iZmYwLTIwMzQ0ZmNhZjhhZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2I2ZjVhYTUxLWMwMDQtNDE5Yi1iZmYwLTIwMzQ0ZmNhZjhhZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json index 84e64b13d512..6d5bc862829a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\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\": \"azsmnet4614\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "5e54fcf7-11ac-48da-aac5-2fa0ba445a1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzVlNTRmY2Y3LTExYWMtNDhkYS1hYWM1LTJmYTBiYTQ0NWExZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzVlNTRmY2Y3LTExYWMtNDhkYS1hYWM1LTJmYTBiYTQ0NWExZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6881\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet4614\",\r\n \"etag\": \"W/\\\"c27c3a4a-61b2-471d-bc8e-e21fa2a01e7c\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103/subnets/azsmnet4614\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1565\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet2497\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/backendAddressPools/azsmnet1565\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/probes/azsmnet914\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet914\",\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\": \"azsmnet6108\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4420\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "9132b8e7-7535-4edc-93b0-8098b908e34e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/9132b8e7-7535-4edc-93b0-8098b908e34e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/9132b8e7-7535-4edc-93b0-8098b908e34e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "6e738e9c-4fb2-4b3d-a5dd-02972e66cde3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZlNzM4ZTljLTRmYjItNGIzZC1hNWRkLTAyOTcyZTY2Y2RlMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZlNzM4ZTljLTRmYjItNGIzZC1hNWRkLTAyOTcyZTY2Y2RlMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -843,8 +843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -876,7 +876,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -889,7 +889,7 @@ "32b8cf10-7428-4325-a94d-cb75ba3084dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzMyYjhjZjEwLTc0MjgtNDMyNS1hOTRkLWNiNzViYTMwODRkZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzMyYjhjZjEwLTc0MjgtNDMyNS1hOTRkLWNiNzViYTMwODRkZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json index 36470fd821d7..a27371ae40b2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"azsmnet6030\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWVjOWQzYWEtZTZmMy00MTgxLWE2N2UtZTVkYzRhYjM4MTVmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWVjOWQzYWEtZTZmMy00MTgxLWE2N2UtZTVkYzRhYjM4MTVmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6372\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"azsmnet5453\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 100,\r\n \"frontendPortRangeEnd\": 105,\r\n \"backendPort\": 81\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "9ef85cc4-df4b-4966-ab96-bfaeb3811312" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9ef85cc4-df4b-4966-ab96-bfaeb3811312?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9ef85cc4-df4b-4966-ab96-bfaeb3811312?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6372\",\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\",\r\n \"properties\": {\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/inboundNatPools/azsmnet5453\"\r\n }\r\n ],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"azsmnet5453\",\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/inboundNatPools/azsmnet5453\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 100,\r\n \"frontendPortRangeEnd\": 105,\r\n \"backendPort\": 81,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5745\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 107,\r\n \"frontendPortRangeEnd\": 110,\r\n \"backendPort\": 81\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"resourceGuid\": \"3b977636-5d80-427b-914a-bf079a283b97\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "a9d5f4ef-f803-4914-aa56-9d99163a25b8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/a9d5f4ef-f803-4914-aa56-9d99163a25b8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/a9d5f4ef-f803-4914-aa56-9d99163a25b8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -712,7 +712,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -725,7 +725,7 @@ "275fb0d7-293f-4025-8841-d3bd66ce4d17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjc1ZmIwZDctMjkzZi00MDI1LTg4NDEtZDNiZDY2Y2U0ZDE3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjc1ZmIwZDctMjkzZi00MDI1LTg4NDEtZDNiZDY2Y2U0ZDE3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -852,8 +852,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -885,7 +885,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -898,7 +898,7 @@ "bd3187d4-a3d1-4118-88b2-0938e6beb75e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -916,8 +916,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmQzMTg3ZDQtYTNkMS00MTE4LTg4YjItMDkzOGU2YmViNzVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmQzMTg3ZDQtYTNkMS00MTE4LTg4YjItMDkzOGU2YmViNzVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json index fd2b26e6eb40..05d2aa7931dc 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet339\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "5eacd067-d3d7-4e2a-89a8-8b633e85d30e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWVhY2QwNjctZDNkNy00ZTJhLTg5YTgtOGI2MzNlODVkMzBlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWVhY2QwNjctZDNkNy00ZTJhLTg5YTgtOGI2MzNlODVkMzBlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609\"\r\n }\r\n },\r\n \"name\": \"azsmnet6272\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet4688\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/frontendIPConfigurations/azsmnet6272\"\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\": \"azsmnet7538\"\r\n }\r\n ],\r\n \"outboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"allocatedOutboundPorts\": 1000,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/frontendIPConfigurations/azsmnet6272\"\r\n }\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/backendAddressPools/azsmnet4688\"\r\n }\r\n },\r\n \"name\": \"azsmnet8413\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "afa88ff0-3c18-4dcf-bf65-4c0fae290cba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/afa88ff0-3c18-4dcf-bf65-4c0fae290cba?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/afa88ff0-3c18-4dcf-bf65-4c0fae290cba?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "6f62b5b3-4ebe-4797-9fdd-e945b7728203" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmY2MmI1YjMtNGViZS00Nzk3LTlmZGQtZTk0NWI3NzI4MjAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmY2MmI1YjMtNGViZS00Nzk3LTlmZGQtZTk0NWI3NzI4MjAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "632e498b-bc6b-4467-a71a-f7ed2ceece4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyZTQ5OGItYmM2Yi00NDY3LWE3MWEtZjdlZDJjZWVjZTRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyZTQ5OGItYmM2Yi00NDY3LWE3MWEtZjdlZDJjZWVjZTRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json index e44730dcf956..e4028768b739 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\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\": \"azsmnet2252\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "08de78f1-3bc7-493f-bc67-f4597fb79770" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzA4ZGU3OGYxLTNiYzctNDkzZi1iYzY3LWY0NTk3ZmI3OTc3MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzA4ZGU3OGYxLTNiYzctNDkzZi1iYzY3LWY0NTk3ZmI3OTc3MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2040\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet2252\",\r\n \"etag\": \"W/\\\"ff72dc07-42e5-4d32-bcd1-6d92b4911872\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376/subnets/azsmnet2252\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet8297\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet8583\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "e136fa58-0f19-4a46-9e35-a6a7d24e223d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e136fa58-0f19-4a46-9e35-a6a7d24e223d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e136fa58-0f19-4a46-9e35-a6a7d24e223d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2040\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376/subnets/azsmnet2252\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet8297\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet8583\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/probes/azsmnet6266\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet6266\",\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 \"inboundNatPools\": [],\r\n \"outboundNatRules\": [],\r\n \"resourceGuid\": \"0296cf87-5d50-4fce-9fb0-055dae5af2de\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "6beeefcf-99bd-4697-828a-71ea9ab26d3d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6beeefcf-99bd-4697-828a-71ea9ab26d3d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6beeefcf-99bd-4697-828a-71ea9ab26d3d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -743,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -789,7 +789,7 @@ "6cd22eff-f535-476e-895b-85418749a134" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZjZDIyZWZmLWY1MzUtNDc2ZS04OTViLTg1NDE4NzQ5YTEzND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZjZDIyZWZmLWY1MzUtNDc2ZS04OTViLTg1NDE4NzQ5YTEzND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,8 +916,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -949,7 +949,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -962,7 +962,7 @@ "6bf37bbe-9cc4-4b2c-8776-e67472f3b824" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,8 +980,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZiZjM3YmJlLTljYzQtNGIyYy04Nzc2LWU2NzQ3MmYzYjgyND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZiZjM3YmJlLTljYzQtNGIyYy04Nzc2LWU2NzQ3MmYzYjgyND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json index ba20fb509f42..9dd530e44ea1 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8249\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2177\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "2f3e4c16-6339-4b37-b653-d4317887a159" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYzZTRjMTYtNjMzOS00YjM3LWI2NTMtZDQzMTc4ODdhMTU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYzZTRjMTYtNjMzOS00YjM3LWI2NTMtZDQzMTc4ODdhMTU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDgyNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDgyNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDIxNzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDIxNzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/networkInterfaces/azsmnet2520?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI1MjA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/networkInterfaces/azsmnet2520?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI1MjA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1712\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json index da8c945d43ac..0e5630780761 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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}", "RequestHeaders": { @@ -167,7 +167,7 @@ "12fbba8e-ab04-436d-84a1-625f46c202f6" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -414,7 +414,7 @@ "d494c757-68f0-45d0-9cf0-dba5c2cdcd05" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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}", "RequestHeaders": { @@ -658,7 +658,7 @@ "59f8cc76-3006-45fc-a35f-52a40040e9b4" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/59f8cc76-3006-45fc-a35f-52a40040e9b4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -976,8 +976,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1009,7 +1009,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1022,7 +1022,7 @@ "aa4769b3-0555-4b4d-bf93-ec75ac59336f" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1040,8 +1040,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1095,8 +1095,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1128,7 +1128,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1141,7 +1141,7 @@ "ec9b9318-944d-4129-9cc4-ac5b9aec2f4d" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1159,8 +1159,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1214,8 +1214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1247,7 +1247,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1260,7 +1260,7 @@ "26a085d4-53bb-4078-b6ae-c11c9ff3337d" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1278,8 +1278,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json index 7b9d10e3c6b3..fab8774ff389 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5051\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3881820c-25c4-43bc-a03a-305b8451d77f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM4ODE4MjBjLTI1YzQtNDNiYy1hMDNhLTMwNWI4NDUxZDc3Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM4ODE4MjBjLTI1YzQtNDNiYy1hMDNhLTMwNWI4NDUxZDc3Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\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\": \"azsmnet9491\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "406304b5-998f-438a-8b94-4f8e4c068d71" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzQwNjMwNGI1LTk5OGYtNDM4YS04Yjk0LTRmOGU0YzA2OGQ3MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzQwNjMwNGI1LTk5OGYtNDM4YS04Yjk0LTRmOGU0YzA2OGQ3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1L3N1Ym5ldHMvYXpzbW5ldDk0OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1L3N1Ym5ldHMvYXpzbW5ldDk0OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipv4ipconfig792\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ipv6ipconfig4450\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv6\",\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "bf2587c6-c933-42bf-8114-047fb0033458" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bf2587c6-c933-42bf-8114-047fb0033458?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bf2587c6-c933-42bf-8114-047fb0033458?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,8 +971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1004,7 +1004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1017,7 +1017,7 @@ "c8341a35-6cc2-49f2-8d26-351acab85730" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,8 +1035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2M4MzQxYTM1LTZjYzItNDlmMi04ZDI2LTM1MWFjYWI4NTczMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2M4MzQxYTM1LTZjYzItNDlmMi04ZDI2LTM1MWFjYWI4NTczMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,8 +1090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1123,7 +1123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1136,7 +1136,7 @@ "bb6bebcd-c58f-481e-9924-778276ae0606" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1154,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2JiNmJlYmNkLWM1OGYtNDgxZS05OTI0LTc3ODI3NmFlMDYwNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2JiNmJlYmNkLWM1OGYtNDgxZS05OTI0LTc3ODI3NmFlMDYwNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,8 +1209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1242,7 +1242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1255,7 +1255,7 @@ "ddd5be95-00cf-4031-993d-c2ec96e3812d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1273,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2RkZDViZTk1LTAwY2YtNDAzMS05OTNkLWMyZWM5NmUzODEyZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2RkZDViZTk1LTAwY2YtNDAzMS05OTNkLWMyZWM5NmUzODEyZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json index 673f1e1b90e3..6f00311ba6ef 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet9996\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3618ebb7-24be-434f-bbfc-3aeea1ed27e2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzYxOGViYjctMjRiZS00MzRmLWJiZmMtM2FlZWExZWQyN2UyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzYxOGViYjctMjRiZS00MzRmLWJiZmMtM2FlZWExZWQyN2UyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4L3N1Ym5ldHMvYXpzbW5ldDk5OTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4L3N1Ym5ldHMvYXpzbW5ldDk5OTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996\"\r\n }\r\n },\r\n \"name\": \"azsmnet5670\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"1.0.0.1\",\r\n \"1.0.0.2\"\r\n ],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "f273ca10-2b73-4b7a-adcb-843d2cf4894c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f273ca10-2b73-4b7a-adcb-843d2cf4894c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f273ca10-2b73-4b7a-adcb-843d2cf4894c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "999431c8-2c8c-40b2-9dd2-285624e3a112" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk5NDMxYzgtMmM4Yy00MGIyLTlkZDItMjg1NjI0ZTNhMTEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk5NDMxYzgtMmM4Yy00MGIyLTlkZDItMjg1NjI0ZTNhMTEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "610d0d8b-e937-4a27-806e-182f67105689" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjEwZDBkOGItZTkzNy00YTI3LTgwNmUtMTgyZjY3MTA1Njg5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjEwZDBkOGItZTkzNy00YTI3LTgwNmUtMTgyZjY3MTA1Njg5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json index 57b19b3557fb..b4e1ec9c6c64 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet7512\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "53e216aa-b677-4c58-9fc9-e541fdf21d11" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNlMjE2YWEtYjY3Ny00YzU4LTlmYzktZTU0MWZkZjIxZDExP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNlMjE2YWEtYjY3Ny00YzU4LTlmYzktZTU0MWZkZjIxZDExP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0L3N1Ym5ldHMvYXpzbW5ldDc1MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0L3N1Ym5ldHMvYXpzbW5ldDc1MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512\"\r\n }\r\n },\r\n \"name\": \"azsmnet6647\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"1.0.0.1\",\r\n \"1.0.0.2\"\r\n ],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "f86d4fc2-8e02-4294-b8bd-e381115a3769" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f86d4fc2-8e02-4294-b8bd-e381115a3769?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f86d4fc2-8e02-4294-b8bd-e381115a3769?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "930e8b36-b134-4dd6-9411-8b5e80fcfec0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwZThiMzYtYjEzNC00ZGQ2LTk0MTEtOGI1ZTgwZmNmZWMwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwZThiMzYtYjEzNC00ZGQ2LTk0MTEtOGI1ZTgwZmNmZWMwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "24b51407-43bc-4eb7-b256-69f74a70212d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjRiNTE0MDctNDNiYy00ZWI3LWIyNTYtNjlmNzRhNzAyMTJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjRiNTE0MDctNDNiYy00ZWI3LWIyNTYtNjlmNzRhNzAyMTJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json index aa9fbdfdfa34..22581ad6d0c2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet1289\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "7b73f3ff-87d1-4336-9503-1ecadcd8be0c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2I3M2YzZmYtODdkMS00MzM2LTk1MDMtMWVjYWRjZDhiZTBjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2I3M2YzZmYtODdkMS00MzM2LTk1MDMtMWVjYWRjZDhiZTBjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "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\": \"azsmnet9761\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -350,7 +350,7 @@ "d3d925f7-f43d-403b-b5e0-aafde256930d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDNkOTI1ZjctZjQzZC00MDNiLWI1ZTAtYWFmZGUyNTY5MzBkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDNkOTI1ZjctZjQzZC00MDNiLWI1ZTAtYWFmZGUyNTY5MzBkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9761\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/securityRules/azsmnet9761\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"df2612a2-9f2c-4641-ae62-31982ad26eec\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980\",\r\n \"location\": \"eastus\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612/subnets/azsmnet1289\"\r\n }\r\n },\r\n \"name\": \"azsmnet9385\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -594,7 +594,7 @@ "f2de0f45-a61a-436c-a77f-f6f1cfa32749" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/f2de0f45-a61a-436c-a77f-f6f1cfa32749?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/f2de0f45-a61a-436c-a77f-f6f1cfa32749?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,8 +612,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464/effectiveNetworkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464/effectiveNetworkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json index 81fd106807d0..756a58f041fe 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet6595\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "e16aeb62-7174-4d4b-9e7b-9dc47d3b300b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2YWViNjItNzE3NC00ZDRiLTllN2ItOWRjNDdkM2IzMDBiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2YWViNjItNzE3NC00ZDRiLTllN2ItOWRjNDdkM2IzMDBiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4L3N1Ym5ldHMvYXpzbW5ldDY1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4L3N1Ym5ldHMvYXpzbW5ldDY1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "eb361df5-f998-4434-bf5a-062492302f90" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb361df5-f998-4434-bf5a-062492302f90?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb361df5-f998-4434-bf5a-062492302f90?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet8404\",\r\n \"etag\": \"W/\\\"e11d6788-0f5a-4474-b07e-160df313fe1a\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682/ipConfigurations/azsmnet8404\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vlmtkxhqcrjuppuzwmwcy12tbb.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": true,\r\n \"resourceGuid\": \"7d6b5cca-b79f-4864-9ef4-c15a17a31419\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e11d6788-0f5a-4474-b07e-160df313fe1a\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -743,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -789,7 +789,7 @@ "37174060-7b1b-4ece-a928-3094a8d18845" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcxNzQwNjAtN2IxYi00ZWNlLWE5MjgtMzA5NGE4ZDE4ODQ1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcxNzQwNjAtN2IxYi00ZWNlLWE5MjgtMzA5NGE4ZDE4ODQ1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,8 +916,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -949,7 +949,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -962,7 +962,7 @@ "e0c0e99b-cd17-43b6-bcfa-73ece75e9605" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,8 +980,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBjMGU5OWItY2QxNy00M2I2LWJjZmEtNzNlY2U3NWU5NjA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBjMGU5OWItY2QxNy00M2I2LWJjZmEtNzNlY2U3NWU5NjA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json index a44bf35a0643..c9f0f48cfeae 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9820\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "445ecc2b-8cab-47c6-8cf5-f27ef58c6f41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDQ1ZWNjMmItOGNhYi00N2M2LThjZjUtZjI3ZWY1OGM2ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDQ1ZWNjMmItOGNhYi00N2M2LThjZjUtZjI3ZWY1OGM2ZjQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East 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\": \"azsmnet3029\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "2db579ed-ab30-4409-abed-01079ed6aadb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmRiNTc5ZWQtYWIzMC00NDA5LWFiZWQtMDEwNzllZDZhYWRiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmRiNTc5ZWQtYWIzMC00NDA5LWFiZWQtMDEwNzllZDZhYWRiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0L3N1Ym5ldHMvYXpzbW5ldDMwMjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0L3N1Ym5ldHMvYXpzbW5ldDMwMjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3794\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "cbefd58a-85af-4671-b8ef-8267d4df4747" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/cbefd58a-85af-4671-b8ef-8267d4df4747?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/cbefd58a-85af-4671-b8ef-8267d4df4747?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,8 +971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1004,7 +1004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1017,7 +1017,7 @@ "a4354010-5717-4653-af48-020895676b17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,8 +1035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQzNTQwMTAtNTcxNy00NjUzLWFmNDgtMDIwODk1Njc2YjE3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQzNTQwMTAtNTcxNy00NjUzLWFmNDgtMDIwODk1Njc2YjE3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,8 +1090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1123,7 +1123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1136,7 +1136,7 @@ "5cc2a384-0a40-4da2-9c34-859484e09efe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1154,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWNjMmEzODQtMGE0MC00ZGEyLTljMzQtODU5NDg0ZTA5ZWZlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWNjMmEzODQtMGE0MC00ZGEyLTljMzQtODU5NDg0ZTA5ZWZlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,8 +1209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1242,7 +1242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1255,7 +1255,7 @@ "0038f628-e452-4f45-812d-7efd6d0cac2d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1273,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDAzOGY2MjgtZTQ1Mi00ZjQ1LTgxMmQtN2VmZDZkMGNhYzJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDAzOGY2MjgtZTQ1Mi00ZjQ1LTgxMmQtN2VmZDZkMGNhYzJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json index aef34f068bfb..820a70192902 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet2837\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "bc9a8556-b961-40a0-9019-770a3478bece" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmM5YTg1NTYtYjk2MS00MGEwLTkwMTktNzcwYTM0NzhiZWNlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmM5YTg1NTYtYjk2MS00MGEwLTkwMTktNzcwYTM0NzhiZWNlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "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\": \"azsmnet40\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -350,7 +350,7 @@ "72821b37-7181-4fba-ac9f-666e4ae59d4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzI4MjFiMzctNzE4MS00ZmJhLWFjOWYtNjY2ZTRhZTU5ZDRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzI4MjFiMzctNzE4MS00ZmJhLWFjOWYtNjY2ZTRhZTU5ZDRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet40\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/securityRules/azsmnet40\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"934e8452-0070-43cf-9b4c-1e68110717eb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465\",\r\n \"location\": \"westus\"\r\n },\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/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053/subnets/azsmnet2837\"\r\n }\r\n },\r\n \"name\": \"azsmnet5652\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -594,7 +594,7 @@ "ca2465ca-7e5f-4d68-9014-559fd9ea6deb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ca2465ca-7e5f-4d68-9014-559fd9ea6deb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ca2465ca-7e5f-4d68-9014-559fd9ea6deb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,8 +612,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -767,7 +767,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -780,7 +780,7 @@ "1a83fd25-aad9-4b8c-8589-7b5470a4193c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,8 +798,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE4M2ZkMjUtYWFkOS00YjhjLTg1ODktN2I1NDcwYTQxOTNjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE4M2ZkMjUtYWFkOS00YjhjLTg1ODktN2I1NDcwYTQxOTNjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -853,8 +853,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -907,8 +907,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -940,7 +940,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -953,7 +953,7 @@ "41bd6817-bafa-41a2-9972-7f4fee825cea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -971,8 +971,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFiZDY4MTctYmFmYS00MWEyLTk5NzItN2Y0ZmVlODI1Y2VhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFiZDY4MTctYmFmYS00MWEyLTk5NzItN2Y0ZmVlODI1Y2VhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1026,8 +1026,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1059,7 +1059,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1072,7 +1072,7 @@ "fb7d529e-41e0-4aff-8e3e-21c68e56fd0e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1090,8 +1090,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmI3ZDUyOWUtNDFlMC00YWZmLThlM2UtMjFjNjhlNTZmZDBlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmI3ZDUyOWUtNDFlMC00YWZmLThlM2UtMjFjNjhlNTZmZDBlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json index efe657a09e5a..85475b1cd318 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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\": \"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 \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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-03-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-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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\": \"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 \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"azsmnet5615\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "944f01c2-77b2-40f8-82a9-e045b2d480b3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTQ0ZjAxYzItNzdiMi00MGY4LTgyYTktZTA0NWIyZDQ4MGIzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTQ0ZjAxYzItNzdiMi00MGY4LTgyYTktZTA0NWIyZDQ4MGIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDYvc3VibmV0cy9henNtbmV0NTYxNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDYvc3VibmV0cy9henNtbmV0NTYxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/networkInterfaces/azsmnet6898?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY4OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/networkInterfaces/azsmnet6898?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY4OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"azsmnet1333\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": true\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json index c0873c483e65..cad22f4219a0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "7120bd31-52fd-4930-8efa-92cca097ff1c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzEyMGJkMzEtNTJmZC00OTMwLThlZmEtOTJjY2EwOTdmZjFjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzEyMGJkMzEtNTJmZC00OTMwLThlZmEtOTJjY2EwOTdmZjFjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -568,7 +568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -581,7 +581,7 @@ "5643405a-4d6b-4219-99ec-4f36cefb7a10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -599,8 +599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTY0MzQwNWEtNGQ2Yi00MjE5LTk5ZWMtNGYzNmNlZmI3YTEwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTY0MzQwNWEtNGQ2Yi00MjE5LTk5ZWMtNGYzNmNlZmI3YTEwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json index f1753246321b..fcccf5847bff 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -154,7 +154,7 @@ "a57f505b-b51f-4237-9476-5550060e76c9" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -223,7 +223,7 @@ "6d429732-cf6e-4850-b7a9-9540b533611f" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -587,7 +587,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -644,7 +644,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -705,7 +705,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -756,7 +756,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -788,7 +788,7 @@ "ada432fe-0599-42de-9762-823b41e02fec" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -797,7 +797,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -819,7 +819,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json index a55bc2d58572..3b434935429b 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "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\": \"azsmnet9769\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "d3b1ceb3-fc95-45e0-874d-0553b5bab53b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -404,7 +404,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -461,7 +461,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -524,7 +524,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -556,7 +556,7 @@ "13308a66-8897-44ea-8df9-b12ca1d98e21" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,7 +565,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -587,7 +587,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json index 14847b6bb2a5..f20929eaa5fd 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"apiVersions\": [\r\n \"2016-12-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 \"apiVersions\": [\r\n \"2016-12-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/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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-03-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-03-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-03-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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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 \"apiVersions\": [\r\n \"2017-03-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 \"apiVersions\": [\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddressVersion\": \"IPv6\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"csmdnslabelpublicip1406\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "d39b9d63-14ac-4cb8-8bc6-629171fc57a2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDM5YjlkNjMtMTRhYy00Y2I4LThiYzYtNjI5MTcxZmM1N2EyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDM5YjlkNjMtMTRhYy00Y2I4LThiYzYtNjI5MTcxZmM1N2EyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -568,7 +568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -581,7 +581,7 @@ "fc579ad7-d1fe-49a3-99ca-9e301fbc0796" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -599,8 +599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM1NzlhZDctZDFmZS00OWEzLTk5Y2EtOWUzMDFmYmMwNzk2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM1NzlhZDctZDFmZS00OWEzLTk5Y2EtOWUzMDFmYmMwNzk2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -654,8 +654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"csmdnslabelpublicip1406\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -706,7 +706,7 @@ "83a5dde1-2b52-4c78-99bb-7ee5001ab69c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -724,8 +724,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNhNWRkZTEtMmI1Mi00Yzc4LTk5YmItN2VlNTAwMWFiNjljP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNhNWRkZTEtMmI1Mi00Yzc4LTk5YmItN2VlNTAwMWFiNjljP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -779,8 +779,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -837,8 +837,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -901,8 +901,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -934,7 +934,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -947,7 +947,7 @@ "a0b157e4-ac6d-46d0-9a73-dbc3fc69280c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -965,8 +965,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBiMTU3ZTQtYWM2ZC00NmQwLTlhNzMtZGJjM2ZjNjkyODBjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBiMTU3ZTQtYWM2ZC00NmQwLTlhNzMtZGJjM2ZjNjkyODBjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json index 0a8a05544ddc..aa335f46a5c0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2781\"\r\n },\r\n \"idleTimeoutInMinutes\": 16\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "3250be31-367d-4a1a-96ad-e25adb1815b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"ee1883f7-8770-41a4-a42a-514f7b1ee87d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2781\",\r\n \"fqdn\": \"azsmnet2781.australiasoutheast.cloudapp.azure.com\",\r\n \"reverseFqdn\": \"azsmnet2781.australiasoutheast.cloudapp.azure.com\"\r\n },\r\n \"idleTimeoutInMinutes\": 16,\r\n \"resourceGuid\": \"565a8af7-d851-4520-8442-5901971e7630\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "6b3e5417-f2af-47bb-a8b4-11ca41ec00f8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,7 +759,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -791,7 +791,7 @@ "2ece8ab6-7318-4954-b1ce-93646466f555" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -800,7 +800,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operationResults/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operationResults/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -822,7 +822,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json index ffb17767f641..d9b8ac02be8d 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "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\": \"azsmnet8397\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "9300ca35-e10e-4803-9a19-ccbe70a88005" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwMGNhMzUtZTEwZS00ODAzLTlhMTktY2NiZTcwYTg4MDA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwMGNhMzUtZTEwZS00ODAzLTlhMTktY2NiZTcwYTg4MDA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet8397?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgzOTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet8397?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgzOTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\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\": \"azsmnet816\"\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "b54f2a54-7610-4887-a5e4-3facc44b6e4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjU0ZjJhNTQtNzYxMC00ODg3LWE1ZTQtM2ZhY2M0NGI2ZTRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjU0ZjJhNTQtNzYxMC00ODg3LWE1ZTQtM2ZhY2M0NGI2ZTRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -892,7 +892,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -905,7 +905,7 @@ "b6870c53-cd86-4331-93a0-7049be9a172d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -923,8 +923,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY4NzBjNTMtY2Q4Ni00MzMxLTkzYTAtNzA0OWJlOWExNzJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY4NzBjNTMtY2Q4Ni00MzMxLTkzYTAtNzA0OWJlOWExNzJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -978,8 +978,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1011,7 +1011,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1024,7 +1024,7 @@ "8a91f8d2-0056-477a-9c1e-ebc67ec78aaa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1042,8 +1042,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGE5MWY4ZDItMDA1Ni00NzdhLTljMWUtZWJjNjdlYzc4YWFhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGE5MWY4ZDItMDA1Ni00NzdhLTljMWUtZWJjNjdlYzc4YWFhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1097,8 +1097,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json index bf091c25077e..dcb278467ec5 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "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\": \"azsmnet8334\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "2fcae6d6-c43b-4e96-b23c-61c0228b165a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"azsmnet5369\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "8b7446cd-d269-455b-a81c-29f8cd144774" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,7 +727,7 @@ "f78e960c-8975-4d9e-84fa-c28eea2d0bd2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -758,7 +758,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json index cce327763e55..81c9236fa178 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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/c1fd1678-d0fe-4253-a15f-a03eee323432/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet3524\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "ae5fd15b-d60b-4b34-9452-57746445103a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWU1ZmQxNWItZDYwYi00YjM0LTk0NTItNTc3NDY0NDUxMDNhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWU1ZmQxNWItZDYwYi00YjM0LTk0NTItNTc3NDY0NDUxMDNhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json index 5557a7e08d3a..2a677d5647cf 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"registrationState\": \"Registered\"\r\n}", + "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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "15044d4c-3df8-4152-a39c-c0255289b846" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTUwNDRkNGMtM2RmOC00MTUyLWEzOWMtYzAyNTUyODliODQ2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTUwNDRkNGMtM2RmOC00MTUyLWEzOWMtYzAyNTUyODliODQ2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/usages?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/usages?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json index a94124495b22..59cbd63f4bae 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json @@ -61,8 +61,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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.1.0/24\"\r\n },\r\n \"name\": \"azsmnet7919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet2000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -113,7 +113,7 @@ "bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -131,8 +131,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9iYzc3ZWI1Ny0wYjRjLTRmZTgtYWMwZS05OGJlYTJkNWYyYzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9iYzc3ZWI1Ny0wYjRjLTRmZTgtYWMwZS05OGJlYTJkNWYyYzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -186,8 +186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -244,8 +244,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -308,8 +308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -369,8 +369,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.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.1.1.0/24\"\r\n },\r\n \"name\": \"azsmnet7919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.2.0/24\"\r\n },\r\n \"name\": \"azsmnet2000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -475,7 +475,7 @@ "6f1e3332-1c7e-49be-8de6-e0d05d150ff9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -493,8 +493,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82ZjFlMzMzMi0xYzdlLTQ5YmUtOGRlNi1lMGQwNWQxNTBmZjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82ZjFlMzMzMi0xYzdlLTQ5YmUtOGRlNi1lMGQwNWQxNTBmZjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -548,8 +548,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -606,8 +606,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -667,8 +667,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,8 +728,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -789,8 +789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowVirtualNetworkAccess\": false,\r\n \"allowForwardedTraffic\": true,\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391\"\r\n }\r\n },\r\n \"name\": \"azsmnet3453\"\r\n}", "RequestHeaders": { @@ -841,7 +841,7 @@ "d5541592-049c-4c84-8b93-2f151349c8f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,8 +859,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kNTU0MTU5Mi0wNDljLTRjODQtOGI5My0yZjE1MTM0OWM4Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kNTU0MTU5Mi0wNDljLTRjODQtOGI5My0yZjE1MTM0OWM4Zjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -914,8 +914,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -972,8 +972,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,8 +1036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1069,7 +1069,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1082,7 +1082,7 @@ "6684a1f4-8428-45c0-bb6b-c25a44d4833c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1100,8 +1100,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82Njg0YTFmNC04NDI4LTQ1YzAtYmI2Yi1jMjVhNDRkNDgzM2M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82Njg0YTFmNC04NDI4LTQ1YzAtYmI2Yi1jMjVhNDRkNDgzM2M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,8 +1155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1188,7 +1188,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1201,7 +1201,7 @@ "c401ba88-eaec-4651-8550-e2b8795b28c4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1219,8 +1219,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jNDAxYmE4OC1lYWVjLTQ2NTEtODU1MC1lMmI4Nzk1YjI4YzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jNDAxYmE4OC1lYWVjLTQ2NTEtODU1MC1lMmI4Nzk1YjI4YzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1274,8 +1274,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1307,7 +1307,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1320,7 +1320,7 @@ "fbe9a49e-ee49-4cd2-9e6b-aec391eb8078" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,8 +1338,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mYmU5YTQ5ZS1lZTQ5LTRjZDItOWU2Yi1hZWMzOTFlYjgwNzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mYmU5YTQ5ZS1lZTQ5LTRjZDItOWU2Yi1hZWMzOTFlYjgwNzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json index 5719245c7dc1..b77db5b654ff 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "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-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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.1.0/24\"\r\n },\r\n \"name\": \"azsmnet1873\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet997\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "0d9b13a2-9865-4553-b38c-899a1b7f170f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ5YjEzYTItOTg2NS00NTUzLWIzOGMtODk5YTFiN2YxNzBmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ5YjEzYTItOTg2NS00NTUzLWIzOGMtODk5YTFiN2YxNzBmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -553,8 +553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -586,7 +586,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -599,7 +599,7 @@ "da3c92e3-ca15-4330-9719-bd5536d2cda5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,8 +617,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEzYzkyZTMtY2ExNS00MzMwLTk3MTktYmQ1NTM2ZDJjZGE1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEzYzkyZTMtY2ExNS00MzMwLTk3MTktYmQ1NTM2ZDJjZGE1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json index 0513cf5598ba..58834bc64100 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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/c1fd1678-d0fe-4253-a15f-a03eee323432/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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.1.0/24\"\r\n },\r\n \"name\": \"azsmnet3416\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3995e6e8-2a31-4716-9e9d-e974fdc5cee9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzk5NWU2ZTgtMmEzMS00NzE2LTllOWQtZTk3NGZkYzVjZWU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzk5NWU2ZTgtMmEzMS00NzE2LTllOWQtZTk3NGZkYzVjZWU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL3N1Ym5ldHMvYXpzbW5ldDM0MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL3N1Ym5ldHMvYXpzbW5ldDM0MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.1.9\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416\"\r\n }\r\n },\r\n \"name\": \"azsmnet4903\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "bcea5bd3-3988-4c94-8988-ce1128de88bc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/bcea5bd3-3988-4c94-8988-ce1128de88bc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/bcea5bd3-3988-4c94-8988-ce1128de88bc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.10&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuMTAmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.10&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuMTAmYXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -548,8 +548,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.9&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuOSZhcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.9&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuOSZhcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -642,7 +642,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -655,7 +655,7 @@ "d894dfdd-726f-461c-95b3-564fba881898" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -673,8 +673,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg5NGRmZGQtNzI2Zi00NjFjLTk1YjMtNTY0ZmJhODgxODk4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg5NGRmZGQtNzI2Zi00NjFjLTk1YjMtNTY0ZmJhODgxODk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,8 +728,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -761,7 +761,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -774,7 +774,7 @@ "de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,8 +792,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGUwNWJiY2EtYzNiYi00N2M5LThlZWUtYTNiZmM2YjQyYmIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGUwNWJiY2EtYzNiYi00N2M5LThlZWUtYTNiZmM2YjQyYmIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json index 632369a5eeb3..93160a190fb7 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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\": \"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 \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"registrationState\": \"Registered\"\r\n}", + "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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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-03-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-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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\": \"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 \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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.1.0/24\"\r\n },\r\n \"name\": \"azsmnet6700\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet7820\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -170,7 +170,7 @@ "e9c55f19-519e-4c28-a7c2-38d4c48caf56" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,8 +188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTljNTVmMTktNTE5ZS00YzI4LWE3YzItMzhkNGM0OGNhZjU2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTljNTVmMTktNTE5ZS00YzI4LWE3YzItMzhkNGM0OGNhZjU2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -244,8 +244,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -303,8 +303,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -368,8 +368,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -433,8 +433,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -498,8 +498,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"azsmnet6700\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -551,7 +551,7 @@ "53c9e2d1-865d-4bc5-9cab-925bf0afb411" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,8 +569,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNjOWUyZDEtODY1ZC00YmM1LTljYWItOTI1YmYwYWZiNDExP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNjOWUyZDEtODY1ZC00YmM1LTljYWItOTI1YmYwYWZiNDExP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -625,8 +625,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowForwardedTraffic\": true,\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -737,7 +737,7 @@ "abbc845f-7549-4105-9ab5-ed3270f676c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,8 +755,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWJiYzg0NWYtNzU0OS00MTA1LTlhYjUtZWQzMjcwZjY3NmM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWJiYzg0NWYtNzU0OS00MTA1LTlhYjUtZWQzMjcwZjY3NmM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -811,8 +811,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,8 +870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -935,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -997,8 +997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1059,8 +1059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1093,7 +1093,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1106,7 +1106,7 @@ "72f70e8c-36a1-4482-87ea-8576fcf7f823" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1124,8 +1124,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzJmNzBlOGMtMzZhMS00NDgyLTg3ZWEtODU3NmZjZjdmODIzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzJmNzBlOGMtMzZhMS00NDgyLTg3ZWEtODU3NmZjZjdmODIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1180,8 +1180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1214,7 +1214,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1227,7 +1227,7 @@ "bf6e70fe-9654-4caa-ab74-9a2a50cf683c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,8 +1245,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY2ZTcwZmUtOTY1NC00Y2FhLWFiNzQtOWEyYTUwY2Y2ODNjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY2ZTcwZmUtOTY1NC00Y2FhLWFiNzQtOWEyYTUwY2Y2ODNjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1335,7 +1335,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1348,7 +1348,7 @@ "1e1eff12-10ca-460f-9ff5-098c619eae9b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1366,8 +1366,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWUxZWZmMTItMTBjYS00NjBmLTlmZjUtMDk4YzYxOWVhZTliP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWUxZWZmMTItMTBjYS00NjBmLTlmZjUtMDk4YzYxOWVhZTliP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { From 2cd92aaba197847e5f3ba7ab7d1eaf6ef05f0628 Mon Sep 17 00:00:00 2001 From: matthchr Date: Tue, 21 Mar 2017 10:13:27 -0700 Subject: [PATCH 29/56] Update releasenotes to clarify breaking changes --- src/Batch/Client/changelog.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Batch/Client/changelog.md b/src/Batch/Client/changelog.md index 6a76870e9e01..b45d1f9df7e0 100644 --- a/src/Batch/Client/changelog.md +++ b/src/Batch/Client/changelog.md @@ -18,8 +18,11 @@ This version of the Batch .NET client library targets version 2017-01-01.4.0 of This version of the Batch .NET client library targets version 2017-01-01.4.0 of the Azure Batch REST API. #### Features -- Moved `FileToStage` implementation to the [Azure.Batch.FileStaging](https://www.nuget.org/packages/Azure.Batch.FileStaging) NuGet package and removed the dependency on `WindowsAzure.Storage` from the `Azure.Batch` package. This gives more flexibility on what version of `WindowsAzure.Storage` to use for users who do not use the `FileToStage` features. +##### Breaking changes - Added support for running a task under a configurable user identity via the `UserIdentity` property on all task objects (`CloudTask`, `JobPreparationTask`, `StartTask`, etc). `UserIdentity` replaces `RunElevated`. `UserIdentity` supports running a task as a predefined named user (via `UserIdentity.UserName`) or an automatically created user. The `AutoUserSpecification` specifies an automatically created user account under which to run the task. To translate existing code, change `RunElevated = true` to `UserIdentity = new UserIdentity(new AutoUserSpecification(elevationLevel: ElevationLevel.Admin))` and `RunElevated = false` to `UserIdentity = new UserIdentity(new AutoUserSpecification(elevationLevel: ElevationLevel.NonAdmin))`. +- Moved `FileToStage` implementation to the [Azure.Batch.FileStaging](https://www.nuget.org/packages/Azure.Batch.FileStaging) NuGet package and removed the dependency on `WindowsAzure.Storage` from the `Azure.Batch` package. This gives more flexibility on what version of `WindowsAzure.Storage` to use for users who do not use the `FileToStage` features. + +##### Non-breaking changes - Added support for defining pool-wide users, via the `UserAccounts` property on `CloudPool` and `PoolSpecification`. You can run a task as such a user using the `UserIdentity` constructor that takes a user name. - Added support for requesting the Batch service provide an authentication token to the task when it runs. This is done using the `AuthenticationTokenSettings` on `CloudTask` and `JobManagerTask`. This avoids the need to pass Batch account keys to the task in order to issue requests to the Batch service. - Added support for specifying an action to take on a task's dependencies if the task fails using the `DependencyAction` property of `ExitOptions`. From 9cac2895fcd1eb0b4e1695924609ab2155ec2fe1 Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Tue, 21 Mar 2017 10:19:01 -0700 Subject: [PATCH 30/56] corrected Assembly version for 2017-03-01 --- .../Properties/AssemblyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs index 3a079d1447c2..0983ca2bb40b 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyTitle("Microsoft Azure Network Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Network management functions for managing the Microsoft Azure Network service.")] -[assembly: AssemblyVersion("9.2.0.0")] +[assembly: AssemblyVersion("9.0.0.0")] [assembly: AssemblyFileVersion("9.2.0.0")] [assembly: AssemblyConfiguration("")] From 35f83bd5b116b488ae33f90a4d14c7fe9f6e4203 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Tue, 21 Mar 2017 10:21:27 -0700 Subject: [PATCH 31/56] #WAF removed redundancy in description of enums. --- .../Generated/Models/ApplicationGateway.cs | 10 ++++------ .../ApplicationGatewayBackendHealthServer.cs | 10 ++++------ ...plicationGatewayBackendHealthServerHealth.cs | 1 + .../ApplicationGatewayBackendHttpSettings.cs | 14 ++++++-------- ...ApplicationGatewayFrontendIpConfiguration.cs | 8 +++----- .../Models/ApplicationGatewayHttpListener.cs | 7 +++---- .../Generated/Models/ApplicationGatewayProbe.cs | 7 +++---- .../ApplicationGatewayRequestRoutingRule.cs | 6 ++---- .../Generated/Models/ApplicationGatewaySku.cs | 17 ++++++----------- .../Models/ApplicationGatewaySslPolicy.cs | 4 +--- ...atewayWebApplicationFirewallConfiguration.cs | 8 +++----- 11 files changed, 36 insertions(+), 56 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGateway.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGateway.cs index 4e956405a223..4635f0d15b9e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGateway.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGateway.cs @@ -41,9 +41,8 @@ public ApplicationGateway() { } /// SSL policy of the application gateway /// resource. /// Operational state of the application - /// gateway resource. Possible values are: 'Stopped', 'Started', - /// 'Running', and 'Stopping'. Possible values include: 'Stopped', - /// 'Starting', 'Running', 'Stopping' + /// gateway resource. Possible values include: 'Stopped', 'Starting', + /// 'Running', 'Stopping' /// Subnets of application the /// gateway resource. /// Authentication @@ -112,9 +111,8 @@ public ApplicationGateway() { } /// /// Gets operational state of the application gateway resource. - /// Possible values are: 'Stopped', 'Started', 'Running', and - /// 'Stopping'. Possible values include: 'Stopped', 'Starting', - /// 'Running', 'Stopping' + /// Possible values include: 'Stopped', 'Starting', 'Running', + /// 'Stopping' /// [JsonProperty(PropertyName = "properties.operationalState")] public string OperationalState { get; protected set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServer.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServer.cs index 6005cd2f240d..bda3c476ece3 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServer.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServer.cs @@ -32,9 +32,8 @@ public ApplicationGatewayBackendHealthServer() { } /// IP address or FQDN of backend server. /// Reference of IP configuration of /// backend server. - /// Health of backend server. Possible values are: - /// 'Unknown', 'Up', 'Down', and 'Partial'. Possible values include: - /// 'Unknown', 'Up', 'Down', 'Partial' + /// Health of backend server. Possible values + /// include: 'Unknown', 'Up', 'Down', 'Partial', 'Draining' public ApplicationGatewayBackendHealthServer(string address = default(string), SubResource ipConfiguration = default(SubResource), string health = default(string)) { Address = address; @@ -55,9 +54,8 @@ public ApplicationGatewayBackendHealthServer() { } public SubResource IpConfiguration { get; set; } /// - /// Gets or sets health of backend server. Possible values are: - /// 'Unknown', 'Up', 'Down', and 'Partial'. Possible values include: - /// 'Unknown', 'Up', 'Down', 'Partial' + /// Gets or sets health of backend server. Possible values include: + /// 'Unknown', 'Up', 'Down', 'Partial', 'Draining' /// [JsonProperty(PropertyName = "health")] public string Health { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServerHealth.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServerHealth.cs index db0321dc0ffe..4826b7f88fa7 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServerHealth.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHealthServerHealth.cs @@ -21,6 +21,7 @@ public static class ApplicationGatewayBackendHealthServerHealth public const string Up = "Up"; public const string Down = "Down"; public const string Partial = "Partial"; + public const string Draining = "Draining"; } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs index 1f6e27130b67..b5d7b1bb203d 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayBackendHttpSettings.cs @@ -36,11 +36,10 @@ public ApplicationGatewayBackendHttpSettings() { } /// /// Resource ID. /// Port - /// Protocol. Possible values are: 'Http' and - /// 'Https'. Possible values include: 'Http', 'Https' + /// Protocol. Possible values include: 'Http', + /// 'Https' /// Cookie based affinity. Possible - /// values are: 'Enabled' and 'Disabled'. Possible values include: - /// 'Enabled', 'Disabled' + /// values include: 'Enabled', 'Disabled' /// Request timeout in seconds. /// Application Gateway will fail the request if response is not /// received within RequestTimeout. Acceptable values are from 1 second @@ -81,15 +80,14 @@ public ApplicationGatewayBackendHttpSettings() { } public int? Port { get; set; } /// - /// Gets or sets protocol. Possible values are: 'Http' and 'Https'. - /// Possible values include: 'Http', 'Https' + /// Gets or sets protocol. Possible values include: 'Http', 'Https' /// [JsonProperty(PropertyName = "properties.protocol")] public string Protocol { get; set; } /// - /// Gets or sets cookie based affinity. Possible values are: 'Enabled' - /// and 'Disabled'. Possible values include: 'Enabled', 'Disabled' + /// Gets or sets cookie based affinity. Possible values include: + /// 'Enabled', 'Disabled' /// [JsonProperty(PropertyName = "properties.cookieBasedAffinity")] public string CookieBasedAffinity { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs index 15365ef7e9e7..d7d8319c80e8 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFrontendIpConfiguration.cs @@ -36,8 +36,7 @@ public ApplicationGatewayFrontendIPConfiguration() { } /// PrivateIPAddress of the network /// interface IP Configuration. /// PrivateIP allocation - /// method. Possible values are: 'Static' and 'Dynamic'. Possible - /// values include: 'Static', 'Dynamic' + /// method. Possible values include: 'Static', 'Dynamic' /// Reference of the subnet resource. /// Reference of the PublicIP /// resource. @@ -69,9 +68,8 @@ public ApplicationGatewayFrontendIPConfiguration() { } public string PrivateIPAddress { get; set; } /// - /// Gets or sets privateIP allocation method. Possible values are: - /// 'Static' and 'Dynamic'. Possible values include: 'Static', - /// 'Dynamic' + /// Gets or sets privateIP allocation method. Possible values include: + /// 'Static', 'Dynamic' /// [JsonProperty(PropertyName = "properties.privateIPAllocationMethod")] public string PrivateIPAllocationMethod { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayHttpListener.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayHttpListener.cs index 330341e08193..6a710d1f50f0 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayHttpListener.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayHttpListener.cs @@ -37,8 +37,8 @@ public ApplicationGatewayHttpListener() { } /// resource of an application gateway. /// Frontend port resource of an application /// gateway. - /// Protocol. Possible values are: 'Http' and - /// 'Https'. Possible values include: 'Http', 'Https' + /// Protocol. Possible values include: 'Http', + /// 'Https' /// Host name of HTTP listener. /// SSL certificate resource of an /// application gateway. @@ -80,8 +80,7 @@ public ApplicationGatewayHttpListener() { } public SubResource FrontendPort { get; set; } /// - /// Gets or sets protocol. Possible values are: 'Http' and 'Https'. - /// Possible values include: 'Http', 'Https' + /// Gets or sets protocol. Possible values include: 'Http', 'Https' /// [JsonProperty(PropertyName = "properties.protocol")] public string Protocol { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayProbe.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayProbe.cs index 6f8786ca36f6..e59131e3d863 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayProbe.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayProbe.cs @@ -31,8 +31,8 @@ public ApplicationGatewayProbe() { } /// Initializes a new instance of the ApplicationGatewayProbe class. /// /// Resource ID. - /// Protocol. Possible values are: 'Http' and - /// 'Https'. Possible values include: 'Http', 'Https' + /// Protocol. Possible values include: 'Http', + /// 'Https' /// Host name to send the probe to. /// Relative path of probe. Valid path starts from /// '/'. Probe is sent to @@ -70,8 +70,7 @@ public ApplicationGatewayProbe() { } } /// - /// Gets or sets protocol. Possible values are: 'Http' and 'Https'. - /// Possible values include: 'Http', 'Https' + /// Gets or sets protocol. Possible values include: 'Http', 'Https' /// [JsonProperty(PropertyName = "properties.protocol")] public string Protocol { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRule.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRule.cs index 542b6a384fbf..050ef10fe078 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRule.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayRequestRoutingRule.cs @@ -33,8 +33,7 @@ public ApplicationGatewayRequestRoutingRule() { } /// ApplicationGatewayRequestRoutingRule class. /// /// Resource ID. - /// Rule type. Possible values are: 'Basic' and - /// 'PathBasedRouting'. Possible values include: 'Basic', + /// Rule type. Possible values include: 'Basic', /// 'PathBasedRouting' /// Backend address pool resource of /// the application gateway. @@ -66,8 +65,7 @@ public ApplicationGatewayRequestRoutingRule() { } } /// - /// Gets or sets rule type. Possible values are: 'Basic' and - /// 'PathBasedRouting'. Possible values include: 'Basic', + /// Gets or sets rule type. Possible values include: 'Basic', /// 'PathBasedRouting' /// [JsonProperty(PropertyName = "properties.ruleType")] diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySku.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySku.cs index 117e1bf1e4d0..66fbc579b29f 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySku.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySku.cs @@ -28,13 +28,10 @@ public ApplicationGatewaySku() { } /// Initializes a new instance of the ApplicationGatewaySku class. /// /// Name of an application gateway SKU. Possible - /// values are: 'Standard_Small', 'Standard_Medium', 'Standard_Large', - /// 'WAF_Medium', and 'WAF_Large'. Possible values include: - /// 'Standard_Small', 'Standard_Medium', 'Standard_Large', - /// 'WAF_Medium', 'WAF_Large' + /// values include: 'Standard_Small', 'Standard_Medium', + /// 'Standard_Large', 'WAF_Medium', 'WAF_Large' /// Tier of an application gateway. Possible values - /// are: 'Standard' and 'WAF'. Possible values include: 'Standard', - /// 'WAF' + /// include: 'Standard', 'WAF' /// Capacity (instance count) of an application /// gateway. public ApplicationGatewaySku(string name = default(string), string tier = default(string), int? capacity = default(int?)) @@ -46,17 +43,15 @@ public ApplicationGatewaySku() { } /// /// Gets or sets name of an application gateway SKU. Possible values - /// are: 'Standard_Small', 'Standard_Medium', 'Standard_Large', - /// 'WAF_Medium', and 'WAF_Large'. Possible values include: - /// 'Standard_Small', 'Standard_Medium', 'Standard_Large', + /// include: 'Standard_Small', 'Standard_Medium', 'Standard_Large', /// 'WAF_Medium', 'WAF_Large' /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// - /// Gets or sets tier of an application gateway. Possible values are: - /// 'Standard' and 'WAF'. Possible values include: 'Standard', 'WAF' + /// Gets or sets tier of an application gateway. Possible values + /// include: 'Standard', 'WAF' /// [JsonProperty(PropertyName = "tier")] public string Tier { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySslPolicy.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySslPolicy.cs index 459001255b6b..34b9b0de698b 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySslPolicy.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewaySslPolicy.cs @@ -32,8 +32,7 @@ public ApplicationGatewaySslPolicy() { } /// class. /// /// SSL protocols to be disabled on - /// application gateway. Possible values are: 'TLSv1_0', 'TLSv1_1', and - /// 'TLSv1_2'. + /// application gateway. public ApplicationGatewaySslPolicy(IList disabledSslProtocols = default(IList)) { DisabledSslProtocols = disabledSslProtocols; @@ -41,7 +40,6 @@ public ApplicationGatewaySslPolicy() { } /// /// Gets or sets SSL protocols to be disabled on application gateway. - /// Possible values are: 'TLSv1_0', 'TLSv1_1', and 'TLSv1_2'. /// [JsonProperty(PropertyName = "disabledSslProtocols")] public IList DisabledSslProtocols { get; set; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs index 2cc6b90e6ed1..da6bc7e1062c 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayWebApplicationFirewallConfiguration.cs @@ -35,8 +35,7 @@ public ApplicationGatewayWebApplicationFirewallConfiguration() { } /// Whether the web application firewall is /// enabled or not. /// Web application firewall mode. Possible - /// values are: 'Detection' and 'Prevention'. Possible values include: - /// 'Detection', 'Prevention' + /// values include: 'Detection', 'Prevention' /// The type of the web application firewall /// rule set. Possible values are: 'OWASP'. /// The version of the rule set @@ -59,9 +58,8 @@ public ApplicationGatewayWebApplicationFirewallConfiguration() { } public bool Enabled { get; set; } /// - /// Gets or sets web application firewall mode. Possible values are: - /// 'Detection' and 'Prevention'. Possible values include: 'Detection', - /// 'Prevention' + /// Gets or sets web application firewall mode. Possible values + /// include: 'Detection', 'Prevention' /// [JsonProperty(PropertyName = "firewallMode")] public string FirewallMode { get; set; } From 4f55aa459be403da238c3101e095d64dec6ec6cb Mon Sep 17 00:00:00 2001 From: matthchr Date: Tue, 21 Mar 2017 10:57:20 -0700 Subject: [PATCH 32/56] Fix Batch management plane releasenotes reference --- .../Batch/Microsoft.Azure.Management.Batch/project.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json index dd5ecbeacfb2..8d9f84a4c939 100644 --- a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json +++ b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json @@ -11,7 +11,7 @@ "projectUrl": "https://github.com/Azure/azure-sdk-for-net", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "requireLicenseAcceptance": true, - "releaseNotes": "See https://github.com/matthchr/azure-sdk-for-net/blob/AutoRest/src/ResourceManagement/Batch/changelog.md for release notes." + "releaseNotes": "See https://github.com/Azure/azure-sdk-for-net/blob/AutoRest/src/ResourceManagement/Batch/changelog.md for release notes." }, "buildOptions": { From 354816e5aebacd7a07d80edc7d4818fa819235a3 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Tue, 21 Mar 2017 11:53:42 -0700 Subject: [PATCH 33/56] #WAF updated required fields for getBackendHealth Api result. --- ...icationGatewayFirewallDisabledRuleGroup.cs | 4 +- .../Models/ApplicationGatewayFirewallRule.cs | 14 +++++- .../ApplicationGatewayFirewallRuleGroup.cs | 34 ++++++++++++-- .../ApplicationGatewayFirewallRuleSet.cs | 45 ++++++++++++++++--- .../Tests/ApplicationGatewayTests.cs | 4 +- 5 files changed, 84 insertions(+), 17 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs index adc055c12b67..b372058801c9 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallDisabledRuleGroup.cs @@ -36,7 +36,7 @@ public ApplicationGatewayFirewallDisabledRuleGroup() { } /// disabled. /// The list of rules that will be disabled. If /// null, all rules of the rule group will be disabled. - public ApplicationGatewayFirewallDisabledRuleGroup(string ruleGroupName, IList rules = default(IList)) + public ApplicationGatewayFirewallDisabledRuleGroup(string ruleGroupName, IList rules = default(IList)) { RuleGroupName = ruleGroupName; Rules = rules; @@ -53,7 +53,7 @@ public ApplicationGatewayFirewallDisabledRuleGroup() { } /// rules of the rule group will be disabled. /// [JsonProperty(PropertyName = "rules")] - public IList Rules { get; set; } + public IList Rules { get; set; } /// /// Validate the object. diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs index cdb517e97dc4..d459f0495ca6 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRule.cs @@ -33,7 +33,7 @@ public ApplicationGatewayFirewallRule() { } /// rule. /// The description of the web application /// firewall rule. - public ApplicationGatewayFirewallRule(int? ruleId = default(int?), string description = default(string)) + public ApplicationGatewayFirewallRule(int ruleId, string description = default(string)) { RuleId = ruleId; Description = description; @@ -43,7 +43,7 @@ public ApplicationGatewayFirewallRule() { } /// Gets or sets the identifier of the web application firewall rule. /// [JsonProperty(PropertyName = "ruleId")] - public int? RuleId { get; set; } + public int RuleId { get; set; } /// /// Gets or sets the description of the web application firewall rule. @@ -51,6 +51,16 @@ public ApplicationGatewayFirewallRule() { } [JsonProperty(PropertyName = "description")] public string Description { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs index daa89f41a263..56c131e61842 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleGroup.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.Network.Models using Azure; using Management; using Network; + using Rest; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -33,11 +34,11 @@ public ApplicationGatewayFirewallRuleGroup() { } /// /// The name of the web application /// firewall rule group. - /// The description of the web application - /// firewall rule group. /// The rules of the web application firewall rule /// group. - public ApplicationGatewayFirewallRuleGroup(string ruleGroupName = default(string), string description = default(string), IList rules = default(IList)) + /// The description of the web application + /// firewall rule group. + public ApplicationGatewayFirewallRuleGroup(string ruleGroupName, IList rules, string description = default(string)) { RuleGroupName = ruleGroupName; Description = description; @@ -63,6 +64,33 @@ public ApplicationGatewayFirewallRuleGroup() { } [JsonProperty(PropertyName = "rules")] public IList Rules { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (RuleGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RuleGroupName"); + } + if (Rules == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Rules"); + } + if (Rules != null) + { + foreach (var element in Rules) + { + if (element != null) + { + element.Validate(); + } + } + } + } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs index 15bd9c15b359..56b42aae6476 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/ApplicationGatewayFirewallRuleSet.cs @@ -34,6 +34,12 @@ public ApplicationGatewayFirewallRuleSet() { } /// Initializes a new instance of the ApplicationGatewayFirewallRuleSet /// class. /// + /// The type of the web application firewall + /// rule set. + /// The version of the web application + /// firewall rule set type. + /// The rule groups of the web application + /// firewall rule set. /// Resource ID. /// Resource name. /// Resource type. @@ -41,13 +47,7 @@ public ApplicationGatewayFirewallRuleSet() { } /// Resource tags. /// The provisioning state of the web /// application firewall rule set. - /// The type of the web application firewall - /// rule set. - /// The version of the web application - /// firewall rule set type. - /// The rule groups of the web application - /// firewall rule set. - public ApplicationGatewayFirewallRuleSet(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), string ruleSetType = default(string), string ruleSetVersion = default(string), IList ruleGroups = default(IList)) + public ApplicationGatewayFirewallRuleSet(string ruleSetType, string ruleSetVersion, IList ruleGroups, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string)) : base(id, name, type, location, tags) { ProvisioningState = provisioningState; @@ -83,6 +83,37 @@ public ApplicationGatewayFirewallRuleSet() { } [JsonProperty(PropertyName = "properties.ruleGroups")] public IList RuleGroups { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (RuleSetType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RuleSetType"); + } + if (RuleSetVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RuleSetVersion"); + } + if (RuleGroups == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RuleGroups"); + } + if (RuleGroups != null) + { + foreach (var element in RuleGroups) + { + if (element != null) + { + element.Validate(); + } + } + } + } } } diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs index 3294f6718183..26033b7b5b48 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs @@ -395,7 +395,7 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn { new ApplicationGatewayFirewallDisabledRuleGroup( "crs_41_sql_injection_attacks", - new List() { 981318 }) + new List() { 981318 }) } } }; @@ -550,10 +550,8 @@ public void ApplicationGatewayApiTest() Assert.NotNull(availableWAFRuleSets.Value[0].RuleSetType); Assert.NotNull(availableWAFRuleSets.Value[0].RuleSetVersion); Assert.NotEmpty(availableWAFRuleSets.Value[0].RuleGroups); - Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].Description); Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].RuleGroupName); Assert.NotEmpty(availableWAFRuleSets.Value[0].RuleGroups[0].Rules); - Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].Rules[0].Description); Assert.NotNull(availableWAFRuleSets.Value[0].RuleGroups[0].Rules[0].RuleId); From dce29a75f3d493cefc37d757e5d58debc75502f4 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Tue, 21 Mar 2017 18:14:24 -0700 Subject: [PATCH 34/56] #INIT updated the api-version to 2016-03-01 in the Network *Operation.cs files. --- .../ApplicationGatewaysOperations.cs | 16 ++++++------ .../BgpServiceCommunitiesOperations.cs | 2 +- ...essRouteCircuitAuthorizationsOperations.cs | 8 +++--- .../ExpressRouteCircuitPeeringsOperations.cs | 8 +++--- .../ExpressRouteCircuitsOperations.cs | 20 +++++++------- .../ExpressRouteServiceProvidersOperations.cs | 2 +- .../Generated/LoadBalancersOperations.cs | 10 +++---- .../LocalNetworkGatewaysOperations.cs | 8 +++--- .../Generated/NetworkInterfacesOperations.cs | 14 +++++----- .../Generated/NetworkManagementClient.cs | 2 +- .../NetworkSecurityGroupsOperations.cs | 10 +++---- .../Generated/NetworkWatchersOperations.cs | 26 +++++++++---------- .../Generated/PacketCapturesOperations.cs | 12 ++++----- .../Generated/PublicIpAddressesOperations.cs | 10 +++---- .../Generated/RouteFilterRulesOperations.cs | 10 +++---- .../Generated/RouteFiltersOperations.cs | 12 ++++----- .../Generated/RouteTablesOperations.cs | 10 +++---- .../Generated/RoutesOperations.cs | 8 +++--- .../Generated/SecurityRulesOperations.cs | 8 +++--- .../Generated/SubnetsOperations.cs | 8 +++--- .../Generated/UsagesOperations.cs | 2 +- ...tualNetworkGatewayConnectionsOperations.cs | 14 +++++----- .../VirtualNetworkGatewaysOperations.cs | 18 ++++++------- .../VirtualNetworkPeeringsOperations.cs | 8 +++--- .../Generated/VirtualNetworksOperations.cs | 12 ++++----- 25 files changed, 129 insertions(+), 129 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs index 1304539a2f17..eac66811a1e3 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs @@ -116,7 +116,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -328,7 +328,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -506,7 +506,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -764,7 +764,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -943,7 +943,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1159,7 +1159,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1324,7 +1324,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1497,7 +1497,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs index fbf6072faf89..0f239babdefb 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/BgpServiceCommunitiesOperations.cs @@ -80,7 +80,7 @@ internal BgpServiceCommunitiesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs index 415877929d59..a7915b341560 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitAuthorizationsOperations.cs @@ -127,7 +127,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -352,7 +352,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -551,7 +551,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -736,7 +736,7 @@ internal ExpressRouteCircuitAuthorizationsOperations(NetworkManagementClient cli { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs index 57bc445de11a..0bb703b7a23c 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitPeeringsOperations.cs @@ -126,7 +126,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -734,7 +734,7 @@ internal ExpressRouteCircuitPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs index 25af2d5fa863..6b52e1e9fb92 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteCircuitsOperations.cs @@ -116,7 +116,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -423,7 +423,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -624,7 +624,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -813,7 +813,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -991,7 +991,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1178,7 +1178,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1354,7 +1354,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1588,7 +1588,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1801,7 +1801,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2014,7 +2014,7 @@ internal ExpressRouteCircuitsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs index d14c8cb79dac..3fff7273ca3e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ExpressRouteServiceProvidersOperations.cs @@ -80,7 +80,7 @@ internal ExpressRouteServiceProvidersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs index 13b32fbe0c2e..9204f6baaea7 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LoadBalancersOperations.cs @@ -119,7 +119,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal LoadBalancersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs index 482a33ce2fcc..5b990240d851 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs @@ -120,7 +120,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -533,7 +533,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -749,7 +749,7 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs index 40a02eb86e16..525d96aceb34 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkInterfacesOperations.cs @@ -119,7 +119,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1363,7 +1363,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1538,7 +1538,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1757,7 +1757,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1951,7 +1951,7 @@ internal NetworkInterfacesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs index c391afbcc5bb..d67a6eaf2fbd 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkManagementClient.cs @@ -492,7 +492,7 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "this.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs index aeca4d060053..e19347f56e70 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkSecurityGroupsOperations.cs @@ -119,7 +119,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -331,7 +331,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -514,7 +514,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -703,7 +703,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -880,7 +880,7 @@ internal NetworkSecurityGroupsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs index 070dc4e02b9e..9a5badd7b810 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/NetworkWatchersOperations.cs @@ -101,7 +101,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -320,7 +320,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -529,7 +529,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -707,7 +707,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -908,7 +908,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1282,7 +1282,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1462,7 +1462,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1692,7 +1692,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1922,7 +1922,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2152,7 +2152,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2382,7 +2382,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2612,7 +2612,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2842,7 +2842,7 @@ internal NetworkWatchersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs index d0991beed77d..f4c6230ac541 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PacketCapturesOperations.cs @@ -129,7 +129,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -400,7 +400,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -612,7 +612,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -819,7 +819,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -993,7 +993,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1170,7 +1170,7 @@ internal PacketCapturesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs index a7824035e5a0..b3c24481d2a9 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/PublicIpAddressesOperations.cs @@ -119,7 +119,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal PublicIPAddressesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs index d0d79d3e759c..df48c96625a5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFilterRulesOperations.cs @@ -126,7 +126,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -378,7 +378,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -576,7 +576,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -768,7 +768,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { routeFilterRuleParameters = new RouteFilterRule(); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1007,7 +1007,7 @@ internal RouteFilterRulesOperations(NetworkManagementClient client) { routeFilterRuleParameters = new PatchRouteFilterRule(); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs index 2e88eb338d9e..b1503a90165e 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteFiltersOperations.cs @@ -119,7 +119,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -361,7 +361,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -539,7 +539,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -726,7 +726,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -901,7 +901,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1127,7 +1127,7 @@ internal RouteFiltersOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs index cdf2aeeb916f..f932e1b31272 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RouteTablesOperations.cs @@ -119,7 +119,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -336,7 +336,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -514,7 +514,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -701,7 +701,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -876,7 +876,7 @@ internal RouteTablesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs index 49913de1c6f5..3c1c572df681 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/RoutesOperations.cs @@ -126,7 +126,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -350,7 +350,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -548,7 +548,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -736,7 +736,7 @@ internal RoutesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs index 8fce4b56a92e..32f094919c35 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SecurityRulesOperations.cs @@ -126,7 +126,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -738,7 +738,7 @@ internal SecurityRulesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs index e6ba2ddfeaac..011c231e0b09 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/SubnetsOperations.cs @@ -129,7 +129,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -358,7 +358,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -740,7 +740,7 @@ internal SubnetsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs index 7565dd077bdd..51bf83fdccd5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/UsagesOperations.cs @@ -94,7 +94,7 @@ internal UsagesOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs index c17abfa1ae4e..c0cfd3175707 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewayConnectionsOperations.cs @@ -121,7 +121,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -368,7 +368,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -556,7 +556,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -790,7 +790,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1006,7 +1006,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1189,7 +1189,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1423,7 +1423,7 @@ internal VirtualNetworkGatewayConnectionsOperations(NetworkManagementClient clie { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs index eb992e20de22..129061612af9 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs @@ -120,7 +120,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -561,7 +561,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -848,7 +848,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1064,7 +1064,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1237,7 +1237,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1439,7 +1439,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1639,7 +1639,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1841,7 +1841,7 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs index e9249a583ea6..308efbfb5b0b 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkPeeringsOperations.cs @@ -126,7 +126,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -351,7 +351,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -549,7 +549,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -734,7 +734,7 @@ internal VirtualNetworkPeeringsOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs index 8dc887aadf03..b2fe8e257173 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworksOperations.cs @@ -119,7 +119,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -329,7 +329,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -512,7 +512,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -707,7 +707,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -903,7 +903,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1078,7 +1078,7 @@ internal VirtualNetworksOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-12-01"; + string apiVersion = "2017-03-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; From f9160944092bdf284fc789d74e8fde07fdf2243e Mon Sep 17 00:00:00 2001 From: jobatzil Date: Tue, 21 Mar 2017 18:17:27 -0700 Subject: [PATCH 35/56] #INIT Updated Version number to 10.0.0 (next major version) since there will be breaking changes for application gateway. --- .../Properties/AssemblyInfo.cs | 4 ++-- .../Network/Microsoft.Azure.Management.Network/project.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs index 31b13a51ad32..7e657ccc25ce 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.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("9.1.0.0")] -[assembly: AssemblyFileVersion("9.1.0.0")] +[assembly: AssemblyVersion("10.0.0.0")] +[assembly: AssemblyFileVersion("10.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json index d8484bf93b04..46699e29357c 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json @@ -1,6 +1,6 @@ { - "version": "9.1.0-preview", + "version": "10.0.0-preview", "description": "Provides management capabilities for Network services.", "authors": [ "Microsoft" ], From b0ec56585dd06e0982404819d2c4d265f6292b3d Mon Sep 17 00:00:00 2001 From: jobatzil Date: Tue, 21 Mar 2017 18:22:26 -0700 Subject: [PATCH 36/56] #INIT Changed version number to 2017-03-01 in Network/SessionRecordings. --- .../NetworkWatcherApiTest.json | 34 +- .../NextHopApiTest.json | 30 +- .../PacketCaptureApiTest.json | 86 +-- .../EmptyRouteTableTest.json | 40 +- .../RouteTableApiTest.json | 72 +- .../SubnetRouteTableTest.json | 42 +- .../RoutesApiTest.json | 98 +-- .../RoutesHopTypeTest.json | 82 +- .../TopologyApiTest.json | 14 +- .../TroubleshootApiTest.json | 308 ++++---- .../VerifyIpFlowApiTest.json | 36 +- .../ViewNsgRuleApiTest.json | 36 +- .../ApplicationGatewayApiTest.json | 364 ++++----- .../CheckDnsAvailabilityTest.json | 4 +- .../ExpandResourceTest.json | 224 +++--- ...ocalNettworkGatewayOperationsApisTest.json | 34 +- ...NetworkGatewayActiveActiveFeatureTest.json | 730 +++++++++--------- .../VirtualNetworkGatewayBgpRouteApiTest.json | 650 ++++++++-------- ...rkGatewayConnectionOperationsApisTest.json | 202 ++--- ...ConnectionSharedKeyOperationsApisTest.json | 194 ++--- ...alNetworkGatewayConnectionWithBgpTest.json | 384 ++++----- ...rtualNetworkGatewayOperationsApisTest.json | 256 +++--- ...alNetworkGatewayP2SOperationsApisTest.json | 224 +++--- .../CreateEmptyLoadBalancer.json | 32 +- .../LoadBalancerApiNicAssociationTest.json | 204 ++--- .../LoadBalancerApiTest.json | 70 +- ...BalancerApiTestWithDistributionPolicy.json | 94 +-- .../LoadBalancerApiTestWithDynamicIp.json | 70 +- .../LoadBalancerApiTestWithStaticIp.json | 70 +- .../LoadBalancerNatPoolTest.json | 72 +- .../LoadBalancerOutboundNatRuleTest.json | 62 +- .../UpdateLoadBalancerRule.json | 76 +- ...rtMultiIpConfigOnDifferentSubnetFails.json | 28 +- .../NetworkInterfaceApiTest.json | 100 +-- .../NetworkInterfaceApiTestIPv6.json | 100 +-- .../NetworkInterfaceDnsSettingsTest.json | 62 +- ...orkInterfaceDnsSettingsTestIdnsSuffix.json | 62 +- ...faceEffectiveNetworkSecurityGroupTest.json | 52 +- ...etworkInterfaceEnableIPForwardingTest.json | 76 +- .../NetworkInterfaceMultiIpConfigTest.json | 100 +-- ...workInterfaceNetworkSecurityGroupTest.json | 88 +-- ...nterfaceWithAcceleratedNetworkingTest.json | 24 +- .../NetworkSecurityGroupApiTest.json | 44 +- .../NetworkSecurityGroupWithRulesApiTest.json | 36 +- .../PublicIpAddressApiTest.json | 26 +- .../PublicIpAddressApiTestIPv6.json | 74 +- ...ApiTestWithIdletTimeoutAndReverseFqdn.json | 36 +- .../SecurityRuleWithRulesApiTest.json | 82 +- .../SubnetApiTest.json | 34 +- .../SubnetResourceNavigationLinksTest.json | 24 +- .../Networks.Tests.UsageTests/UsageTest.json | 24 +- .../VirtualNetworkPeeringApiTest.json | 106 +-- .../VirtualNetworkApiTest.json | 44 +- ...NetworkCheckIpAddressAvailabilityTest.json | 62 +- .../VirtualNetworkPeeringTest.json | 104 +-- 55 files changed, 3141 insertions(+), 3141 deletions(-) diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json index 483ad99cb2b6..1f5782cd10a0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NetworkWatcherTests/NetworkWatcherApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -112,7 +112,7 @@ "9351b98e-77c4-44e2-bf8e-d990ae99baad" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/9351b98e-77c4-44e2-bf8e-d990ae99baad?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/9351b98e-77c4-44e2-bf8e-d990ae99baad?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -130,8 +130,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,8 +195,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -257,8 +257,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -316,8 +316,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/networkWatchers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -378,8 +378,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/nw1965/providers/Microsoft.Network/networkWatchers/azsmnet8014?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL253MTk2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1dhdGNoZXJzL2F6c21uZXQ4MDE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -412,7 +412,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -425,7 +425,7 @@ "fb2a42c3-0444-493f-a0fa-9621aa519be3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,8 +443,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmIyYTQyYzMtMDQ0NC00OTNmLWEwZmEtOTYyMWFhNTE5YmUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/fb2a42c3-0444-493f-a0fa-9621aa519be3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmIyYTQyYzMtMDQ0NC00OTNmLWEwZmEtOTYyMWFhNTE5YmUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json index 2a1a14579d64..e5e91146f35e 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.NextHopTests/NextHopApiTest.json @@ -665,8 +665,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -715,7 +715,7 @@ "e5869a87-83b3-42bd-bf33-e9f605fae491" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e5869a87-83b3-42bd-bf33-e9f605fae491?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e5869a87-83b3-42bd-bf33-e9f605fae491?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +733,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkInterfaces/azsmnet8559?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODU1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkInterfaces/azsmnet8559?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0ODU1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Compute/virtualMachines/azsmnet7284\",\r\n \"sourceIPAddress\": \"10.17.3.4\",\r\n \"destinationIPAddress\": \"10.1.3.6\"\r\n}", "RequestHeaders": { @@ -906,7 +906,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -919,7 +919,7 @@ "9cc07329-1fde-4065-a053-e40cec04b207" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/9cc07329-1fde-4065-a053-e40cec04b207?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -937,8 +937,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/networkWatchers/azsmnet649/nextHop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDY0OS9uZXh0SG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Compute/virtualMachines/azsmnet7284\",\r\n \"sourceIPAddress\": \"10.17.3.4\",\r\n \"destinationIPAddress\": \"12.11.12.14\"\r\n}", "RequestHeaders": { @@ -980,7 +980,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -993,7 +993,7 @@ "7631bf51-f6c8-44ce-b10f-eb7a4f2b911a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/7631bf51-f6c8-44ce-b10f-eb7a4f2b911a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,8 +1011,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/routeTables/azsmnet8754RT?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9yb3V0ZVRhYmxlcy9henNtbmV0ODc1NFJUP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet8754/providers/Microsoft.Network/routeTables/azsmnet8754RT?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NzU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9yb3V0ZVRhYmxlcy9henNtbmV0ODc1NFJUP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json index c41050e1476a..5004e272b142 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.PacketCaptureTests/PacketCaptureApiTest.json @@ -1047,8 +1047,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -1097,7 +1097,7 @@ "d475e169-eb3a-4ff1-85fd-1034f270cd84" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/d475e169-eb3a-4ff1-85fd-1034f270cd84?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/d475e169-eb3a-4ff1-85fd-1034f270cd84?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1115,8 +1115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Compute/virtualMachines/azsmnet2053\",\r\n \"storageLocation\": {\r\n \"filePath\": \"C:\\\\tmp\\\\Capture.cap\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1168,7 +1168,7 @@ "538eea79-b0ec-4dba-92e0-7c509ef0b7ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1186,8 +1186,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUzOGVlYTc5LWIwZWMtNGRiYS05MmUwLTdjNTA5ZWYwYjdlYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/538eea79-b0ec-4dba-92e0-7c509ef0b7ea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzUzOGVlYTc5LWIwZWMtNGRiYS05MmUwLTdjNTA5ZWYwYjdlYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1242,8 +1242,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1366,8 +1366,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1403,7 +1403,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1416,7 +1416,7 @@ "ec9bb288-408a-41d0-ae84-f94fd6fedf27" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,8 +1434,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/queryStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3F1ZXJ5U3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1496,8 +1496,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VjOWJiMjg4LTQwOGEtNDFkMC1hZTg0LWY5NGZkNmZlZGYyNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/ec9bb288-408a-41d0-ae84-f94fd6fedf27?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2VjOWJiMjg4LTQwOGEtNDFkMC1hZTg0LWY5NGZkNmZlZGYyNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1552,8 +1552,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"target\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Compute/virtualMachines/azsmnet2053\",\r\n \"storageLocation\": {\r\n \"filePath\": \"C:\\\\tmp\\\\Capture.cap\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1605,7 +1605,7 @@ "4b310bbd-c281-4968-9e9a-b77e26e00f6e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1623,8 +1623,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiMzEwYmJkLWMyODEtNDk2OC05ZTlhLWI3N2UyNmUwMGY2ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/4b310bbd-c281-4968-9e9a-b77e26e00f6e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRiMzEwYmJkLWMyODEtNDk2OC05ZTlhLWI3N2UyNmUwMGY2ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1679,8 +1679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1738,8 +1738,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1800,8 +1800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1862,8 +1862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/stop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3N0b3A/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxL3N0b3A/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -1896,7 +1896,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1909,7 +1909,7 @@ "c0703af9-ffc0-44bb-a758-a3ad480b26ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1927,8 +1927,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MwNzAzYWY5LWZmYzAtNDRiYi1hNzU4LWEzYWQ0ODBiMjZlYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/c0703af9-ffc0-44bb-a758-a3ad480b26ea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2MwNzAzYWY5LWZmYzAtNDRiYi1hNzU4LWEzYWQ0ODBiMjZlYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1983,8 +1983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9634/providers/Microsoft.Network/networkWatchers/azsmnet6098/packetCaptures/pc1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDYwOTgvcGFja2V0Q2FwdHVyZXMvcGMxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2017,7 +2017,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2030,7 +2030,7 @@ "8702f3e3-43b6-4375-91cb-2702b45111c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2048,8 +2048,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3MDJmM2UzLTQzYjYtNDM3NS05MWNiLTI3MDJiNDUxMTFjNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/8702f3e3-43b6-4375-91cb-2702b45111c6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3MDJmM2UzLTQzYjYtNDM3NS05MWNiLTI3MDJiNDUxMTFjNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json index 2bd834c02f21..adeee1464ac0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/EmptyRouteTableTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "35da7f93-8db2-43da-aaee-cbee33c4e92f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzVkYTdmOTMtOGRiMi00M2RhLWFhZWUtY2JlZTMzYzRlOTJmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/35da7f93-8db2-43da-aaee-cbee33c4e92f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzVkYTdmOTMtOGRiMi00M2RhLWFhZWUtY2JlZTMzYzRlOTJmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/routeTables/azsmnet7852?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDc4NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -510,7 +510,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -523,7 +523,7 @@ "2b8e410d-5522-437c-8e5f-16426f3e2b5a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -541,8 +541,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmI4ZTQxMGQtNTUyMi00MzdjLThlNWYtMTY0MjZmM2UyYjVhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2b8e410d-5522-437c-8e5f-16426f3e2b5a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmI4ZTQxMGQtNTUyMi00MzdjLThlNWYtMTY0MjZmM2UyYjVhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json index 7d7c856175ba..821324b2d08f 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/RouteTableApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet9901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "55728bff-dfad-4ff4-8aad-4ed50245308d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9901\",\r\n \"etag\": \"W/\\\"77513881-83f7-4b85-b66c-f2a740b9c821\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082/routes/azsmnet9901\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet640\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"77513881-83f7-4b85-b66c-f2a740b9c821\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -240,7 +240,7 @@ "5fc2c695-c0aa-4819-8ab7-2398c2fc9815" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -258,8 +258,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet640\",\r\n \"etag\": \"W/\\\"c9fdeab8-48f9-4c38-92b0-49b62d549d9b\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082/routes/azsmnet640\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"c9fdeab8-48f9-4c38-92b0-49b62d549d9b\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082\",\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -313,7 +313,7 @@ "b7ab5b3a-9865-44ad-b846-198e40e424bf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,8 +331,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU3MjhiZmYtZGZhZC00ZmY0LThhYWQtNGVkNTAyNDUzMDhkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/55728bff-dfad-4ff4-8aad-4ed50245308d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTU3MjhiZmYtZGZhZC00ZmY0LThhYWQtNGVkNTAyNDUzMDhkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -386,8 +386,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -444,8 +444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,8 +508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -566,8 +566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -630,8 +630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -688,8 +688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,8 +752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjMmM2OTUtYzBhYS00ODE5LThhYjctMjM5OGMyZmM5ODE1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5fc2c695-c0aa-4819-8ab7-2398c2fc9815?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZjMmM2OTUtYzBhYS00ODE5LThhYjctMjM5OGMyZmM5ODE1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -807,8 +807,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhYjViM2EtOTg2NS00NGFkLWI4NDYtMTk4ZTQwZTQyNGJmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b7ab5b3a-9865-44ad-b846-198e40e424bf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjdhYjViM2EtOTg2NS00NGFkLWI4NDYtMTk4ZTQwZTQyNGJmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables/azsmnet6082?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDYwODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -895,7 +895,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -908,7 +908,7 @@ "0b9039be-45a5-44ea-a8b3-7fe457a1cd33" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -926,8 +926,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGI5MDM5YmUtNDVhNS00NGVhLWE4YjMtN2ZlNDU3YTFjZDMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0b9039be-45a5-44ea-a8b3-7fe457a1cd33?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGI5MDM5YmUtNDVhNS00NGVhLWE4YjMtN2ZlNDU3YTFjZDMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -981,8 +981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8728/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODcyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json index 024c07448d3a..6b8c7b0306d1 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTableTests/SubnetRouteTableTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet1701\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "db718a7a-2819-4a41-bffb-5feb27c54cd5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGI3MThhN2EtMjgxOS00YTQxLWJmZmItNWZlYjI3YzU0Y2Q1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/db718a7a-2819-4a41-bffb-5feb27c54cd5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGI3MThhN2EtMjgxOS00YTQxLWJmZmItNWZlYjI3YzU0Y2Q1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDE2MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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 \"routeTable\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/routeTables/azsmnet1616\"\r\n }\r\n },\r\n \"name\": \"azsmnet5364\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -478,7 +478,7 @@ "3effea22-c97a-441b-bb82-cfb69337e2da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,8 +496,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2VmZmVhMjItYzk3YS00NDFiLWJiODItY2ZiNjkzMzdlMmRhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3effea22-c97a-441b-bb82-cfb69337e2da?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2VmZmVhMjItYzk3YS00NDFiLWJiODItY2ZiNjkzMzdlMmRhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926/subnets/azsmnet5364?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2L3N1Ym5ldHMvYXpzbW5ldDUzNjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3405/providers/Microsoft.Network/virtualNetworks/azsmnet5926/subnets/azsmnet5364?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQwNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1OTI2L3N1Ym5ldHMvYXpzbW5ldDUzNjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json index c902904a598a..d98a8c9107da 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet8055\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "76a65d58-ba0b-4e45-bfe8-c136db94de75" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzZhNjVkNTgtYmEwYi00ZTQ1LWJmZTgtYzEzNmRiOTRkZTc1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/76a65d58-ba0b-4e45-bfe8-c136db94de75?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzZhNjVkNTgtYmEwYi00ZTQ1LWJmZTgtYzEzNmRiOTRkZTc1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet7452\"\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "e16412d4-be93-44d3-adb5-c57c17c4b04b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2NDEyZDQtYmU5My00NGQzLWFkYjUtYzU3YzE3YzRiMDRiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16412d4-be93-44d3-adb5-c57c17c4b04b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2NDEyZDQtYmU5My00NGQzLWFkYjUtYzU3YzE3YzRiMDRiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet8055?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ4MDU1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -953,7 +953,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -966,7 +966,7 @@ "7ceea8ac-c52e-4ae5-9538-04668b6876d9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -984,8 +984,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlZWE4YWMtYzUyZS00YWU1LTk1MzgtMDQ2NjhiNjg3NmQ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/7ceea8ac-c52e-4ae5-9538-04668b6876d9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2NlZWE4YWMtYzUyZS00YWU1LTk1MzgtMDQ2NjhiNjg3NmQ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1039,8 +1039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176/routes/azsmnet7452?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzYvcm91dGVzL2F6c21uZXQ3NDUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1072,7 +1072,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1085,7 +1085,7 @@ "eb05162d-43fa-4257-a64e-cf2042a84145" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1103,8 +1103,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIwNTE2MmQtNDNmYS00MjU3LWE2NGUtY2YyMDQyYTg0MTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb05162d-43fa-4257-a64e-cf2042a84145?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWIwNTE2MmQtNDNmYS00MjU3LWE2NGUtY2YyMDQyYTg0MTQ1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1158,8 +1158,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables/azsmnet8176?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDgxNzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1191,7 +1191,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1204,7 +1204,7 @@ "1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1222,8 +1222,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE5YTQwMTMtYTllZi00ZjIxLTk3M2MtN2U3ZWM5MWUzZWY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a9a4013-a9ef-4f21-973c-7e7ec91e3ef5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE5YTQwMTMtYTllZi00ZjIxLTk3M2MtN2U3ZWM5MWUzZWY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1277,8 +1277,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4808/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDgwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json index 8760a80a1ab2..02ee66eae483 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.RouteTests/RoutesHopTypeTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"nextHopType\": \"VirtualAppliance\",\r\n \"nextHopIpAddress\": \"23.108.1.1\"\r\n },\r\n \"name\": \"azsmnet9157\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlYzQyMWItZDFiOC00MzIwLThjNmItOWZmNTRjMWM4ZmE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2bec421b-d1b8-4320-8c6b-9ff54c1c8fa8?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMmJlYzQyMWItZDFiOC00MzIwLThjNmItOWZmNTRjMWM4ZmE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"nextHopType\": \"VnetLocal\"\r\n },\r\n \"name\": \"azsmnet9228\"\r\n}", "RequestHeaders": { @@ -478,7 +478,7 @@ "bc0aef85-92ff-4497-91b2-395dbe161889" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -496,8 +496,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmMwYWVmODUtOTJmZi00NDk3LTkxYjItMzk1ZGJlMTYxODg5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc0aef85-92ff-4497-91b2-395dbe161889?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmMwYWVmODUtOTJmZi00NDk3LTkxYjItMzk1ZGJlMTYxODg5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5MjI4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"0.0.0.0/0\",\r\n \"nextHopType\": \"Internet\"\r\n },\r\n \"name\": \"azsmnet9790\"\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "47dc13fe-9612-4fd4-87bd-175568585ebe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDdkYzEzZmUtOTYxMi00ZmQ0LTg3YmQtMTc1NTY4NTg1ZWJlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/47dc13fe-9612-4fd4-87bd-175568585ebe?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDdkYzEzZmUtOTYxMi00ZmQ0LTg3YmQtMTc1NTY4NTg1ZWJlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet9790?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"nextHopType\": \"None\"\r\n },\r\n \"name\": \"azsmnet4509\"\r\n}", "RequestHeaders": { @@ -844,7 +844,7 @@ "6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -862,8 +862,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmI2NjUwYTctM2IwZS00NmEyLWJiOGItY2JkMmRlMWQwZmUyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6b6650a7-3b0e-46a2-bb8b-cbd2de1d0fe2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmI2NjUwYTctM2IwZS00NmEyLWJiOGItY2JkMmRlMWQwZmUyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -917,8 +917,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436/routes/azsmnet4509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzYvcm91dGVzL2F6c21uZXQ0NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -975,8 +975,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables/azsmnet4436?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXMvYXpzbW5ldDQ0MzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1008,7 +1008,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1021,7 +1021,7 @@ "c12dc6cd-d1e1-4085-8d86-3eac68fdc33d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1039,8 +1039,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzEyZGM2Y2QtZDFlMS00MDg1LThkODYtM2VhYzY4ZmRjMzNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c12dc6cd-d1e1-4085-8d86-3eac68fdc33d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzEyZGM2Y2QtZDFlMS00MDg1LThkODYtM2VhYzY4ZmRjMzNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1094,8 +1094,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6661/providers/Microsoft.Network/routeTables?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjY2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcm91dGVUYWJsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json index cd7c02ce37cb..1b27c1501acd 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TopologyTests/TopologyApiTest.json @@ -726,8 +726,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -776,7 +776,7 @@ "212074f1-8a6c-46e3-ba4f-d964fbe2c7c1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/212074f1-8a6c-46e3-ba4f-d964fbe2c7c1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/212074f1-8a6c-46e3-ba4f-d964fbe2c7c1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654/topology?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQvdG9wb2xvZ3k/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet1863/providers/Microsoft.Network/networkWatchers/azsmnet4654/topology?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQ2NTQvdG9wb2xvZ3k/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceGroupName\": \"azsmnet2771\"\r\n}", "RequestHeaders": { @@ -902,7 +902,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -918,7 +918,7 @@ "977c0f9b-3ef5-4b33-a841-46dbcee82fe1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/977c0f9b-3ef5-4b33-a841-46dbcee82fe1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json index 382e7c76626d..90da17bb11b2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.TroubleshootTests/TroubleshootApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet15\"\r\n }\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "1ca0e867-c51b-4fef-851d-418988eaf043" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -133,8 +133,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTBlODY3LWM1MWItNGZlZi04NTFkLTQxODk4OGVhZjA0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1ca0e867-c51b-4fef-851d-418988eaf043?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYTBlODY3LWM1MWItNGZlZi04NTFkLTQxODk4OGVhZjA0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -189,8 +189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -248,8 +248,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0MjM3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -366,7 +366,7 @@ "1cbebe68-0826-45e7-9f5d-870381f3a44c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -384,8 +384,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYmViZTY4LTA4MjYtNDVlNy05ZjVkLTg3MDM4MWYzYTQ0Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/1cbebe68-0826-45e7-9f5d-870381f3a44c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFjYmViZTY4LTA4MjYtNDVlNy05ZjVkLTg3MDM4MWYzYTQ0Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -440,8 +440,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -564,8 +564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDcvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDQ3MDcvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -629,8 +629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworks/azsmnet4707/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/publicIPAddresses/azsmnet2376\"\r\n }\r\n },\r\n \"name\": \"azsmnet1522\"\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 },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "df09e118-3cc2-460c-8c31-14fef8a5b18d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -700,8 +700,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,8 +759,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -818,8 +818,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -877,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -936,8 +936,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -995,8 +995,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1113,8 +1113,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1172,8 +1172,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1231,8 +1231,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1290,8 +1290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1349,8 +1349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1408,8 +1408,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1467,8 +1467,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1526,8 +1526,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1585,8 +1585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1644,8 +1644,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1703,8 +1703,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1762,8 +1762,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1821,8 +1821,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1880,8 +1880,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1939,8 +1939,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1998,8 +1998,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2057,8 +2057,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2116,8 +2116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2175,8 +2175,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2234,8 +2234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2293,8 +2293,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2352,8 +2352,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2411,8 +2411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2470,8 +2470,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2529,8 +2529,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2588,8 +2588,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2647,8 +2647,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2706,8 +2706,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2765,8 +2765,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2824,8 +2824,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2883,8 +2883,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2942,8 +2942,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3001,8 +3001,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3060,8 +3060,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3119,8 +3119,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3178,8 +3178,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3237,8 +3237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3296,8 +3296,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,8 +3355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3414,8 +3414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3473,8 +3473,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3532,8 +3532,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3591,8 +3591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3650,8 +3650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3709,8 +3709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3768,8 +3768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3827,8 +3827,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3886,8 +3886,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3945,8 +3945,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4004,8 +4004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4063,8 +4063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/df09e118-3cc2-460c-8c31-14fef8a5b18d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RmMDllMTE4LTNjYzItNDYwYy04YzMxLTE0ZmVmOGE1YjE4ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4119,8 +4119,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4175,8 +4175,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ5MDIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4237,8 +4237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -4287,7 +4287,7 @@ "e7ecc344-7735-4bcd-876b-2ba738043a92" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e7ecc344-7735-4bcd-876b-2ba738043a92?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/e7ecc344-7735-4bcd-876b-2ba738043a92?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4429,8 +4429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108/troubleshoot?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDgvdHJvdWJsZXNob290P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/networkWatchers/azsmnet4108/troubleshoot?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MjI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDQxMDgvdHJvdWJsZXNob290P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9020\",\r\n \"properties\": {\r\n \"storageId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet9224/providers/Microsoft.Storage/storageAccounts/azsmnet62\",\r\n \"storagePath\": \"https://nwtestdbdzq4xsvskrei6.blob.core.windows.net/vhds\"\r\n }\r\n}", "RequestHeaders": { @@ -4472,7 +4472,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4485,7 +4485,7 @@ "de538d0a-5abe-455c-87cf-ad8890184879" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4503,8 +4503,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4562,8 +4562,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/de538d0a-5abe-455c-87cf-ad8890184879?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlNTM4ZDBhLTVhYmUtNDU1Yy04N2NmLWFkODg5MDE4NDg3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json index 5d04662ccffa..b1352a40cb04 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.VerifyIpFlowTests/VerifyIpFlowApiTest.json @@ -714,8 +714,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -764,7 +764,7 @@ "c8656941-8f2e-429f-a1d8-e8b3f2cb69f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/c8656941-8f2e-429f-a1d8-e8b3f2cb69f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/c8656941-8f2e-429f-a1d8-e8b3f2cb69f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -847,8 +847,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NzAwMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NzAwMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -912,8 +912,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -977,8 +977,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,8 +1036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDgwNjAtbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"default-allow-rdp\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/securityRules/default-allow-rdp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet3313\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkInterfaces/azsmnet7000\"\r\n }\r\n ],\r\n \"resourceGuid\": \"a62c6ffb-62da-4576-82e9-a68a189ac62e\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"529cb430-9f67-4e06-a1dc-8677342c8e81\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkSecurityGroups/azsmnet8060-nsg\",\r\n \"name\": \"azsmnet8060-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { @@ -1092,7 +1092,7 @@ "f6cbe102-c2a0-4c0f-89bf-f1b687a94704" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1110,8 +1110,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjZjYmUxMDItYzJhMC00YzBmLTg5YmYtZjFiNjg3YTk0NzA0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/f6cbe102-c2a0-4c0f-89bf-f1b687a94704?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjZjYmUxMDItYzJhMC00YzBmLTg5YmYtZjFiNjg3YTk0NzA0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1166,8 +1166,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692/ipFlowVerify?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTIvaXBGbG93VmVyaWZ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Network/networkWatchers/azsmnet3692/ipFlowVerify?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzODk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDM2OTIvaXBGbG93VmVyaWZ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet3899/providers/Microsoft.Compute/virtualMachines/azsmnet8060\",\r\n \"direction\": \"Outbound\",\r\n \"protocol\": \"TCP\",\r\n \"localPort\": \"80\",\r\n \"remotePort\": \"80\",\r\n \"localIPAddress\": \"10.17.3.4\",\r\n \"remoteIPAddress\": \"12.11.12.14\"\r\n}", "RequestHeaders": { @@ -1209,7 +1209,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operationResults/4264c957-2faa-4692-8c38-242a692e9799?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1222,7 +1222,7 @@ "4264c957-2faa-4692-8c38-242a692e9799" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/4264c957-2faa-4692-8c38-242a692e9799?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/eastus/operations/4264c957-2faa-4692-8c38-242a692e9799?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json index 1706ef515653..9a621745b15b 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Network.Tests.Tests.ViewNsgRuleTests/ViewNsgRuleApiTest.json @@ -616,8 +616,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -666,7 +666,7 @@ "45676481-77c2-4ebe-bceb-39d71832bc4b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/45676481-77c2-4ebe-bceb-39d71832bc4b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/45676481-77c2-4ebe-bceb-39d71832bc4b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -749,8 +749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NDE5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9henNtbmV0NDE5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,8 +814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -879,8 +879,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDIwMTktbnNnP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"TCP\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"3389\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"default-allow-rdp\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/securityRules/default-allow-rdp\"\r\n },\r\n {\r\n \"properties\": {\r\n \"description\": \"Test outbound security rule\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 501,\r\n \"direction\": \"Outbound\"\r\n },\r\n \"name\": \"azsmnet1718\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkInterfaces/azsmnet4197\"\r\n }\r\n ],\r\n \"resourceGuid\": \"f93d2782-b4c9-4d0b-86d0-598825130420\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"95e7a36f-85dc-43b1-bf6f-5d453932a37d\\\"\",\r\n \"id\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkSecurityGroups/azsmnet2019-nsg\",\r\n \"name\": \"azsmnet2019-nsg\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { @@ -994,7 +994,7 @@ "6311637f-6802-48cb-b2df-da99aef9e651" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1012,8 +1012,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzMTE2MzdmLTY4MDItNDhjYi1iMmRmLWRhOTlhZWY5ZTY1MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/6311637f-6802-48cb-b2df-da99aef9e651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzMTE2MzdmLTY4MDItNDhjYi1iMmRmLWRhOTlhZWY5ZTY1MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1068,8 +1068,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735/securityGroupView?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzUvc2VjdXJpdHlHcm91cFZpZXc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Network/networkWatchers/azsmnet7735/securityGroupView?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjUxNTY5ZTItNjU3My00ZTE5LTgwODgtYTA4OWNiOGI5N2E5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2Nzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrV2F0Y2hlcnMvYXpzbW5ldDc3MzUvc2VjdXJpdHlHcm91cFZpZXc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"targetResourceId\": \"/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/resourceGroups/azsmnet6795/providers/Microsoft.Compute/virtualMachines/azsmnet2019\"\r\n}", "RequestHeaders": { @@ -1111,7 +1111,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operationResults/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1124,7 +1124,7 @@ "eb1dc242-8ea0-44d9-abb5-711a6565abdb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/651569e2-6573-4e19-8088-a089cb8b97a9/providers/Microsoft.Network/locations/westcentralus/operations/eb1dc242-8ea0-44d9-abb5-711a6565abdb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json index 211e7bf6dd4c..0efc306131f2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json @@ -62,8 +62,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet5890\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet5901\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -115,7 +115,7 @@ "71222849-9014-4ff9-9246-f27a40349b03" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -133,8 +133,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/71222849-9014-4ff9-9246-f27a40349b03?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy83MTIyMjg0OS05MDE0LTRmZjktOTI0Ni1mMjdhNDAzNDliMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -189,8 +189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -248,8 +248,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -313,8 +313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NTQ4L3N1Ym5ldHMvYXpzbW5ldDU4OTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -378,8 +378,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet3365\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet4388\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5890\"\r\n }\r\n },\r\n \"name\": \"azsmnet6124\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet2727\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet9197\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet2218\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9593\"\r\n },\r\n {\r\n \"name\": \"azsmnet6875\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/probes/azsmnet2218\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet1710\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/authenticationCertificates/azsmnet4388\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet9515\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet2727\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet5067\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendIPConfigurations/azsmnet6124\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/frontendPorts/azsmnet9197\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet8609\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet1710\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet5067\"\r\n }\r\n },\r\n \"name\": \"azsmnet1800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet9593\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendHttpSettingsCollection/azsmnet9515\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/httpListeners/azsmnet8609\"\r\n }\r\n },\r\n \"name\": \"azsmnet3533\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\"\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -431,7 +431,7 @@ "8248159d-4703-478e-a374-caf55cf6018e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -449,8 +449,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,8 +508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -567,8 +567,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -626,8 +626,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -685,8 +685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -744,8 +744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -803,8 +803,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -921,8 +921,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -980,8 +980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1039,8 +1039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1098,8 +1098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1157,8 +1157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1216,8 +1216,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1275,8 +1275,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1334,8 +1334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,8 +1393,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1452,8 +1452,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1511,8 +1511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1570,8 +1570,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1629,8 +1629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1747,8 +1747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1806,8 +1806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1865,8 +1865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1924,8 +1924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1983,8 +1983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/8248159d-4703-478e-a374-caf55cf6018e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84MjQ4MTU5ZC00NzAzLTQ3OGUtYTM3NC1jYWY1NWNmNjAxOGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2039,8 +2039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2098,8 +2098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2163,8 +2163,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2228,8 +2228,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendhealth?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2265,7 +2265,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2293,8 +2293,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9lMGM4Yzg4YS1jMjMyLTQ3YzMtYjI4My1jNzBhYTMyMDE4ZWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2324,7 +2324,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e0c8c88a-c232-47c3-b283-c70aa32018ee?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2352,8 +2352,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2402,7 +2402,7 @@ "b9b2c43b-9d12-4e3f-b1b2-c635b845cea0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/b9b2c43b-9d12-4e3f-b1b2-c635b845cea0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2420,8 +2420,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"58a19845-4afd-4c4d-bcee-dadd6e6f51fb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"786fc028-5f3c-4a96-9f1b-be41eabc275f\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961\",\r\n \"name\": \"azsmnet4961\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2476,7 +2476,7 @@ "4a050275-6023-4176-b8b9-1fb4c5495a05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2494,8 +2494,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2553,8 +2553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2618,8 +2618,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet4961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ5NjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2677,8 +2677,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2727,7 +2727,7 @@ "31c62262-91c7-45ef-8c21-7d717c337a7c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/31c62262-91c7-45ef-8c21-7d717c337a7c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2745,8 +2745,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet6875\",\r\n \"etag\": \"W/\\\"1e37c295-581c-4ac3-a5d1-07e7281cd9a0\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/backendAddressPools/azsmnet6875\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/virtualNetworks/azsmnet8548/subnets/azsmnet5901\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ac3qtlvrafruvokvkyxpmfqnmb.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"4ce00b8d-50c4-4066-a895-3c5c1c04c7b5\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"46896004-bae1-46c5-9443-58bae607eb26\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912\",\r\n \"name\": \"azsmnet6912\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2801,7 +2801,7 @@ "5183ed56-0494-4453-a87f-f2fb9526ff4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2819,8 +2819,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2878,8 +2878,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2943,8 +2943,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/networkInterfaces/azsmnet6912?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,8 +3002,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3061,8 +3061,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3120,8 +3120,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3179,8 +3179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3238,8 +3238,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3297,8 +3297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3356,8 +3356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3415,8 +3415,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3474,8 +3474,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3533,8 +3533,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3592,8 +3592,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3651,8 +3651,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3710,8 +3710,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3769,8 +3769,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3828,8 +3828,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3887,8 +3887,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3946,8 +3946,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4005,8 +4005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4064,8 +4064,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4a050275-6023-4176-b8b9-1fb4c5495a05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80YTA1MDI3NS02MDIzLTQxNzYtYjhiOS0xZmI0YzU0OTVhMDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4120,8 +4120,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4179,8 +4179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4238,8 +4238,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4297,8 +4297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4356,8 +4356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4415,8 +4415,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4474,8 +4474,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5183ed56-0494-4453-a87f-f2fb9526ff4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81MTgzZWQ1Ni0wNDk0LTQ0NTMtYTg3Zi1mMmZiOTUyNmZmNGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4530,8 +4530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/start?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -4564,7 +4564,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4574,7 +4574,7 @@ "796a9be1-c827-490e-b609-a4ad9394d044" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/796a9be1-c827-490e-b609-a4ad9394d044?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4592,8 +4592,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -4626,7 +4626,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4639,7 +4639,7 @@ "a3f3b726-de0a-4182-9301-e00e9195aba1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4657,8 +4657,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4716,8 +4716,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4775,8 +4775,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4834,8 +4834,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/a3f3b726-de0a-4182-9301-e00e9195aba1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9hM2YzYjcyNi1kZTBhLTQxODItOTMwMS1lMDBlOTE5NWFiYTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4890,8 +4890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg1399/providers/Microsoft.Network/applicationGateways/azsmnet5344?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnMTM5OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0NTM0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4924,7 +4924,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4937,7 +4937,7 @@ "2f925788-a452-4929-b3ca-ea32aa3a2049" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4955,8 +4955,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5014,8 +5014,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5073,8 +5073,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2f925788-a452-4929-b3ca-ea32aa3a2049?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZjkyNTc4OC1hNDUyLTQ5MjktYjNjYS1lYTMyYWEzYTIwNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json index 0efb805f49d7..6a6241b721d6 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.CheckDnsAvailabilityTests/CheckDnsAvailabilityTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -54,7 +54,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/WestUS/CheckDnsNameAvailability?domainNameLabel=domainnamelabel974&api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/WestUS/CheckDnsNameAvailability?domainNameLabel=domainnamelabel974&api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json index 27c907ea12ce..f60d98a40441 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ExpandResourceTests/ExpandResourceTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3972\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "63049a58-9deb-4787-8a83-b3a45a2c5fe7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMwNDlhNTgtOWRlYi00Nzg3LThhODMtYjNhNDVhMmM1ZmU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/63049a58-9deb-4787-8a83-b3a45a2c5fe7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMwNDlhNTgtOWRlYi00Nzg3LThhODMtYjNhNDVhMmM1ZmU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet8767\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "9f8c9c9e-889f-4fc1-b65d-8f015db88f41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWY4YzljOWUtODg5Zi00ZmMxLWI2NWQtOGYwMTVkYjg4ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9f8c9c9e-889f-4fc1-b65d-8f015db88f41?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWY4YzljOWUtODg5Zi00ZmMxLWI2NWQtOGYwMTVkYjg4ZjQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "95323aac-1af9-4bea-9208-20a3ff24e430" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/95323aac-1af9-4bea-9208-20a3ff24e430?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/95323aac-1af9-4bea-9208-20a3ff24e430?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/loadBalancingRules/azsmnet8160\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2241\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/frontendIPConfigurations/azsmnet8571\"\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\": \"azsmnet3666\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/inboundNatRules/azsmnet3666\"\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/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"6d43bb2b-1256-47c5-b80e-aa25fe73c9e2\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"6b94f5c4-a02b-433e-8301-ad3edf808428\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6d43bb2b-1256-47c5-b80e-aa25fe73c9e2\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "b970f182-e80e-40bd-ae0b-8565ec8d6362" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b970f182-e80e-40bd-ae0b-8565ec8d6362?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b970f182-e80e-40bd-ae0b-8565ec8d6362?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,8 +804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,8 +868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,8 +926,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -990,8 +990,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1039,7 +1039,7 @@ "34e7814c-9cc7-488b-a77c-b8fdae0a8309" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/34e7814c-9cc7-488b-a77c-b8fdae0a8309?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/34e7814c-9cc7-488b-a77c-b8fdae0a8309?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,8 +1057,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/loadBalancingRules/azsmnet8160\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2241\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\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/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"92f80873-6ab9-4054-a630-52d446e1b9ce\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"2dab4ece-7a8f-44b3-b328-2f6b34c8914c\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"92f80873-6ab9-4054-a630-52d446e1b9ce\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1109,7 +1109,7 @@ "9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9a0f3f23-7ad1-4f5f-b191-ef82c146fb1e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,8 +1127,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1185,8 +1185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1249,8 +1249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1307,8 +1307,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1371,8 +1371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1420,7 +1420,7 @@ "57608f26-9c56-4a31-8690-b11106b25ef7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/57608f26-9c56-4a31-8690-b11106b25ef7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/57608f26-9c56-4a31-8690-b11106b25ef7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1438,8 +1438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "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/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/frontendIPConfigurations/azsmnet8571\"\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\": \"azsmnet7454\",\r\n \"etag\": \"W/\\\"57edb165-5a81-4fbe-ac4c-0e14476fd137\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/inboundNatRules/azsmnet7454\"\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/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"f5ead2b9-dfb3-4c70-b382-cb597537d3e9\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r1xgp2vafd1uxn2ermb540f5dg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"044c708c-5c2f-434a-b7db-782cab3e1457\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f5ead2b9-dfb3-4c70-b382-cb597537d3e9\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1490,7 +1490,7 @@ "9735026c-2b5d-4417-885b-5eb7a95dddf5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9735026c-2b5d-4417-885b-5eb7a95dddf5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9735026c-2b5d-4417-885b-5eb7a95dddf5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1508,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1566,8 +1566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1630,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1752,8 +1752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752\"\r\n }\r\n },\r\n \"name\": \"azsmnet8571\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2241\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/backendAddressPools/azsmnet2241\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/probes/azsmnet359\"\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\": \"azsmnet8160\"\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\": \"azsmnet359\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\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\": \"azsmnet3666\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985/FrontendIPConfigurations/azsmnet8571\"\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\": \"azsmnet7454\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "78dbe39e-320d-43c2-89f7-2599d29feafe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/78dbe39e-320d-43c2-89f7-2599d29feafe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/78dbe39e-320d-43c2-89f7-2599d29feafe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,8 +1819,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,8 +1877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1941,8 +1941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=InboundNatRules%2FbackendIPConfiguration", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9SW5ib3VuZE5hdFJ1bGVzJTJGYmFja2VuZElQQ29uZmlndXJhdGlvbg==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=InboundNatRules%2FbackendIPConfiguration", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9SW5ib3VuZE5hdFJ1bGVzJTJGYmFja2VuZElQQ29uZmlndXJhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,8 +2005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=BackendAddressPools%2FbackendIPConfigurations", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9QmFja2VuZEFkZHJlc3NQb29scyUyRmJhY2tlbmRJUENvbmZpZ3VyYXRpb25z", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=BackendAddressPools%2FbackendIPConfigurations", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9QmFja2VuZEFkZHJlc3NQb29scyUyRmJhY2tlbmRJUENvbmZpZ3VyYXRpb25z", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2069,8 +2069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01&$expand=FrontendIPConfigurations%2FPublicIPAddress", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAxJiRleHBhbmQ9RnJvbnRlbmRJUENvbmZpZ3VyYXRpb25zJTJGUHVibGljSVBBZGRyZXNz", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01&$expand=FrontendIPConfigurations%2FPublicIPAddress", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxJiRleHBhbmQ9RnJvbnRlbmRJUENvbmZpZ3VyYXRpb25zJTJGUHVibGljSVBBZGRyZXNz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2133,8 +2133,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01&$expand=IPConfigurations%2FSubnet", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnMlMkZTdWJuZXQ=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01&$expand=IPConfigurations%2FSubnet", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnMlMkZTdWJuZXQ=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2197,8 +2197,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767?api-version=2016-12-01&$expand=IPConfigurations", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3L3N1Ym5ldHMvYXpzbW5ldDg3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnM=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/virtualNetworks/azsmnet7507/subnets/azsmnet8767?api-version=2017-03-01&$expand=IPConfigurations", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NTA3L3N1Ym5ldHMvYXpzbW5ldDg3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbnM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2261,8 +2261,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01&$expand=IPConfiguration", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbg==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01&$expand=IPConfiguration", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMSYkZXhwYW5kPUlQQ29uZmlndXJhdGlvbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2325,8 +2325,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers/azsmnet2985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0Mjk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2358,7 +2358,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2371,7 +2371,7 @@ "c194265f-1af9-4890-9dd6-2f6bf311b1f0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2389,8 +2389,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzE5NDI2NWYtMWFmOS00ODkwLTlkZDYtMmY2YmYzMTFiMWYwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/c194265f-1af9-4890-9dd6-2f6bf311b1f0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzE5NDI2NWYtMWFmOS00ODkwLTlkZDYtMmY2YmYzMTFiMWYwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2444,8 +2444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2498,8 +2498,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet4046?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQwNDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2531,7 +2531,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2544,7 +2544,7 @@ "f449f276-f45b-4305-915f-47738bf7f6fd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2562,8 +2562,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0OWYyNzYtZjQ1Yi00MzA1LTkxNWYtNDc3MzhiZjdmNmZkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f449f276-f45b-4305-915f-47738bf7f6fd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjQ0OWYyNzYtZjQ1Yi00MzA1LTkxNWYtNDc3MzhiZjdmNmZkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,8 +2617,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc2NzY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2650,7 +2650,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2663,7 +2663,7 @@ "8d49efb4-581f-4f95-a034-432313b88536" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2681,8 +2681,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ0OWVmYjQtNTgxZi00Zjk1LWEwMzQtNDMyMzEzYjg4NTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8d49efb4-581f-4f95-a034-432313b88536?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGQ0OWVmYjQtNTgxZi00Zjk1LWEwMzQtNDMyMzEzYjg4NTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2736,8 +2736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/networkInterfaces/azsmnet7712?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDc3MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2769,7 +2769,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2782,7 +2782,7 @@ "b5d64b99-24d4-4fea-a1e4-60997d40b62c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2800,8 +2800,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjVkNjRiOTktMjRkNC00ZmVhLWExZTQtNjA5OTdkNDBiNjJjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b5d64b99-24d4-4fea-a1e4-60997d40b62c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjVkNjRiOTktMjRkNC00ZmVhLWExZTQtNjA5OTdkNDBiNjJjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2855,8 +2855,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4616/providers/Microsoft.Network/publicIPAddresses/azsmnet4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDYxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2888,7 +2888,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2901,7 +2901,7 @@ "bf7ed969-af60-45e7-8c7b-f8d27b559259" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2919,8 +2919,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY3ZWQ5NjktYWY2MC00NWU3LThjN2ItZjhkMjdiNTU5MjU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf7ed969-af60-45e7-8c7b-f8d27b559259?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY3ZWQ5NjktYWY2MC00NWU3LThjN2ItZjhkMjdiNTU5MjU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json index 232c2b5408a0..2f8b5baed7d9 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/LocalNettworkGatewayOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -154,7 +154,7 @@ "f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"9f9e478c-17a1-4c67-a1d8-6f5dbe36c7da\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"test\": \"value\"\r\n },\r\n \"properties\": {\r\n \"localNetworkAddressSpace\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"gatewayIpAddress\": \"192.168.3.4\",\r\n \"resourceGuid\": \"daf1ad3d-f575-4d15-84e5-170a27964e4d\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "bf766e1a-499b-4db3-9a49-7af4156734ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f0d7d7d1-a3be-4cdd-b0ed-ea7b7d213ba2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bf766e1a-499b-4db3-9a49-7af4156734ea?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8698/providers/Microsoft.Network/localNetworkGateways/azsmnet6398?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,7 +727,7 @@ "8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -758,7 +758,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c4bfc60-3dad-4e49-b1c2-3b7d5fd7091d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json index 082078034fb3..83aac86fff61 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayActiveActiveFeatureTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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/19feecf7-1262-46ca-81a7-31fb269a6325/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet4458\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "30d02c07-62ad-4558-98d6-1cd51b453cfc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zMGQwMmMwNy02MmFkLTQ1NTgtOThkNi0xY2Q1MWI0NTNjZmM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/30d02c07-62ad-4558-98d6-1cd51b453cfc?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zMGQwMmMwNy02MmFkLTQ1NTgtOThkNi0xY2Q1MWI0NTNjZmM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODY2OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet29\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "6a608085-a8b7-4e79-91fc-57eef8cbe0b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YTYwODA4NS1hOGI3LTRlNzktOTFmYy01N2VlZjhjYmUwYjY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/6a608085-a8b7-4e79-91fc-57eef8cbe0b6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82YTYwODA4NS1hOGI3LTRlNzktOTFmYy01N2VlZjhjYmUwYjY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9henNtbmV0ODIyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -661,7 +661,7 @@ "3fe7da97-a9b9-4adf-a265-5597f385db0e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zZmU3ZGE5Ny1hOWI5LTRhZGYtYTI2NS01NTk3ZjM4NWRiMGU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/3fe7da97-a9b9-4adf-a265-5597f385db0e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8zZmU3ZGE5Ny1hOWI5LTRhZGYtYTI2NS01NTk3ZjM4NWRiMGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -856,8 +856,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzMvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYXpzbW5ldDgyMzMvc3VibmV0cy9HYXRld2F5U3VibmV0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n }\r\n },\r\n \"name\": \"azsmnet2561\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": true,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "5414d5de-e04b-4b9a-ba01-72731d714424" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2561\",\r\n \"etag\": \"W/\\\"ba8d07bd-442b-4f06-ab8d-cfdd8693cd5d\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357/ipConfigurations/azsmnet2561\"\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\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 65515,\r\n \"bgpPeeringAddress\": \"10.0.0.4,10.0.0.5\",\r\n \"peerWeight\": 0\r\n },\r\n \"resourceGuid\": \"c6ebfb3a-f8cb-43c9-9225-940e6a855716\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"ba8d07bd-442b-4f06-ab8d-cfdd8693cd5d\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1045,7 +1045,7 @@ "190d20ca-f34d-4676-a46f-939e0784cec4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1063,8 +1063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8668\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2561\",\r\n \"etag\": \"W/\\\"6ce7ac36-c44a-4ca0-a090-a9785a0e0b13\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357/ipConfigurations/azsmnet2561\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworks/azsmnet8233/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/publicIPAddresses/azsmnet8228\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"activeActive\": true,\r\n \"sku\": {\r\n \"name\": \"HighPerformance\",\r\n \"tier\": \"HighPerformance\",\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\": \"c6ebfb3a-f8cb-43c9-9225-940e6a855716\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"6ce7ac36-c44a-4ca0-a090-a9785a0e0b13\\\"\",\r\n \"id\": \"/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1118,7 +1118,7 @@ "60437720-65a0-4ec6-8b38-cace67f6995d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1136,8 +1136,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1191,8 +1191,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1246,8 +1246,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1356,8 +1356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1411,8 +1411,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1466,8 +1466,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1521,8 +1521,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1576,8 +1576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1631,8 +1631,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1686,8 +1686,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1741,8 +1741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1796,8 +1796,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1851,8 +1851,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1906,8 +1906,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1961,8 +1961,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2016,8 +2016,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2071,8 +2071,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2126,8 +2126,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2181,8 +2181,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2236,8 +2236,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2291,8 +2291,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2346,8 +2346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2401,8 +2401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2456,8 +2456,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2511,8 +2511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2566,8 +2566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2621,8 +2621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2676,8 +2676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2731,8 +2731,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2786,8 +2786,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2841,8 +2841,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2896,8 +2896,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,8 +2951,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3006,8 +3006,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3061,8 +3061,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3116,8 +3116,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3171,8 +3171,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3226,8 +3226,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3281,8 +3281,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3336,8 +3336,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3391,8 +3391,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3446,8 +3446,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3501,8 +3501,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3556,8 +3556,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/5414d5de-e04b-4b9a-ba01-72731d714424?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy81NDE0ZDVkZS1lMDRiLTRiOWEtYmEwMS03MjczMWQ3MTQ0MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3611,8 +3611,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3666,8 +3666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3727,8 +3727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3782,8 +3782,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3843,8 +3843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3898,8 +3898,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/resourceGroups/csmrg130/providers/Microsoft.Network/virtualNetworkGateways/azsmnet5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Jlc291cmNlR3JvdXBzL2NzbXJnMTMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya0dhdGV3YXlzL2F6c21uZXQ1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3959,8 +3959,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4014,8 +4014,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4069,8 +4069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4124,8 +4124,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4179,8 +4179,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4234,8 +4234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,8 +4289,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4344,8 +4344,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4399,8 +4399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4454,8 +4454,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4509,8 +4509,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4564,8 +4564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4619,8 +4619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4674,8 +4674,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4729,8 +4729,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4784,8 +4784,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4839,8 +4839,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4894,8 +4894,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4949,8 +4949,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5004,8 +5004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5059,8 +5059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5114,8 +5114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5169,8 +5169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5224,8 +5224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5279,8 +5279,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5334,8 +5334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5389,8 +5389,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5444,8 +5444,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5499,8 +5499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5554,8 +5554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5609,8 +5609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5664,8 +5664,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5719,8 +5719,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5774,8 +5774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5829,8 +5829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5884,8 +5884,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5939,8 +5939,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5994,8 +5994,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6049,8 +6049,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,8 +6104,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6159,8 +6159,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6214,8 +6214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6269,8 +6269,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6324,8 +6324,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6379,8 +6379,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6434,8 +6434,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6489,8 +6489,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6544,8 +6544,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6599,8 +6599,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6654,8 +6654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6709,8 +6709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6764,8 +6764,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6819,8 +6819,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6874,8 +6874,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6929,8 +6929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6984,8 +6984,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7039,8 +7039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7094,8 +7094,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7149,8 +7149,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7204,8 +7204,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/190d20ca-f34d-4676-a46f-939e0784cec4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8xOTBkMjBjYS1mMzRkLTQ2NzYtYTQ2Zi05MzllMDc4NGNlYzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7259,8 +7259,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7314,8 +7314,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7369,8 +7369,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7424,8 +7424,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7479,8 +7479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7534,8 +7534,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7589,8 +7589,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7644,8 +7644,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7699,8 +7699,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7754,8 +7754,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7809,8 +7809,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7864,8 +7864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7919,8 +7919,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7974,8 +7974,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8029,8 +8029,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8084,8 +8084,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8139,8 +8139,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8194,8 +8194,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8249,8 +8249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8304,8 +8304,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8359,8 +8359,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8414,8 +8414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8469,8 +8469,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8524,8 +8524,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8579,8 +8579,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8634,8 +8634,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8689,8 +8689,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8744,8 +8744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8799,8 +8799,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8854,8 +8854,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8909,8 +8909,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8964,8 +8964,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9019,8 +9019,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9074,8 +9074,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9129,8 +9129,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9184,8 +9184,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9239,8 +9239,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9294,8 +9294,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9349,8 +9349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9404,8 +9404,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9459,8 +9459,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9514,8 +9514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9569,8 +9569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9624,8 +9624,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9679,8 +9679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9734,8 +9734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9789,8 +9789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9844,8 +9844,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9899,8 +9899,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9954,8 +9954,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10009,8 +10009,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10064,8 +10064,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/19feecf7-1262-46ca-81a7-31fb269a6325/providers/Microsoft.Network/locations/westus.validation/operations/60437720-65a0-4ec6-8b38-cace67f6995d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTlmZWVjZjctMTI2Mi00NmNhLTgxYTctMzFmYjI2OWE2MzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82MDQzNzcyMC02NWEwLTRlYzYtOGIzOC1jYWNlNjdmNjk5NWQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json index 5b8d5fb67820..b2744435592a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayBgpRouteApiTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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 \"2016-10-01\",\r\n \"2016-12-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 \"2016-10-01\",\r\n \"2016-12-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 \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-12-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 \"2016-10-01\",\r\n \"2016-12-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 \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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 \"2016-10-01\",\r\n \"2017-03-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 \"2016-10-01\",\r\n \"2017-03-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 \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2017-03-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 \"2016-10-01\",\r\n \"2017-03-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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet545\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -170,7 +170,7 @@ "63285282-cbb8-4a5b-876f-aa4b1a163faa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,8 +188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet7547\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -241,7 +241,7 @@ "a7656262-acdf-45ca-9be7-124d86e5fff9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,8 +259,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc2NTYyNjItYWNkZi00NWNhLTliZTctMTI0ZDg2ZTVmZmY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/a7656262-acdf-45ca-9be7-124d86e5fff9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTc2NTYyNjItYWNkZi00NWNhLTliZTctMTI0ZDg2ZTVmZmY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -315,8 +315,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyODUyODItY2JiOC00YTViLTg3NmYtYWE0YjFhMTYzZmFhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/63285282-cbb8-4a5b-876f-aa4b1a163faa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyODUyODItY2JiOC00YTViLTg3NmYtYWE0YjFhMTYzZmFhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -371,8 +371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -430,8 +430,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDgzNzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -495,8 +495,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -619,8 +619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDU3OTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -737,7 +737,7 @@ "4a9c52ec-5191-49a1-b13c-a1690815ab65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,8 +755,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.2.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.2.1.0/24\"\r\n },\r\n \"name\": \"GatewaySubnet\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -808,7 +808,7 @@ "8663122b-5345-4a32-963d-2d0a08729eee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -826,8 +826,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YzUyZWMtNTE5MS00OWExLWIxM2MtYTE2OTA4MTVhYjY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/4a9c52ec-5191-49a1-b13c-a1690815ab65?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNGE5YzUyZWMtNTE5MS00OWExLWIxM2MtYTE2OTA4MTVhYjY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -882,8 +882,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODY2MzEyMmItNTM0NS00YTMyLTk2M2QtMmQwYTA4NzI5ZWVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/8663122b-5345-4a32-963d-2d0a08729eee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODY2MzEyMmItNTM0NS00YTMyLTk2M2QtMmQwYTA4NzI5ZWVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -997,8 +997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1056,8 +1056,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzNzY1L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1121,8 +1121,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1ODY4L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1186,8 +1186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n }\r\n },\r\n \"name\": \"azsmnet593\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1239,7 +1239,7 @@ "b132e059-7eb1-469f-914d-25c56708cedf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,8 +1257,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n }\r\n },\r\n \"name\": \"azsmnet9299\"\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"peerWeight\": 5\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -1310,7 +1310,7 @@ "6e41a746-ca55-49e5-88f9-fe74998f1c05" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1328,8 +1328,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1387,8 +1387,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1446,8 +1446,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1505,8 +1505,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1564,8 +1564,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1623,8 +1623,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1682,8 +1682,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1741,8 +1741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1800,8 +1800,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1859,8 +1859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1918,8 +1918,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1977,8 +1977,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,8 +2036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2095,8 +2095,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2154,8 +2154,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2213,8 +2213,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2272,8 +2272,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2331,8 +2331,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2390,8 +2390,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2449,8 +2449,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2508,8 +2508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2567,8 +2567,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2626,8 +2626,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2685,8 +2685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2744,8 +2744,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2803,8 +2803,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2862,8 +2862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2921,8 +2921,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2980,8 +2980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3039,8 +3039,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3098,8 +3098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3157,8 +3157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3216,8 +3216,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3275,8 +3275,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3334,8 +3334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3393,8 +3393,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3452,8 +3452,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3511,8 +3511,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3570,8 +3570,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3629,8 +3629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3688,8 +3688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3747,8 +3747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3806,8 +3806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3865,8 +3865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3924,8 +3924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3983,8 +3983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4042,8 +4042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4101,8 +4101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4160,8 +4160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4219,8 +4219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4278,8 +4278,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4337,8 +4337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4396,8 +4396,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4455,8 +4455,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4514,8 +4514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4573,8 +4573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4632,8 +4632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4691,8 +4691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/b132e059-7eb1-469f-914d-25c56708cedf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjEzMmUwNTktN2ViMS00NjlmLTkxNGQtMjVjNTY3MDhjZWRmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4747,8 +4747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,8 +4806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4865,8 +4865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4924,8 +4924,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4983,8 +4983,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5042,8 +5042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5101,8 +5101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5160,8 +5160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5219,8 +5219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5278,8 +5278,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5337,8 +5337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5396,8 +5396,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5455,8 +5455,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5514,8 +5514,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5573,8 +5573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5632,8 +5632,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5691,8 +5691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5750,8 +5750,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5809,8 +5809,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5868,8 +5868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5927,8 +5927,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5986,8 +5986,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6045,8 +6045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6104,8 +6104,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6163,8 +6163,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6222,8 +6222,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6281,8 +6281,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6340,8 +6340,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6399,8 +6399,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6458,8 +6458,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6517,8 +6517,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6576,8 +6576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6635,8 +6635,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6694,8 +6694,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6753,8 +6753,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6812,8 +6812,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6871,8 +6871,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6930,8 +6930,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6989,8 +6989,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7048,8 +7048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7107,8 +7107,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7166,8 +7166,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7225,8 +7225,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7284,8 +7284,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7343,8 +7343,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7402,8 +7402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7461,8 +7461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7520,8 +7520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7579,8 +7579,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7638,8 +7638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7697,8 +7697,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7756,8 +7756,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7815,8 +7815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7874,8 +7874,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7933,8 +7933,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7992,8 +7992,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8051,8 +8051,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8110,8 +8110,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8169,8 +8169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8228,8 +8228,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8287,8 +8287,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8346,8 +8346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/6e41a746-ca55-49e5-88f9-fe74998f1c05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmU0MWE3NDYtY2E1NS00OWU1LTg4ZjktZmU3NDk5OGYxYzA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8402,8 +8402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8458,8 +8458,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8520,8 +8520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8576,8 +8576,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Njc1Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8638,8 +8638,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "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/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9299\",\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753/ipConfigurations/azsmnet9299\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"bgpPeeringAddress\": \"10.2.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"2fda482d-10af-4ff6-96ff-9b93a6827d20\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753\",\r\n \"name\": \"azsmnet6753\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet593\",\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/ipConfigurations/azsmnet593\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"3a28bce8-a0c8-411e-860a-a43a47f90ac1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880\",\r\n \"name\": \"azsmnet7880\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -8691,7 +8691,7 @@ "34bf47da-6691-4dbd-9400-89cb5668f526" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8709,8 +8709,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "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/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet3765/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet5793\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet593\",\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/ipConfigurations/azsmnet593\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.1.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"3a28bce8-a0c8-411e-860a-a43a47f90ac1\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e22749fb-5ee4-45a1-9d63-3dfc8ff18818\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880\",\r\n \"name\": \"azsmnet7880\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"virtualNetworkGateway2\": {\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworks/azsmnet5868/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/publicIPAddresses/azsmnet8371\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9299\",\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753/ipConfigurations/azsmnet9299\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 9001,\r\n \"bgpPeeringAddress\": \"10.2.1.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"2fda482d-10af-4ff6-96ff-9b93a6827d20\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"433e4cee-7dff-4d2e-9b69-de2cd8ab936b\\\"\",\r\n \"id\": \"/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet6753\",\r\n \"name\": \"azsmnet6753\",\r\n \"type\": \"Microsoft.Network/virtualNetworkGateways\",\r\n \"location\": \"westus\"\r\n },\r\n \"connectionType\": \"Vnet2Vnet\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"chocolate\",\r\n \"enableBgp\": true\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -8762,7 +8762,7 @@ "ad4396c8-658d-4849-afd3-e0f31838df91" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8780,8 +8780,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRiZjQ3ZGEtNjY5MS00ZGJkLTk0MDAtODljYjU2NjhmNTI2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/34bf47da-6691-4dbd-9400-89cb5668f526?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzRiZjQ3ZGEtNjY5MS00ZGJkLTk0MDAtODljYjU2NjhmNTI2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8836,8 +8836,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet8570?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDg1NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8892,8 +8892,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ0Mzk2YzgtNjU4ZC00ODQ5LWFmZDMtZTBmMzE4MzhkZjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operations/ad4396c8-658d-4849-afd3-e0f31838df91?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ0Mzk2YzgtNjU4ZC00ODQ5LWFmZDMtZTBmMzE4MzhkZjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8948,8 +8948,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/connections/azsmnet5795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDU3OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9004,8 +9004,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getLearnedRoutes?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getLearnedRoutes?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRMZWFybmVkUm91dGVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9041,7 +9041,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9069,8 +9069,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZTFiZDFlNzAtOTI4OS00M2E2LThjY2MtY2I0MjI2MGJmZmM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZTFiZDFlNzAtOTI4OS00M2E2LThjY2MtY2I0MjI2MGJmZmM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9100,7 +9100,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/e1bd1e70-9289-43a6-8ccc-cb42260bffc5?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9128,8 +9128,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getAdvertisedRoutes?peer=13.93.225.45&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTMuOTMuMjI1LjQ1JmFwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getAdvertisedRoutes?peer=13.93.225.45&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRBZHZlcnRpc2VkUm91dGVzP3BlZXI9MTMuOTMuMjI1LjQ1JmFwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9165,7 +9165,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9193,8 +9193,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTFjMWI3YTktZmU1Yi00Njg2LWI0MGEtMzkzODUxNzI4MmJiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTFjMWI3YTktZmU1Yi00Njg2LWI0MGEtMzkzODUxNzI4MmJiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9224,7 +9224,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/91c1b7a9-fe5b-4686-b40a-3938517282bb?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -9252,8 +9252,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getBgpPeerStatus?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/resourceGroups/csmrg8097/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7880/getBgpPeerStatus?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Jlc291cmNlR3JvdXBzL2NzbXJnODA5Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0Nzg4MC9nZXRCZ3BQZWVyU3RhdHVzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -9289,7 +9289,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -9317,8 +9317,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjAwMmUyZWItYjdiZC00YmFlLTkxMTMtMjNlM2UzMDI2OWFiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDExM2M3YjItYTVlNC00NjhkLWJhMjMtMDMzNTVkODQ0MTBlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjAwMmUyZWItYjdiZC00YmFlLTkxMTMtMjNlM2UzMDI2OWFiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9348,7 +9348,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0113c7b2-a5e4-468d-ba23-03355d84410e/providers/Microsoft.Network/locations/westus/operationResults/6002e2eb-b7bd-4bae-9113-23e3e30269ab?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json index d6ff23ddebdf..37cf76274276 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -154,7 +154,7 @@ "4b8f4da0-a5eb-4322-a768-7897aee4afb8" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4b8f4da0-a5eb-4322-a768-7897aee4afb8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/localNetworkGateways/azsmnet3822?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -388,7 +388,7 @@ "5c7f3c04-22aa-4bcb-9b3f-b37081b187cd" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/5c7f3c04-22aa-4bcb-9b3f-b37081b187cd?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/publicIPAddresses/azsmnet7350?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -622,7 +622,7 @@ "6058ae5d-6bc6-4d0a-af6f-db9aa1f92372" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +650,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,7 +701,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6058ae5d-6bc6-4d0a-af6f-db9aa1f92372?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,7 +752,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -866,7 +866,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworks/azsmnet8152/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -967,7 +967,7 @@ "3c0f845a-886c-4824-98d7-99892538c8d2" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +995,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -1036,7 +1036,7 @@ "d92cddce-5df0-46b3-b974-40633cde5f4a" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1064,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1115,7 +1115,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1166,7 +1166,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1217,7 +1217,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1268,7 +1268,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1319,7 +1319,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1370,7 +1370,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1421,7 +1421,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1472,7 +1472,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1523,7 +1523,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1574,7 +1574,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1625,7 +1625,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1676,7 +1676,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1727,7 +1727,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1778,7 +1778,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1829,7 +1829,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1880,7 +1880,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1931,7 +1931,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1982,7 +1982,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2033,7 +2033,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2084,7 +2084,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2135,7 +2135,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2186,7 +2186,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2237,7 +2237,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2288,7 +2288,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2339,7 +2339,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2390,7 +2390,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2441,7 +2441,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2492,7 +2492,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2543,7 +2543,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2594,7 +2594,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2645,7 +2645,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2696,7 +2696,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2747,7 +2747,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2798,7 +2798,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2849,7 +2849,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,7 +2900,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,7 +2951,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,7 +3002,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,7 +3053,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3104,7 +3104,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3155,7 +3155,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3206,7 +3206,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3257,7 +3257,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3308,7 +3308,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3359,7 +3359,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3410,7 +3410,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3461,7 +3461,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3512,7 +3512,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3563,7 +3563,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3614,7 +3614,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3665,7 +3665,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3716,7 +3716,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3767,7 +3767,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/3c0f845a-886c-4824-98d7-99892538c8d2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3818,7 +3818,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3869,7 +3869,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3926,7 +3926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3977,7 +3977,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/virtualNetworkGateways/azsmnet4830?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4034,7 +4034,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -4075,7 +4075,7 @@ "432d7bf3-ed0f-47af-abde-683f1d4d9614" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4103,7 +4103,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -4144,7 +4144,7 @@ "f11e8b40-095e-45e9-a2ac-4e54f2ce0750" ], "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4172,7 +4172,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4223,7 +4223,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/432d7bf3-ed0f-47af-abde-683f1d4d9614?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4274,7 +4274,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4325,7 +4325,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4382,7 +4382,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4433,7 +4433,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4490,7 +4490,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4541,7 +4541,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4592,7 +4592,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d92cddce-5df0-46b3-b974-40633cde5f4a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4643,7 +4643,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/f11e8b40-095e-45e9-a2ac-4e54f2ce0750?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4694,7 +4694,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4751,7 +4751,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4804,7 +4804,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg7047/providers/Microsoft.Network/connections/azsmnet5494?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -4836,7 +4836,7 @@ "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=2016-12-01" + "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-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4845,7 +4845,7 @@ "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=2016-12-01" + "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-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4867,7 +4867,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4918,7 +4918,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/56c95b9b-4460-4322-9a54-fd1d830bfd6b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json index a948a5e446bf..132f707c3425 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionSharedKeyOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "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\": \"azsmnet6309\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "eb5f29b8-5fab-44b4-b927-5466cfb76a3f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/eb5f29b8-5fab-44b4-b927-5466cfb76a3f?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -388,7 +388,7 @@ "6e2f0013-ed22-4360-b73f-5bd09a4ace9a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e2f0013-ed22-4360-b73f-5bd09a4ace9a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -518,7 +518,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -572,7 +572,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -632,7 +632,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -692,7 +692,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "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\": \"azsmnet4984\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false\r\n }\r\n}", "RequestHeaders": { @@ -733,7 +733,7 @@ "8c869573-fa12-4c39-b527-1d87586fb4c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -761,7 +761,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -812,7 +812,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,7 +863,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -914,7 +914,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -965,7 +965,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1016,7 +1016,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1067,7 +1067,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,7 +1118,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,7 +1169,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1220,7 +1220,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1271,7 +1271,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1322,7 +1322,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1373,7 +1373,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1424,7 +1424,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1475,7 +1475,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1526,7 +1526,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1577,7 +1577,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1628,7 +1628,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1679,7 +1679,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1730,7 +1730,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1781,7 +1781,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1832,7 +1832,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1883,7 +1883,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1934,7 +1934,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1985,7 +1985,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2036,7 +2036,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2087,7 +2087,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2138,7 +2138,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2189,7 +2189,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2240,7 +2240,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2291,7 +2291,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2342,7 +2342,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2393,7 +2393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2444,7 +2444,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2495,7 +2495,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2546,7 +2546,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2597,7 +2597,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2648,7 +2648,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2699,7 +2699,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2750,7 +2750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2801,7 +2801,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2852,7 +2852,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2903,7 +2903,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2954,7 +2954,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3005,7 +3005,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3056,7 +3056,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,7 +3107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3158,7 +3158,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3209,7 +3209,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3260,7 +3260,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3311,7 +3311,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3362,7 +3362,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3413,7 +3413,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3464,7 +3464,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3515,7 +3515,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c869573-fa12-4c39-b527-1d87586fb4c2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3566,7 +3566,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3617,7 +3617,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3674,7 +3674,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -3715,7 +3715,7 @@ "b8001171-5f00-409e-87fa-e09c8a5b6379" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3743,7 +3743,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b8001171-5f00-409e-87fa-e09c8a5b6379?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3794,7 +3794,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3848,7 +3848,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3908,7 +3908,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"ef41f4e3-e37c-476c-b51a-af4d497e90c5\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4984\",\r\n \"etag\": \"W/\\\"ef41f4e3-e37c-476c-b51a-af4d497e90c5\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworkGateways/azsmnet7390/ipConfigurations/azsmnet4984\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/virtualNetworks/azsmnet5651/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/publicIPAddresses/azsmnet2734\"\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\": \"80eb4542-6628-4989-a71d-39c6f068cd88\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"4ab7c1aa-4feb-4aea-8359-f841f6196a5d\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/localNetworkGateways/azsmnet9140\",\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\": \"65b63583-7d30-4f32-acad-93ec0d844814\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\"\r\n }\r\n}", "RequestHeaders": { @@ -3949,7 +3949,7 @@ "1a59d7cd-2129-4c2a-a110-32a47303d041" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3977,7 +3977,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4028,7 +4028,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4079,7 +4079,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4130,7 +4130,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/1a59d7cd-2129-4c2a-a110-32a47303d041?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4181,7 +4181,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4232,7 +4232,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4289,7 +4289,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey/reset?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey/reset?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyLength\": 50\r\n}", "RequestHeaders": { @@ -4327,7 +4327,7 @@ "b69cde55-32c9-4a0e-af56-dcdb6dbce3c6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4336,7 +4336,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -4358,7 +4358,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4409,7 +4409,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4460,7 +4460,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4511,7 +4511,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b69cde55-32c9-4a0e-af56-dcdb6dbce3c6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4562,7 +4562,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4619,7 +4619,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4670,7 +4670,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4727,7 +4727,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg4490/providers/Microsoft.Network/connections/azsmnet209/sharedkey?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"TestSharedKeyValue\"\r\n}", "RequestHeaders": { @@ -4765,7 +4765,7 @@ "bb963c2b-266c-4f13-9b03-5fc08f2b72e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bb963c2b-266c-4f13-9b03-5fc08f2b72e9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/bb963c2b-266c-4f13-9b03-5fc08f2b72e9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json index 6897cd7e9f13..4bb8134e88dc 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayConnectionWithBgpTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\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\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-01\",\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\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\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\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\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\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"2015-05-04-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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 \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.0.1\",\r\n \"peerWeight\": 3\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "78d32121-6ff0-4710-a9e8-2f78bea12c93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzhkMzIxMjEtNmZmMC00NzEwLWE5ZTgtMmY3OGJlYTEyYzkzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/78d32121-6ff0-4710-a9e8-2f78bea12c93?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzhkMzIxMjEtNmZmMC00NzEwLWE5ZTgtMmY3OGJlYTEyYzkzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9jYWxOZXR3b3JrR2F0ZXdheXMvYXpzbW5ldDg5MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"azsmnet5521\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "8beafd91-d79d-4589-97b2-5b325389aefc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJlYWZkOTEtZDc5ZC00NTg5LTk3YjItNWIzMjUzODlhZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/8beafd91-d79d-4589-97b2-5b325389aefc?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGJlYWZkOTEtZDc5ZC00NTg5LTk3YjItNWIzMjUzODlhZWZjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDIxMjg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -661,7 +661,7 @@ "e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -679,8 +679,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTk5ZTNiZjYtYzQxZC00YTFiLTgzYzgtNWIxZGI5MmMzOGU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/e99e3bf6-c41d-4a1b-83c8-5b1db92c38e9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTk5ZTNiZjYtYzQxZC00YTFiLTgzYzgtNWIxZGI5MmMzOGU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -792,8 +792,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -856,8 +856,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2NDc3L3N1Ym5ldHMvR2F0ZXdheVN1Ym5ldD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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\": \"azsmnet1876\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128\"\r\n }\r\n }\r\n }\r\n ],\r\n \"gatewayType\": \"Vpn\",\r\n \"vpnType\": \"RouteBased\",\r\n \"enableBgp\": false,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"peerWeight\": 5\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "a6b8605e-b2cb-41c1-b1aa-e513acca5f3d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,8 +1045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1100,8 +1100,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,8 +1155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1210,8 +1210,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1265,8 +1265,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1320,8 +1320,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1375,8 +1375,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1430,8 +1430,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1485,8 +1485,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1540,8 +1540,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1595,8 +1595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1650,8 +1650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1705,8 +1705,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1760,8 +1760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1815,8 +1815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1870,8 +1870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1925,8 +1925,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1980,8 +1980,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2035,8 +2035,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2090,8 +2090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2145,8 +2145,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2200,8 +2200,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2255,8 +2255,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2310,8 +2310,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2365,8 +2365,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2420,8 +2420,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2475,8 +2475,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2530,8 +2530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2585,8 +2585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2640,8 +2640,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2695,8 +2695,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2750,8 +2750,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2805,8 +2805,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2860,8 +2860,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2915,8 +2915,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2970,8 +2970,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3025,8 +3025,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3080,8 +3080,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3135,8 +3135,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3190,8 +3190,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3245,8 +3245,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3300,8 +3300,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3355,8 +3355,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3410,8 +3410,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3465,8 +3465,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3520,8 +3520,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3575,8 +3575,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3630,8 +3630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3685,8 +3685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3740,8 +3740,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3795,8 +3795,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3850,8 +3850,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3905,8 +3905,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3960,8 +3960,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4015,8 +4015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4070,8 +4070,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4125,8 +4125,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4180,8 +4180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4235,8 +4235,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4290,8 +4290,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/a6b8605e-b2cb-41c1-b1aa-e513acca5f3d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTZiODYwNWUtYjJjYi00MWMxLWIxYWEtZTUxM2FjY2E1ZjNkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4345,8 +4345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4400,8 +4400,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtHYXRld2F5cy9henNtbmV0MzQ0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4461,8 +4461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"virtualNetworkGateway1\": {\r\n \"etag\": \"W/\\\"32c67b34-47a9-4785-9eb9-8722485395b5\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1876\",\r\n \"etag\": \"W/\\\"32c67b34-47a9-4785-9eb9-8722485395b5\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworkGateways/azsmnet3443/ipConfigurations/azsmnet1876\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/virtualNetworks/azsmnet6477/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/publicIPAddresses/azsmnet2128\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"bgpSettings\": {\r\n \"asn\": 1337,\r\n \"bgpPeeringAddress\": \"10.0.0.254\",\r\n \"peerWeight\": 5\r\n },\r\n \"resourceGuid\": \"c71d5327-5c99-4026-ab58-7ffc07376d0e\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"localNetworkGateway2\": {\r\n \"etag\": \"W/\\\"63abf0e6-b040-4de6-a636-cbd4774187c7\\\"\",\r\n \"id\": \"/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/localNetworkGateways/azsmnet8914\",\r\n \"location\": \"westus\",\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 \"bgpSettings\": {\r\n \"asn\": 1234,\r\n \"bgpPeeringAddress\": \"192.168.0.1\",\r\n \"peerWeight\": 3\r\n },\r\n \"resourceGuid\": \"ba330a4b-c210-44c5-97af-d1e51b107ff8\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n \"connectionType\": \"IPsec\",\r\n \"routingWeight\": 3,\r\n \"sharedKey\": \"abc\",\r\n \"enableBgp\": true\r\n }\r\n}", "RequestHeaders": { @@ -4513,7 +4513,7 @@ "eb58d262-bbdf-45a2-a70d-70193aa3ee9a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4531,8 +4531,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4586,8 +4586,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4641,8 +4641,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4696,8 +4696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/eb58d262-bbdf-45a2-a70d-70193aa3ee9a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWI1OGQyNjItYmJkZi00NWEyLWE3MGQtNzAxOTNhYTNlZTlhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4751,8 +4751,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4806,8 +4806,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4867,8 +4867,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4928,8 +4928,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4982,8 +4982,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/resourceGroups/csmrg5498/providers/Microsoft.Network/connections/azsmnet7021?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Jlc291cmNlR3JvdXBzL2NzbXJnNTQ5OC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvY29ubmVjdGlvbnMvYXpzbW5ldDcwMjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -5015,7 +5015,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operationResults/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operationResults/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -5028,7 +5028,7 @@ "51dc46ba-57d0-4629-b51f-aac4c79cd525" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01" + "https://management.azure.com/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5046,8 +5046,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5101,8 +5101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5156,8 +5156,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5211,8 +5211,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5266,8 +5266,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/f98da156-d5e6-44a1-99d8-1b6fd3f764ff/providers/Microsoft.Network/locations/westus/operations/51dc46ba-57d0-4629-b51f-aac4c79cd525?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjk4ZGExNTYtZDVlNi00NGExLTk5ZDgtMWI2ZmQzZjc2NGZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTFkYzQ2YmEtNTdkMC00NjI5LWI1MWYtYWFjNGM3OWNkNTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json index 4ff06a86938b..44f72614b643 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "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\": \"azsmnet5620\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/574f3e8a-f1c4-4c24-b0c8-68f5f2e1c677?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -388,7 +388,7 @@ "9efcedaf-872b-4cd4-b72f-8eee2e7e207c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/9efcedaf-872b-4cd4-b72f-8eee2e7e207c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,7 +641,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "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\": \"azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\r\n }\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 }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "4710b952-c826-4161-8f27-50bdd7631b76" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,7 +710,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"fc004675-36b4-4cac-8874-dd6c8b58dda3\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"etag\": \"W/\\\"fc004675-36b4-4cac-8874-dd6c8b58dda3\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/ipConfigurations/azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\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\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"resourceGuid\": \"f64a0bc5-ce07-40d6-b0cf-0f0d2f82dfd4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -751,7 +751,7 @@ "2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -779,7 +779,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -830,7 +830,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -881,7 +881,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -932,7 +932,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -983,7 +983,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1034,7 +1034,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1085,7 +1085,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1136,7 +1136,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1187,7 +1187,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1238,7 +1238,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1289,7 +1289,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1340,7 +1340,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1391,7 +1391,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1442,7 +1442,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1493,7 +1493,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1544,7 +1544,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1595,7 +1595,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1646,7 +1646,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1697,7 +1697,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1748,7 +1748,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1799,7 +1799,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1850,7 +1850,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1901,7 +1901,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1952,7 +1952,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2003,7 +2003,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2054,7 +2054,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2105,7 +2105,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2156,7 +2156,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2207,7 +2207,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2258,7 +2258,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2309,7 +2309,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2360,7 +2360,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2411,7 +2411,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2462,7 +2462,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2513,7 +2513,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2564,7 +2564,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2615,7 +2615,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2666,7 +2666,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2717,7 +2717,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2768,7 +2768,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2819,7 +2819,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2870,7 +2870,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2921,7 +2921,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2972,7 +2972,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3023,7 +3023,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3074,7 +3074,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3125,7 +3125,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3176,7 +3176,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3227,7 +3227,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3278,7 +3278,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3329,7 +3329,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3380,7 +3380,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3431,7 +3431,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3482,7 +3482,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3533,7 +3533,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4710b952-c826-4161-8f27-50bdd7631b76?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3584,7 +3584,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3635,7 +3635,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3692,7 +3692,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3743,7 +3743,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3800,7 +3800,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3857,7 +3857,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3908,7 +3908,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3959,7 +3959,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4010,7 +4010,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4061,7 +4061,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4112,7 +4112,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4163,7 +4163,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4214,7 +4214,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4265,7 +4265,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4316,7 +4316,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4367,7 +4367,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4418,7 +4418,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4469,7 +4469,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4520,7 +4520,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4571,7 +4571,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4622,7 +4622,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4673,7 +4673,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4724,7 +4724,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4775,7 +4775,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4826,7 +4826,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4877,7 +4877,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4928,7 +4928,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4979,7 +4979,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5030,7 +5030,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5081,7 +5081,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5132,7 +5132,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5183,7 +5183,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5234,7 +5234,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5285,7 +5285,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5336,7 +5336,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5387,7 +5387,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5438,7 +5438,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5489,7 +5489,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5540,7 +5540,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5591,7 +5591,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5642,7 +5642,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/2fa0dad3-f01b-4d9e-9d87-8ef8f9ba2d6c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5693,7 +5693,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/reset?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/reset?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"etag\": \"W/\\\"bed58f57-1501-4d2a-89ba-36596e39d7bb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet5399\",\r\n \"etag\": \"W/\\\"bed58f57-1501-4d2a-89ba-36596e39d7bb\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512/ipConfigurations/azsmnet5399\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworks/azsmnet4777/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/publicIPAddresses/azsmnet239\"\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\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 0\r\n },\r\n \"resourceGuid\": \"f64a0bc5-ce07-40d6-b0cf-0f0d2f82dfd4\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -5731,7 +5731,7 @@ "6e321e8b-08a6-4dac-9cc1-8538d6076418" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5740,7 +5740,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5762,7 +5762,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5813,7 +5813,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5864,7 +5864,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/6e321e8b-08a6-4dac-9cc1-8538d6076418?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5915,7 +5915,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5972,7 +5972,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6025,7 +6025,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg8311/providers/Microsoft.Network/virtualNetworkGateways/azsmnet9512?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -6057,7 +6057,7 @@ "b9215e35-1973-47d3-82e9-3b589a195598" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6066,7 +6066,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -6088,7 +6088,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6139,7 +6139,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6190,7 +6190,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6241,7 +6241,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6292,7 +6292,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/b9215e35-1973-47d3-82e9-3b589a195598?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json index 52e4f2ba7502..b760fd2e4448 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.GatewayOperationsTests/VirtualNetworkGatewayP2SOperationsApisTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -154,7 +154,7 @@ "df7c664a-b966-4896-a71c-e9b69c5d241d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/df7c664a-b966-4896-a71c-e9b69c5d241d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "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\": \"azsmnet7750\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "4c6e88f6-ad73-44ae-8ef4-a6eb09648889" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/4c6e88f6-ad73-44ae-8ef4-a6eb09648889?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -622,7 +622,7 @@ "218ab0aa-28e0-4540-ad17-302f788f97f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +650,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -701,7 +701,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/218ab0aa-28e0-4540-ad17-302f788f97f6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,7 +752,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -806,7 +806,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -866,7 +866,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,7 +926,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "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\": \"azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -967,7 +967,7 @@ "725a8207-73b2-4243-8160-027ecd1459c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,7 +995,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"27c4fa95-ba93-42c4-b0ef-1a00e8ecf6c0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"27c4fa95-ba93-42c4-b0ef-1a00e8ecf6c0\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n }\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1036,7 +1036,7 @@ "548cbf18-9be7-408e-8dd7-c88eea8ccc44" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1064,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] "RequestBody": "{\r\n \"etag\": \"W/\\\"ee0ba610-55d6-41be-87a9-24c72af4305e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"ee0ba610-55d6-41be-87a9-24c72af4305e\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [\r\n {\r\n \"name\": \"BrkLiteTestMSFTRootCA.cer\",\r\n \"properties\": {\r\n \"publicCertData\": \"MIIDUzCCAj+gAwIBAgIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAMDQxEjAQBgNVBAoTCU1pY3Jvc29mdDEeMBwGA1UEAxMVQnJrIExpdGUgVGVzdCBSb290IENBMB4XDTEzMDExOTAwMjQxOFoXDTIxMDExOTAwMjQxN1owNDESMBAGA1UEChMJTWljcm9zb2Z0MR4wHAYDVQQDExVCcmsgTGl0ZSBUZXN0IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7SmE+iPULK0Rs7mQBO/6a6B6/G9BaMxHgDGzAmSG0Qsyt5e08aqgFnPdkMl3zRJw3lPKGha/JCvHRNrO8UpeAfc4IXWaqxx2iBipHjwmHPHh7+VB8lU0EJcUe7WBAI2n/sgfCwc+xKtuyRVlOhT6qw/nAi8e5don/iHPU6q7GCcnqoqtceQ/pJ8m66cvAnxwJlBFOTninhb2VjtvOfMQ07zPP+ZuYDPxvX5v3nd6yDa98yW4dZPuiGO2s6zJAfOPT2BrtyvLekItnSgAw3U5C0bOb+8XVKaDZQXbGEtOw6NZvD4L2yLd47nGkN2QXloiPLGyetrj3Z2pZYcrZBo8hAgMBAAGjaTBnMGUGA1UdAQReMFyAEOncRAPNcvJDoe4WP/gH2U+hNjA0MRIwEAYDVQQKEwlNaWNyb3NvZnQxHjAcBgNVBAMTFUJyayBMaXRlIFRlc3QgUm9vdCBDQYIQRggGmrpGj4pCblTanQRNUjAJBgUrDgMCHQUAA4IBAQCGyHhMdygS0g2tEUtRT4KFM+qqUY5HBpbIXNAav1a1dmXpHQCziuuxxzu3iq4XwnWUF1OabdDE2cpxNDOWxSsIxfEBf9ifaoz/O1ToJ0K757q2Rm2NWqQ7bNN8ArhvkNWa95S9gk9ZHZLUcjqanf0F8taJCYgzcbUSp+VBe9DcN89sJpYvfiBiAsMVqGPc/fHJgTScK+8QYrTRMubtFmXHbzBSO/KTAP5rBTxse88EGjK5F8wcedvge2Ksk6XjL3sZ19+Oj8KTQ72wihN900p1WQldHrrnbixSpmHBXbHr9U0NQigrJp5NphfuU5j81C8ixvfUdwyLmTv7rNA7GTAD\"\r\n }\r\n }\r\n ],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", @@ -1107,7 +1107,7 @@ "d9502d1c-0779-47c8-8eb8-dc11d001b75c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1135,7 +1135,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"2c449533-9222-49b1-a424-33f62dcf485f\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"2c449533-9222-49b1-a424-33f62dcf485f\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1176,7 +1176,7 @@ "20852412-192d-4114-8fa5-30be5be0038d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1204,7 +1204,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"8b0a76db-7ab8-448f-8007-5e9b94824109\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"8b0a76db-7ab8-448f-8007-5e9b94824109\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": [\r\n {\r\n \"name\": \"sampleClientCert.cer\",\r\n \"properties\": {\r\n \"thumbprint\": \"5405D9A8AB2A303D4E772C444BC88C3B97F55F78\"\r\n }\r\n }\r\n ]\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1245,7 +1245,7 @@ "24ba035c-dcb5-46a8-a399-149fc7a893f3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,7 +1273,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"bc01aa61-d64b-4cac-87e0-0a6d10fbc357\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet4609\",\r\n \"etag\": \"W/\\\"bc01aa61-d64b-4cac-87e0-0a6d10fbc357\\\"\",\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/ipConfigurations/azsmnet4609\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworks/azsmnet7357/subnets/GatewaySubnet\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/publicIPAddresses/azsmnet7085\"\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/csmrg2843/providers/Microsoft.Network/localNetworkGateways/azsmnet8591\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 0\r\n },\r\n \"vpnClientConfiguration\": {\r\n \"vpnClientAddressPool\": {\r\n \"addressPrefixes\": [\r\n \"200.168.0.0/16\"\r\n ]\r\n },\r\n \"vpnClientRootCertificates\": [],\r\n \"vpnClientRevokedCertificates\": []\r\n },\r\n \"resourceGuid\": \"7a0c0a7f-fe06-4d44-88f7-0fdc3b26c642\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -1314,7 +1314,7 @@ "8c6beedd-bd46-4d6a-b918-68dd9df39270" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1342,7 +1342,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1393,7 +1393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1444,7 +1444,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1495,7 +1495,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1546,7 +1546,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1597,7 +1597,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1648,7 +1648,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1699,7 +1699,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1750,7 +1750,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1852,7 +1852,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1903,7 +1903,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1954,7 +1954,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,7 +2005,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2056,7 +2056,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2107,7 +2107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2158,7 +2158,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2209,7 +2209,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2260,7 +2260,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2311,7 +2311,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2362,7 +2362,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2413,7 +2413,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2464,7 +2464,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2515,7 +2515,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2566,7 +2566,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2617,7 +2617,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2668,7 +2668,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2719,7 +2719,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2770,7 +2770,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2821,7 +2821,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2872,7 +2872,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2923,7 +2923,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2974,7 +2974,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3025,7 +3025,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3076,7 +3076,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3127,7 +3127,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3178,7 +3178,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3229,7 +3229,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3280,7 +3280,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3331,7 +3331,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3382,7 +3382,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3433,7 +3433,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3484,7 +3484,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3535,7 +3535,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3586,7 +3586,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3637,7 +3637,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3688,7 +3688,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3739,7 +3739,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3790,7 +3790,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3841,7 +3841,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3892,7 +3892,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3943,7 +3943,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3994,7 +3994,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4045,7 +4045,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4096,7 +4096,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/725a8207-73b2-4243-8160-027ecd1459c7?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4147,7 +4147,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4198,7 +4198,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4255,7 +4255,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4306,7 +4306,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4363,7 +4363,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4415,7 +4415,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4473,7 +4473,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4524,7 +4524,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4581,7 +4581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4632,7 +4632,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4689,7 +4689,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4740,7 +4740,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4797,7 +4797,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4848,7 +4848,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/548cbf18-9be7-408e-8dd7-c88eea8ccc44?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4899,7 +4899,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4950,7 +4950,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5001,7 +5001,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/d9502d1c-0779-47c8-8eb8-dc11d001b75c?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5052,7 +5052,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/generatevpnclientpackage?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/resourceGroups/csmrg2843/providers/Microsoft.Network/virtualNetworkGateways/azsmnet2648/generatevpnclientpackage?api-version=2017-03-01", "RequestMethod": "POST", "RequestBody": "{\r\n \"ProcessorArchitecture\": \"Amd64\"\r\n}", "RequestHeaders": { @@ -5093,7 +5093,7 @@ "434bbfd2-b60a-4b02-98a5-d395c70cf5b7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5102,7 +5102,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operationResults/434bbfd2-b60a-4b02-98a5-d395c70cf5b7?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -5124,7 +5124,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5175,7 +5175,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/20852412-192d-4114-8fa5-30be5be0038d?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5226,7 +5226,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5277,7 +5277,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/24ba035c-dcb5-46a8-a399-149fc7a893f3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5328,7 +5328,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5379,7 +5379,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5430,7 +5430,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2016-12-01", + "RequestUri": "/subscriptions/64229c92-175a-4eba-a2fd-ee1f9e29766e/providers/Microsoft.Network/locations/westus.validation/operations/8c6beedd-bd46-4d6a-b918-68dd9df39270?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json index 27bd1568b9a4..ef8b88ae4458 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/CreateEmptyLoadBalancer.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\"\r\n}", "RequestHeaders": { @@ -164,7 +164,7 @@ "fbb24308-d599-45e4-a362-a999ca8fc477" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/fbb24308-d599-45e4-a362-a999ca8fc477?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/fbb24308-d599-45e4-a362-a999ca8fc477?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,8 +182,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -304,8 +304,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers/azsmnet8620?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODYyMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -337,7 +337,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -350,7 +350,7 @@ "0efa3a1b-3d5e-4924-8bfb-be23c225d20e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzBlZmEzYTFiLTNkNWUtNDkyNC04YmZiLWJlMjNjMjI1ZDIwZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0efa3a1b-3d5e-4924-8bfb-be23c225d20e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzBlZmEzYTFiLTNkNWUtNDkyNC04YmZiLWJlMjNjMjI1ZDIwZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2494/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjQ5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json index e680c3d9052f..7aaf0bc4f44d 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiNicAssociationTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3dad47db-7a5d-4764-b1a8-45e4c54ecb14" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/3dad47db-7a5d-4764-b1a8-45e4c54ecb14?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvM2RhZDQ3ZGItN2E1ZC00NzY0LWIxYTgtNDVlNGM1NGVjYjE0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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}", "RequestHeaders": { @@ -414,7 +414,7 @@ "33b0df37-361c-4610-a62c-2d0bd11d537e" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/33b0df37-361c-4610-a62c-2d0bd11d537e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzNiMGRmMzctMzYxYy00NjEwLWE2MmMtMmQwYmQxMWQ1MzdlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/virtualNetworks/azsmnet5244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9henNtbmV0NTI0ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -658,7 +658,7 @@ "5cd1d728-5a6d-42ea-9e42-2cef079e7d37" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5cd1d728-5a6d-42ea-9e42-2cef079e7d37?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -728,7 +728,7 @@ "d42fc5c0-cca6-4177-bd4d-8308ba4890c1" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d42fc5c0-cca6-4177-bd4d-8308ba4890c1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -804,8 +804,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -868,8 +868,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -926,8 +926,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -990,8 +990,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -1039,7 +1039,7 @@ "7efab2e5-175c-433e-9f27-b08984133322" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7efab2e5-175c-433e-9f27-b08984133322?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,8 +1057,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -1109,7 +1109,7 @@ "9b45499d-e838-4b4e-9ce1-01e6d473764c" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9b45499d-e838-4b4e-9ce1-01e6d473764c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1127,8 +1127,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1185,8 +1185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1249,8 +1249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1307,8 +1307,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1371,8 +1371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -1420,7 +1420,7 @@ "278e7e1b-2137-4663-9235-2bad3fdfc102" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/278e7e1b-2137-4663-9235-2bad3fdfc102?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1438,8 +1438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -1490,7 +1490,7 @@ "ede67ae0-aeba-49e6-90df-5a5b53c7f6ce" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/ede67ae0-aeba-49e6-90df-5a5b53c7f6ce?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1508,8 +1508,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1566,8 +1566,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1630,8 +1630,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1688,8 +1688,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1752,8 +1752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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}", "RequestHeaders": { @@ -1801,7 +1801,7 @@ "f8b75ac4-426a-4583-9e9c-4676d5661dfd" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/f8b75ac4-426a-4583-9e9c-4676d5661dfd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1819,8 +1819,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1877,8 +1877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1941,8 +1941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2005,8 +2005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers/azsmnet3522?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnMvYXpzbW5ldDM1MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2038,7 +2038,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2051,7 +2051,7 @@ "892ddc33-a56a-451c-9f96-b4cf3dc159d9" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2069,8 +2069,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/892ddc33-a56a-451c-9f96-b4cf3dc159d9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvODkyZGRjMzMtYTU2YS00NTFjLTlmOTYtYjRjZjNkYzE1OWQ5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2124,8 +2124,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL2xvYWRCYWxhbmNlcnM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2178,8 +2178,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2211,7 +2211,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2224,7 +2224,7 @@ "d91d7f13-838b-49b3-a16c-9fc285b57bd1" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2242,8 +2242,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d91d7f13-838b-49b3-a16c-9fc285b57bd1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDkxZDdmMTMtODM4Yi00OWIzLWExNmMtOWZjMjg1YjU3YmQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2297,8 +2297,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet5719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQ1NzE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2330,7 +2330,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2343,7 +2343,7 @@ "1a21769a-b229-45d2-a730-3d208ae11c57" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2361,8 +2361,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/1a21769a-b229-45d2-a730-3d208ae11c57?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWEyMTc2OWEtYjIyOS00NWQyLWE3MzAtM2QyMDhhZTExYzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2416,8 +2416,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/networkInterfaces/azsmnet3894?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL2F6c21uZXQzODk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2449,7 +2449,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2462,7 +2462,7 @@ "fd9fc03d-a4bb-43e4-9397-c11e79c53925" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2480,8 +2480,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/fd9fc03d-a4bb-43e4-9397-c11e79c53925?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmQ5ZmMwM2QtYTRiYi00M2U0LTkzOTctYzExZTc5YzUzOTI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2535,8 +2535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg25/providers/Microsoft.Network/publicIPAddresses/azsmnet4721?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2F6c21uZXQ0NzIxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -2568,7 +2568,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2581,7 +2581,7 @@ "5fbb2994-1d41-4726-ae24-018ff2a4399b" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2599,8 +2599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/5fbb2994-1d41-4726-ae24-018ff2a4399b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWZiYjI5OTQtMWQ0MS00NzI2LWFlMjQtMDE4ZmYyYTQzOTliP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json index b09cbc549551..579f06f4a955 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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}", "RequestHeaders": { @@ -167,7 +167,7 @@ "9a4ad2fd-6e62-424d-b1ec-14962cca9cf4" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9a4ad2fd-6e62-424d-b1ec-14962cca9cf4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOWE0YWQyZmQtNmU2Mi00MjRkLWIxZWMtMTQ5NjJjY2E5Y2Y0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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}", "RequestHeaders": { @@ -411,7 +411,7 @@ "bef8bf1d-d1fc-4068-8735-3977bb3c34d9" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bef8bf1d-d1fc-4068-8735-3977bb3c34d9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -727,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/loadBalancers/azsmnet2672?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjY3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -760,7 +760,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -773,7 +773,7 @@ "7adb7a95-e3c0-45ff-8fc1-1180b47ae47c" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -791,8 +791,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/7adb7a95-e3c0-45ff-8fc1-1180b47ae47c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2FkYjdhOTUtZTNjMC00NWZmLThmYzEtMTE4MGI0N2FlNDdjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -846,8 +846,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8321/providers/Microsoft.Network/publicIPAddresses/azsmnet310?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODMyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDMxMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -879,7 +879,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -892,7 +892,7 @@ "d02ab371-ea0c-4a29-b3c1-a316877805ee" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -910,8 +910,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/d02ab371-ea0c-4a29-b3c1-a316877805ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDAyYWIzNzEtZWEwYy00YTI5LWIzYzEtYTMxNjg3NzgwNWVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json index 557cc9bd3c91..33094a5f9c57 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDistributionPolicy.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\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\": \"azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "963fb0d9-d9da-442b-ba19-ed37d225501f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzk2M2ZiMGQ5LWQ5ZGEtNDQyYi1iYTE5LWVkMzdkMjI1NTAxZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/963fb0d9-d9da-442b-ba19-ed37d225501f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzk2M2ZiMGQ5LWQ5ZGEtNDQyYi1iYTE5LWVkMzdkMjI1NTAxZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\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\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "5409a23a-b969-4ec0-b876-2d7fa5fd4bbc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5409a23a-b969-4ec0-b876-2d7fa5fd4bbc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5409a23a-b969-4ec0-b876-2d7fa5fd4bbc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"SourceIP\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\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\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "11fc7019-b17b-489e-b2b3-0f1f043f637b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/11fc7019-b17b-489e-b2b3-0f1f043f637b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/11fc7019-b17b-489e-b2b3-0f1f043f637b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3535\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet7499\",\r\n \"etag\": \"W/\\\"64f85be1-48c1-498d-9d09-cb911b47cfc8\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681/subnets/azsmnet7499\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet9482\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet9903\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/backendAddressPools/azsmnet9482\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/probes/azsmnet2798\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"SourceIPProtocol\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet2798\",\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\": \"azsmnet8939\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4305\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114/frontendIPConfigurations/azsmnet3535\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -551,7 +551,7 @@ "0e5113c6-d8c6-4379-b111-8af4d1de4ac5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0e5113c6-d8c6-4379-b111-8af4d1de4ac5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/0e5113c6-d8c6-4379-b111-8af4d1de4ac5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,8 +569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -627,8 +627,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -691,8 +691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -749,8 +749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -813,8 +813,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -871,8 +871,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -935,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -996,8 +996,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1050,8 +1050,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/loadBalancers/azsmnet5114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0NTExND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1083,7 +1083,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1096,7 +1096,7 @@ "53c70c1f-f3bc-49bc-82ad-3567f6427a52" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1114,8 +1114,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzUzYzcwYzFmLWYzYmMtNDliYy04MmFkLTM1NjdmNjQyN2E1Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/53c70c1f-f3bc-49bc-82ad-3567f6427a52?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzUzYzcwYzFmLWYzYmMtNDliYy04MmFkLTM1NjdmNjQyN2E1Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,8 +1169,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5829/providers/Microsoft.Network/virtualNetworks/azsmnet5681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTgyOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjgxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1202,7 +1202,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1215,7 +1215,7 @@ "e27bbc83-c3a8-4eee-91c5-f17a3aef9423" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1233,8 +1233,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2UyN2JiYzgzLWMzYTgtNGVlZS05MWM1LWYxN2EzYWVmOTQyMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e27bbc83-c3a8-4eee-91c5-f17a3aef9423?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2UyN2JiYzgzLWMzYTgtNGVlZS05MWM1LWYxN2EzYWVmOTQyMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json index 1e89d8c1eae2..ad4c27c5ed16 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithDynamicIp.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\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\": \"azsmnet1606\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "264ff5ef-2d86-4608-8e76-eac955cb406e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzI2NGZmNWVmLTJkODYtNDYwOC04ZTc2LWVhYzk1NWNiNDA2ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/264ff5ef-2d86-4608-8e76-eac955cb406e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzI2NGZmNWVmLTJkODYtNDYwOC04ZTc2LWVhYzk1NWNiNDA2ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet9826\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet1606\",\r\n \"etag\": \"W/\\\"08dd095e-7a95-4523-9219-23493907e2af\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239/subnets/azsmnet1606\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet2958\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet6449\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/backendAddressPools/azsmnet2958\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/probes/azsmnet2286\"\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\": \"azsmnet2286\",\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\": \"azsmnet3126\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\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\": \"azsmnet2299\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494/frontendIPConfigurations/azsmnet9826\"\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}", "RequestHeaders": { @@ -411,7 +411,7 @@ "04b85831-52ed-4f78-b0ab-a589450ebbdc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/04b85831-52ed-4f78-b0ab-a589450ebbdc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/04b85831-52ed-4f78-b0ab-a589450ebbdc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/loadBalancers/azsmnet1494?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTQ5ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "4b0345cf-ec91-4ace-9cca-e9431a22067d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzRiMDM0NWNmLWVjOTEtNGFjZS05Y2NhLWU5NDMxYTIyMDY3ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/4b0345cf-ec91-4ace-9cca-e9431a22067d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzRiMDM0NWNmLWVjOTEtNGFjZS05Y2NhLWU5NDMxYTIyMDY3ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -843,8 +843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg4589/providers/Microsoft.Network/virtualNetworks/azsmnet9239?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDU4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MjM5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -876,7 +876,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -889,7 +889,7 @@ "b6f5aa51-c004-419b-bff0-20344fcaf8ae" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2I2ZjVhYTUxLWMwMDQtNDE5Yi1iZmYwLTIwMzQ0ZmNhZjhhZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/b6f5aa51-c004-419b-bff0-20344fcaf8ae?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zL2I2ZjVhYTUxLWMwMDQtNDE5Yi1iZmYwLTIwMzQ0ZmNhZjhhZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json index 84e64b13d512..6d5bc862829a 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerApiTestWithStaticIp.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\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\": \"azsmnet4614\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "5e54fcf7-11ac-48da-aac5-2fa0ba445a1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzVlNTRmY2Y3LTExYWMtNDhkYS1hYWM1LTJmYTBiYTQ0NWExZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/5e54fcf7-11ac-48da-aac5-2fa0ba445a1e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzVlNTRmY2Y3LTExYWMtNDhkYS1hYWM1LTJmYTBiYTQ0NWExZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6881\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet4614\",\r\n \"etag\": \"W/\\\"c27c3a4a-61b2-471d-bc8e-e21fa2a01e7c\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103/subnets/azsmnet4614\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1565\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet2497\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/backendAddressPools/azsmnet1565\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/probes/azsmnet914\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet914\",\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\": \"azsmnet6108\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3389,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet4420\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110/frontendIPConfigurations/azsmnet6881\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 3390,\r\n \"backendPort\": 3389,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "9132b8e7-7535-4edc-93b0-8098b908e34e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/9132b8e7-7535-4edc-93b0-8098b908e34e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/9132b8e7-7535-4edc-93b0-8098b908e34e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -666,8 +666,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2FkQmFsYW5jZXJzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/loadBalancers/azsmnet8110?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODExMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "6e738e9c-4fb2-4b3d-a5dd-02972e66cde3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZlNzM4ZTljLTRmYjItNGIzZC1hNWRkLTAyOTcyZTY2Y2RlMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6e738e9c-4fb2-4b3d-a5dd-02972e66cde3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZlNzM4ZTljLTRmYjItNGIzZC1hNWRkLTAyOTcyZTY2Y2RlMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -843,8 +843,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg2974/providers/Microsoft.Network/virtualNetworks/azsmnet9103?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ5MTAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -876,7 +876,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -889,7 +889,7 @@ "32b8cf10-7428-4325-a94d-cb75ba3084dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,8 +907,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzMyYjhjZjEwLTc0MjgtNDMyNS1hOTRkLWNiNzViYTMwODRkZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/32b8cf10-7428-4325-a94d-cb75ba3084dd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzMyYjhjZjEwLTc0MjgtNDMyNS1hOTRkLWNiNzViYTMwODRkZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json index 36470fd821d7..a27371ae40b2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerNatPoolTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"azsmnet6030\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWVjOWQzYWEtZTZmMy00MTgxLWE2N2UtZTVkYzRhYjM4MTVmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/eec9d3aa-e6f3-4181-a67e-e5dc4ab3815f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWVjOWQzYWEtZTZmMy00MTgxLWE2N2UtZTVkYzRhYjM4MTVmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6372\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117\"\r\n }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"azsmnet5453\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 100,\r\n \"frontendPortRangeEnd\": 105,\r\n \"backendPort\": 81\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "9ef85cc4-df4b-4966-ab96-bfaeb3811312" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9ef85cc4-df4b-4966-ab96-bfaeb3811312?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/9ef85cc4-df4b-4966-ab96-bfaeb3811312?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6372\",\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\",\r\n \"properties\": {\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/inboundNatPools/azsmnet5453\"\r\n }\r\n ],\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"azsmnet5453\",\r\n \"etag\": \"W/\\\"81ab9337-5fdd-4dd3-b232-3df842cef3bc\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/inboundNatPools/azsmnet5453\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 100,\r\n \"frontendPortRangeEnd\": 105,\r\n \"backendPort\": 81,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet5745\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041/frontendIPConfigurations/azsmnet6372\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPortRangeStart\": 107,\r\n \"frontendPortRangeEnd\": 110,\r\n \"backendPort\": 81\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"resourceGuid\": \"3b977636-5d80-427b-914a-bf079a283b97\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "a9d5f4ef-f803-4914-aa56-9d99163a25b8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/a9d5f4ef-f803-4914-aa56-9d99163a25b8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/a9d5f4ef-f803-4914-aa56-9d99163a25b8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers/azsmnet8041?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0ODA0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -712,7 +712,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -725,7 +725,7 @@ "275fb0d7-293f-4025-8841-d3bd66ce4d17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjc1ZmIwZDctMjkzZi00MDI1LTg4NDEtZDNiZDY2Y2U0ZDE3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/275fb0d7-293f-4025-8841-d3bd66ce4d17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjc1ZmIwZDctMjkzZi00MDI1LTg4NDEtZDNiZDY2Y2U0ZDE3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -852,8 +852,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg5187/providers/Microsoft.Network/publicIPAddresses/azsmnet1117?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnNTE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDExMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -885,7 +885,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operationResults/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -898,7 +898,7 @@ "bd3187d4-a3d1-4118-88b2-0938e6beb75e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -916,8 +916,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmQzMTg3ZDQtYTNkMS00MTE4LTg4YjItMDkzOGU2YmViNzVlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/bd3187d4-a3d1-4118-88b2-0938e6beb75e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmQzMTg3ZDQtYTNkMS00MTE4LTg4YjItMDkzOGU2YmViNzVlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json index fd2b26e6eb40..05d2aa7931dc 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/LoadBalancerOutboundNatRuleTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet339\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "5eacd067-d3d7-4e2a-89a8-8b633e85d30e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWVhY2QwNjctZDNkNy00ZTJhLTg5YTgtOGI2MzNlODVkMzBlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/5eacd067-d3d7-4e2a-89a8-8b633e85d30e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWVhY2QwNjctZDNkNy00ZTJhLTg5YTgtOGI2MzNlODVkMzBlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609\"\r\n }\r\n },\r\n \"name\": \"azsmnet6272\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet4688\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/frontendIPConfigurations/azsmnet6272\"\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\": \"azsmnet7538\"\r\n }\r\n ],\r\n \"outboundNatRules\": [\r\n {\r\n \"properties\": {\r\n \"allocatedOutboundPorts\": 1000,\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/frontendIPConfigurations/azsmnet6272\"\r\n }\r\n ],\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821/backendAddressPools/azsmnet4688\"\r\n }\r\n },\r\n \"name\": \"azsmnet8413\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "afa88ff0-3c18-4dcf-bf65-4c0fae290cba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/afa88ff0-3c18-4dcf-bf65-4c0fae290cba?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/afa88ff0-3c18-4dcf-bf65-4c0fae290cba?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers/azsmnet1821?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MTgyMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "6f62b5b3-4ebe-4797-9fdd-e945b7728203" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmY2MmI1YjMtNGViZS00Nzk3LTlmZGQtZTk0NWI3NzI4MjAzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6f62b5b3-4ebe-4797-9fdd-e945b7728203?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNmY2MmI1YjMtNGViZS00Nzk3LTlmZGQtZTk0NWI3NzI4MjAzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg3470/providers/Microsoft.Network/publicIPAddresses/azsmnet7609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzQ3MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDc2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "632e498b-bc6b-4467-a71a-f7ed2ceece4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyZTQ5OGItYmM2Yi00NDY3LWE3MWEtZjdlZDJjZWVjZTRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/632e498b-bc6b-4467-a71a-f7ed2ceece4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjMyZTQ5OGItYmM2Yi00NDY3LWE3MWEtZjdlZDJjZWVjZTRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json index e44730dcf956..e4028768b739 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.LoadBalancerTests/UpdateLoadBalancerRule.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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/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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\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\": \"azsmnet2252\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "08de78f1-3bc7-493f-bc67-f4597fb79770" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzA4ZGU3OGYxLTNiYzctNDkzZi1iYzY3LWY0NTk3ZmI3OTc3MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/08de78f1-3bc7-493f-bc67-f4597fb79770?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzA4ZGU3OGYxLTNiYzctNDkzZi1iYzY3LWY0NTk3ZmI3OTc3MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Canada East\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2040\",\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet2252\",\r\n \"etag\": \"W/\\\"ff72dc07-42e5-4d32-bcd1-6d92b4911872\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376/subnets/azsmnet2252\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet8297\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet8583\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "e136fa58-0f19-4a46-9e35-a6a7d24e223d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e136fa58-0f19-4a46-9e35-a6a7d24e223d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/e136fa58-0f19-4a46-9e35-a6a7d24e223d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet2040\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.0.38\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376/subnets/azsmnet2252\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet8297\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\",\r\n \"properties\": {\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"azsmnet8583\",\r\n \"etag\": \"W/\\\"35240812-9fcb-4285-a3c1-a3e213177001\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/loadBalancingRules/azsmnet8583\",\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/frontendIPConfigurations/azsmnet2040\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/backendAddressPools/azsmnet8297\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635/probes/azsmnet6266\"\r\n },\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet6266\",\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 \"inboundNatPools\": [],\r\n \"outboundNatRules\": [],\r\n \"resourceGuid\": \"0296cf87-5d50-4fce-9fb0-055dae5af2de\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "6beeefcf-99bd-4697-828a-71ea9ab26d3d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6beeefcf-99bd-4697-828a-71ea9ab26d3d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6beeefcf-99bd-4697-828a-71ea9ab26d3d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -743,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers/azsmnet2635?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycy9henNtbmV0MjYzNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -789,7 +789,7 @@ "6cd22eff-f535-476e-895b-85418749a134" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZjZDIyZWZmLWY1MzUtNDc2ZS04OTViLTg1NDE4NzQ5YTEzND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6cd22eff-f535-476e-895b-85418749a134?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZjZDIyZWZmLWY1MzUtNDc2ZS04OTViLTg1NDE4NzQ5YTEzND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/loadBalancers?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbG9hZEJhbGFuY2Vycz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,8 +916,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg8213/providers/Microsoft.Network/virtualNetworks/azsmnet5376?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1Mzc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -949,7 +949,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operationResults/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -962,7 +962,7 @@ "6bf37bbe-9cc4-4b2c-8776-e67472f3b824" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,8 +980,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZiZjM3YmJlLTljYzQtNGIyYy04Nzc2LWU2NzQ3MmYzYjgyND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/canadaeast/operations/6bf37bbe-9cc4-4b2c-8776-e67472f3b824?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvY2FuYWRhZWFzdC9vcGVyYXRpb25zLzZiZjM3YmJlLTljYzQtNGIyYy04Nzc2LWU2NzQ3MmYzYjgyND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json index ba20fb509f42..9dd530e44ea1 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/AssertMultiIpConfigOnDifferentSubnetFails.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"azsmnet8249\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2177\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "2f3e4c16-6339-4b37-b653-d4317887a159" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYzZTRjMTYtNjMzOS00YjM3LWI2NTMtZDQzMTc4ODdhMTU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2f3e4c16-6339-4b37-b653-d4317887a159?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmYzZTRjMTYtNjMzOS00YjM3LWI2NTMtZDQzMTc4ODdhMTU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDgyNDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDgyNDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDIxNzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU3L3N1Ym5ldHMvYXpzbW5ldDIxNzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/networkInterfaces/azsmnet2520?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI1MjA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/networkInterfaces/azsmnet2520?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI1MjA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet1712\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet8249\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8122/providers/Microsoft.Network/virtualNetworks/azsmnet7657/subnets/azsmnet2177\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json index da8c945d43ac..0e5630780761 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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}", "RequestHeaders": { @@ -167,7 +167,7 @@ "12fbba8e-ab04-436d-84a1-625f46c202f6" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/12fbba8e-ab04-436d-84a1-625f46c202f6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTJmYmJhOGUtYWIwNC00MzZkLTg0YTEtNjI1ZjQ2YzIwMmY2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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}", "RequestHeaders": { @@ -414,7 +414,7 @@ "d494c757-68f0-45d0-9cf0-dba5c2cdcd05" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d494c757-68f0-45d0-9cf0-dba5c2cdcd05?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDQ5NGM3NTctNjhmMC00NWQwLTljZjAtZGJhNWMyY2RjZDA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507/subnets/azsmnet4813?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3L3N1Ym5ldHMvYXpzbW5ldDQ4MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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}", "RequestHeaders": { @@ -658,7 +658,7 @@ "59f8cc76-3006-45fc-a35f-52a40040e9b4" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/59f8cc76-3006-45fc-a35f-52a40040e9b4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -976,8 +976,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/networkInterfaces/azsmnet8787?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDg3ODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1009,7 +1009,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1022,7 +1022,7 @@ "aa4769b3-0555-4b4d-bf93-ec75ac59336f" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1040,8 +1040,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/aa4769b3-0555-4b4d-bf93-ec75ac59336f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWE0NzY5YjMtMDU1NS00YjRkLWJmOTMtZWM3NWFjNTkzMzZmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1095,8 +1095,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/publicIPAddresses/azsmnet341?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM0MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1128,7 +1128,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1141,7 +1141,7 @@ "ec9b9318-944d-4129-9cc4-ac5b9aec2f4d" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1159,8 +1159,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ec9b9318-944d-4129-9cc4-ac5b9aec2f4d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWM5YjkzMTgtOTQ0ZC00MTI5LTljYzQtYWM1YjlhZWMyZjRkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1214,8 +1214,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2944/providers/Microsoft.Network/virtualNetworks/azsmnet2507?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjk0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyNTA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1247,7 +1247,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1260,7 +1260,7 @@ "26a085d4-53bb-4078-b6ae-c11c9ff3337d" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1278,8 +1278,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/26a085d4-53bb-4078-b6ae-c11c9ff3337d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjZhMDg1ZDQtNTNiYi00MDc4LWI2YWUtYzExYzlmZjMzMzdkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json index 7b9d10e3c6b3..fab8774ff389 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceApiTestIPv6.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5051\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3881820c-25c4-43bc-a03a-305b8451d77f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM4ODE4MjBjLTI1YzQtNDNiYy1hMDNhLTMwNWI4NDUxZDc3Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/3881820c-25c4-43bc-a03a-305b8451d77f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzM4ODE4MjBjLTI1YzQtNDNiYy1hMDNhLTMwNWI4NDUxZDc3Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\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\": \"azsmnet9491\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "406304b5-998f-438a-8b94-4f8e4c068d71" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzQwNjMwNGI1LTk5OGYtNDM4YS04Yjk0LTRmOGU0YzA2OGQ3MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/406304b5-998f-438a-8b94-4f8e4c068d71?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zLzQwNjMwNGI1LTk5OGYtNDM4YS04Yjk0LTRmOGU0YzA2OGQ3MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1L3N1Ym5ldHMvYXpzbW5ldDk0OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1L3N1Ym5ldHMvYXpzbW5ldDk0OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipv4ipconfig792\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425/subnets/azsmnet9491\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ipv6ipconfig4450\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv6\",\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "bf2587c6-c933-42bf-8114-047fb0033458" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bf2587c6-c933-42bf-8114-047fb0033458?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bf2587c6-c933-42bf-8114-047fb0033458?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,8 +971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/networkInterfaces/dualstacknic353?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvZHVhbHN0YWNrbmljMzUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1004,7 +1004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1017,7 +1017,7 @@ "c8341a35-6cc2-49f2-8d26-351acab85730" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,8 +1035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2M4MzQxYTM1LTZjYzItNDlmMi04ZDI2LTM1MWFjYWI4NTczMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/c8341a35-6cc2-49f2-8d26-351acab85730?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2M4MzQxYTM1LTZjYzItNDlmMi04ZDI2LTM1MWFjYWI4NTczMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,8 +1090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/publicIPAddresses/azsmnet3708?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDM3MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1123,7 +1123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1136,7 +1136,7 @@ "bb6bebcd-c58f-481e-9924-778276ae0606" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1154,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2JiNmJlYmNkLWM1OGYtNDgxZS05OTI0LTc3ODI3NmFlMDYwNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/bb6bebcd-c58f-481e-9924-778276ae0606?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2JiNmJlYmNkLWM1OGYtNDgxZS05OTI0LTc3ODI3NmFlMDYwNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,8 +1209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg2569/providers/Microsoft.Network/virtualNetworks/azsmnet5425?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMjU2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDI1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1242,7 +1242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operationResults/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1255,7 +1255,7 @@ "ddd5be95-00cf-4031-993d-c2ec96e3812d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1273,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2RkZDViZTk1LTAwY2YtNDAzMS05OTNkLWMyZWM5NmUzODEyZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/westeurope/operations/ddd5be95-00cf-4031-993d-c2ec96e3812d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGV1cm9wZS9vcGVyYXRpb25zL2RkZDViZTk1LTAwY2YtNDAzMS05OTNkLWMyZWM5NmUzODEyZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json index 673f1e1b90e3..6f00311ba6ef 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet9996\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3618ebb7-24be-434f-bbfc-3aeea1ed27e2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzYxOGViYjctMjRiZS00MzRmLWJiZmMtM2FlZWExZWQyN2UyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/3618ebb7-24be-434f-bbfc-3aeea1ed27e2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzYxOGViYjctMjRiZS00MzRmLWJiZmMtM2FlZWExZWQyN2UyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4L3N1Ym5ldHMvYXpzbW5ldDk5OTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4L3N1Ym5ldHMvYXpzbW5ldDk5OTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388/subnets/azsmnet9996\"\r\n }\r\n },\r\n \"name\": \"azsmnet5670\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"1.0.0.1\",\r\n \"1.0.0.2\"\r\n ],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "f273ca10-2b73-4b7a-adcb-843d2cf4894c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f273ca10-2b73-4b7a-adcb-843d2cf4894c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f273ca10-2b73-4b7a-adcb-843d2cf4894c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces/azsmnet9670?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDk2NzA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "999431c8-2c8c-40b2-9dd2-285624e3a112" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk5NDMxYzgtMmM4Yy00MGIyLTlkZDItMjg1NjI0ZTNhMTEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/999431c8-2c8c-40b2-9dd2-285624e3a112?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTk5NDMxYzgtMmM4Yy00MGIyLTlkZDItMjg1NjI0ZTNhMTEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7817/providers/Microsoft.Network/virtualNetworks/azsmnet4388?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzgxNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0Mzg4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "610d0d8b-e937-4a27-806e-182f67105689" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjEwZDBkOGItZTkzNy00YTI3LTgwNmUtMTgyZjY3MTA1Njg5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/610d0d8b-e937-4a27-806e-182f67105689?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjEwZDBkOGItZTkzNy00YTI3LTgwNmUtMTgyZjY3MTA1Njg5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json index 57b19b3557fb..b4e1ec9c6c64 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceDnsSettingsTestIdnsSuffix.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet7512\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "53e216aa-b677-4c58-9fc9-e541fdf21d11" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNlMjE2YWEtYjY3Ny00YzU4LTlmYzktZTU0MWZkZjIxZDExP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53e216aa-b677-4c58-9fc9-e541fdf21d11?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNlMjE2YWEtYjY3Ny00YzU4LTlmYzktZTU0MWZkZjIxZDExP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0L3N1Ym5ldHMvYXpzbW5ldDc1MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0L3N1Ym5ldHMvYXpzbW5ldDc1MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654/subnets/azsmnet7512\"\r\n }\r\n },\r\n \"name\": \"azsmnet6647\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [\r\n \"1.0.0.1\",\r\n \"1.0.0.2\"\r\n ],\r\n \"internalDnsNameLabel\": \"idnstest\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "f86d4fc2-8e02-4294-b8bd-e381115a3769" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f86d4fc2-8e02-4294-b8bd-e381115a3769?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f86d4fc2-8e02-4294-b8bd-e381115a3769?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces/azsmnet5611?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDU2MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -584,7 +584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -597,7 +597,7 @@ "930e8b36-b134-4dd6-9411-8b5e80fcfec0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,8 +615,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwZThiMzYtYjEzNC00ZGQ2LTk0MTEtOGI1ZTgwZmNmZWMwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/930e8b36-b134-4dd6-9411-8b5e80fcfec0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwZThiMzYtYjEzNC00ZGQ2LTk0MTEtOGI1ZTgwZmNmZWMwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -724,8 +724,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2189/providers/Microsoft.Network/virtualNetworks/azsmnet7654?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjE4OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjU0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -757,7 +757,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -770,7 +770,7 @@ "24b51407-43bc-4eb7-b256-69f74a70212d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,8 +788,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjRiNTE0MDctNDNiYy00ZWI3LWIyNTYtNjlmNzRhNzAyMTJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/24b51407-43bc-4eb7-b256-69f74a70212d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjRiNTE0MDctNDNiYy00ZWI3LWIyNTYtNjlmNzRhNzAyMTJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json index aa9fbdfdfa34..22581ad6d0c2 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEffectiveNetworkSecurityGroupTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet1289\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "7b73f3ff-87d1-4336-9503-1ecadcd8be0c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2I3M2YzZmYtODdkMS00MzM2LTk1MDMtMWVjYWRjZDhiZTBjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/7b73f3ff-87d1-4336-9503-1ecadcd8be0c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvN2I3M2YzZmYtODdkMS00MzM2LTk1MDMtMWVjYWRjZDhiZTBjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NjEyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "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\": \"azsmnet9761\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -350,7 +350,7 @@ "d3d925f7-f43d-403b-b5e0-aafde256930d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDNkOTI1ZjctZjQzZC00MDNiLWI1ZTAtYWFmZGUyNTY5MzBkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/d3d925f7-f43d-403b-b5e0-aafde256930d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDNkOTI1ZjctZjQzZC00MDNiLWI1ZTAtYWFmZGUyNTY5MzBkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ2OTgwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet9761\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/securityRules/azsmnet9761\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"df2612a2-9f2c-4641-ae62-31982ad26eec\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"b5329d11-bd80-481e-bcea-d797054eaf62\\\"\",\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkSecurityGroups/azsmnet6980\",\r\n \"location\": \"eastus\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/virtualNetworks/azsmnet7612/subnets/azsmnet1289\"\r\n }\r\n },\r\n \"name\": \"azsmnet9385\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -594,7 +594,7 @@ "f2de0f45-a61a-436c-a77f-f6f1cfa32749" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/f2de0f45-a61a-436c-a77f-f6f1cfa32749?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/eastus/operations/f2de0f45-a61a-436c-a77f-f6f1cfa32749?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,8 +612,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464/effectiveNetworkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg3523/providers/Microsoft.Network/networkInterfaces/azsmnet2464/effectiveNetworkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzUyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDI0NjQvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json index 81fd106807d0..756a58f041fe 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceEnableIPForwardingTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet6595\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "e16aeb62-7174-4d4b-9e7b-9dc47d3b300b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2YWViNjItNzE3NC00ZDRiLTllN2ItOWRjNDdkM2IzMDBiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e16aeb62-7174-4d4b-9e7b-9dc47d3b300b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTE2YWViNjItNzE3NC00ZDRiLTllN2ItOWRjNDdkM2IzMDBiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4L3N1Ym5ldHMvYXpzbW5ldDY1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4L3N1Ym5ldHMvYXpzbW5ldDY1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595\"\r\n }\r\n },\r\n \"name\": \"azsmnet8404\"\r\n }\r\n ],\r\n \"enableIPForwarding\": false\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "eb361df5-f998-4434-bf5a-062492302f90" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb361df5-f998-4434-bf5a-062492302f90?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/eb361df5-f998-4434-bf5a-062492302f90?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418/subnets/azsmnet6595\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet8404\",\r\n \"etag\": \"W/\\\"e11d6788-0f5a-4474-b07e-160df313fe1a\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682/ipConfigurations/azsmnet8404\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vlmtkxhqcrjuppuzwmwcy12tbb.dx.internal.cloudapp.net\"\r\n },\r\n \"enableIPForwarding\": true,\r\n \"resourceGuid\": \"7d6b5cca-b79f-4864-9ef4-c15a17a31419\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"e11d6788-0f5a-4474-b07e-160df313fe1a\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/84d4c5fe-d2b9-4e9a-8da7-3eafe18985f6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -557,8 +557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -621,8 +621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -679,8 +679,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -743,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces/azsmnet4682?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -776,7 +776,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -789,7 +789,7 @@ "37174060-7b1b-4ece-a928-3094a8d18845" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcxNzQwNjAtN2IxYi00ZWNlLWE5MjgtMzA5NGE4ZDE4ODQ1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/37174060-7b1b-4ece-a928-3094a8d18845?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMzcxNzQwNjAtN2IxYi00ZWNlLWE5MjgtMzA5NGE4ZDE4ODQ1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -916,8 +916,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7727/providers/Microsoft.Network/virtualNetworks/azsmnet8418?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNzcyNy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4NDE4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -949,7 +949,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -962,7 +962,7 @@ "e0c0e99b-cd17-43b6-bcfa-73ece75e9605" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -980,8 +980,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBjMGU5OWItY2QxNy00M2I2LWJjZmEtNzNlY2U3NWU5NjA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e0c0e99b-cd17-43b6-bcfa-73ece75e9605?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTBjMGU5OWItY2QxNy00M2I2LWJjZmEtNzNlY2U3NWU5NjA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json index a44bf35a0643..c9f0f48cfeae 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceMultiIpConfigTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet9820\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "445ecc2b-8cab-47c6-8cf5-f27ef58c6f41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDQ1ZWNjMmItOGNhYi00N2M2LThjZjUtZjI3ZWY1OGM2ZjQxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/445ecc2b-8cab-47c6-8cf5-f27ef58c6f41?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDQ1ZWNjMmItOGNhYi00N2M2LThjZjUtZjI3ZWY1OGM2ZjQxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East 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\": \"azsmnet3029\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -414,7 +414,7 @@ "2db579ed-ab30-4409-abed-01079ed6aadb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,8 +432,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmRiNTc5ZWQtYWIzMC00NDA5LWFiZWQtMDEwNzllZDZhYWRiP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/2db579ed-ab30-4409-abed-01079ed6aadb?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMmRiNTc5ZWQtYWIzMC00NDA5LWFiZWQtMDEwNzllZDZhYWRiP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0L3N1Ym5ldHMvYXpzbW5ldDMwMjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0L3N1Ym5ldHMvYXpzbW5ldDMwMjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet3794\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994/subnets/azsmnet3029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -658,7 +658,7 @@ "cbefd58a-85af-4671-b8ef-8267d4df4747" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/cbefd58a-85af-4671-b8ef-8267d4df4747?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/cbefd58a-85af-4671-b8ef-8267d4df4747?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,8 +676,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -913,8 +913,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -971,8 +971,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/networkInterfaces/azsmnet6771?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3NzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1004,7 +1004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1017,7 +1017,7 @@ "a4354010-5717-4653-af48-020895676b17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,8 +1035,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQzNTQwMTAtNTcxNy00NjUzLWFmNDgtMDIwODk1Njc2YjE3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a4354010-5717-4653-af48-020895676b17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTQzNTQwMTAtNTcxNy00NjUzLWFmNDgtMDIwODk1Njc2YjE3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1090,8 +1090,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/publicIPAddresses/azsmnet2982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYXpzbW5ldDI5ODI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1123,7 +1123,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1136,7 +1136,7 @@ "5cc2a384-0a40-4da2-9c34-859484e09efe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1154,8 +1154,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWNjMmEzODQtMGE0MC00ZGEyLTljMzQtODU5NDg0ZTA5ZWZlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5cc2a384-0a40-4da2-9c34-859484e09efe?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWNjMmEzODQtMGE0MC00ZGEyLTljMzQtODU5NDg0ZTA5ZWZlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1209,8 +1209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8219/providers/Microsoft.Network/virtualNetworks/azsmnet3994?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODIxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQzOTk0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1242,7 +1242,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1255,7 +1255,7 @@ "0038f628-e452-4f45-812d-7efd6d0cac2d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1273,8 +1273,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDAzOGY2MjgtZTQ1Mi00ZjQ1LTgxMmQtN2VmZDZkMGNhYzJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/0038f628-e452-4f45-812d-7efd6d0cac2d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMDAzOGY2MjgtZTQ1Mi00ZjQ1LTgxMmQtN2VmZDZkMGNhYzJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json index aef34f068bfb..820a70192902 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceNetworkSecurityGroupTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet2837\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "bc9a8556-b961-40a0-9019-770a3478bece" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmM5YTg1NTYtYjk2MS00MGEwLTkwMTktNzcwYTM0NzhiZWNlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bc9a8556-b961-40a0-9019-770a3478bece?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmM5YTg1NTYtYjk2MS00MGEwLTkwMTktNzcwYTM0NzhiZWNlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "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\": \"azsmnet40\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -350,7 +350,7 @@ "72821b37-7181-4fba-ac9f-666e4ae59d4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -368,8 +368,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzI4MjFiMzctNzE4MS00ZmJhLWFjOWYtNjY2ZTRhZTU5ZDRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72821b37-7181-4fba-ac9f-666e4ae59d4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzI4MjFiMzctNzE4MS00ZmJhLWFjOWYtNjY2ZTRhZTU5ZDRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -481,8 +481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -545,8 +545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet40\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/securityRules/azsmnet40\"\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"934e8452-0070-43cf-9b4c-1e68110717eb\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"39fc7172-f444-4d0a-b2e9-087944a4c54d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465\",\r\n \"location\": \"westus\"\r\n },\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/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053/subnets/azsmnet2837\"\r\n }\r\n },\r\n \"name\": \"azsmnet5652\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -594,7 +594,7 @@ "ca2465ca-7e5f-4d68-9014-559fd9ea6deb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ca2465ca-7e5f-4d68-9014-559fd9ea6deb?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ca2465ca-7e5f-4d68-9014-559fd9ea6deb?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,8 +612,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -670,8 +670,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces/azsmnet302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMwMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -767,7 +767,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -780,7 +780,7 @@ "1a83fd25-aad9-4b8c-8589-7b5470a4193c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,8 +798,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE4M2ZkMjUtYWFkOS00YjhjLTg1ODktN2I1NDcwYTQxOTNjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1a83fd25-aad9-4b8c-8589-7b5470a4193c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWE4M2ZkMjUtYWFkOS00YjhjLTg1ODktN2I1NDcwYTQxOTNjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -853,8 +853,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkInterfaces?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -907,8 +907,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/networkSecurityGroups/azsmnet2465?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQyNDY1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -940,7 +940,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -953,7 +953,7 @@ "41bd6817-bafa-41a2-9972-7f4fee825cea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -971,8 +971,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFiZDY4MTctYmFmYS00MWEyLTk5NzItN2Y0ZmVlODI1Y2VhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/41bd6817-bafa-41a2-9972-7f4fee825cea?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNDFiZDY4MTctYmFmYS00MWEyLTk5NzItN2Y0ZmVlODI1Y2VhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1026,8 +1026,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6085/providers/Microsoft.Network/virtualNetworks/azsmnet2053?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjA4NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQyMDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1059,7 +1059,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1072,7 +1072,7 @@ "fb7d529e-41e0-4aff-8e3e-21c68e56fd0e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1090,8 +1090,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmI3ZDUyOWUtNDFlMC00YWZmLThlM2UtMjFjNjhlNTZmZDBlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/fb7d529e-41e0-4aff-8e3e-21c68e56fd0e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZmI3ZDUyOWUtNDFlMC00YWZmLThlM2UtMjFjNjhlNTZmZDBlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json index efe657a09e5a..85475b1cd318 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkInterfaceTests/NetworkInterfaceWithAcceleratedNetworkingTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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\": \"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 \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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-03-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-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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\": \"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 \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"azsmnet5615\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "944f01c2-77b2-40f8-82a9-e045b2d480b3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTQ0ZjAxYzItNzdiMi00MGY4LTgyYTktZTA0NWIyZDQ4MGIzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/944f01c2-77b2-40f8-82a9-e045b2d480b3?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTQ0ZjAxYzItNzdiMi00MGY4LTgyYTktZTA0NWIyZDQ4MGIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDYvc3VibmV0cy9henNtbmV0NTYxNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NDYvc3VibmV0cy9henNtbmV0NTYxNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/networkInterfaces/azsmnet6898?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY4OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/networkInterfaces/azsmnet6898?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnOTg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY4OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg9841/providers/Microsoft.Network/virtualNetworks/azsmnet546/subnets/azsmnet5615\"\r\n },\r\n \"primary\": true\r\n },\r\n \"name\": \"azsmnet1333\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": true\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json index c0873c483e65..cad22f4219a0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"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 US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "7120bd31-52fd-4930-8efa-92cca097ff1c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzEyMGJkMzEtNTJmZC00OTMwLThlZmEtOTJjY2EwOTdmZjFjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/7120bd31-52fd-4930-8efa-92cca097ff1c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzEyMGJkMzEtNTJmZC00OTMwLThlZmEtOTJjY2EwOTdmZjFjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg332/providers/Microsoft.Network/networkSecurityGroups/azsmnet4546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnMzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYXpzbW5ldDQ1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -568,7 +568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -581,7 +581,7 @@ "5643405a-4d6b-4219-99ec-4f36cefb7a10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -599,8 +599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTY0MzQwNWEtNGQ2Yi00MjE5LTk5ZWMtNGYzNmNlZmI3YTEwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/5643405a-4d6b-4219-99ec-4f36cefb7a10?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTY0MzQwNWEtNGQ2Yi00MjE5LTk5ZWMtNGYzNmNlZmI3YTEwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json index f1753246321b..fcccf5847bff 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.NetworkSecurityGroupTests/NetworkSecurityGroupWithRulesApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -154,7 +154,7 @@ "a57f505b-b51f-4237-9476-5550060e76c9" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "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}", "RequestHeaders": { @@ -223,7 +223,7 @@ "6d429732-cf6e-4850-b7a9-9540b533611f" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/a57f505b-b51f-4237-9476-5550060e76c9?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -587,7 +587,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -644,7 +644,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -705,7 +705,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/6d429732-cf6e-4850-b7a9-9540b533611f?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -756,7 +756,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg7220/providers/Microsoft.Network/networkSecurityGroups/azsmnet1014?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -788,7 +788,7 @@ "ada432fe-0599-42de-9762-823b41e02fec" ], "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -797,7 +797,7 @@ "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=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -819,7 +819,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/ada432fe-0599-42de-9762-823b41e02fec?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json index a55bc2d58572..3b434935429b 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "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\": \"azsmnet9769\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "d3b1ceb3-fc95-45e0-874d-0553b5bab53b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/d3b1ceb3-fc95-45e0-874d-0553b5bab53b?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -404,7 +404,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -461,7 +461,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -524,7 +524,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg2806/providers/Microsoft.Network/publicIPAddresses/azsmnet8392?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -556,7 +556,7 @@ "13308a66-8897-44ea-8df9-b12ca1d98e21" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,7 +565,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -587,7 +587,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/13308a66-8897-44ea-8df9-b12ca1d98e21?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json index 14847b6bb2a5..f20929eaa5fd 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestIPv6.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"apiVersions\": [\r\n \"2016-12-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 \"apiVersions\": [\r\n \"2016-12-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/a083c30e-d4e5-4dc1-b310-02aaf36b316a/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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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-03-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-03-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-03-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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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 \"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 \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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 \"apiVersions\": [\r\n \"2017-03-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 \"apiVersions\": [\r\n \"2017-03-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}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddressVersion\": \"IPv6\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"csmdnslabelpublicip1406\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "d39b9d63-14ac-4cb8-8bc6-629171fc57a2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDM5YjlkNjMtMTRhYy00Y2I4LThiYzYtNjI5MTcxZmM1N2EyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/d39b9d63-14ac-4cb8-8bc6-629171fc57a2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDM5YjlkNjMtMTRhYy00Y2I4LThiYzYtNjI5MTcxZmM1N2EyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -535,8 +535,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv6publicip9872?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NnB1YmxpY2lwOTg3Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -568,7 +568,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -581,7 +581,7 @@ "fc579ad7-d1fe-49a3-99ca-9e301fbc0796" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -599,8 +599,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM1NzlhZDctZDFmZS00OWEzLTk5Y2EtOWUzMDFmYmMwNzk2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/fc579ad7-d1fe-49a3-99ca-9e301fbc0796?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM1NzlhZDctZDFmZS00OWEzLTk5Y2EtOWUzMDFmYmMwNzk2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -654,8 +654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"csmdnslabelpublicip1406\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -706,7 +706,7 @@ "83a5dde1-2b52-4c78-99bb-7ee5001ab69c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -724,8 +724,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNhNWRkZTEtMmI1Mi00Yzc4LTk5YmItN2VlNTAwMWFiNjljP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/83a5dde1-2b52-4c78-99bb-7ee5001ab69c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODNhNWRkZTEtMmI1Mi00Yzc4LTk5YmItN2VlNTAwMWFiNjljP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -779,8 +779,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -837,8 +837,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -901,8 +901,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/csmrg8131/providers/Microsoft.Network/publicIPAddresses/csmipv4publicip538?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NzbXJnODEzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NtaXB2NHB1YmxpY2lwNTM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -934,7 +934,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operationResults/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -947,7 +947,7 @@ "a0b157e4-ac6d-46d0-9a73-dbc3fc69280c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -965,8 +965,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBiMTU3ZTQtYWM2ZC00NmQwLTlhNzMtZGJjM2ZjNjkyODBjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/eastus/operations/a0b157e4-ac6d-46d0-9a73-dbc3fc69280c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYTBiMTU3ZTQtYWM2ZC00NmQwLTlhNzMtZGJjM2ZjNjkyODBjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json index 0a8a05544ddc..aa335f46a5c0 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.PublicIpAddressTests/PublicIpAddressApiTestWithIdletTimeoutAndReverseFqdn.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2781\"\r\n },\r\n \"idleTimeoutInMinutes\": 16\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "3250be31-367d-4a1a-96ad-e25adb1815b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"etag\": \"W/\\\"ee1883f7-8770-41a4-a42a-514f7b1ee87d\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet2781\",\r\n \"fqdn\": \"azsmnet2781.australiasoutheast.cloudapp.azure.com\",\r\n \"reverseFqdn\": \"azsmnet2781.australiasoutheast.cloudapp.azure.com\"\r\n },\r\n \"idleTimeoutInMinutes\": 16,\r\n \"resourceGuid\": \"565a8af7-d851-4520-8442-5901971e7630\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "RequestHeaders": { @@ -223,7 +223,7 @@ "6b3e5417-f2af-47bb-a8b4-11ca41ec00f8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -251,7 +251,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/3250be31-367d-4a1a-96ad-e25adb1815b0?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -302,7 +302,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -356,7 +356,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -416,7 +416,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -470,7 +470,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -530,7 +530,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/6b3e5417-f2af-47bb-a8b4-11ca41ec00f8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/publicIPAddresses?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -759,7 +759,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg956/providers/Microsoft.Network/publicIPAddresses/azsmnet1717?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -791,7 +791,7 @@ "2ece8ab6-7318-4954-b1ce-93646466f555" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -800,7 +800,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operationResults/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operationResults/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -822,7 +822,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/australiasoutheast/operations/2ece8ab6-7318-4954-b1ce-93646466f555?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json index ffb17767f641..d9b8ac02be8d 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SecurityRuleTests/SecurityRuleWithRulesApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "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\": \"azsmnet8397\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "9300ca35-e10e-4803-9a19-ccbe70a88005" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwMGNhMzUtZTEwZS00ODAzLTlhMTktY2NiZTcwYTg4MDA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/9300ca35-e10e-4803-9a19-ccbe70a88005?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTMwMGNhMzUtZTEwZS00ODAzLTlhMTktY2NiZTcwYTg4MDA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,8 +426,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet8397?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgzOTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet8397?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgzOTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\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\": \"azsmnet816\"\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "b54f2a54-7610-4887-a5e4-3facc44b6e4e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjU0ZjJhNTQtNzYxMC00ODg3LWE1ZTQtM2ZhY2M0NGI2ZTRlP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b54f2a54-7610-4887-a5e4-3facc44b6e4e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjU0ZjJhNTQtNzYxMC00ODg3LWE1ZTQtM2ZhY2M0NGI2ZTRlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837/securityRules/azsmnet816?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3L3NlY3VyaXR5UnVsZXMvYXpzbW5ldDgxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -892,7 +892,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -905,7 +905,7 @@ "b6870c53-cd86-4331-93a0-7049be9a172d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -923,8 +923,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY4NzBjNTMtY2Q4Ni00MzMxLTkzYTAtNzA0OWJlOWExNzJkP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/b6870c53-cd86-4331-93a0-7049be9a172d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYjY4NzBjNTMtY2Q4Ni00MzMxLTkzYTAtNzA0OWJlOWExNzJkP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -978,8 +978,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups/azsmnet9837?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ5ODM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1011,7 +1011,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1024,7 +1024,7 @@ "8a91f8d2-0056-477a-9c1e-ebc67ec78aaa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1042,8 +1042,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGE5MWY4ZDItMDA1Ni00NzdhLTljMWUtZWJjNjdlYzc4YWFhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8a91f8d2-0056-477a-9c1e-ebc67ec78aaa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGE5MWY4ZDItMDA1Ni00NzdhLTljMWUtZWJjNjdlYzc4YWFhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1097,8 +1097,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6544/providers/Microsoft.Network/networkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNjU0NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json index bf091c25077e..dcb278467ec5 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetApiTest.json @@ -15,7 +15,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-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/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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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-03-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}", "ResponseHeaders": { "Content-Length": [ "5908" @@ -113,7 +113,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "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\": \"azsmnet8334\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -154,7 +154,7 @@ "2fcae6d6-c43b-4e96-b23c-61c0228b165a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +182,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/2fcae6d6-c43b-4e96-b23c-61c0228b165a?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -233,7 +233,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -287,7 +287,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -347,7 +347,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"azsmnet5369\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n}", "RequestHeaders": { @@ -388,7 +388,7 @@ "8b7446cd-d269-455b-a81c-29f8cd144774" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -416,7 +416,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/8b7446cd-d269-455b-a81c-29f8cd144774?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,7 +467,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -521,7 +521,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -638,7 +638,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -695,7 +695,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg6415/providers/Microsoft.Network/virtualNetworks/azsmnet3526/subnets/azsmnet5369?api-version=2017-03-01", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -727,7 +727,7 @@ "f78e960c-8975-4d9e-84fa-c28eea2d0bd2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -736,7 +736,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -758,7 +758,7 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2016-12-01", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/f78e960c-8975-4d9e-84fa-c28eea2d0bd2?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json index cce327763e55..81c9236fa178 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.SubnetTests/SubnetResourceNavigationLinksTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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/c1fd1678-d0fe-4253-a15f-a03eee323432/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet3524\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "ae5fd15b-d60b-4b34-9452-57746445103a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWU1ZmQxNWItZDYwYi00YjM0LTk0NTItNTc3NDY0NDUxMDNhP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/ae5fd15b-d60b-4b34-9452-57746445103a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWU1ZmQxNWItZDYwYi00YjM0LTk0NTItNTc3NDY0NDUxMDNhP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg9623/providers/Microsoft.Network/virtualNetworks/azsmnet8361/subnets/azsmnet3524?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnOTYyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ4MzYxL3N1Ym5ldHMvYXpzbW5ldDM1MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json index 5557a7e08d3a..2a677d5647cf 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.UsageTests/UsageTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"registrationState\": \"Registered\"\r\n}", + "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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "15044d4c-3df8-4152-a39c-c0255289b846" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTUwNDRkNGMtM2RmOC00MTUyLWEzOWMtYzAyNTUyODliODQ2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/operations/15044d4c-3df8-4152-a39c-c0255289b846?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMTUwNDRkNGMtM2RmOC00MTUyLWEzOWMtYzAyNTUyODliODQ2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/csmrg3174/providers/Microsoft.Network/networkSecurityGroups/azsmnet873?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NzbXJnMzE3NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2F6c21uZXQ4NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/usages?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/westus/usages?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL3VzYWdlcz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json index a94124495b22..59cbd63f4bae 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkPeeringTests/VirtualNetworkPeeringApiTest.json @@ -61,8 +61,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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.1.0/24\"\r\n },\r\n \"name\": \"azsmnet7919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet2000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -113,7 +113,7 @@ "bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -131,8 +131,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9iYzc3ZWI1Ny0wYjRjLTRmZTgtYWMwZS05OGJlYTJkNWYyYzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/bc77eb57-0b4c-4fe8-ac0e-98bea2d5f2c7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9iYzc3ZWI1Ny0wYjRjLTRmZTgtYWMwZS05OGJlYTJkNWYyYzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -186,8 +186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -244,8 +244,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -308,8 +308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -369,8 +369,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.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.1.1.0/24\"\r\n },\r\n \"name\": \"azsmnet7919\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.2.0/24\"\r\n },\r\n \"name\": \"azsmnet2000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { @@ -475,7 +475,7 @@ "6f1e3332-1c7e-49be-8de6-e0d05d150ff9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -493,8 +493,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82ZjFlMzMzMi0xYzdlLTQ5YmUtOGRlNi1lMGQwNWQxNTBmZjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6f1e3332-1c7e-49be-8de6-e0d05d150ff9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82ZjFlMzMzMi0xYzdlLTQ5YmUtOGRlNi1lMGQwNWQxNTBmZjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -548,8 +548,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -606,8 +606,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -667,8 +667,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,8 +728,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -789,8 +789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowVirtualNetworkAccess\": false,\r\n \"allowForwardedTraffic\": true,\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391\"\r\n }\r\n },\r\n \"name\": \"azsmnet3453\"\r\n}", "RequestHeaders": { @@ -841,7 +841,7 @@ "d5541592-049c-4c84-8b93-2f151349c8f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -859,8 +859,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kNTU0MTU5Mi0wNDljLTRjODQtOGI5My0yZjE1MTM0OWM4Zjc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/d5541592-049c-4c84-8b93-2f151349c8f7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9kNTU0MTU5Mi0wNDljLTRjODQtOGI5My0yZjE1MTM0OWM4Zjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -914,8 +914,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -972,8 +972,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,8 +1036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135/virtualNetworkPeerings/azsmnet3453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvYXpzbW5ldDM0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1069,7 +1069,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1082,7 +1082,7 @@ "6684a1f4-8428-45c0-bb6b-c25a44d4833c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1100,8 +1100,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82Njg0YTFmNC04NDI4LTQ1YzAtYmI2Yi1jMjVhNDRkNDgzM2M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/6684a1f4-8428-45c0-bb6b-c25a44d4833c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82Njg0YTFmNC04NDI4LTQ1YzAtYmI2Yi1jMjVhNDRkNDgzM2M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,8 +1155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet4135?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ0MTM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1188,7 +1188,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1201,7 +1201,7 @@ "c401ba88-eaec-4651-8550-e2b8795b28c4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1219,8 +1219,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jNDAxYmE4OC1lYWVjLTQ2NTEtODU1MC1lMmI4Nzk1YjI4YzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/c401ba88-eaec-4651-8550-e2b8795b28c4?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jNDAxYmE4OC1lYWVjLTQ2NTEtODU1MC1lMmI4Nzk1YjI4YzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1274,8 +1274,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/resourceGroups/csmrg2790/providers/Microsoft.Network/virtualNetworks/azsmnet6391?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Jlc291cmNlR3JvdXBzL2NzbXJnMjc5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ2MzkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1307,7 +1307,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operationResults/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1320,7 +1320,7 @@ "fbe9a49e-ee49-4cd2-9e6b-aec391eb8078" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,8 +1338,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mYmU5YTQ5ZS1lZTQ5LTRjZDItOWU2Yi1hZWMzOTFlYjgwNzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/7e6898e7-868d-490f-8f91-0cffa67c48a0/providers/Microsoft.Network/locations/westus.validation/operations/fbe9a49e-ee49-4cd2-9e6b-aec391eb8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U2ODk4ZTctODY4ZC00OTBmLThmOTEtMGNmZmE2N2M0OGEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mYmU5YTQ5ZS1lZTQ5LTRjZDItOWU2Yi1hZWMzOTFlYjgwNzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json index 5719245c7dc1..b77db5b654ff 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkApiTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-12-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 \"2016-12-01\",\r\n \"2016-12-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\": \"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 \"2016-12-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "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-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2017-03-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-03-01\",\r\n \"2017-03-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\": \"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-03-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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.1.0/24\"\r\n },\r\n \"name\": \"azsmnet1873\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet997\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "0d9b13a2-9865-4553-b38c-899a1b7f170f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ5YjEzYTItOTg2NS00NTUzLWIzOGMtODk5YTFiN2YxNzBmP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/0d9b13a2-9865-4553-b38c-899a1b7f170f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGQ5YjEzYTItOTg2NS00NTUzLWIzOGMtODk5YTFiN2YxNzBmP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -423,8 +423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -477,8 +477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/virtualNetworks?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -553,8 +553,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg8175/providers/Microsoft.Network/virtualNetworks/azsmnet114?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnODE3NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -586,7 +586,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -599,7 +599,7 @@ "da3c92e3-ca15-4330-9719-bd5536d2cda5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -617,8 +617,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEzYzkyZTMtY2ExNS00MzMwLTk3MTktYmQ1NTM2ZDJjZGE1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/da3c92e3-ca15-4330-9719-bd5536d2cda5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZGEzYzkyZTMtY2ExNS00MzMwLTk3MTktYmQ1NTM2ZDJjZGE1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json index 0513cf5598ba..58834bc64100 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkCheckIpAddressAvailabilityTest.json @@ -16,7 +16,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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 \"2016-07-01\",\r\n \"2016-12-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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2016-12-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/c1fd1678-d0fe-4253-a15f-a03eee323432/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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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\": \"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 \"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 Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-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 \"2016-07-01\",\r\n \"2017-03-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 \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\",\r\n \"2017-03-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -115,8 +115,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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.1.0/24\"\r\n },\r\n \"name\": \"azsmnet3416\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { @@ -167,7 +167,7 @@ "3995e6e8-2a31-4716-9e9d-e974fdc5cee9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +185,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzk5NWU2ZTgtMmEzMS00NzE2LTllOWQtZTk3NGZkYzVjZWU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/3995e6e8-2a31-4716-9e9d-e974fdc5cee9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzk5NWU2ZTgtMmEzMS00NzE2LTllOWQtZTk3NGZkYzVjZWU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -240,8 +240,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -298,8 +298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL3N1Ym5ldHMvYXpzbW5ldDM0MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL3N1Ym5ldHMvYXpzbW5ldDM0MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -362,8 +362,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAddress\": \"10.0.1.9\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/subnets/azsmnet3416\"\r\n }\r\n },\r\n \"name\": \"azsmnet4903\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -411,7 +411,7 @@ "bcea5bd3-3988-4c94-8988-ce1128de88bc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/bcea5bd3-3988-4c94-8988-ce1128de88bc?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/bcea5bd3-3988-4c94-8988-ce1128de88bc?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -429,8 +429,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -487,8 +487,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.10&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuMTAmYXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.10&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuMTAmYXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -548,8 +548,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.9&api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuOSZhcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390/CheckIPAddressAvailability?ipAddress=10.0.1.9&api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwL0NoZWNrSVBBZGRyZXNzQXZhaWxhYmlsaXR5P2lwQWRkcmVzcz0xMC4wLjEuOSZhcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -609,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/networkInterfaces/azsmnet6929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -642,7 +642,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -655,7 +655,7 @@ "d894dfdd-726f-461c-95b3-564fba881898" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -673,8 +673,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg5NGRmZGQtNzI2Zi00NjFjLTk1YjMtNTY0ZmJhODgxODk4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/d894dfdd-726f-461c-95b3-564fba881898?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZDg5NGRmZGQtNzI2Zi00NjFjLTk1YjMtNTY0ZmJhODgxODk4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -728,8 +728,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/resourceGroups/csmrg3365/providers/Microsoft.Network/virtualNetworks/azsmnet1390?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Jlc291cmNlR3JvdXBzL2NzbXJnMzM2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxMzkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -761,7 +761,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operationResults/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -774,7 +774,7 @@ "de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -792,8 +792,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGUwNWJiY2EtYzNiYi00N2M5LThlZWUtYTNiZmM2YjQyYmIwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/c1fd1678-d0fe-4253-a15f-a03eee323432/providers/Microsoft.Network/locations/eastus/operations/de05bbca-c3bb-47c9-8eee-a3bfc6b42bb0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzFmZDE2NzgtZDBmZS00MjUzLWExNWYtYTAzZWVlMzIzNDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZGUwNWJiY2EtYzNiYi00N2M5LThlZWUtYTNiZmM2YjQyYmIwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json index 632369a5eeb3..93160a190fb7 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.VirtualNetworkTests/VirtualNetworkPeeringTest.json @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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 \"2016-12-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 \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"2016-12-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\": \"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 \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-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 \"registrationState\": \"Registered\"\r\n}", + "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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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-03-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-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"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 \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-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\": \"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 Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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-03-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\": \"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 \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +117,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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.1.0/24\"\r\n },\r\n \"name\": \"azsmnet6700\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"azsmnet7820\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -170,7 +170,7 @@ "e9c55f19-519e-4c28-a7c2-38d4c48caf56" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -188,8 +188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTljNTVmMTktNTE5ZS00YzI4LWE3YzItMzhkNGM0OGNhZjU2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/e9c55f19-519e-4c28-a7c2-38d4c48caf56?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZTljNTVmMTktNTE5ZS00YzI4LWE3YzItMzhkNGM0OGNhZjU2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -244,8 +244,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -303,8 +303,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -368,8 +368,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -433,8 +433,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -498,8 +498,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.1.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.1.1.0/24\"\r\n },\r\n \"name\": \"azsmnet6700\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -551,7 +551,7 @@ "53c9e2d1-865d-4bc5-9cab-925bf0afb411" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,8 +569,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNjOWUyZDEtODY1ZC00YmM1LTljYWItOTI1YmYwYWZiNDExP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/53c9e2d1-865d-4bc5-9cab-925bf0afb411?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNTNjOWUyZDEtODY1ZC00YmM1LTljYWItOTI1YmYwYWZiNDExP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -625,8 +625,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -684,8 +684,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowForwardedTraffic\": true,\r\n \"remoteVirtualNetwork\": {\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -737,7 +737,7 @@ "abbc845f-7549-4105-9ab5-ed3270f676c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -755,8 +755,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWJiYzg0NWYtNzU0OS00MTA1LTlhYjUtZWQzMjcwZjY3NmM1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/abbc845f-7549-4105-9ab5-ed3270f676c5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWJiYzg0NWYtNzU0OS00MTA1LTlhYjUtZWQzMjcwZjY3NmM1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -811,8 +811,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,8 +870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -935,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -997,8 +997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3M/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1059,8 +1059,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619/virtualNetworkPeerings/peer1?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5L3ZpcnR1YWxOZXR3b3JrUGVlcmluZ3MvcGVlcjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1093,7 +1093,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1106,7 +1106,7 @@ "72f70e8c-36a1-4482-87ea-8576fcf7f823" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1124,8 +1124,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzJmNzBlOGMtMzZhMS00NDgyLTg3ZWEtODU3NmZjZjdmODIzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/72f70e8c-36a1-4482-87ea-8576fcf7f823?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzJmNzBlOGMtMzZhMS00NDgyLTg3ZWEtODU3NmZjZjdmODIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1180,8 +1180,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet5619?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NjE5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1214,7 +1214,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1227,7 +1227,7 @@ "bf6e70fe-9654-4caa-ab74-9a2a50cf683c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,8 +1245,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY2ZTcwZmUtOTY1NC00Y2FhLWFiNzQtOWEyYTUwY2Y2ODNjP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/bf6e70fe-9654-4caa-ab74-9a2a50cf683c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYmY2ZTcwZmUtOTY1NC00Y2FhLWFiNzQtOWEyYTUwY2Y2ODNjP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1301,8 +1301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/csmrg4533/providers/Microsoft.Network/virtualNetworks/azsmnet1476?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NzbXJnNDUzMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQxNDc2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { @@ -1335,7 +1335,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operationResults/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1348,7 +1348,7 @@ "1e1eff12-10ca-460f-9ff5-098c619eae9b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1366,8 +1366,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWUxZWZmMTItMTBjYS00NjBmLTlmZjUtMDk4YzYxOWVhZTliP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/westus/operations/1e1eff12-10ca-460f-9ff5-098c619eae9b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMWUxZWZmMTItMTBjYS00NjBmLTlmZjUtMDk4YzYxOWVhZTliP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { From d6151b3d3646cc7c75668d891f6819ca93470b69 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Tue, 21 Mar 2017 18:24:55 -0700 Subject: [PATCH 37/56] #INIT Changed version number to 2017-03-01 in Compute/SessionRecordings. --- .../TestOperations.json | 2 +- .../TestDCOSOperations.json | 2 +- .../TestSwarmOperations.json | 2 +- .../TestContainerServiceUpdateOperations.json | 2 +- .../TestExtImgGet.json | 2 +- .../TestExtImgListTypes.json | 2 +- .../TestExtImgListVersionsFilters.json | 2 +- .../TestExtImgListVersionsNoFilter.json | 2 +- .../TestVMExtensionOperations.json | 50 ++--- .../TestImageOperations.json | 50 ++--- .../TestListVMInSubscription.json | 100 +++++----- .../TestVMWithLinuxOSProfile.json | 50 ++--- .../TestVMWithWindowsOSProfile.json | 104 +++++----- .../TestListUsages.json | 50 ++--- .../TestVMCertificatesOperations.json | 30 +-- .../TestVMDataDiskScenario.json | 50 ++--- .../TestVMBootDiagnostics.json | 50 ++--- .../TestVMDiskEncryption.json | 26 +-- .../TestVMDiskSizeScenario.json | 50 ++--- .../TestVMBYOL.json | 50 ++--- .../TestVMMarketplace.json | 50 ++--- .../TestEffectiveRouteAndAcls.json | 78 ++++---- .../TestMultiIpConfigForMultiNICVM.json | 54 ++--- .../TestMultiNicVirtualMachineReference.json | 54 ++--- .../TestNicVirtualMachineReference.json | 36 ++-- .../TestVMOperations.json | 100 +++++----- .../TestVMOperations_Redeploy.json | 50 ++--- .../TestVMScaleSetMarketplace.json | 46 ++--- .../TestVMScaleSetWithApplciationGateway.json | 184 +++++++++--------- .../TestVMScaleSetBatchOperations.json | 50 ++--- .../TestVMScaleSetOperations.json | 50 ++--- ...TestVMScaleSetOperations_ManagedDisks.json | 50 ++--- .../TestVMScaleSetScenarioOperations.json | 50 ++--- ...narioOperations_ManagedDisks_PirImage.json | 50 ++--- .../TestVMScaleSetScalingOperations.json | 50 ++--- .../TestVMScaleSetUpdateOperations.json | 50 ++--- .../TestVMScaleSetVMOperations.json | 50 ++--- ...stVMScaleSetVMOperations_ManagedDisks.json | 50 ++--- .../TestVMScenarioOperations.json | 50 ++--- ...TestVMScenarioOperations_ManagedDisks.json | 50 ++--- 40 files changed, 939 insertions(+), 939 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index 41d56c39d77b..c90d66618049 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1092,4 +1092,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json index 9f1f1e8233ad..0d03fdb6250b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json @@ -2175,4 +2175,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json index e8045406bdd2..bd443a53e6ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json @@ -2123,4 +2123,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json index fc3756c3a85c..2c1a98ed6570 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json @@ -2618,4 +2618,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index abc449435cb7..2343de8f650a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index d76a89158bb8..bfb318f6ef31 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index a164c1a3195c..bc9057da8c35 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -315,4 +315,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index e90bf7aad7ff..7bc95fedbe54 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} \ No newline at end of file +} diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json index 7b51902196c4..0a2e78ddd7e3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtensionTests/TestVMExtensionOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9607\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "6636e9ed-13b1-43c5-a732-2887eca688b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2MzZlOWVkLTEzYjEtNDNjNS1hNzMyLTI4ODdlY2E2ODhiMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/6636e9ed-13b1-43c5-a732-2887eca688b0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzY2MzZlOWVkLTEzYjEtNDNjNS1hNzMyLTI4ODdlY2E2ODhiMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/publicIPAddresses/pip9985?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwOTk4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn2885\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "7e286ad3-e71a-4d8b-806f-ca8598fdd719" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlMjg2YWQzLWU3MWEtNGQ4Yi04MDZmLWNhODU5OGZkZDcxOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e286ad3-e71a-4d8b-806f-ca8598fdd719?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlMjg2YWQzLWU3MWEtNGQ4Yi04MDZmLWNhODU5OGZkZDcxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Ni9zdWJuZXRzL3NuMjg4NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuMzI2Ni9zdWJuZXRzL3NuMjg4NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip219\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2885\",\r\n \"etag\": \"W/\\\"216e9617-87f7-4b32-b6fa-5142ab44799b\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/virtualNetworks/vn3266/subnets/sn2885\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "e80bc784-fc35-4952-b020-e1621d0bf8a7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e80bc784-fc35-4952-b020-e1621d0bf8a7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e80bc784-fc35-4952-b020-e1621d0bf8a7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar957/providers/Microsoft.Network/networkInterfaces/nic1396?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljMTM5Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json index a69ada7e46b9..1992ecada87d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ImageTests/TestImageOperations.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn95\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "39693354-72da-4b98-912c-0543840dabb6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5NjkzMzU0LTcyZGEtNGI5OC05MTJjLTA1NDM4NDBkYWJiNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/39693354-72da-4b98-912c-0543840dabb6?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5NjkzMzU0LTcyZGEtNGI5OC05MTJjLTA1NDM4NDBkYWJiNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/publicIPAddresses/pip7433?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDc0MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn3745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "74ff459b-e193-46be-957b-5dc4b1502e9c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc0ZmY0NTliLWUxOTMtNDZiZS05NTdiLTVkYzRiMTUwMmU5Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/74ff459b-e193-46be-957b-5dc4b1502e9c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc0ZmY0NTliLWUxOTMtNDZiZS05NTdiLTVkYzRiMTUwMmU5Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTYvc3VibmV0cy9zbjM3NDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5MTYvc3VibmV0cy9zbjM3NDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2603\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3745\",\r\n \"etag\": \"W/\\\"e31795eb-9431-42b9-96d8-fc44fbb6b67a\\\"\",\r\n \"id\": \"/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/virtualNetworks/vn3916/subnets/sn3745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -929,7 +929,7 @@ "8b8876a7-f4cb-4d78-811c-e45cd8fe3c30" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/8b8876a7-f4cb-4d78-811c-e45cd8fe3c30?api-version=2016-12-01" + "https://management.azure.com/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/providers/Microsoft.Network/locations/southeastasia/operations/8b8876a7-f4cb-4d78-811c-e45cd8fe3c30?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1012,8 +1012,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/21466899-20b2-463c-8c30-b8fb28a43248/resourceGroups/crptestar6008/providers/Microsoft.Network/networkInterfaces/nic1514?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjE0NjY4OTktMjBiMi00NjNjLThjMzAtYjhmYjI4YTQzMjQ4L3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwMDgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzE1MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json index 9f3d7f1636b1..8ab6f8f85bb7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListVMTests/TestListVMInSubscription.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5539\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "4c4ef2f1-1edb-4cc5-ba59-8747661ac781" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjNGVmMmYxLTFlZGItNGNjNS1iYTU5LTg3NDc2NjFhYzc4MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4c4ef2f1-1edb-4cc5-ba59-8747661ac781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRjNGVmMmYxLTFlZGItNGNjNS1iYTU5LTg3NDc2NjFhYzc4MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/publicIPAddresses/pip650?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2NTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn2379\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "81c704c5-1a6c-4dc9-bf88-74afe2a418c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxYzcwNGM1LTFhNmMtNGRjOS1iZjg4LTc0YWZlMmE0MThjNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/81c704c5-1a6c-4dc9-bf88-74afe2a418c5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxYzcwNGM1LTFhNmMtNGRjOS1iZjg4LTc0YWZlMmE0MThjNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4L3N1Ym5ldHMvc24yMzc5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NDU4L3N1Ym5ldHMvc24yMzc5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6468\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2379\",\r\n \"etag\": \"W/\\\"09124712-1dc7-43e1-a2e6-3126e9a76e54\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/virtualNetworks/vn5458/subnets/sn2379\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/bd4be3aa-59f3-42a3-b8b3-64fe0c60ad0c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785a/providers/Microsoft.Network/networkInterfaces/nic9929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODVhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5OTI5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2188,8 +2188,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2924\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -2240,7 +2240,7 @@ "8efdc1fe-e795-43dd-9479-ded9e5a47ad9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2258,8 +2258,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZmRjMWZlLWU3OTUtNDNkZC05NDc5LWRlZDllNWE0N2FkOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8efdc1fe-e795-43dd-9479-ded9e5a47ad9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzhlZmRjMWZlLWU3OTUtNDNkZC05NDc5LWRlZDllNWE0N2FkOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2313,8 +2313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2371,8 +2371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/publicIPAddresses/pip4291?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MjkxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2435,8 +2435,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn4669\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2487,7 +2487,7 @@ "ac9b713b-6eff-4e4c-ba24-0d82224e4a79" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2505,8 +2505,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjOWI3MTNiLTZlZmYtNGU0Yy1iYTI0LTBkODIyMjRlNGE3OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ac9b713b-6eff-4e4c-ba24-0d82224e4a79?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjOWI3MTNiLTZlZmYtNGU0Yy1iYTI0LTBkODIyMjRlNGE3OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2560,8 +2560,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2618,8 +2618,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzL3N1Ym5ldHMvc240NjY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40NzYzL3N1Ym5ldHMvc240NjY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2682,8 +2682,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7345\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn4669\",\r\n \"etag\": \"W/\\\"f16b3546-733c-405b-9c3e-542b5dacf471\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/virtualNetworks/vn4763/subnets/sn4669\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2731,7 +2731,7 @@ "d9756ef5-b2b2-4814-9c1c-e70e981d4e9e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d9756ef5-b2b2-4814-9c1c-e70e981d4e9e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d9756ef5-b2b2-4814-9c1c-e70e981d4e9e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2749,8 +2749,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2807,8 +2807,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar8785b/providers/Microsoft.Network/networkInterfaces/nic2501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjg3ODViL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWMyNTAxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json index 5a9a58b22790..bf4dec1f61d3 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithLinuxOSProfile.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8223\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d51a812f-0f0f-43b5-a4c8-0c8be66ddd86" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1MWE4MTJmLTBmMGYtNDNiNS1hNGM4LTBjOGJlNjZkZGQ4Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d51a812f-0f0f-43b5-a4c8-0c8be66ddd86?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1MWE4MTJmLTBmMGYtNDNiNS1hNGM4LTBjOGJlNjZkZGQ4Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/publicIPAddresses/pip4402?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ0MDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn637\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzllZjJjY2NhLWMwYWYtNGEwZi05ZGE0LWZjYzhlYWIyYzkxNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9ef2ccca-c0af-4a0f-9da4-fcc8eab2c916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzllZjJjY2NhLWMwYWYtNGEwZi05ZGE0LWZjYzhlYWIyYzkxNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDkvc3VibmV0cy9zbjYzNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2MDkvc3VibmV0cy9zbjYzNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3362\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn637\",\r\n \"etag\": \"W/\\\"b12f0d00-284c-4afc-84d5-bfa2ac1437de\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/virtualNetworks/vn5609/subnets/sn637\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "882e78bc-fa42-4b1b-85de-954de4f8fbd1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/882e78bc-fa42-4b1b-85de-954de4f8fbd1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/882e78bc-fa42-4b1b-85de-954de4f8fbd1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3281/providers/Microsoft.Network/networkInterfaces/nic7225?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMyODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcyMjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json index d18ba0cde08c..8d0a6f72550e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.OSProfileTests/TestVMWithWindowsOSProfile.json @@ -1637,7 +1637,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1678,7 +1678,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1706,7 +1706,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1747,7 +1747,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1775,7 +1775,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1816,7 +1816,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1844,7 +1844,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet5825\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -1885,7 +1885,7 @@ "bb4fb1af-577e-4bdf-b53a-c34a39d38a14" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1913,7 +1913,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1964,7 +1964,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2015,7 +2015,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2066,7 +2066,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/bb4fb1af-577e-4bdf-b53a-c34a39d38a14?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2117,7 +2117,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2171,7 +2171,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2225,7 +2225,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2279,7 +2279,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2333,7 +2333,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2393,7 +2393,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2453,7 +2453,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2513,7 +2513,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/publicIPAddresses/azsmnet3680/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2573,7 +2573,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2614,7 +2614,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2642,7 +2642,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2683,7 +2683,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2711,7 +2711,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2752,7 +2752,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2780,7 +2780,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -2821,7 +2821,7 @@ "ac1822eb-baf6-4009-b26d-39f018f883a3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2849,7 +2849,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,7 +2900,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2951,7 +2951,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3002,7 +3002,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/ac1822eb-baf6-4009-b26d-39f018f883a3?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3053,7 +3053,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3107,7 +3107,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3161,7 +3161,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3215,7 +3215,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3269,7 +3269,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3329,7 +3329,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3389,7 +3389,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3449,7 +3449,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3509,7 +3509,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3547,7 +3547,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3575,7 +3575,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3613,7 +3613,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3641,7 +3641,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3679,7 +3679,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3707,7 +3707,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"azsmnet440\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"azsmnet5818\",\r\n \"etag\": \"W/\\\"164192ed-1986-4172-bc93-195916b98b1a\\\"\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/virtualNetworks/azsmnet8826/subnets/azsmnet5818\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3745,7 +3745,7 @@ "471621d4-d09c-4925-86a9-0717473b01b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/southeastasia/operations/471621d4-d09c-4925-86a9-0717473b01b9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3773,7 +3773,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3833,7 +3833,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3893,7 +3893,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3953,7 +3953,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2016-12-01", + "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pslibtest9279/providers/Microsoft.Network/networkInterfaces/azsmnet504?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json index e31e6dd1e481..c0516ccd4ff6 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.UsageTests/TestListUsages.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8029\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "994ef8d3-0ac7-4a32-90bd-0df1f017983f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NGVmOGQzLTBhYzctNGEzMi05MGJkLTBkZjFmMDE3OTgzZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/994ef8d3-0ac7-4a32-90bd-0df1f017983f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5NGVmOGQzLTBhYzctNGEzMi05MGJkLTBkZjFmMDE3OTgzZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/publicIPAddresses/pip5831?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU4MzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn5051\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "28ad7faf-ccb1-45c9-b3a5-bee442bb02ca" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI4YWQ3ZmFmLWNjYjEtNDVjOS1iM2E1LWJlZTQ0MmJiMDJjYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/28ad7faf-ccb1-45c9-b3a5-bee442bb02ca?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI4YWQ3ZmFmLWNjYjEtNDVjOS1iM2E1LWJlZTQ0MmJiMDJjYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODgvc3VibmV0cy9zbjUwNTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg2ODgvc3VibmV0cy9zbjUwNTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9892\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5051\",\r\n \"etag\": \"W/\\\"e390030a-9b9c-4215-9f89-6e13f66b5e5f\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/virtualNetworks/vn8688/subnets/sn5051\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "9cdb43a7-671b-4bfa-a7ff-4debe63a5560" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cdb43a7-671b-4bfa-a7ff-4debe63a5560?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cdb43a7-671b-4bfa-a7ff-4debe63a5560?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar6792/providers/Microsoft.Network/networkInterfaces/nic4752?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ3NTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json index 943c588a56a7..d2e6d376615f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMCertificateTests/TestVMCertificatesOperations.json @@ -341,7 +341,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"azsmnet3075\"\r\n }\r\n },\r\n \"location\": \"EastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -376,7 +376,7 @@ "80c4066a-ebd2-4caa-aaad-68871f8585ea" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -404,12 +404,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/80c4066a-ebd2-4caa-aaad-68871f8585ea?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -458,7 +458,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062/?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -512,7 +512,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824?api-version=2017-03-01", "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\": \"azsmnet5000\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastAsia\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { @@ -547,7 +547,7 @@ "e2d620bb-8279-45da-b8de-5a21a32126b8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -575,12 +575,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/e2d620bb-8279-45da-b8de-5a21a32126b8?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -629,7 +629,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824/subnets/azsmnet5000?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualnetworks/azsmnet7824/subnets/azsmnet5000?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -683,7 +683,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2017-03-01", "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/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/virtualNetworks/azsmnet7824/subnets/azsmnet5000\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/publicIPAddresses/azsmnet3062\"\r\n }\r\n },\r\n \"name\": \"azsmnet7651\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet6511\",\r\n \"location\": \"EastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -718,7 +718,7 @@ "bfdd585b-89c3-4940-9896-4253781658b6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,12 +746,12 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/providers/Microsoft.Network/locations/eastasia/operations/bfdd585b-89c3-4940-9896-4253781658b6?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-version": [ - "2016-12-01" + "2017-03-01" ], "User-Agent": [ "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/1.0.0.0" @@ -800,7 +800,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2016-12-01", + "RequestUri": "/subscriptions/015b5c33-7725-4fc2-9c81-c9b07de44668/resourceGroups/pslibtest5799/providers/Microsoft.Network/networkInterfaces/azsmnet6511?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json index cc669591681f..65eb1d7665b2 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDataDiskTests/TestVMDataDiskScenario.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8464\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d56c878a-38f1-4da1-ae6e-ddf675e0fb70" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1NmM4NzhhLTM4ZjEtNGRhMS1hZTZlLWRkZjY3NWUwZmI3MD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d56c878a-38f1-4da1-ae6e-ddf675e0fb70?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q1NmM4NzhhLTM4ZjEtNGRhMS1hZTZlLWRkZjY3NWUwZmI3MD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/publicIPAddresses/pip4058?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQwNTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn7187\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9da20380-b57e-47ac-9bc1-443d5399f32a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkYTIwMzgwLWI1N2UtNDdhYy05YmMxLTQ0M2Q1Mzk5ZjMyYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9da20380-b57e-47ac-9bc1-443d5399f32a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlkYTIwMzgwLWI1N2UtNDdhYy05YmMxLTQ0M2Q1Mzk5ZjMyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjIvc3VibmV0cy9zbjcxODc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ5MjIvc3VibmV0cy9zbjcxODc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9679\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7187\",\r\n \"etag\": \"W/\\\"da8250cc-8608-4a5f-be2a-6da45670caf0\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/virtualNetworks/vn4922/subnets/sn7187\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "de247dca-53d2-4573-94cc-01e65fd1fc7f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/de247dca-53d2-4573-94cc-01e65fd1fc7f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/de247dca-53d2-4573-94cc-01e65fd1fc7f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3374/providers/Microsoft.Network/networkInterfaces/nic6868?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMzNzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY4Njg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json index f9ec7b96f0e7..f12a62aa579f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiagnosticsTests/TestVMBootDiagnostics.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn1593\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "d7c2562b-e785-415a-9688-fef7ccbaa06d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q3YzI1NjJiLWU3ODUtNDE1YS05Njg4LWZlZjdjY2JhYTA2ZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d7c2562b-e785-415a-9688-fef7ccbaa06d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q3YzI1NjJiLWU3ODUtNDE1YS05Njg4LWZlZjdjY2JhYTA2ZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/publicIPAddresses/pip4651?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ2NTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn7677\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "9cbff61d-7049-4ed5-8f85-7ee3c41f919f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljYmZmNjFkLTcwNDktNGVkNS04Zjg1LTdlZTNjNDFmOTE5Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9cbff61d-7049-4ed5-8f85-7ee3c41f919f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljYmZmNjFkLTcwNDktNGVkNS04Zjg1LTdlZTNjNDFmOTE5Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzUvc3VibmV0cy9zbjc2Nzc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3NzUvc3VibmV0cy9zbjc2Nzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5437\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7677\",\r\n \"etag\": \"W/\\\"7d8534a4-69a9-4cee-b681-077fca187496\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/virtualNetworks/vn4775/subnets/sn7677\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "3a9d081b-8a92-401d-a802-6e73054d3a41" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/3a9d081b-8a92-401d-a802-6e73054d3a41?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/3a9d081b-8a92-401d-a802-6e73054d3a41?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar1617/providers/Microsoft.Network/networkInterfaces/nic8250?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2MTcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgyNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json index c51908d49888..5578452f9551 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskEncryptionTests/TestVMDiskEncryption.json @@ -407,7 +407,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9021\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -448,7 +448,7 @@ "c3ff3024-263e-4233-bb1e-5f70638c0791" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -476,7 +476,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/c3ff3024-263e-4233-bb1e-5f70638c0791?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -527,7 +527,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -581,7 +581,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/publicIPAddresses/pip1161?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -641,7 +641,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn936\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -682,7 +682,7 @@ "e237b881-ddbc-4325-aa80-228a59600b22" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -710,7 +710,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/e237b881-ddbc-4325-aa80-228a59600b22?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -761,7 +761,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -815,7 +815,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782/subnets/sn936?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualnetworks/vn3782/subnets/sn936?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -875,7 +875,7 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2017-03-01", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3879\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn936\",\r\n \"etag\": \"W/\\\"15a0ea2d-97d4-4630-a984-5254777a1a75\\\"\",\r\n \"id\": \"/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/virtualNetworks/vn3782/subnets/sn936\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -913,7 +913,7 @@ "4e22ec02-1666-463b-bb77-96399ed3431b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/4e22ec02-1666-463b-bb77-96399ed3431b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/providers/Microsoft.Network/locations/southeastasia/operations/4e22ec02-1666-463b-bb77-96399ed3431b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -941,7 +941,7 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2016-12-01", + "RequestUri": "/subscriptions/e33f361b-53c2-4cc7-b829-78906708387b/resourceGroups/crptestar5657/providers/Microsoft.Network/networkInterfaces/nic526?api-version=2017-03-01", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json index 7eb4047d430c..0b79ff8a3a58 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMDiskSizeTests/TestVMDiskSizeScenario.json @@ -490,8 +490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9166\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -542,7 +542,7 @@ "ea8294d9-40db-47e5-b805-ef87b4a12e2b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +560,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VhODI5NGQ5LTQwZGItNDdlNS1iODA1LWVmODdiNGExMmUyYj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ea8294d9-40db-47e5-b805-ef87b4a12e2b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2VhODI5NGQ5LTQwZGItNDdlNS1iODA1LWVmODdiNGExMmUyYj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -673,8 +673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/publicIPAddresses/pip3374?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDMzNzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -737,8 +737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn8501\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "9a33cc62-b116-4432-b93f-81126bd08197" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzNjYzYyLWIxMTYtNDQzMi1iOTNmLTgxMTI2YmQwODE5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9a33cc62-b116-4432-b93f-81126bd08197?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzlhMzNjYzYyLWIxMTYtNDQzMi1iOTNmLTgxMTI2YmQwODE5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -920,8 +920,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzUvc3VibmV0cy9zbjg1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ3MzUvc3VibmV0cy9zbjg1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -984,8 +984,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3443\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn8501\",\r\n \"etag\": \"W/\\\"10a352e0-7b29-4928-a52a-679aedb25eb6\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/virtualNetworks/vn4735/subnets/sn8501\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1033,7 +1033,7 @@ "18f5cc6d-346e-4f66-b765-573eb950e1a4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/18f5cc6d-346e-4f66-b765-573eb950e1a4?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/18f5cc6d-346e-4f66-b765-573eb950e1a4?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1051,8 +1051,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1109,8 +1109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3730/providers/Microsoft.Network/networkInterfaces/nic6213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzYyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json index 7a928f3972ab..a8b217a38c22 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMBYOL.json @@ -368,8 +368,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3046\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -420,7 +420,7 @@ "a80a4050-fd45-499d-9ed3-fd2e55db1d66" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -438,8 +438,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E4MGE0MDUwLWZkNDUtNDk5ZC05ZWQzLWZkMmU1NWRiMWQ2Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a80a4050-fd45-499d-9ed3-fd2e55db1d66?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2E4MGE0MDUwLWZkNDUtNDk5ZC05ZWQzLWZkMmU1NWRiMWQ2Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -493,8 +493,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/publicIPAddresses/pip4798?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3OTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -615,8 +615,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn3834\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -667,7 +667,7 @@ "403bb37b-9d4f-4711-a2af-20e373c1d7dd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -685,8 +685,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwM2JiMzdiLTlkNGYtNDcxMS1hMmFmLTIwZTM3M2MxZDdkZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/403bb37b-9d4f-4711-a2af-20e373c1d7dd?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwM2JiMzdiLTlkNGYtNDcxMS1hMmFmLTIwZTM3M2MxZDdkZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -740,8 +740,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzMvc3VibmV0cy9zbjM4MzQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ0NzMvc3VibmV0cy9zbjM4MzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -862,8 +862,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9059\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3834\",\r\n \"etag\": \"W/\\\"f18e1229-16c3-4246-9af5-d2dfe51925f0\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/virtualNetworks/vn4473/subnets/sn3834\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -911,7 +911,7 @@ "7e328178-6311-4522-8e21-9413a3451485" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e328178-6311-4522-8e21-9413a3451485?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/7e328178-6311-4522-8e21-9413a3451485?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -929,8 +929,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar9715/providers/Microsoft.Network/networkInterfaces/nic6432?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY0MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json index 69a4cc544414..123ecc068932 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMMarketplaceTest/TestVMMarketplace.json @@ -551,8 +551,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6298\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -603,7 +603,7 @@ "84da3aac-dd98-400f-b27d-da784d0989da" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -621,8 +621,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0ZGEzYWFjLWRkOTgtNDAwZi1iMjdkLWRhNzg0ZDA5ODlkYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/84da3aac-dd98-400f-b27d-da784d0989da?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0ZGEzYWFjLWRkOTgtNDAwZi1iMjdkLWRhNzg0ZDA5ODlkYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -734,8 +734,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/publicIPAddresses/pip5921?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5MjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -798,8 +798,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn6013\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -850,7 +850,7 @@ "73697911-5120-4e19-b0e5-7f182991944f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -868,8 +868,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzczNjk3OTExLTUxMjAtNGUxOS1iMGU1LTdmMTgyOTkxOTQ0Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/73697911-5120-4e19-b0e5-7f182991944f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzczNjk3OTExLTUxMjAtNGUxOS1iMGU1LTdmMTgyOTkxOTQ0Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -981,8 +981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTMvc3VibmV0cy9zbjYwMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU1NTMvc3VibmV0cy9zbjYwMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1045,8 +1045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6577\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn6013\",\r\n \"etag\": \"W/\\\"cfe5e54a-75df-4ad2-a5a2-8fe583ed14be\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/virtualNetworks/vn5553/subnets/sn6013\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1094,7 +1094,7 @@ "4347fe14-c13e-4892-9de8-1c974820ecde" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4347fe14-c13e-4892-9de8-1c974820ecde?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/4347fe14-c13e-4892-9de8-1c974820ecde?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1112,8 +1112,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1170,8 +1170,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4034/providers/Microsoft.Network/networkInterfaces/nic4911?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ5MTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json index 4faa0edcb4c3..dcea29f91250 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestEffectiveRouteAndAcls.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"sn3213\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "8654168d-aa01-415e-b701-740a896b258e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg2NTQxNjhkLWFhMDEtNDE1ZS1iNzAxLTc0MGE4OTZiMjU4ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/8654168d-aa01-415e-b701-740a896b258e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg2NTQxNjhkLWFhMDEtNDE1ZS1iNzAxLTc0MGE4OTZiMjU4ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTMvc3VibmV0cy9zbjMyMTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI0NTMvc3VibmV0cy9zbjMyMTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "4a5504d2-1005-4476-9b4b-17b4fe52d078" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhNTUwNGQyLTEwMDUtNDQ3Ni05YjRiLTE3YjRmZTUyZDA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/4a5504d2-1005-4476-9b4b-17b4fe52d078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhNTUwNGQyLTEwMDUtNDQ3Ni05YjRiLTE3YjRmZTUyZDA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtTZWN1cml0eUdyb3Vwcy9uc2c5ODc4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"properties\": {\r\n \"securityRules\": [],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowVnetInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowAzureLoadBalancerInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllInBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/DenyAllInBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowVnetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/AllowInternetOutBound\"\r\n },\r\n {\r\n \"properties\": {\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 \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"DenyAllOutBound\",\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878/defaultSecurityRules/DenyAllOutBound\"\r\n }\r\n ],\r\n \"resourceGuid\": \"875dc796-a63c-40a7-adcd-61639d94c346\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"bec2fc39-c9f9-4154-ad0e-66d5a2997fbe\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkSecurityGroups/nsg9878\",\r\n \"location\": \"southeastasia\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn3213\",\r\n \"etag\": \"W/\\\"1fa85aa4-d945-4932-8271-c9b2ccda90e7\\\"\",\r\n \"id\": \"/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/virtualNetworks/vn2453/subnets/sn3213\"\r\n }\r\n },\r\n \"name\": \"ip2684\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "303a1a67-97e6-4deb-a885-e58f8a9fc538" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/303a1a67-97e6-4deb-a885-e58f8a9fc538?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operations/303a1a67-97e6-4deb-a885-e58f8a9fc538?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1112,8 +1112,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2308,8 +2308,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveRouteTable?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveRouteTable?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2344,7 +2344,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/f8724991-1a19-44ac-ba19-9df36c1966e7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/f8724991-1a19-44ac-ba19-9df36c1966e7?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2372,8 +2372,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveNetworkSecurityGroups?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/resourceGroups/crptestar9963/providers/Microsoft.Network/networkInterfaces/nic9595/effectiveNetworkSecurityGroups?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5NjMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk1OTUvZWZmZWN0aXZlTmV0d29ya1NlY3VyaXR5R3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -2408,7 +2408,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2436,8 +2436,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2466,7 +2466,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -2494,8 +2494,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTUzMmE2M2UtZjJlYi00NjQ5LWJiMjMtNWVkMDEwNzdjZTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25SZXN1bHRzLzk1MGYyNDkxLWI1MDItNDZjMi04NmE3LTEyM2FiM2Y3NDE0ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2524,7 +2524,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2016-12-01" + "https://management.azure.com/subscriptions/9532a63e-f2eb-4649-bb23-5ed01077ce80/providers/Microsoft.Network/locations/southeastasia/operationResults/950f2491-b502-46c2-86a7-123ab3f7414e?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json index 763d211ad96d..d7067d72862a 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiIpConfigForMultiNICVM.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "bbf2ee81-a708-465f-ab38-0bbf854c6397" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiZjJlZTgxLWE3MDgtNDY1Zi1hYjM4LTBiYmY4NTRjNjM5Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/bbf2ee81-a708-465f-ab38-0bbf854c6397?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2JiZjJlZTgxLWE3MDgtNDY1Zi1hYjM4LTBiYmY4NTRjNjM5Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODEvc3VibmV0cy9zbjEyOTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ2ODEvc3VibmV0cy9zbjEyOTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6347\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ip23520\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "a6539b36-087c-46fc-885d-73bfaa84757d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/a6539b36-087c-46fc-885d-73bfaa84757d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/a6539b36-087c-46fc-885d-73bfaa84757d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/674?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzY3ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7139\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": true,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"ip21965\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"primary\": false,\r\n \"subnet\": {\r\n \"name\": \"sn1292\",\r\n \"etag\": \"W/\\\"03fb8337-7173-42fa-b330-fa06ec7ab37c\\\"\",\r\n \"id\": \"/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/virtualNetworks/vn4681/subnets/sn1292\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -978,7 +978,7 @@ "98169df6-ba37-4496-bee5-79f47beeb013" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/98169df6-ba37-4496-bee5-79f47beeb013?api-version=2016-12-01" + "https://management.azure.com/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/providers/Microsoft.Network/locations/southeastasia/operations/98169df6-ba37-4496-bee5-79f47beeb013?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,8 +996,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,8 +1118,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/a083c30e-d4e5-4dc1-b310-02aaf36b316a/resourceGroups/crptestar6488/providers/Microsoft.Network/networkInterfaces/5085?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTA4M2MzMGUtZDRlNS00ZGMxLWIzMTAtMDJhYWYzNmIzMTZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY0ODgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzUwODU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json index 82ddcb931ba2..bf21199a5dbf 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestMultiNicVirtualMachineReference.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "337fb129-529f-4643-a826-b3ed73bb1b7c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzN2ZiMTI5LTUyOWYtNDY0My1hODI2LWIzZWQ3M2JiMWI3Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/337fb129-529f-4643-a826-b3ed73bb1b7c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMzN2ZiMTI5LTUyOWYtNDY0My1hODI2LWIzZWQ3M2JiMWI3Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTAvc3VibmV0cy9zbjU4MDA/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjYwMTAvc3VibmV0cy9zbjU4MDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9564\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5800\",\r\n \"etag\": \"W/\\\"d8307e21-ccdd-4415-9c00-b49e3efb0c04\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "f3f1a2c0-4e36-4695-a3fd-061b0131e522" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f3f1a2c0-4e36-4695-a3fd-061b0131e522?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f3f1a2c0-4e36-4695-a3fd-061b0131e522?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/3489?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzM0ODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7059\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5800\",\r\n \"etag\": \"W/\\\"d8307e21-ccdd-4415-9c00-b49e3efb0c04\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/virtualNetworks/vn6010/subnets/sn5800\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -978,7 +978,7 @@ "102888f0-a1bd-4ca8-a6d5-18908a0b0516" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/102888f0-a1bd-4ca8-a6d5-18908a0b0516?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/102888f0-a1bd-4ca8-a6d5-18908a0b0516?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,8 +996,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1054,8 +1054,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1118,8 +1118,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar2394/providers/Microsoft.Network/networkInterfaces/1891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIzOTQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzLzE4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json index e2139287c0b3..a4f941794281 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMNetworkInterfaceTests/TestNicVirtualMachineReference.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn5961\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "2dc7ea7b-d165-45b3-9978-ac843843a8aa" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYzdlYTdiLWQxNjUtNDViMy05OTc4LWFjODQzODQzYThhYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/2dc7ea7b-d165-45b3-9978-ac843843a8aa?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJkYzdlYTdiLWQxNjUtNDViMy05OTc4LWFjODQzODQzYThhYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NS9zdWJuZXRzL3NuNTk2MT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuOTg1NS9zdWJuZXRzL3NuNTk2MT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip5746\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn5961\",\r\n \"etag\": \"W/\\\"bd2aed07-e14c-40f0-a7dd-4b22b6185f61\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/virtualNetworks/vn9855/subnets/sn5961\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -725,7 +725,7 @@ "a450fac6-ae9c-41fd-bc66-148f9cda4883" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a450fac6-ae9c-41fd-bc66-148f9cda4883?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/a450fac6-ae9c-41fd-bc66-148f9cda4883?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,8 +743,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -865,8 +865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar520/providers/Microsoft.Network/networkInterfaces/nic7883?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUyMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNzg4Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json index f568bcf40d9b..41b926cf4eca 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json @@ -492,8 +492,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8133\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -544,7 +544,7 @@ "5f63c140-65af-4671-8059-f064fabc83be" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -562,8 +562,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVmNjNjMTQwLTY1YWYtNDY3MS04MDU5LWYwNjRmYWJjODNiZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/5f63c140-65af-4671-8059-f064fabc83be?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVmNjNjMTQwLTY1YWYtNDY3MS04MDU5LWYwNjRmYWJjODNiZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -617,8 +617,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -675,8 +675,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip6943?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA2OTQzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -739,8 +739,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn7804\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -791,7 +791,7 @@ "e6754412-902f-4285-9d98-e3abea367247" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,8 +809,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2NzU0NDEyLTkwMmYtNDI4NS05ZDk4LWUzYWJlYTM2NzI0Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/e6754412-902f-4285-9d98-e3abea367247?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U2NzU0NDEyLTkwMmYtNDI4NS05ZDk4LWUzYWJlYTM2NzI0Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -864,8 +864,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0L3N1Ym5ldHMvc243ODA0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm43NDc0L3N1Ym5ldHMvc243ODA0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -986,8 +986,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7212\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7804\",\r\n \"etag\": \"W/\\\"b30468c9-5ebf-4f38-bea7-a6a2354ae10e\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn7474/subnets/sn7804\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1035,7 +1035,7 @@ "76e05b02-e233-4f14-8a86-6d87844e90a6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/76e05b02-e233-4f14-8a86-6d87844e90a6?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/76e05b02-e233-4f14-8a86-6d87844e90a6?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1053,8 +1053,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1111,8 +1111,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic913?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3683,8 +3683,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7945\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -3735,7 +3735,7 @@ "304afb2c-100c-4420-96f6-519e50214408" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3753,8 +3753,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwNGFmYjJjLTEwMGMtNDQyMC05NmY2LTUxOWU1MDIxNDQwOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/304afb2c-100c-4420-96f6-519e50214408?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwNGFmYjJjLTEwMGMtNDQyMC05NmY2LTUxOWU1MDIxNDQwOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3808,8 +3808,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3866,8 +3866,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/publicIPAddresses/pip5690?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1NjkwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3930,8 +3930,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn2271\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -3982,7 +3982,7 @@ "f124a6aa-8ff4-44de-9a2c-55cc8d035926" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4000,8 +4000,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMjRhNmFhLThmZjQtNDRkZS05YTJjLTU1Y2M4ZDAzNTkyNj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/f124a6aa-8ff4-44de-9a2c-55cc8d035926?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2YxMjRhNmFhLThmZjQtNDRkZS05YTJjLTU1Y2M4ZDAzNTkyNj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4055,8 +4055,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4113,8 +4113,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3L3N1Ym5ldHMvc24yMjcxP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm40MDU3L3N1Ym5ldHMvc24yMjcxP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4177,8 +4177,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6968\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2271\",\r\n \"etag\": \"W/\\\"daaa0816-ade5-4405-8b35-96b32c5610ce\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/virtualNetworks/vn4057/subnets/sn2271\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -4226,7 +4226,7 @@ "1780921b-6db3-46d5-bde3-139d1615b367" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1780921b-6db3-46d5-bde3-139d1615b367?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1780921b-6db3-46d5-bde3-139d1615b367?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4244,8 +4244,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4302,8 +4302,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar19721/providers/Microsoft.Network/networkInterfaces/nic9337?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE5NzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM5MzM3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json index 68ccfc09256c..696c3e77e0d5 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations_Redeploy.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn4808\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "47a47f5f-fa54-4ac3-b001-4cc476eff4c2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YTQ3ZjVmLWZhNTQtNGFjMy1iMDAxLTRjYzQ3NmVmZjRjMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/47a47f5f-fa54-4ac3-b001-4cc476eff4c2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ3YTQ3ZjVmLWZhNTQtNGFjMy1iMDAxLTRjYzQ3NmVmZjRjMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/publicIPAddresses/pip4357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA0MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn8395\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "26eed63d-ddfd-4113-9aa8-e8bc80362e13" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZWVkNjNkLWRkZmQtNDExMy05YWE4LWU4YmM4MDM2MmUxMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/26eed63d-ddfd-4113-9aa8-e8bc80362e13?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2ZWVkNjNkLWRkZmQtNDExMy05YWE4LWU4YmM4MDM2MmUxMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0L3N1Ym5ldHMvc244Mzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MjQ0L3N1Ym5ldHMvc244Mzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9690\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn8395\",\r\n \"etag\": \"W/\\\"055220a9-8c65-4920-9ab2-28fc8ebfd619\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/virtualNetworks/vn6244/subnets/sn8395\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "d76e9f46-d499-4819-801b-45ff74cfc2a5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d76e9f46-d499-4819-801b-45ff74cfc2a5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d76e9f46-d499-4819-801b-45ff74cfc2a5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar18481/providers/Microsoft.Network/networkInterfaces/nic4295?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE4NDgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM0Mjk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json index 38a91b91e568..78397188f46d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetMarketplaceTests/TestVMScaleSetMarketplace.json @@ -530,8 +530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2658\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -572,7 +572,7 @@ "06fa6a94-8bba-4693-a01f-ce4143272113" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -600,8 +600,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZmE2YTk0LThiYmEtNDY5My1hMDFmLWNlNDE0MzI3MjExMz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/06fa6a94-8bba-4693-a01f-ce4143272113?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA2ZmE2YTk0LThiYmEtNDY5My1hMDFmLWNlNDE0MzI3MjExMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -707,8 +707,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/publicIPAddresses/pip7338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA3MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -768,8 +768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn3505\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -810,7 +810,7 @@ "2ee238c4-cbf5-4e03-8fa8-c934e7c46334" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -838,8 +838,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlZTIzOGM0LWNiZjUtNGUwMy04ZmE4LWM5MzRlN2M0NjMzND9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ee238c4-cbf5-4e03-8fa8-c934e7c46334?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzJlZTIzOGM0LWNiZjUtNGUwMy04ZmE4LWM5MzRlN2M0NjMzND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -945,8 +945,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769/subnets/sn3505?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5L3N1Ym5ldHMvc24zNTA1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualnetworks/vn6769/subnets/sn3505?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsbmV0d29ya3Mvdm42NzY5L3N1Ym5ldHMvc24zNTA1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1006,8 +1006,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip7639\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn3505\",\r\n \"etag\": \"W/\\\"938ab6d1-5c0f-47f1-89ee-6dcdabe7d802\\\"\",\r\n \"id\": \"/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/virtualNetworks/vn6769/subnets/sn3505\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1045,7 +1045,7 @@ "2ae3f188-e69c-4a4b-a4ad-2821589e07f7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ae3f188-e69c-4a4b-a4ad-2821589e07f7?api-version=2016-12-01" + "https://management.azure.com/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/providers/Microsoft.Network/locations/southeastasia/operations/2ae3f188-e69c-4a4b-a4ad-2821589e07f7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1073,8 +1073,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/2063779f-35e7-4e52-88ab-857c5615788e/resourceGroups/crptestar72071/providers/Microsoft.Network/networkInterfaces/nic613?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjA2Mzc3OWYtMzVlNy00ZTUyLTg4YWItODU3YzU2MTU3ODhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcyMDcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json index d7edb379779d..86a60e40872e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetNetworkProfileTests/TestVMScaleSetWithApplciationGateway.json @@ -436,8 +436,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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.1.0/24\"\r\n },\r\n \"name\": \"sn18098\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\"\r\n },\r\n \"name\": \"sn24269\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -489,7 +489,7 @@ "44fe5922-bec0-4e35-8656-6d00f3c019a2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,8 +507,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ0ZmU1OTIyLWJlYzAtNGUzNS04NjU2LTZkMDBmM2MwMTlhMj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/44fe5922-bec0-4e35-8656-6d00f3c019a2?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ0ZmU1OTIyLWJlYzAtNGUzNS04NjU2LTZkMDBmM2MwMTlhMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42NjA3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,8 +622,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn18098\"\r\n }\r\n },\r\n \"name\": \"gwIp3235\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn18098\"\r\n }\r\n },\r\n \"name\": \"fIp916\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"fPort5719\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"pool8495\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\"\r\n },\r\n \"name\": \"setting4841\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/frontendIPConfigurations/fIp916\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/frontendPorts/fPort5719\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"listener418\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/backendAddressPools/pool8495\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/backendHttpSettingsCollection/setting4841\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011/httpListeners/listener418\"\r\n }\r\n },\r\n \"name\": \"rule4776\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -675,7 +675,7 @@ "0f1710a9-9b53-4323-9afd-6b59429cf0ef" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,8 +693,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -752,8 +752,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -811,8 +811,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -870,8 +870,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -929,8 +929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -988,8 +988,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1047,8 +1047,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1106,8 +1106,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1165,8 +1165,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1224,8 +1224,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1283,8 +1283,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1342,8 +1342,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1401,8 +1401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1460,8 +1460,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1519,8 +1519,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1578,8 +1578,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1637,8 +1637,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1696,8 +1696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1755,8 +1755,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1814,8 +1814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1873,8 +1873,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1932,8 +1932,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1991,8 +1991,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2050,8 +2050,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2109,8 +2109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2168,8 +2168,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2227,8 +2227,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2286,8 +2286,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2345,8 +2345,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2404,8 +2404,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0f1710a9-9b53-4323-9afd-6b59429cf0ef?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBmMTcxMGE5LTliNTMtNDMyMy05YWZkLTZiNTk0MjljZjBlZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2460,8 +2460,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2519,8 +2519,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2584,8 +2584,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/applicationGateways/gw8011?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9hcHBsaWNhdGlvbkdhdGV3YXlzL2d3ODAxMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2649,8 +2649,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3681\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2702,7 +2702,7 @@ "38870625-8082-4853-b530-4a242e83efd0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2720,8 +2720,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4ODcwNjI1LTgwODItNDg1My1iNTMwLTRhMjQyZTgzZWZkMD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/38870625-8082-4853-b530-4a242e83efd0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM4ODcwNjI1LTgwODItNDg1My1iNTMwLTRhMjQyZTgzZWZkMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2776,8 +2776,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2835,8 +2835,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/publicIPAddresses/pip8316?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA4MzE2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2900,8 +2900,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.2.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn24269\",\r\n \"etag\": \"W/\\\"150ae5ac-97a7-41fb-b256-0a2fca784095\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/virtualNetworks/vn6607/subnets/sn24269\"\r\n }\r\n },\r\n \"name\": \"ip9271\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -2950,7 +2950,7 @@ "0c0ac95e-e324-4552-add6-9caaa3218d5c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0c0ac95e-e324-4552-add6-9caaa3218d5c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0c0ac95e-e324-4552-add6-9caaa3218d5c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2968,8 +2968,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3027,8 +3027,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar51401/providers/Microsoft.Network/networkInterfaces/nic6359?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjUxNDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2MzU5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json index d933f67f40c9..4d2d9be26cb6 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetBatchOperations.json @@ -436,8 +436,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9414\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -489,7 +489,7 @@ "78f60a92-eefa-40f5-93cb-43b8a8ee7167" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,8 +507,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjYwYTkyLWVlZmEtNDBmNS05M2NiLTQzYjhhOGVlNzE2Nz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/78f60a92-eefa-40f5-93cb-43b8a8ee7167?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc4ZjYwYTkyLWVlZmEtNDBmNS05M2NiLTQzYjhhOGVlNzE2Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -563,8 +563,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -622,8 +622,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/publicIPAddresses/pip9795?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA5Nzk1P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -687,8 +687,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"sn8550\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -740,7 +740,7 @@ "0ec17ca2-2425-4609-a936-11bb1591b92d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -758,8 +758,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBlYzE3Y2EyLTI0MjUtNDYwOS1hOTM2LTExYmIxNTkxYjkyZD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/0ec17ca2-2425-4609-a936-11bb1591b92d?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzBlYzE3Y2EyLTI0MjUtNDYwOS1hOTM2LTExYmIxNTkxYjkyZD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -814,8 +814,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -873,8 +873,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2L3N1Ym5ldHMvc244NTUwP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm42MTM2L3N1Ym5ldHMvc244NTUwP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn8550\",\r\n \"etag\": \"W/\\\"a366937d-2fa2-40b4-8aea-7f0fe553ac57\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/virtualNetworks/vn6136/subnets/sn8550\"\r\n }\r\n },\r\n \"name\": \"ip9581\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -988,7 +988,7 @@ "82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/82e8acaf-4b79-47f9-9f6d-eb8f8ef22c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1006,8 +1006,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1065,8 +1065,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar80011/providers/Microsoft.Network/networkInterfaces/nic6453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgwMDExL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM2NDUzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json index 27b1188e2c10..1e74dd9b2d3f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9086\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "da9b1a55-b312-468d-8096-46f9d2d84c31" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhOWIxYTU1LWIzMTItNDY4ZC04MDk2LTQ2ZjlkMmQ4NGMzMT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/da9b1a55-b312-468d-8096-46f9d2d84c31?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2RhOWIxYTU1LWIzMTItNDY4ZC04MDk2LTQ2ZjlkMmQ4NGMzMT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/publicIPAddresses/pip2347?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAyMzQ3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "ace514d6-4d1a-4531-adaa-22341e2af8ff" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjZTUxNGQ2LTRkMWEtNDUzMS1hZGFhLTIyMzQxZTJhZjhmZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ace514d6-4d1a-4531-adaa-22341e2af8ff?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2FjZTUxNGQ2LTRkMWEtNDUzMS1hZGFhLTIyMzQxZTJhZjhmZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4L3N1Ym5ldHMvc24xNDYzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41MzM4L3N1Ym5ldHMvc24xNDYzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6612\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn1463\",\r\n \"etag\": \"W/\\\"b8b55829-c50d-45c9-a952-40ebfeab1faa\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "8045fa18-5003-4505-8e05-27cd594b0c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar38091/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM4MDkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json index 86321f1b9e71..25e49b104910 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetOperationalTests/TestVMScaleSetOperations_ManagedDisks.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2213\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "c67351d2-991e-4b2b-a4a2-c4255eb4fd0a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M2NzM1MWQyLTk5MWUtNGIyYi1hNGEyLWM0MjU1ZWI0ZmQwYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/c67351d2-991e-4b2b-a4a2-c4255eb4fd0a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2M2NzM1MWQyLTk5MWUtNGIyYi1hNGEyLWM0MjU1ZWI0ZmQwYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/publicIPAddresses/pip5357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXA1MzU3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn9982\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "cf87eff0-e701-4779-9199-51c0843ed22a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmODdlZmYwLWU3MDEtNDc3OS05MTk5LTUxYzA4NDNlZDIyYT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/cf87eff0-e701-4779-9199-51c0843ed22a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2NmODdlZmYwLWU3MDEtNDc3OS05MTk5LTUxYzA4NDNlZDIyYT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544/subnets/sn9982?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0L3N1Ym5ldHMvc245OTgyP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5544/subnets/sn9982?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTQ0L3N1Ym5ldHMvc245OTgyP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip6612\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn1463\",\r\n \"etag\": \"W/\\\"b8b55829-c50d-45c9-a952-40ebfeab1faa\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/virtualNetworks/vn5338/subnets/sn1463\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -939,7 +939,7 @@ "8045fa18-5003-4505-8e05-27cd594b0c8f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/8045fa18-5003-4505-8e05-27cd594b0c8f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1015,8 +1015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar45381/providers/Microsoft.Network/networkInterfaces/nic767?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ1MzgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM3Njc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json index aa3f952450a4..3c9acdd0c005 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn6753\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmNjAyNWM3LTA3NmMtNGE1Zi1hNGQ3LTdiYTVjOGFkMTU0Mj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/3f6025c7-076c-4a5f-a4d7-7ba5c8ad1542?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmNjAyNWM3LTA3NmMtNGE1Zi1hNGQ3LTdiYTVjOGFkMTU0Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/publicIPAddresses/pip2676?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcGlwMjY3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "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\": \"sn1959\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "40dc0178-41da-4050-b3de-1b9cda61769f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwZGMwMTc4LTQxZGEtNDA1MC1iM2RlLTFiOWNkYTYxNzY5Zj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/40dc0178-41da-4050-b3de-1b9cda61769f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQwZGMwMTc4LTQxZGEtNDA1MC1iM2RlLTFiOWNkYTYxNzY5Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OC9zdWJuZXRzL3NuMTk1OT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL3ZuODA3OC9zdWJuZXRzL3NuMTk1OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn1959\",\r\n \"etag\": \"W/\\\"315b667b-e5a5-4bf7-9ca1-3c756c990556\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/virtualNetworks/vn8078/subnets/sn1959\"\r\n }\r\n },\r\n \"name\": \"ip8495\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "fdc47062-3147-4d64-a558-aeddaa06d489" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/fdc47062-3147-4d64-a558-aeddaa06d489?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/fdc47062-3147-4d64-a558-aeddaa06d489?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar900/providers/Microsoft.Network/networkInterfaces/nic5276?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjkwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljNTI3Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json index 65efff3fd90c..7ce305e78d3e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetScenarioTests/TestVMScaleSetScenarioOperations_ManagedDisks_PirImage.json @@ -462,8 +462,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8427\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -504,7 +504,7 @@ "5a7be3e7-4917-4fc3-adb4-f0f30862b743" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -532,8 +532,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhN2JlM2U3LTQ5MTctNGZjMy1hZGI0LWYwZjMwODYyYjc0Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/5a7be3e7-4917-4fc3-adb4-f0f30862b743?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzVhN2JlM2U3LTQ5MTctNGZjMy1hZGI0LWYwZjMwODYyYjc0Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -584,8 +584,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -639,8 +639,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/publicIPAddresses/pip3546?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM1NDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -700,8 +700,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn3544\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -742,7 +742,7 @@ "97e39527-4fe2-4f11-a000-30b224522828" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -770,8 +770,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3ZTM5NTI3LTRmZTItNGYxMS1hMDAwLTMwYjIyNDUyMjgyOD9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/97e39527-4fe2-4f11-a000-30b224522828?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk3ZTM5NTI3LTRmZTItNGYxMS1hMDAwLTMwYjIyNDUyMjgyOD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -822,8 +822,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -877,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614/subnets/sn3544?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQvc3VibmV0cy9zbjM1NDQ/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn7614/subnets/sn3544?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjc2MTQvc3VibmV0cy9zbjM1NDQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -938,8 +938,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9831\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7797\",\r\n \"etag\": \"W/\\\"00863957-ff3e-4def-b190-536068ab6b8a\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/virtualNetworks/vn3361/subnets/sn7797\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -987,7 +987,7 @@ "63fc8e68-5baa-42d3-a024-786c8ac4c237" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/63fc8e68-5baa-42d3-a024-786c8ac4c237?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/63fc8e68-5baa-42d3-a024-786c8ac4c237?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1005,8 +1005,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1063,8 +1063,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar4943/providers/Microsoft.Network/networkInterfaces/nic9435?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzk0MzU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json index 3c51a0f0c79f..caec2953f73e 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetScalingOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7283\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "d98b0164-8811-4992-bc62-12ae2f6a4d6c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q5OGIwMTY0LTg4MTEtNDk5Mi1iYzYyLTEyYWUyZjZhNGQ2Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/d98b0164-8811-4992-bc62-12ae2f6a4d6c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2Q5OGIwMTY0LTg4MTEtNDk5Mi1iYzYyLTEyYWUyZjZhNGQ2Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/publicIPAddresses/pip9501?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDk1MDE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"sn2617\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1MmE3ZWI4LTVmZDEtNGNlYi1iNDc2LWRiMDBiYjFhM2YyYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/152a7eb8-5fd1-4ceb-b476-db00bb1a3f2c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1MmE3ZWI4LTVmZDEtNGNlYi1iNDc2LWRiMDBiYjFhM2YyYz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDIvc3VibmV0cy9zbjI2MTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjU2NDIvc3VibmV0cy9zbjI2MTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn2617\",\r\n \"etag\": \"W/\\\"07fd8634-fb1c-4560-89b4-44446884430c\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/virtualNetworks/vn5642/subnets/sn2617\"\r\n }\r\n },\r\n \"name\": \"ip6264\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "9b7ae149-a4b7-4c0a-9785-a2eab99093b1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/9b7ae149-a4b7-4c0a-9785-a2eab99093b1?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/9b7ae149-a4b7-4c0a-9785-a2eab99093b1?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar1327/providers/Microsoft.Network/networkInterfaces/nic5302?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzUzMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json index b206bfd84303..517e17290055 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetUpdateTests/TestVMScaleSetUpdateOperations.json @@ -485,8 +485,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn5561\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -538,7 +538,7 @@ "e96a5be1-467d-476e-9ba7-f0f30a9dd71c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -556,8 +556,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5NmE1YmUxLTQ2N2QtNDc2ZS05YmE3LWYwZjMwYTlkZDcxYz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/e96a5be1-467d-476e-9ba7-f0f30a9dd71c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2U5NmE1YmUxLTQ2N2QtNDc2ZS05YmE3LWYwZjMwYTlkZDcxYz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -671,8 +671,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/publicIPAddresses/pip5929?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDU5Mjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -736,8 +736,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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\": \"sn7161\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { @@ -789,7 +789,7 @@ "99c8c91d-bf0a-4441-8d95-a5c0225e8a8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -807,8 +807,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5YzhjOTFkLWJmMGEtNDQ0MS04ZDk1LWE1YzAyMjVlOGE4Yz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/99c8c91d-bf0a-4441-8d95-a5c0225e8a8c?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzk5YzhjOTFkLWJmMGEtNDQ0MS04ZDk1LWE1YzAyMjVlOGE4Yz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -863,8 +863,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -922,8 +922,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODkvc3VibmV0cy9zbjcxNjE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIzODkvc3VibmV0cy9zbjcxNjE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -987,8 +987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn7161\",\r\n \"etag\": \"W/\\\"92758a28-66c5-46b6-b246-72ef99ff89fd\\\"\",\r\n \"id\": \"/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/virtualNetworks/vn2389/subnets/sn7161\"\r\n }\r\n },\r\n \"name\": \"ip6687\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { @@ -1037,7 +1037,7 @@ "078149f6-abf2-45e7-94a3-6c8ff2392c8c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/078149f6-abf2-45e7-94a3-6c8ff2392c8c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/providers/Microsoft.Network/locations/southeastasia/operations/078149f6-abf2-45e7-94a3-6c8ff2392c8c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1055,8 +1055,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1114,8 +1114,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/b52fce95-de5f-4b37-afca-db203a5d0b6a/resourceGroups/crptestar7075/providers/Microsoft.Network/networkInterfaces/nic9317?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjUyZmNlOTUtZGU1Zi00YjM3LWFmY2EtZGIyMDNhNWQwYjZhL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzkzMTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json index 808d6f748fe9..46d6de9d08b1 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations.json @@ -429,8 +429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2964\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -481,7 +481,7 @@ "1c3a79d8-d438-43d2-a925-ddaaea134ac5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -499,8 +499,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjM2E3OWQ4LWQ0MzgtNDNkMi1hOTI1LWRkYWFlYTEzNGFjNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/1c3a79d8-d438-43d2-a925-ddaaea134ac5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzFjM2E3OWQ4LWQ0MzgtNDNkMi1hOTI1LWRkYWFlYTEzNGFjNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -554,8 +554,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -612,8 +612,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/publicIPAddresses/pip3847?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM4NDc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -676,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -728,7 +728,7 @@ "084b22a4-d2a9-487c-8839-bcc275001c17" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -746,8 +746,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4NGIyMmE0LWQyYTktNDg3Yy04ODM5LWJjYzI3NTAwMWMxNz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/084b22a4-d2a9-487c-8839-bcc275001c17?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzA4NGIyMmE0LWQyYTktNDg3Yy04ODM5LWJjYzI3NTAwMWMxNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -801,8 +801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -859,8 +859,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTIvc3VibmV0cy9zbjczMzk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjE2MTIvc3VibmV0cy9zbjczMzk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -923,8 +923,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip113\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7339\",\r\n \"etag\": \"W/\\\"a3b45832-20e5-4d44-abe5-ff58b76e03bd\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -972,7 +972,7 @@ "ad73bf1e-8f8a-4924-b2a5-6d373e493e65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,8 +990,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1048,8 +1048,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar4881/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ4ODEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzU2MzM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json index b324bef7e566..e2341e061f0f 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScaleSetVMOperationalTests/TestVMScaleSetVMOperations_ManagedDisks.json @@ -414,8 +414,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2011\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -456,7 +456,7 @@ "3f7e6f04-1fe3-44ef-b97e-70134912daa5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -484,8 +484,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmN2U2ZjA0LTFmZTMtNDRlZi1iOTdlLTcwMTM0OTEyZGFhNT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/3f7e6f04-1fe3-44ef-b97e-70134912daa5?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzNmN2U2ZjA0LTFmZTMtNDRlZi1iOTdlLTcwMTM0OTEyZGFhNT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -536,8 +536,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -591,8 +591,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/publicIPAddresses/pip3087?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9waXAzMDg3P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -652,8 +652,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn5066\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -694,7 +694,7 @@ "88051c1a-684c-4042-ac22-1252651e0fa9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -722,8 +722,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDUxYzFhLTY4NGMtNDA0Mi1hYzIyLTEyNTI2NTFlMGZhOT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/88051c1a-684c-4042-ac22-1252651e0fa9?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg4MDUxYzFhLTY4NGMtNDA0Mi1hYzIyLTEyNTI2NTFlMGZhOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -774,8 +774,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -829,8 +829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509/subnets/sn5066?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5L3N1Ym5ldHMvc241MDY2P2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn5509/subnets/sn5066?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3Mvdm41NTA5L3N1Ym5ldHMvc241MDY2P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -890,8 +890,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip113\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7339\",\r\n \"etag\": \"W/\\\"a3b45832-20e5-4d44-abe5-ff58b76e03bd\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/virtualNetworks/vn1612/subnets/sn7339\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -939,7 +939,7 @@ "ad73bf1e-8f8a-4924-b2a5-6d373e493e65" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/ad73bf1e-8f8a-4924-b2a5-6d373e493e65?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,8 +957,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1015,8 +1015,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTYtMTItMDE=", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar31761/providers/Microsoft.Network/networkInterfaces/nic5633?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMxNzYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9uaWM1NjMzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json index 15864e8cbfd9..7ecb02018219 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json @@ -525,8 +525,8 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn8116\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -577,7 +577,7 @@ "d265798f-874e-433f-b8ab-3641f409dd93" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,8 +595,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QyNjU3OThmLTg3NGUtNDMzZi1iOGFiLTM2NDFmNDA5ZGQ5Mz9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/d265798f-874e-433f-b8ab-3641f409dd93?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QyNjU3OThmLTg3NGUtNDMzZi1iOGFiLTM2NDFmNDA5ZGQ5Mz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -650,8 +650,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -708,8 +708,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/publicIPAddresses/pip4272?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQyNzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -772,8 +772,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\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\": \"sn2745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -824,7 +824,7 @@ "026fbcdb-fd10-4808-9f9c-d173cbd731ee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -842,8 +842,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNmZiY2RiLWZkMTAtNDgwOC05ZjljLWQxNzNjYmQ3MzFlZT9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/026fbcdb-fd10-4808-9f9c-d173cbd731ee?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAyNmZiY2RiLWZkMTAtNDgwOC05ZjljLWQxNzNjYmQ3MzFlZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -897,8 +897,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -955,8 +955,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTEvc3VibmV0cy9zbjI3NDU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjQ4OTEvc3VibmV0cy9zbjI3NDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1019,8 +1019,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip3862\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn2745\",\r\n \"etag\": \"W/\\\"4020128b-b57c-4960-8176-a5d57670fcbf\\\"\",\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/virtualNetworks/vn4891/subnets/sn2745\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -1068,7 +1068,7 @@ "9c622174-7a10-47b6-8f63-24820e573a2c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9c622174-7a10-47b6-8f63-24820e573a2c?api-version=2016-12-01" + "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Network/locations/southeastasia/operations/9c622174-7a10-47b6-8f63-24820e573a2c?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,8 +1086,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1144,8 +1144,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/crptestar3058/providers/Microsoft.Network/networkInterfaces/nic4809?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwNTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json index e6274efd6a1e..742ef8be988d 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json @@ -119,8 +119,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3148\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -161,7 +161,7 @@ "a0947abc-4d83-40ff-b67e-fc6cca95679b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,8 +189,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EwOTQ3YWJjLTRkODMtNDBmZi1iNjdlLWZjNmNjYTk1Njc5Yj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/a0947abc-4d83-40ff-b67e-fc6cca95679b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EwOTQ3YWJjLTRkODMtNDBmZi1iNjdlLWZjNmNjYTk1Njc5Yj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -241,8 +241,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -296,8 +296,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/publicIPAddresses/pip2265?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDIyNjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -357,8 +357,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn7781\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -399,7 +399,7 @@ "393cefed-f783-4c10-9d9f-95056de294cf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -427,8 +427,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5M2NlZmVkLWY3ODMtNGMxMC05ZDlmLTk1MDU2ZGUyOTRjZj9hcGktdmVyc2lvbj0yMDE2LTEyLTAx", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/393cefed-f783-4c10-9d9f-95056de294cf?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM5M2NlZmVkLWY3ODMtNGMxMC05ZDlmLTk1MDU2ZGUyOTRjZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -479,8 +479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -534,8 +534,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTYvc3VibmV0cy9zbjc3ODE/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjI5MTYvc3VibmV0cy9zbjc3ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -595,8 +595,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9759\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"name\": \"sn7781\",\r\n \"etag\": \"W/\\\"a8b9d9fd-ede0-4d06-88a3-d2b857e42136\\\"\",\r\n \"id\": \"/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/virtualNetworks/vn2916/subnets/sn7781\",\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -634,7 +634,7 @@ "b3e5bcca-6047-432c-9abc-0ec1597b463a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/b3e5bcca-6047-432c-9abc-0ec1597b463a?api-version=2016-12-01" + "https://management.azure.com/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Network/locations/southeastasia/operations/b3e5bcca-6047-432c-9abc-0ec1597b463a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -662,8 +662,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -717,8 +717,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2016-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNi0xMi0wMQ==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar6771/providers/Microsoft.Network/networkInterfaces/nic3338?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY3NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzMzMzg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { From 34fd7c6dc1e6b60dff429cb4f9228175f0f9cac3 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Tue, 21 Mar 2017 18:33:11 -0700 Subject: [PATCH 38/56] #INIT Removed unneccessary changes where only end of file chagned. --- .../Compute.Tests.AvailabilitySetTests/TestOperations.json | 2 +- .../TestDCOSOperations.json | 2 +- .../TestSwarmOperations.json | 2 +- .../TestContainerServiceUpdateOperations.json | 2 +- .../SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json | 2 +- .../Compute.Tests.ExtImgTests/TestExtImgListTypes.json | 2 +- .../TestExtImgListVersionsFilters.json | 2 +- .../TestExtImgListVersionsNoFilter.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index c90d66618049..41d56c39d77b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1092,4 +1092,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json index 0d03fdb6250b..9f1f1e8233ad 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json @@ -2175,4 +2175,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json index bd443a53e6ff..e8045406bdd2 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json @@ -2123,4 +2123,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json index 2c1a98ed6570..fc3756c3a85c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json @@ -2618,4 +2618,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index 2343de8f650a..abc449435cb7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index bfb318f6ef31..d76a89158bb8 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index bc9057da8c35..a164c1a3195c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -315,4 +315,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index 7bc95fedbe54..e90bf7aad7ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file From 05e52a95e9af9e32c9a71311faec79bb8746c9bf Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Tue, 21 Mar 2017 22:52:42 -0700 Subject: [PATCH 39/56] AssemblyInfo revert AssemblyVersion to original as requested --- .../Properties/AssemblyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs index 0983ca2bb40b..f4470b904d40 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyTitle("Microsoft Azure Network Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Network management functions for managing the Microsoft Azure Network service.")] -[assembly: AssemblyVersion("9.0.0.0")] +[assembly: AssemblyVersion("9.1.0.0")] [assembly: AssemblyFileVersion("9.2.0.0")] [assembly: AssemblyConfiguration("")] From 4d44fec415fe3e02f433b65df61421bb7d79073a Mon Sep 17 00:00:00 2001 From: jobatzil Date: Wed, 22 Mar 2017 15:05:28 -0700 Subject: [PATCH 40/56] #WAF Renamed GetAvailableWafRuleSets to ListAvailableWafRuleSets. --- .../Generated/ApplicationGatewaysOperations.cs | 6 +++--- .../ApplicationGatewaysOperationsExtensions.cs | 12 ++++++------ .../Generated/IApplicationGatewaysOperations.cs | 4 ++-- .../Network.Tests/Tests/ApplicationGatewayTests.cs | 4 ++-- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs index a42e9a17a111..bc2aec7da5d8 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperations.cs @@ -724,7 +724,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) } /// - /// Gets all available web application firewall rule sets. + /// Lists all available web application firewall rule sets. /// /// /// Headers that will be added to request. @@ -747,7 +747,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetAvailableWafRuleSetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListAvailableWafRuleSetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -763,7 +763,7 @@ internal ApplicationGatewaysOperations(NetworkManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAvailableWafRuleSets", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAvailableWafRuleSets", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs index 3c37e2e28762..8899ee92f34d 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/ApplicationGatewaysOperationsExtensions.cs @@ -331,18 +331,18 @@ public static void Stop(this IApplicationGatewaysOperations operations, string r } /// - /// Gets all available web application firewall rule sets. + /// Lists all available web application firewall rule sets. /// /// /// The operations group for this extension method. /// - public static ApplicationGatewayAvailableWafRuleSetsResult GetAvailableWafRuleSets(this IApplicationGatewaysOperations operations) + public static ApplicationGatewayAvailableWafRuleSetsResult ListAvailableWafRuleSets(this IApplicationGatewaysOperations operations) { - return operations.GetAvailableWafRuleSetsAsync().GetAwaiter().GetResult(); + return operations.ListAvailableWafRuleSetsAsync().GetAwaiter().GetResult(); } /// - /// Gets all available web application firewall rule sets. + /// Lists all available web application firewall rule sets. /// /// /// The operations group for this extension method. @@ -350,9 +350,9 @@ public static ApplicationGatewayAvailableWafRuleSetsResult GetAvailableWafRuleSe /// /// The cancellation token. /// - public static async Task GetAvailableWafRuleSetsAsync(this IApplicationGatewaysOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListAvailableWafRuleSetsAsync(this IApplicationGatewaysOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAvailableWafRuleSetsWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListAvailableWafRuleSetsWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs index d1673d465aa3..303e70b688c1 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/IApplicationGatewaysOperations.cs @@ -215,7 +215,7 @@ public partial interface IApplicationGatewaysOperations /// Task> BackendHealthWithHttpMessagesAsync(string resourceGroupName, string applicationGatewayName, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets all available web application firewall rule sets. + /// Lists all available web application firewall rule sets. /// /// /// The headers that will be added to request. @@ -232,7 +232,7 @@ public partial interface IApplicationGatewaysOperations /// /// Thrown when a required parameter is null /// - Task> GetAvailableWafRuleSetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListAvailableWafRuleSetsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the specified application gateway. /// diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs index 26033b7b5b48..881b32869033 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs @@ -542,8 +542,8 @@ public void ApplicationGatewayApiTest() Assert.Equal(1, backendHealth.BackendAddressPools.Count); Assert.Equal(2, backendHealth.BackendAddressPools[0].BackendHttpSettingsCollection.Count); - // Get available WAF rule sets (validate first result set) - var availableWAFRuleSets = networkManagementClient.ApplicationGateways.GetAvailableWafRuleSets(); + // Get available WAF rule sets (validate first result set/group) + var availableWAFRuleSets = networkManagementClient.ApplicationGateways.ListAvailableWafRuleSets(); Assert.NotNull(availableWAFRuleSets); Assert.NotEmpty(availableWAFRuleSets.Value); Assert.NotNull(availableWAFRuleSets.Value[0].Name); From 2108694dcf09b0a9a97a63ef2bdcd8c843e27b2d Mon Sep 17 00:00:00 2001 From: Henry Chen Date: Wed, 22 Mar 2017 15:56:07 -0700 Subject: [PATCH 41/56] removed EOF-only changes --- .../Compute.Tests.AvailabilitySetTests/TestOperations.json | 2 +- .../TestDCOSOperations.json | 2 +- .../TestSwarmOperations.json | 2 +- .../TestContainerServiceUpdateOperations.json | 2 +- .../SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json | 2 +- .../Compute.Tests.ExtImgTests/TestExtImgListTypes.json | 2 +- .../TestExtImgListVersionsFilters.json | 2 +- .../TestExtImgListVersionsNoFilter.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json index c90d66618049..41d56c39d77b 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.AvailabilitySetTests/TestOperations.json @@ -1092,4 +1092,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json index 0d03fdb6250b..9f1f1e8233ad 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestDCOSOperations.json @@ -2175,4 +2175,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json index bd443a53e6ff..e8045406bdd2 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceOperationalTests/TestSwarmOperations.json @@ -2123,4 +2123,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json index 2c1a98ed6570..fc3756c3a85c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ContainerServiceUpdateTests/TestContainerServiceUpdateOperations.json @@ -2618,4 +2618,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json index 2343de8f650a..abc449435cb7 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgGet.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json index bfb318f6ef31..d76a89158bb8 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListTypes.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json index bc9057da8c35..a164c1a3195c 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsFilters.json @@ -315,4 +315,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file diff --git a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json index 7bc95fedbe54..e90bf7aad7ff 100644 --- a/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json +++ b/src/ResourceManagement/Compute/Compute.Tests/SessionRecords/Compute.Tests.ExtImgTests/TestExtImgListVersionsNoFilter.json @@ -67,4 +67,4 @@ "Variables": { "SubscriptionId": "b52fce95-de5f-4b37-afca-db203a5d0b6a" } -} +} \ No newline at end of file From f6ecaf89520b809215b2079536cfdf2b435cff1d Mon Sep 17 00:00:00 2001 From: Jared Moore Date: Wed, 22 Mar 2017 16:26:56 -0700 Subject: [PATCH 42/56] Reverted global.json changes --- global.json | 5 +---- src/ResourceManagement/SqlManagement/global.json | 5 +---- src/TestFramework/global.json | 5 +---- 3 files changed, 3 insertions(+), 12 deletions(-) diff --git a/global.json b/global.json index 1457d8710890..b3bc428c4cdb 100644 --- a/global.json +++ b/global.json @@ -27,8 +27,5 @@ "src/ResourceManagement/Insights/Microsoft.Azure.Insights", "src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis", "src/ResourceManagement/Monitor/Microsoft.Azure.Monitor" - ], - "sdk": { - "version": "1.0.0-preview2-003121" - } + ] } \ No newline at end of file diff --git a/src/ResourceManagement/SqlManagement/global.json b/src/ResourceManagement/SqlManagement/global.json index 5ab2c4ce8197..4bd0e6191091 100644 --- a/src/ResourceManagement/SqlManagement/global.json +++ b/src/ResourceManagement/SqlManagement/global.json @@ -1,6 +1,3 @@ { - "projects": [ "../../TestFramework", "Microsoft.Azure.Management.Sql", "Sql.Tests" ], - "sdk": { - "version": "1.0.0-preview2-003121" - } + "projects": [ "../../TestFramework", "Microsoft.Azure.Management.Sql", "Sql.Tests" ] } \ No newline at end of file diff --git a/src/TestFramework/global.json b/src/TestFramework/global.json index d61ce31b4fb8..012e710aa49e 100644 --- a/src/TestFramework/global.json +++ b/src/TestFramework/global.json @@ -1,6 +1,3 @@ { - "projects": [ "Microsoft.Rest.ClientRuntime.Azure.TestFramework", "Microsoft.Azure.Test.HttpRecorder" ], - "sdk": { - "version": "1.0.0-preview2-003121" - } + "projects": [ "Microsoft.Rest.ClientRuntime.Azure.TestFramework", "Microsoft.Azure.Test.HttpRecorder" ] } \ No newline at end of file From 0baef6d1a0d1ad825e3a2c7f6c5672f293af5ba4 Mon Sep 17 00:00:00 2001 From: Nilambari Date: Fri, 24 Mar 2017 11:23:07 -0700 Subject: [PATCH 43/56] #12345: Updating generated files after fixing virtualNetworkGateway resource swagger to remove unnecessary required params. --- .../LocalNetworkGatewaysOperations.cs | 4 -- .../Generated/Models/LocalNetworkGateway.cs | 19 ++------ .../Generated/Models/VirtualNetworkGateway.cs | 47 +++---------------- .../Models/VirtualNetworkGatewayConnection.cs | 12 ----- .../VirtualNetworkGatewayIpConfiguration.cs | 25 ++-------- .../Models/VirtualNetworkGatewaySku.cs | 20 +------- .../VirtualNetworkGatewaysOperations.cs | 4 -- 7 files changed, 14 insertions(+), 117 deletions(-) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs index 5b990240d851..f79cfa9d6153 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/LocalNetworkGatewaysOperations.cs @@ -525,10 +525,6 @@ internal LocalNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (parameters != null) - { - parameters.Validate(); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/LocalNetworkGateway.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/LocalNetworkGateway.cs index e64b047c1e97..b63968991d67 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/LocalNetworkGateway.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/LocalNetworkGateway.cs @@ -32,13 +32,13 @@ public LocalNetworkGateway() { } /// /// Initializes a new instance of the LocalNetworkGateway class. /// - /// Local network site address - /// space. /// Resource ID. /// Resource name. /// Resource type. /// Resource location. /// Resource tags. + /// Local network site address + /// space. /// IP address of local network /// gateway. /// Local network gateway's BGP speaker @@ -50,7 +50,7 @@ public LocalNetworkGateway() { } /// 'Deleting', and 'Failed'. /// A unique read-only string that changes whenever /// the resource is updated. - public LocalNetworkGateway(AddressSpace localNetworkAddressSpace, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string gatewayIpAddress = default(string), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) + public LocalNetworkGateway(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), AddressSpace localNetworkAddressSpace = default(AddressSpace), string gatewayIpAddress = default(string), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) : base(id, name, type, location, tags) { LocalNetworkAddressSpace = localNetworkAddressSpace; @@ -100,19 +100,6 @@ public LocalNetworkGateway() { } [JsonProperty(PropertyName = "etag")] public string Etag { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (LocalNetworkAddressSpace == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "LocalNetworkAddressSpace"); - } - } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs index ec6849f3713a..88563723dce5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGateway.cs @@ -32,6 +32,11 @@ public VirtualNetworkGateway() { } /// /// Initializes a new instance of the VirtualNetworkGateway class. /// + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource location. + /// Resource tags. /// IP configurations for virtual /// network gateway. /// The type of this virtual network gateway. @@ -40,11 +45,6 @@ public VirtualNetworkGateway() { } /// The type of this virtual network gateway. /// Possible values are: 'PolicyBased' and 'RouteBased'. Possible /// values include: 'PolicyBased', 'RouteBased' - /// Resource ID. - /// Resource name. - /// Resource type. - /// Resource location. - /// Resource tags. /// Whether BGP is enabled for this virtual /// network gateway or not. /// ActiveActive flag @@ -67,7 +67,7 @@ public VirtualNetworkGateway() { } /// 'Deleting', and 'Failed'. /// Gets a unique read-only string that changes /// whenever the resource is updated. - public VirtualNetworkGateway(IList ipConfigurations, string gatewayType, string vpnType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), bool? enableBgp = default(bool?), bool? activeActive = default(bool?), SubResource gatewayDefaultSite = default(SubResource), VirtualNetworkGatewaySku sku = default(VirtualNetworkGatewaySku), VpnClientConfiguration vpnClientConfiguration = default(VpnClientConfiguration), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) + public VirtualNetworkGateway(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), IList ipConfigurations = default(IList), string gatewayType = default(string), string vpnType = default(string), bool? enableBgp = default(bool?), bool? activeActive = default(bool?), SubResource gatewayDefaultSite = default(SubResource), VirtualNetworkGatewaySku sku = default(VirtualNetworkGatewaySku), VpnClientConfiguration vpnClientConfiguration = default(VpnClientConfiguration), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string)) : base(id, name, type, location, tags) { IpConfigurations = ipConfigurations; @@ -168,41 +168,6 @@ public VirtualNetworkGateway() { } [JsonProperty(PropertyName = "etag")] public string Etag { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (IpConfigurations == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "IpConfigurations"); - } - if (GatewayType == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "GatewayType"); - } - if (VpnType == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "VpnType"); - } - if (IpConfigurations != null) - { - foreach (var element in IpConfigurations) - { - if (element != null) - { - element.Validate(); - } - } - } - if (Sku != null) - { - Sku.Validate(); - } - } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs index f9a3f9166660..ae8d4e3a7b18 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayConnection.cs @@ -223,18 +223,6 @@ public virtual void Validate() { 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) diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs index 2a2154d0a837..a693a533c9ca 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewayIpConfiguration.cs @@ -32,13 +32,13 @@ public VirtualNetworkGatewayIPConfiguration() { } /// Initializes a new instance of the /// VirtualNetworkGatewayIPConfiguration class. /// - /// The reference of the subnet resource. - /// The reference of the public IP - /// resource. /// Resource ID. /// The private IP allocation /// method. Possible values are: 'Static' and 'Dynamic'. Possible /// values include: 'Static', 'Dynamic' + /// The reference of the subnet resource. + /// The reference of the public IP + /// resource. /// The provisioning state of the /// public IP resource. Possible values are: 'Updating', 'Deleting', /// and 'Failed'. @@ -47,7 +47,7 @@ public VirtualNetworkGatewayIPConfiguration() { } /// resource. /// A unique read-only string that changes whenever /// the resource is updated. - public VirtualNetworkGatewayIPConfiguration(SubResource subnet, SubResource publicIPAddress, string id = default(string), string privateIPAllocationMethod = default(string), string provisioningState = default(string), string name = default(string), string etag = default(string)) + public VirtualNetworkGatewayIPConfiguration(string id = default(string), string privateIPAllocationMethod = default(string), SubResource subnet = default(SubResource), SubResource publicIPAddress = default(SubResource), string provisioningState = default(string), string name = default(string), string etag = default(string)) : base(id) { PrivateIPAllocationMethod = privateIPAllocationMethod; @@ -99,23 +99,6 @@ public VirtualNetworkGatewayIPConfiguration() { } [JsonProperty(PropertyName = "etag")] public string Etag { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Subnet == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Subnet"); - } - if (PublicIPAddress == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "PublicIPAddress"); - } - } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewaySku.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewaySku.cs index bdf95f3f3081..7e5ddd39ecf1 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewaySku.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/Models/VirtualNetworkGatewaySku.cs @@ -11,7 +11,6 @@ namespace Microsoft.Azure.Management.Network.Models using Azure; using Management; using Network; - using Rest; using Newtonsoft.Json; using System.Linq; @@ -37,7 +36,7 @@ public VirtualNetworkGatewaySku() { } /// values include: 'Basic', 'HighPerformance', 'Standard', /// 'UltraPerformance' /// The capacity. - public VirtualNetworkGatewaySku(string name, string tier, int? capacity = default(int?)) + public VirtualNetworkGatewaySku(string name = default(string), string tier = default(string), int? capacity = default(int?)) { Name = name; Tier = tier; @@ -68,23 +67,6 @@ public VirtualNetworkGatewaySku() { } [JsonProperty(PropertyName = "capacity")] public int? Capacity { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Name == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Name"); - } - if (Tier == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Tier"); - } - } } } diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs index 129061612af9..9a215952fc29 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/Generated/VirtualNetworkGatewaysOperations.cs @@ -840,10 +840,6 @@ internal VirtualNetworkGatewaysOperations(NetworkManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (parameters != null) - { - parameters.Validate(); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); From d51092b299bc6ca12d90e1aa87536303e488a1d4 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Fri, 24 Mar 2017 13:54:27 -0700 Subject: [PATCH 44/56] #WAF improved tests. --- .../Network/Network.Tests/Tests/ApplicationGatewayTests.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs index 26033b7b5b48..bb91c06842b1 100644 --- a/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs +++ b/src/ResourceManagement/Network/Network.Tests/Tests/ApplicationGatewayTests.cs @@ -395,7 +395,8 @@ private ApplicationGateway CreateApplicationGateway(string location, Subnet subn { new ApplicationGatewayFirewallDisabledRuleGroup( "crs_41_sql_injection_attacks", - new List() { 981318 }) + new List() { 981318, 981320 }), + new ApplicationGatewayFirewallDisabledRuleGroup("crs_35_bad_robots") } } }; From 53c772a8cedcfebe6577c52f7d445bc256b3eea5 Mon Sep 17 00:00:00 2001 From: Abhijeet Date: Sun, 26 Mar 2017 13:54:37 -0700 Subject: [PATCH 45/56] Updated RepoTask module with new supported KeyValue pairs (#2919) * Updated RepoTask module with new supported KeyVaule pairs * Updating properties of the manifest file --- tools/Repo-Tasks.psd1 | 14 ++--- tools/Repo-Tasks.psm1 | 143 +++++++++++++++++++++++++++++++++++++++--- 2 files changed, 141 insertions(+), 16 deletions(-) diff --git a/tools/Repo-Tasks.psd1 b/tools/Repo-Tasks.psd1 index 1a9d668e1649..4216f44a2935 100644 --- a/tools/Repo-Tasks.psd1 +++ b/tools/Repo-Tasks.psd1 @@ -3,13 +3,13 @@ # # Generated by: shahabhijeet # -# Generated on: 11/2/2016 +# Generated on: 3/11/2017 # @{ # Script module or binary module file associated with this manifest. -RootModule = 'Repo-Tasks.psm1' +RootModule = '.\Repo-Tasks.psm1' # Version number of this module. ModuleVersion = '1.0' @@ -30,10 +30,10 @@ CompanyName = 'Microsoft' Copyright = '(c) 2016 shahabhijeet. All rights reserved.' # Description of the functionality provided by this module -# Description = 'Provides set of cmdlets for common repository tasks' +# Description = '' # Minimum version of the Windows PowerShell engine required by this module -# PowerShellVersion = '5.1' +PowerShellVersion = '5.1' # Name of the Windows PowerShell host required by this module # PowerShellHostName = '' @@ -42,13 +42,13 @@ Copyright = '(c) 2016 shahabhijeet. All rights reserved.' # PowerShellHostVersion = '' # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -# DotNetFrameworkVersion = '4.5' +# DotNetFrameworkVersion = '' # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -# CLRVersion = '4.0' +# CLRVersion = '' # Processor architecture (None, X86, Amd64) required by this module -# ProcessorArchitecture = 'x86, Amd64' +# ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module # RequiredModules = @() diff --git a/tools/Repo-Tasks.psm1 b/tools/Repo-Tasks.psm1 index 51dc8ffd2c4e..edc69d039264 100644 --- a/tools/Repo-Tasks.psm1 +++ b/tools/Repo-Tasks.psm1 @@ -14,7 +14,7 @@ In order to successfully run a test, you will need SubscriptionId, TenantId This cmdlet will only prompt you for Subscription and Tenant information, rest all other parameters are optional #> - [CmdletBinding(DefaultParameterSetName='UserIdParamSet')] + [CmdletBinding(DefaultParameterSetName='SpnParamSet')] param( [Parameter(ParameterSetName='UserIdParamSet', Mandatory=$true, HelpMessage = "UserId (OrgId) you would like to use")] [ValidateNotNullOrEmpty()] @@ -44,11 +44,23 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a [ValidateSet("Playback", "Record", "None")] [string]$RecordMode='Playback', - [ValidateSet("Prod", "Dogfood", "Current", "Next")] - [string]$TargetEnvironment='Prod' + [ValidateSet("Prod", "Dogfood", "Current", "Next", "Custom")] + [string]$TargetEnvironment='Prod', + + [string]$ResourceManagementUri, + [string]$GraphUri, + [string]$AADAuthUri, + [string]$AADTokenAudienceUri, + [string]$GraphTokenAudienceUri, + [string]$IbizaPortalUri, + [string]$ServiceManagementUri, + [string]$RdfePortalUri, + [string]$GalleryUri, + [string]$DataLakeStoreServiceUri, + [string]$DataLakeAnalyticsJobAndCatalogServiceUri ) - [string]$uris="https://management.azure.com/" + [string]$uris="" $formattedConnStr = [string]::Format("SubscriptionId={0};HttpRecorderMode={1};Environment={2}", $SubscriptionId, $RecordMode, $TargetEnvironment) @@ -76,11 +88,69 @@ This cmdlet will only prompt you for Subscription and Tenant information, rest a { $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";ServicePrincipalSecret={0}"), $ServicePrincipalSecret) } + + #Uris + if([string]::IsNullOrEmpty($ResourceManagementUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";ResourceManagementUri={0}"), $ResourceManagementUri) + } + + if([string]::IsNullOrEmpty($GraphUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";GraphUri={0}"), $GraphUri) + } + + if([string]::IsNullOrEmpty($AADAuthUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";AADAuthUri={0}"), $AADAuthUri) + } + + if([string]::IsNullOrEmpty($AADTokenAudienceUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";AADTokenAudienceUri={0}"), $AADTokenAudienceUri) + } + + if([string]::IsNullOrEmpty($GraphTokenAudienceUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";GraphTokenAudienceUri={0}"), $GraphTokenAudienceUri) + } + + if([string]::IsNullOrEmpty($IbizaPortalUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";IbizaPortalUri={0}"), $IbizaPortalUri) + } + + if([string]::IsNullOrEmpty($ServiceManagementUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";ServiceManagementUri={0}"), $ServiceManagementUri) + } + + if([string]::IsNullOrEmpty($RdfePortalUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";RdfePortalUri={0}"), $RdfePortalUri) + } + + if([string]::IsNullOrEmpty($GalleryUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";GalleryUri={0}"), $GalleryUri) + } + + if([string]::IsNullOrEmpty($DataLakeStoreServiceUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";DataLakeStoreServiceUri={0}"), $DataLakeStoreServiceUri) + } + + if([string]::IsNullOrEmpty($DataLakeAnalyticsJobAndCatalogServiceUri) -eq $false) + { + $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";DataLakeAnalyticsJobAndCatalogServiceUri={0}"), $DataLakeAnalyticsJobAndCatalogServiceUri) + } + - $formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";BaseUri={0}"), $uris) + #$formattedConnStr = [string]::Format([string]::Concat($formattedConnStr, ";BaseUri={0}"), $uris) Write-Host "Below connection string is ready to be set" - Print-ConnectionString $UserId $Password $SubscriptionId $TenantId $ServicePrincipal $ServicePrincipalSecret $RecordMode $TargetEnvironment $uris + #Print-ConnectionString $UserId $Password $SubscriptionId $TenantId $ServicePrincipal $ServicePrincipalSecret $RecordMode $TargetEnvironment $uris + Print-ConnectionString $UserId $Password $SubscriptionId $TenantId $ServicePrincipal $ServicePrincipalSecret $RecordMode $TargetEnvironment $uris $ResourceManagementUri $GraphUri $AADAuthUri $AADTokenAudienceUri $GraphTokenAudienceUri $IbizaPortalUri $ServiceManagementUri $RdfePortalUri $GalleryUri $DataLakeStoreServiceUri $DataLakeAnalyticsJobAndCatalogServiceUri #Set connection string to Environment variable $env:TEST_CSM_ORGID_AUTHENTICATION=$formattedConnStr @@ -149,11 +219,66 @@ Function Print-ConnectionString([string]$uid, [string]$pwd, [string]$subId, [str Write-Host "Environment=" -ForegroundColor Green -NoNewline Write-Host $targetEnvironment";" -NoNewline } + + #======================================== + if([string]::IsNullOrEmpty($ResourceManagementUri) -eq $false) + { + Write-Host "ResourceManagementUri=" -ForegroundColor Green -NoNewline + Write-Host $ResourceManagementUri";" -NoNewline + } + + if([string]::IsNullOrEmpty($GraphUri) -eq $false) + { + Write-Host "GraphUri=" -ForegroundColor Green -NoNewline + Write-Host $GraphUri";" -NoNewline + } + + if([string]::IsNullOrEmpty($AADTokenAudienceUri) -eq $false) + { + Write-Host "AADTokenAudienceUri=" -ForegroundColor Green -NoNewline + Write-Host $AADTokenAudienceUri";" -NoNewline + } - if([string]::IsNullOrEmpty($uris) -eq $false) + if([string]::IsNullOrEmpty($GraphTokenAudienceUri) -eq $false) + { + Write-Host "GraphTokenAudienceUri=" -ForegroundColor Green -NoNewline + Write-Host $GraphTokenAudienceUri -NoNewline + } + + if([string]::IsNullOrEmpty($IbizaPortalUri) -eq $false) + { + Write-Host "IbizaPortalUri=" -ForegroundColor Green -NoNewline + Write-Host $IbizaPortalUri";" -NoNewline + } + + if([string]::IsNullOrEmpty($ServiceManagementUri) -eq $false) + { + Write-Host "ServiceManagementUri=" -ForegroundColor Green -NoNewline + Write-Host $ServiceManagementUri";" -NoNewline + } + + if([string]::IsNullOrEmpty($RdfePortalUri) -eq $false) + { + Write-Host "RdfePortalUri=" -ForegroundColor Green -NoNewline + Write-Host $RdfePortalUri";" -NoNewline + } + + if([string]::IsNullOrEmpty($GalleryUri) -eq $false) + { + Write-Host "GalleryUri=" -ForegroundColor Green -NoNewline + Write-Host $GalleryUri";" -NoNewline + } + + if([string]::IsNullOrEmpty($DataLakeStoreServiceUri) -eq $false) + { + Write-Host "DataLakeStoreServiceUri=" -ForegroundColor Green -NoNewline + Write-Host $DataLakeStoreServiceUri";" -NoNewline + } + + if([string]::IsNullOrEmpty($DataLakeAnalyticsJobAndCatalogServiceUri) -eq $false) { - Write-Host "BaseUri=" -ForegroundColor Green -NoNewline - Write-Host $uris -NoNewline + Write-Host "DataLakeAnalyticsJobAndCatalogServiceUri=" -ForegroundColor Green -NoNewline + Write-Host $DataLakeAnalyticsJobAndCatalogServiceUri";" -NoNewline } Write-Host "" From 4ca8d8acb9711de9a99535bdba6a75065e30386f Mon Sep 17 00:00:00 2001 From: Aaron Roney Date: Sun, 26 Mar 2017 16:54:26 -0700 Subject: [PATCH 46/56] Generate XML documentation for all libraries. (#2959) * Turn XML generation on for all projects. * Exclude Batch due to lack of proper XML comments. --- .../project.json | 3 ++- .../Microsoft.Rest.ClientRuntime.Azure.Tests/project.json | 2 +- .../Microsoft.Rest.ClientRuntime.Azure/project.json | 3 ++- .../Microsoft.Rest.ClientRuntime.Etw/project.json | 5 +++-- .../Microsoft.Rest.ClientRuntime.Log4Net/project.json | 5 +++-- src/ClientRuntime/Microsoft.Rest.ClientRuntime/project.json | 3 ++- src/KeyVault/Microsoft.Azure.KeyVault.Core/project.json | 3 ++- .../Microsoft.Azure.KeyVault.Cryptography/project.json | 3 ++- .../Microsoft.Azure.KeyVault.Extensions/project.json | 3 ++- .../Microsoft.Azure.KeyVault.TestFramework/project.json | 3 ++- src/KeyVault/Microsoft.Azure.KeyVault.WebKey/project.json | 3 ++- src/KeyVault/Microsoft.Azure.KeyVault/project.json | 3 ++- .../Microsoft.Azure.Management.Analysis/project.json | 3 ++- .../Microsoft.Azure.Management.Authorization/project.json | 3 ++- .../Batch/Microsoft.Azure.Management.Batch/project.json | 3 ++- .../Billing/Microsoft.Azure.Management.Billing/project.json | 3 ++- .../Cdn/Microsoft.Azure.Management.Cdn/project.json | 3 ++- .../project.json | 3 ++- .../Compute/Microsoft.Azure.Management.Compute/project.json | 3 ++- .../project.json | 3 ++- .../Microsoft.Azure.Management.CustomerInsights/project.json | 3 ++- .../project.json | 3 ++- .../Microsoft.Azure.Management.DataLake.Store/project.json | 3 ++- .../Microsoft.Azure.Management.DevTestLabs/project.json | 3 ++- .../Dns/Microsoft.Azure.Management.Dns/project.json | 3 ++- .../Microsoft.Azure.Management.EventHub/project.json | 3 ++- .../Graph.RBAC/Microsoft.Azure.Graph.RBAC/project.json | 3 ++- .../Insights/Microsoft.Azure.Insights/project.json | 3 ++- .../IotHub/Microsoft.Azure.Management.IotHub/project.json | 3 ++- .../Microsoft.Azure.Management.KeyVault/project.json | 3 ++- .../Logic/Microsoft.Azure.Management.Logic/project.json | 3 ++- .../Microsoft.Azure.Management.MachineLearning/project.json | 3 ++- .../Media/Microsoft.Azure.Management.Media/project.json | 3 ++- .../Monitor/Microsoft.Azure.Monitor/project.json | 3 ++- .../Network/Microsoft.Azure.Management.Network/project.json | 3 ++- .../Microsoft.Azure.Management.NotificationHubs/project.json | 3 ++- .../project.json | 3 ++- .../OperationalInsights.Test/project.json | 5 +++-- .../Microsoft.Azure.Management.PowerBIEmbedded/project.json | 3 ++- .../project.json | 3 ++- .../Microsoft.Azure.Management.RecoveryServices/project.json | 3 ++- .../RedisCache/Microsoft.Azure.Management.Redis/project.json | 3 ++- .../Microsoft.Azure.Management.ResourceManager/project.json | 3 ++- .../Microsoft.Azure.Management.Scheduler/project.json | 3 ++- src/ResourceManagement/Scheduler/Scheduler.Test/project.json | 5 +++-- .../Microsoft.Azure.Management.ServerManagement/project.json | 3 ++- .../Microsoft.Azure.Management.ServiceBus/project.json | 3 ++- .../Microsoft.Azure.Management.Sql/project.json | 3 ++- .../Microsoft.Azure.Management.TrafficManager/project.json | 3 ++- .../Microsoft.Azure.Management.Websites/project.json | 3 ++- src/Search/Microsoft.Azure.Management.Search/project.json | 3 ++- tools/ProjectTemplates/AutoRest-AzureDotNetSDK/project.json | 3 ++- .../ProjectTemplates/AzureDotNetSDK-TestProject/project.json | 3 ++- 53 files changed, 109 insertions(+), 57 deletions(-) diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json index 629fbec197a9..dfa23bf7c1a2 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Authentication/project.json @@ -17,7 +17,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Tests/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Tests/project.json index 122ae6dd931a..53627f9beb7b 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Tests/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure.Tests/project.json @@ -6,7 +6,7 @@ "summary": "ClientRuntime Tests.", "tags": [ "Microsoft AutoRest ClientRuntime REST" ], "projectUrl": "https://github.com/Azure/AutoRest", - "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE" }, "testRunner": "xunit", diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure/project.json index 5a38d62a230d..4de939ef3cd8 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Azure/project.json @@ -17,7 +17,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Etw/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Etw/project.json index 3f5c1404bfd9..3154026e3926 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Etw/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Etw/project.json @@ -11,13 +11,14 @@ "projectUrl": "https://github.com/Azure/AutoRest", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "tags": [ "Microsoft AutoRest ClientRuntime REST ETW" ], - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Log4Net/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Log4Net/project.json index f1ea0da8e799..8c1c28c84211 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Log4Net/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime.Log4Net/project.json @@ -11,12 +11,13 @@ "projectUrl": "https://github.com/Azure/AutoRest", "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", "tags": [ "Microsoft AutoRest ClientRuntime REST ETW" ], - "requireLicenseAcceptance": true, + "requireLicenseAcceptance": true }, "buildOptions": { "delaySign": true, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ClientRuntime/Microsoft.Rest.ClientRuntime/project.json b/src/ClientRuntime/Microsoft.Rest.ClientRuntime/project.json index 37220fea58ea..16b625dfc069 100644 --- a/src/ClientRuntime/Microsoft.Rest.ClientRuntime/project.json +++ b/src/ClientRuntime/Microsoft.Rest.ClientRuntime/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "frameworks": { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Core/project.json b/src/KeyVault/Microsoft.Azure.KeyVault.Core/project.json index 31cebf43a7e5..314ddd0edfb2 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Core/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Core/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Cryptography/project.json b/src/KeyVault/Microsoft.Azure.KeyVault.Cryptography/project.json index 489551a786fa..920f3ff36483 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Cryptography/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Cryptography/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions/project.json b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions/project.json index f7ee7fab49b7..0d1039c81752 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/project.json b/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/project.json index 53f6beb565a9..a4f50b02e348 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/project.json @@ -7,7 +7,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/project.json b/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/project.json index aaed11053163..da9a2ebc2912 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "frameworks": { "net45": { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/project.json b/src/KeyVault/Microsoft.Azure.KeyVault/project.json index 63d009e09ab5..39306a5116c3 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault/project.json @@ -17,7 +17,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/project.json b/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/project.json index e15819b241bc..4a9a36f314c3 100644 --- a/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/project.json +++ b/src/ResourceManagement/AnalysisServices/Microsoft.Azure.Management.Analysis/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/project.json b/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/project.json index 0aa112cc6cf4..21c2dc7928a8 100644 --- a/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/project.json +++ b/src/ResourceManagement/Authorization/Microsoft.Azure.Management.Authorization/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json index 8d9f84a4c939..8e7bb33ae091 100644 --- a/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json +++ b/src/ResourceManagement/Batch/Microsoft.Azure.Management.Batch/project.json @@ -17,7 +17,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json index fa7b1742f2be..fef1ac475e59 100644 --- a/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json +++ b/src/ResourceManagement/Billing/Microsoft.Azure.Management.Billing/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json index bc5691ce8da2..5f51323aeaf1 100644 --- a/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json +++ b/src/ResourceManagement/Cdn/Microsoft.Azure.Management.Cdn/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/project.json b/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/project.json index 874a6fc94371..7bfcb079df51 100644 --- a/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/project.json +++ b/src/ResourceManagement/CognitiveServices/Microsoft.Azure.Management.CognitiveServices/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json b/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json index 6bcf3c73503a..c9b13cad5cb2 100644 --- a/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json +++ b/src/ResourceManagement/Compute/Microsoft.Azure.Management.Compute/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json index 03311b2e0a75..09fac67195b3 100644 --- a/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json +++ b/src/ResourceManagement/ContainerRegistry/Microsoft.Azure.Management.ContainerRegistry/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json b/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json index 1fe3eb632101..bf1f90d8ea10 100644 --- a/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json +++ b/src/ResourceManagement/CustomerInsights/Microsoft.Azure.Management.CustomerInsights/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json index 97572587aaf5..4f2aa50bd7f2 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json index 8105ae800f3d..4beccefbad1e 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/project.json b/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/project.json index bc22af392bef..c1056af4e8e6 100644 --- a/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/project.json +++ b/src/ResourceManagement/DevTestLabs/Microsoft.Azure.Management.DevTestLabs/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/project.json b/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/project.json index 15a4506ddfb3..6a2cc301211f 100644 --- a/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/project.json +++ b/src/ResourceManagement/Dns/Microsoft.Azure.Management.Dns/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json b/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json index 4b1e6c5ecd97..a452b48e7514 100644 --- a/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json +++ b/src/ResourceManagement/EventHub/Microsoft.Azure.Management.EventHub/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/project.json b/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/project.json index 7d6b93e32e29..3e49b864547a 100644 --- a/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/project.json +++ b/src/ResourceManagement/Graph.RBAC/Microsoft.Azure.Graph.RBAC/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json index 2ae4868f7c7a..5b7046701c80 100644 --- a/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json +++ b/src/ResourceManagement/Insights/Microsoft.Azure.Insights/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/project.json b/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/project.json index 7f162ef49e90..9d5d26acac17 100644 --- a/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/project.json +++ b/src/ResourceManagement/IotHub/Microsoft.Azure.Management.IotHub/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/project.json b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/project.json index 10d14eaa0a06..e3217d31f599 100644 --- a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/project.json +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json index c7bb6520d441..b9d874621233 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json index 5144484051e2..387e39b3d1a1 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/project.json b/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/project.json index e1a6da154d42..62681c9bf28a 100644 --- a/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/project.json +++ b/src/ResourceManagement/Media/Microsoft.Azure.Management.Media/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json index 988598f3748e..e33d04ea397a 100644 --- a/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json +++ b/src/ResourceManagement/Monitor/Microsoft.Azure.Monitor/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json index d8484bf93b04..d9978de025f5 100644 --- a/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json +++ b/src/ResourceManagement/Network/Microsoft.Azure.Management.Network/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/project.json b/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/project.json index fa587b025dec..e8a94c45a52e 100644 --- a/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/project.json +++ b/src/ResourceManagement/NotificationHubs/Microsoft.Azure.Management.NotificationHubs/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json index 0a23195c1b8c..8462501146ec 100644 --- a/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json +++ b/src/ResourceManagement/OperationalInsights/Microsoft.Azure.Management.OperationalInsights/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json index 879405fd5bf7..555206e25247 100644 --- a/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json +++ b/src/ResourceManagement/OperationalInsights/OperationalInsights.Test/project.json @@ -7,14 +7,15 @@ "summary": "OperationalInsights.Tests Tests.", "tags": [ "" ], "projectUrl": "", - "licenseUrl": "", + "licenseUrl": "" }, "buildOptions": { "delaySign": true, "publicSign": false, "keyFile": "../../../../tools/MSSharedLibKey.snk", - "compile": "../../../../tools/DisableTestRunParallel.cs" + "compile": "../../../../tools/DisableTestRunParallel.cs", + "xmlDoc": true }, "testRunner": "xunit", diff --git a/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json b/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json index 32e3ce3a410c..b3d25d46b8ea 100644 --- a/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json +++ b/src/ResourceManagement/PowerBIEmbedded/Microsoft.Azure.Management.PowerBIEmbedded/project.json @@ -21,7 +21,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/project.json b/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/project.json index 76f5e22b8a4d..7f4a5a9941da 100644 --- a/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/project.json +++ b/src/ResourceManagement/RecoveryServices.Backup/Microsoft.Azure.Management.RecoveryServices.Backup/project.json @@ -13,7 +13,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/RecoveryServices/Microsoft.Azure.Management.RecoveryServices/project.json b/src/ResourceManagement/RecoveryServices/Microsoft.Azure.Management.RecoveryServices/project.json index 5f48d01fb33b..18a1294b59e3 100644 --- a/src/ResourceManagement/RecoveryServices/Microsoft.Azure.Management.RecoveryServices/project.json +++ b/src/ResourceManagement/RecoveryServices/Microsoft.Azure.Management.RecoveryServices/project.json @@ -13,7 +13,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/project.json b/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/project.json index 7d22463e03ca..4e2567ae5704 100644 --- a/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/project.json +++ b/src/ResourceManagement/RedisCache/Microsoft.Azure.Management.Redis/project.json @@ -16,7 +16,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/project.json b/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/project.json index 94db79646572..5219e229dad1 100644 --- a/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/project.json +++ b/src/ResourceManagement/Resource/Microsoft.Azure.Management.ResourceManager/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/project.json b/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/project.json index 1d8b38e99b69..f268381feebc 100644 --- a/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/project.json +++ b/src/ResourceManagement/Scheduler/Microsoft.Azure.Management.Scheduler/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/Scheduler/Scheduler.Test/project.json b/src/ResourceManagement/Scheduler/Scheduler.Test/project.json index f93873c6b6c1..6d8d0e115a91 100644 --- a/src/ResourceManagement/Scheduler/Scheduler.Test/project.json +++ b/src/ResourceManagement/Scheduler/Scheduler.Test/project.json @@ -7,14 +7,15 @@ "summary": "Scheduler.Tests Tests.", "tags": [ "" ], "projectUrl": "", - "licenseUrl": "", + "licenseUrl": "" }, "buildOptions": { "delaySign": true, "publicSign": false, "keyFile": "../../../../tools/MSSharedLibKey.snk", - "compile": "../../../../tools/DisableTestRunParallel.cs" + "compile": "../../../../tools/DisableTestRunParallel.cs", + "xmlDoc": true }, "testRunner": "xunit", diff --git a/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/project.json b/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/project.json index 6a654cba9ac3..c947f7495eee 100644 --- a/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/project.json +++ b/src/ResourceManagement/ServerManagement/Microsoft.Azure.Management.ServerManagement/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", diff --git a/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/project.json b/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/project.json index e89632c977f2..34fd875992d9 100644 --- a/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/project.json +++ b/src/ResourceManagement/ServiceBus/Microsoft.Azure.Management.ServiceBus/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json index ea76ed113cfe..6f1ab3d6bace 100644 --- a/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json +++ b/src/ResourceManagement/SqlManagement/Microsoft.Azure.Management.Sql/project.json @@ -14,7 +14,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json index 759b945a1c87..f6a9faaa171b 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/project.json b/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/project.json index c0ecac7b06fd..c794816a8402 100644 --- a/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/project.json +++ b/src/ResourceManagement/WebSites/Microsoft.Azure.Management.Websites/project.json @@ -15,7 +15,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/src/Search/Microsoft.Azure.Management.Search/project.json b/src/Search/Microsoft.Azure.Management.Search/project.json index 77bcc7c9a332..6e626b06e83c 100644 --- a/src/Search/Microsoft.Azure.Management.Search/project.json +++ b/src/Search/Microsoft.Azure.Management.Search/project.json @@ -17,7 +17,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "../../../tools/MSSharedLibKey.snk" + "keyFile": "../../../tools/MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/tools/ProjectTemplates/AutoRest-AzureDotNetSDK/project.json b/tools/ProjectTemplates/AutoRest-AzureDotNetSDK/project.json index 8eef845d816a..353f558e7671 100644 --- a/tools/ProjectTemplates/AutoRest-AzureDotNetSDK/project.json +++ b/tools/ProjectTemplates/AutoRest-AzureDotNetSDK/project.json @@ -12,7 +12,8 @@ "buildOptions": { "delaySign": true, "publicSign": false, - "keyFile": "MSSharedLibKey.snk" + "keyFile": "MSSharedLibKey.snk", + "xmlDoc": true }, "dependencies": { diff --git a/tools/ProjectTemplates/AzureDotNetSDK-TestProject/project.json b/tools/ProjectTemplates/AzureDotNetSDK-TestProject/project.json index f48ce3eeac5e..af7658014102 100644 --- a/tools/ProjectTemplates/AzureDotNetSDK-TestProject/project.json +++ b/tools/ProjectTemplates/AzureDotNetSDK-TestProject/project.json @@ -3,7 +3,8 @@ "buildOptions": { "delaySign": true, - "publicSign": false + "publicSign": false, + "xmlDoc": true }, "testRunner": "xunit", From 10b0785fa26fa4bce71dad6eb0cd884fde5d1137 Mon Sep 17 00:00:00 2001 From: jobatzil Date: Mon, 27 Mar 2017 09:51:50 -0700 Subject: [PATCH 47/56] #WAF Recorded new ApplicationGateway tests. --- .../ApplicationGatewayApiTest.json | 1410 ++++++++--------- 1 file changed, 705 insertions(+), 705 deletions(-) diff --git a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json index a31a2c72432a..36d721243d46 100644 --- a/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json +++ b/src/ResourceManagement/Network/Network.Tests/SessionRecords/Networks.Tests.ApplicationGatewayTests/ApplicationGatewayApiTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourcegroups/csmrg7667?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlZ3JvdXBzL2NzbXJnNzY2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourcegroups/csmrg7781?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlZ3JvdXBzL2NzbXJnNzc4MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -13,7 +13,7 @@ "29" ], "x-ms-client-request-id": [ - "1cc41b83-f589-41ec-86af-5ab5b9f93a6c" + "ffc78b7e-b207-4176-9b1a-06315f6a816a" ], "accept-language": [ "en-US" @@ -23,7 +23,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667\",\r\n \"name\": \"csmrg7667\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781\",\r\n \"name\": \"csmrg7781\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "171" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:28:10 GMT" + "Sat, 25 Mar 2017 00:58:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "374be73c-c3d4-4572-a8a5-f19dbeaafe1b" + "495571c7-50ed-49af-b947-b41e228706e6" ], "x-ms-correlation-request-id": [ - "374be73c-c3d4-4572-a8a5-f19dbeaafe1b" + "495571c7-50ed-49af-b947-b41e228706e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182810Z:374be73c-c3d4-4572-a8a5-f19dbeaafe1b" + "CENTRALUS:20170325T005842Z:495571c7-50ed-49af-b947-b41e228706e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,10 +62,10 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NzU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "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\": \"azsmnet2045\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet3830\"\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\": \"azsmnet7453\"\r\n },\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"name\": \"azsmnet2882\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -74,17 +74,17 @@ "530" ], "x-ms-client-request-id": [ - "bfeaadb1-4d53-47f7-992a-92cc59f2c072" + "e206b719-95e9-4c98-bcfa-e6e87a8c1ec2" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5723\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723\",\r\n \"etag\": \"W/\\\"ba008f64-bd90-4044-9d1b-00ff7887a691\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7b495bca-37d7-41a5-a7dc-b852bdd5a16d\",\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\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"ba008f64-bd90-4044-9d1b-00ff7887a691\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3830\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\",\r\n \"etag\": \"W/\\\"ba008f64-bd90-4044-9d1b-00ff7887a691\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet7758\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758\",\r\n \"etag\": \"W/\\\"2b294486-e7e8-41f7-a163-b226a0fc58b8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5f027416-158b-4dbb-87d9-cb70a723d1aa\",\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\": \"azsmnet7453\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\",\r\n \"etag\": \"W/\\\"2b294486-e7e8-41f7-a163-b226a0fc58b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2882\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\",\r\n \"etag\": \"W/\\\"2b294486-e7e8-41f7-a163-b226a0fc58b8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1495" @@ -99,7 +99,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:28:11 GMT" + "Sat, 25 Mar 2017 00:58:56 GMT" ], "Pragma": [ "no-cache" @@ -112,35 +112,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "698b709a-65ad-41d4-8e15-8b288e49d56b" + "009d963f-d66c-4438-b759-40eee8c596c7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/698b709a-65ad-41d4-8e15-8b288e49d56b?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/009d963f-d66c-4438-b759-40eee8c596c7?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "5510930c-627b-4bb4-bcc1-79a308647b34" + "c39d87b3-8b71-47d2-9856-048f5dec76ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182812Z:5510930c-627b-4bb4-bcc1-79a308647b34" + "CENTRALUS:20170325T005856Z:c39d87b3-8b71-47d2-9856-048f5dec76ff" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/698b709a-65ad-41d4-8e15-8b288e49d56b?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy82OThiNzA5YS02NWFkLTQxZDQtOGUxNS04YjI4OGU0OWQ1NmI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/009d963f-d66c-4438-b759-40eee8c596c7?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wMDlkOTYzZi1kNjZjLTQ0MzgtYjc1OS00MGVlZThjNTk2Yzc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -155,7 +155,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:28:41 GMT" + "Sat, 25 Mar 2017 00:59:26 GMT" ], "Pragma": [ "no-cache" @@ -171,35 +171,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d3544c15-586a-4c3b-954e-74160aa1f80d" + "f173ca86-8482-41ec-b8e1-4da580334ecb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14999" ], "x-ms-correlation-request-id": [ - "0a86abd0-3cb5-49bb-94a8-033e45ccc461" + "1a97dc13-f797-4c88-8a3d-e293725e8d27" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182842Z:0a86abd0-3cb5-49bb-94a8-033e45ccc461" + "CENTRALUS:20170325T005927Z:1a97dc13-f797-4c88-8a3d-e293725e8d27" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NzU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5723\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b495bca-37d7-41a5-a7dc-b852bdd5a16d\",\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\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3830\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet7758\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758\",\r\n \"etag\": \"W/\\\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f027416-158b-4dbb-87d9-cb70a723d1aa\",\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\": \"azsmnet7453\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\",\r\n \"etag\": \"W/\\\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2882\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\",\r\n \"etag\": \"W/\\\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -211,7 +211,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:28:41 GMT" + "Sat, 25 Mar 2017 00:59:27 GMT" ], "Pragma": [ "no-cache" @@ -220,7 +220,7 @@ "chunked" ], "ETag": [ - "W/\"a6abbb23-af62-48d7-80b7-ff9770259f65\"" + "W/\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -230,41 +230,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "373e11bb-13a5-45c9-b18c-b951f822f914" + "176899db-f31c-4b3f-8418-e04ddbd9e32a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14998" ], "x-ms-correlation-request-id": [ - "a8deb92c-358f-4efe-88e3-f61c1ee1bee1" + "9627e807-9478-4308-8483-a5b01d16a108" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182842Z:a8deb92c-358f-4efe-88e3-f61c1ee1bee1" + "CENTRALUS:20170325T005927Z:9627e807-9478-4308-8483-a5b01d16a108" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NzU4P2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cdf7a4a-483f-489f-a753-e085e71c56e7" + "41d6ce3f-d649-4804-8452-9d19fb75bb0c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet5723\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b495bca-37d7-41a5-a7dc-b852bdd5a16d\",\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\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3830\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet7758\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758\",\r\n \"etag\": \"W/\\\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5f027416-158b-4dbb-87d9-cb70a723d1aa\",\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\": \"azsmnet7453\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\",\r\n \"etag\": \"W/\\\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2882\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\",\r\n \"etag\": \"W/\\\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -276,7 +276,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:28:42 GMT" + "Sat, 25 Mar 2017 00:59:27 GMT" ], "Pragma": [ "no-cache" @@ -285,7 +285,7 @@ "chunked" ], "ETag": [ - "W/\"a6abbb23-af62-48d7-80b7-ff9770259f65\"" + "W/\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -295,41 +295,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3645bdf4-701d-49f1-9ce8-8c211069b113" + "b936d272-ace0-42b6-a2dd-184512b3ed5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14997" ], "x-ms-correlation-request-id": [ - "97ef57e6-0378-4a96-b715-89a69df8432c" + "553cbdf9-00e5-4755-9ddf-72d9a75fc1a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182842Z:97ef57e6-0378-4a96-b715-89a69df8432c" + "CENTRALUS:20170325T005928Z:553cbdf9-00e5-4755-9ddf-72d9a75fc1a5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ1NzIzL3N1Ym5ldHMvYXpzbW5ldDIwNDU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2F6c21uZXQ3NzU4L3N1Ym5ldHMvYXpzbW5ldDc0NTM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f33ee02-4da3-4d15-b91f-47ea9b237ac9" + "9a57ece6-05d0-4990-98c5-07d3df03ce16" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet2045\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\",\r\n \"etag\": \"W/\\\"a6abbb23-af62-48d7-80b7-ff9770259f65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet7453\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\",\r\n \"etag\": \"W/\\\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\\\"\",\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" @@ -341,7 +341,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:28:42 GMT" + "Sat, 25 Mar 2017 00:59:27 GMT" ], "Pragma": [ "no-cache" @@ -350,7 +350,7 @@ "chunked" ], "ETag": [ - "W/\"a6abbb23-af62-48d7-80b7-ff9770259f65\"" + "W/\"9ff24bcf-6932-403d-a7d2-91b2fb07db44\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -360,50 +360,50 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2bc05fd8-7008-471c-a6f5-197e610333da" + "43adccce-a292-4b3f-9e31-ba1930e9f6fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14996" ], "x-ms-correlation-request-id": [ - "8d97b74a-0f67-4b40-b188-3a8cdc923d7c" + "1f7772ea-b98b-4cb0-9419-9496014e0885" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182842Z:8d97b74a-0f67-4b40-b188-3a8cdc923d7c" + "CENTRALUS:20170325T005928Z:1f7772ea-b98b-4cb0-9419-9496014e0885" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n },\r\n \"name\": \"azsmnet790\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet2995\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n },\r\n \"name\": \"azsmnet6486\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet5694\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet57\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet4411\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet1047\"\r\n },\r\n {\r\n \"name\": \"azsmnet2873\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet4293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet8504\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet2535\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet1579\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n },\r\n \"name\": \"azsmnet129\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n },\r\n \"name\": \"azsmnet3623\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n }\r\n },\r\n \"name\": \"azsmnet6709\"\r\n }\r\n ],\r\n \"authenticationCertificates\": [\r\n {\r\n \"properties\": {\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\"\r\n },\r\n \"name\": \"azsmnet6145\"\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n }\r\n },\r\n \"name\": \"azsmnet6558\"\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80\r\n },\r\n \"name\": \"azsmnet5555\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 88\r\n },\r\n \"name\": \"azsmnet3427\"\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5\r\n },\r\n \"name\": \"azsmnet4263\"\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet949\"\r\n },\r\n {\r\n \"name\": \"azsmnet8377\"\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"properties\": {\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\"\r\n },\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n }\r\n },\r\n \"name\": \"azsmnet1467\"\r\n },\r\n {\r\n \"properties\": {\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\"\r\n }\r\n ]\r\n },\r\n \"name\": \"azsmnet8901\"\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet1241\"\r\n },\r\n {\r\n \"properties\": {\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\"\r\n },\r\n \"protocol\": \"Http\"\r\n },\r\n \"name\": \"azsmnet8027\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n }\r\n },\r\n \"name\": \"azsmnet6603\"\r\n },\r\n {\r\n \"properties\": {\r\n \"ruleType\": \"Basic\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n },\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n },\r\n \"name\": \"azsmnet3937\"\r\n }\r\n ],\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "7528" + "7623" ], "x-ms-client-request-id": [ - "0417e481-0641-47d6-8736-8f017fbf46a8" + "472d8cdd-d232-4980-b868-d899960c1d19" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"ff1d45cd-2512-4915-9dd5-f7558cc93760\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3564\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"29127229-2d52-4c79-a597-b0cbf241b92d\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6709\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/gatewayIPConfigurations/azsmnet6709\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet6145\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6558\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5555\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3427\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet949\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8377\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1467\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet1241\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8027\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet6603\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3937\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4263\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\",\r\n \"etag\": \"W/\\\"62090e3c-e8ed-42af-b056-ed93bb792693\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "15452" + "15553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -415,7 +415,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:28:42 GMT" + "Sat, 25 Mar 2017 00:59:37 GMT" ], "Pragma": [ "no-cache" @@ -428,35 +428,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "88e5a493-f938-4a9c-9319-e1465ab17d5e" + "2ee33df3-27c1-45d8-b238-512579943242" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "6f644e0d-1175-4350-b163-7b8e662d0aa6" + "b54316ba-95b1-469f-b396-607adbd9db92" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182843Z:6f644e0d-1175-4350-b163-7b8e662d0aa6" + "CENTRALUS:20170325T005938Z:b54316ba-95b1-469f-b396-607adbd9db92" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -471,7 +471,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:29:13 GMT" + "Sat, 25 Mar 2017 01:00:08 GMT" ], "Pragma": [ "no-cache" @@ -490,32 +490,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "af46dfe3-0808-4087-a2aa-547603d3da8e" + "6bf4bcd6-fc6f-4687-bdbe-68b9dd627a31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14995" ], "x-ms-correlation-request-id": [ - "03209232-d362-4a88-ad8a-16234e1a2ad2" + "7fc24c80-e91a-4f08-9126-d09d044f0bb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182913Z:03209232-d362-4a88-ad8a-16234e1a2ad2" + "CENTRALUS:20170325T010008Z:7fc24c80-e91a-4f08-9126-d09d044f0bb4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -530,7 +530,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:29:43 GMT" + "Sat, 25 Mar 2017 01:00:38 GMT" ], "Pragma": [ "no-cache" @@ -549,32 +549,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "abbdcf5e-1d6a-4353-97ec-23fff1f0e560" + "63f814cb-3636-4bb5-a5d3-8d5efa796c23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14994" ], "x-ms-correlation-request-id": [ - "4301223a-2fc2-48f3-86d8-599cc195a9a0" + "d87d0d78-04dd-4ebf-a265-fe6cf0584a1a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T182944Z:4301223a-2fc2-48f3-86d8-599cc195a9a0" + "CENTRALUS:20170325T010038Z:d87d0d78-04dd-4ebf-a265-fe6cf0584a1a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -589,7 +589,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:30:13 GMT" + "Sat, 25 Mar 2017 01:01:08 GMT" ], "Pragma": [ "no-cache" @@ -608,32 +608,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "029003db-d5c4-42b0-8256-69341d71f095" + "202ba757-bb0d-4ad5-ae2b-d0d3594d4565" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14993" ], "x-ms-correlation-request-id": [ - "25a30940-e82d-4d04-aeeb-8d7aed4b0d9e" + "13f46862-f656-4ade-8ad9-ace1b73e1ecb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183014Z:25a30940-e82d-4d04-aeeb-8d7aed4b0d9e" + "CENTRALUS:20170325T010109Z:13f46862-f656-4ade-8ad9-ace1b73e1ecb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -648,7 +648,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:30:43 GMT" + "Sat, 25 Mar 2017 01:01:38 GMT" ], "Pragma": [ "no-cache" @@ -667,32 +667,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "49ae3c34-cac9-4dd2-a883-fa97c49a991e" + "92eaffb2-0386-45a9-864e-ac2606b88549" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14992" ], "x-ms-correlation-request-id": [ - "3533479e-63bc-441d-9005-690daf926571" + "383c0697-6abe-449f-b405-91080eb3d248" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183044Z:3533479e-63bc-441d-9005-690daf926571" + "CENTRALUS:20170325T010139Z:383c0697-6abe-449f-b405-91080eb3d248" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -707,7 +707,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:31:13 GMT" + "Sat, 25 Mar 2017 01:02:09 GMT" ], "Pragma": [ "no-cache" @@ -726,32 +726,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bc0c7229-974d-4e0a-ab7b-bb1d4d3fd69d" + "2647cd2c-c5c0-4fe2-8740-22114cbfb6fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14991" ], "x-ms-correlation-request-id": [ - "e3831d8a-476f-45ae-92b5-37462c03b150" + "5e12eac0-d400-406f-ae96-45389716305e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183114Z:e3831d8a-476f-45ae-92b5-37462c03b150" + "CENTRALUS:20170325T010210Z:5e12eac0-d400-406f-ae96-45389716305e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -766,7 +766,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:31:44 GMT" + "Sat, 25 Mar 2017 01:02:40 GMT" ], "Pragma": [ "no-cache" @@ -785,32 +785,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d0488317-6c73-4806-a8a6-3f88bb94f90c" + "0e8ca04d-9da4-412a-9843-bb4c519a0577" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14990" ], "x-ms-correlation-request-id": [ - "1084f2bc-d27b-49ab-bbec-2f0535e9d188" + "3b3e1705-48bb-45e6-83ec-f012dda52f7b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183145Z:1084f2bc-d27b-49ab-bbec-2f0535e9d188" + "CENTRALUS:20170325T010240Z:3b3e1705-48bb-45e6-83ec-f012dda52f7b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -825,7 +825,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:32:14 GMT" + "Sat, 25 Mar 2017 01:03:10 GMT" ], "Pragma": [ "no-cache" @@ -844,32 +844,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d0fb25f8-c2c5-433e-8461-e23c2a4aa8a5" + "55ee59f9-d537-4bb9-bd99-c80dd7dbc0d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14989" ], "x-ms-correlation-request-id": [ - "a8cf075a-424f-434b-8550-716c9b82dc4c" + "54567bd1-1255-4054-ac07-77f95481a8c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183215Z:a8cf075a-424f-434b-8550-716c9b82dc4c" + "CENTRALUS:20170325T010310Z:54567bd1-1255-4054-ac07-77f95481a8c7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -884,7 +884,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:32:44 GMT" + "Sat, 25 Mar 2017 01:03:40 GMT" ], "Pragma": [ "no-cache" @@ -903,32 +903,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a3d996e2-a94a-4a74-8600-a188658e8a3a" + "1ffda9e6-58ef-46b5-98f6-f540ecdd71ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14988" ], "x-ms-correlation-request-id": [ - "472e4769-f8eb-4293-bc77-fb7e9d429fc8" + "1f314a94-adeb-4ae3-a211-529f2463daab" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183245Z:472e4769-f8eb-4293-bc77-fb7e9d429fc8" + "CENTRALUS:20170325T010341Z:1f314a94-adeb-4ae3-a211-529f2463daab" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -943,7 +943,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:33:15 GMT" + "Sat, 25 Mar 2017 01:04:10 GMT" ], "Pragma": [ "no-cache" @@ -962,32 +962,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "75486a68-d683-4ef3-ba05-c396e56507d0" + "35199606-d9ca-4f1f-bff5-b71f1c46557a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14987" ], "x-ms-correlation-request-id": [ - "d0ce09a3-bf50-4736-8c75-4ed80f232171" + "fff2e31a-b504-4284-893e-46af94f5c701" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183315Z:d0ce09a3-bf50-4736-8c75-4ed80f232171" + "CENTRALUS:20170325T010411Z:fff2e31a-b504-4284-893e-46af94f5c701" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1002,7 +1002,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:33:45 GMT" + "Sat, 25 Mar 2017 01:04:40 GMT" ], "Pragma": [ "no-cache" @@ -1021,32 +1021,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dc6d9c68-e837-4c38-9fc7-b3ff9ccaf0cb" + "eaed502e-e6dc-4f36-b213-65ac6665075f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14986" ], "x-ms-correlation-request-id": [ - "315bb53e-269c-491c-b1df-4efdf0844bdb" + "9a94644e-6ee9-4433-906f-60bffaa2ab76" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183345Z:315bb53e-269c-491c-b1df-4efdf0844bdb" + "CENTRALUS:20170325T010441Z:9a94644e-6ee9-4433-906f-60bffaa2ab76" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1061,7 +1061,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:34:15 GMT" + "Sat, 25 Mar 2017 01:05:12 GMT" ], "Pragma": [ "no-cache" @@ -1080,32 +1080,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a9566ce8-f323-4fca-8dd3-134e1af168a7" + "912ef3b7-660e-478f-9294-aaeed6ad3bd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14985" ], "x-ms-correlation-request-id": [ - "0a63d531-525a-4b42-88b7-7b9701322187" + "485c60e4-1acf-4011-b979-f8d8f4c4389b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183416Z:0a63d531-525a-4b42-88b7-7b9701322187" + "CENTRALUS:20170325T010512Z:485c60e4-1acf-4011-b979-f8d8f4c4389b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1120,7 +1120,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:34:46 GMT" + "Sat, 25 Mar 2017 01:05:42 GMT" ], "Pragma": [ "no-cache" @@ -1139,32 +1139,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "259b41d7-ed6c-47b8-8c0d-fbc170fafb80" + "a466434b-015c-4c9d-9994-9c8d094de573" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14984" ], "x-ms-correlation-request-id": [ - "fd24f3c3-0c0d-44aa-a925-58b16e34ee39" + "07c62ba2-1613-4bb3-9a91-f7013f1293ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183446Z:fd24f3c3-0c0d-44aa-a925-58b16e34ee39" + "CENTRALUS:20170325T010542Z:07c62ba2-1613-4bb3-9a91-f7013f1293ef" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1179,7 +1179,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:35:16 GMT" + "Sat, 25 Mar 2017 01:06:12 GMT" ], "Pragma": [ "no-cache" @@ -1198,32 +1198,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5aedb890-15ae-48e7-bc7a-42b7355430ee" + "b05006d0-4137-48b5-b1f9-a444a2209593" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14983" ], "x-ms-correlation-request-id": [ - "7e11adaf-357f-4b87-b9d8-5cc3aa82ced3" + "c4a063f7-0083-48df-9b0b-0ae465514d6d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183516Z:7e11adaf-357f-4b87-b9d8-5cc3aa82ced3" + "CENTRALUS:20170325T010612Z:c4a063f7-0083-48df-9b0b-0ae465514d6d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1238,7 +1238,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:35:46 GMT" + "Sat, 25 Mar 2017 01:06:42 GMT" ], "Pragma": [ "no-cache" @@ -1257,32 +1257,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "96ee560e-ab2d-417c-9058-f2c9287668bc" + "88d988e6-f5d9-4b08-a3ac-9989b32f0e66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14982" ], "x-ms-correlation-request-id": [ - "c31bd90d-743d-4ebb-aec2-0929c44b136f" + "1608bf4a-9c50-4392-9f98-01038e1deb79" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183547Z:c31bd90d-743d-4ebb-aec2-0929c44b136f" + "CENTRALUS:20170325T010643Z:1608bf4a-9c50-4392-9f98-01038e1deb79" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1297,7 +1297,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:36:16 GMT" + "Sat, 25 Mar 2017 01:07:12 GMT" ], "Pragma": [ "no-cache" @@ -1316,32 +1316,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b3e1cab2-beb5-4648-a1ca-d26d0be9c035" + "2e45c000-f95c-4af0-be2e-88d2d52250d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14981" ], "x-ms-correlation-request-id": [ - "b0524977-b267-4708-8fcd-bad494f55fd4" + "3c43808e-700e-406b-b3a2-d304916451f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183617Z:b0524977-b267-4708-8fcd-bad494f55fd4" + "CENTRALUS:20170325T010713Z:3c43808e-700e-406b-b3a2-d304916451f9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1356,7 +1356,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:36:47 GMT" + "Sat, 25 Mar 2017 01:07:43 GMT" ], "Pragma": [ "no-cache" @@ -1375,32 +1375,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3d035c12-f6a8-46ba-bbc8-420ef545a8c2" + "0f8004a7-fc71-4ae0-bad2-95f116c75d72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14980" ], "x-ms-correlation-request-id": [ - "d4976d95-53cf-4e23-b2e1-89e775ff98f8" + "01757bb0-dd8b-4c5c-8b1c-78c7976bf163" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183648Z:d4976d95-53cf-4e23-b2e1-89e775ff98f8" + "CENTRALUS:20170325T010743Z:01757bb0-dd8b-4c5c-8b1c-78c7976bf163" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1415,7 +1415,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:37:17 GMT" + "Sat, 25 Mar 2017 01:08:13 GMT" ], "Pragma": [ "no-cache" @@ -1434,32 +1434,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c61e3129-f6ed-4c53-8f48-d0b368131bc5" + "f9fd3373-92eb-4d92-837e-c4f754cb71be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14979" ], "x-ms-correlation-request-id": [ - "effbbf7e-366e-4c6c-8410-672b37f72ca1" + "b400a6f9-fe37-4fa2-8634-753a04af941c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183718Z:effbbf7e-366e-4c6c-8410-672b37f72ca1" + "CENTRALUS:20170325T010814Z:b400a6f9-fe37-4fa2-8634-753a04af941c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1474,7 +1474,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:37:48 GMT" + "Sat, 25 Mar 2017 01:08:43 GMT" ], "Pragma": [ "no-cache" @@ -1493,32 +1493,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f6fac953-1972-435a-9745-e24d7c5f4494" + "8c653ea0-41bd-4180-b49e-ff3f4064b244" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14978" ], "x-ms-correlation-request-id": [ - "afc936c8-906b-4c7b-b7e2-3369f1e31e2d" + "d8a9b503-58b7-4547-bc24-1ba6e48c4a92" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183748Z:afc936c8-906b-4c7b-b7e2-3369f1e31e2d" + "CENTRALUS:20170325T010844Z:d8a9b503-58b7-4547-bc24-1ba6e48c4a92" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1533,7 +1533,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:38:18 GMT" + "Sat, 25 Mar 2017 01:09:14 GMT" ], "Pragma": [ "no-cache" @@ -1552,32 +1552,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "94366163-0125-416d-a290-e9975591d291" + "821f81e4-3b44-4396-ab27-3a9c6a5acb98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14977" ], "x-ms-correlation-request-id": [ - "f78b0a9e-8cf1-4b0a-a846-6d97cab0682e" + "c8266dbc-c9aa-4daa-8e5d-bc1812108ce4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183818Z:f78b0a9e-8cf1-4b0a-a846-6d97cab0682e" + "CENTRALUS:20170325T010914Z:c8266dbc-c9aa-4daa-8e5d-bc1812108ce4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1592,7 +1592,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:38:48 GMT" + "Sat, 25 Mar 2017 01:09:44 GMT" ], "Pragma": [ "no-cache" @@ -1611,32 +1611,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8542d0bd-c091-4285-b200-1a97e940df31" + "c98f9fd2-5d0a-478e-ab5d-e3154448f828" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14976" ], "x-ms-correlation-request-id": [ - "cb3354de-11c6-41db-9284-70e75ae7c709" + "00b0f43f-baa7-46c0-920d-4479df4de3d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183848Z:cb3354de-11c6-41db-9284-70e75ae7c709" + "CENTRALUS:20170325T010945Z:00b0f43f-baa7-46c0-920d-4479df4de3d8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -1651,7 +1651,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:39:18 GMT" + "Sat, 25 Mar 2017 01:10:15 GMT" ], "Pragma": [ "no-cache" @@ -1670,32 +1670,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "34fb2f43-2095-42ea-804c-3b6bc4014eee" + "435c3e6e-a71b-4ecc-933e-d6adea56e591" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14975" ], "x-ms-correlation-request-id": [ - "12c98d13-a2b9-4850-8184-7b0ead542237" + "3d341962-c5ac-4dda-9ef8-2cd0c9d287f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183919Z:12c98d13-a2b9-4850-8184-7b0ead542237" + "CENTRALUS:20170325T011015Z:3d341962-c5ac-4dda-9ef8-2cd0c9d287f7" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/88e5a493-f938-4a9c-9319-e1465ab17d5e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy84OGU1YTQ5My1mOTM4LTRhOWMtOTMxOS1lMTQ2NWFiMTdkNWU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/2ee33df3-27c1-45d8-b238-512579943242?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8yZWUzM2RmMy0yN2MxLTQ1ZDgtYjIzOC01MTI1Nzk5NDMyNDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1710,7 +1710,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:39:49 GMT" + "Sat, 25 Mar 2017 01:10:46 GMT" ], "Pragma": [ "no-cache" @@ -1726,35 +1726,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "94eae946-eaba-41f9-8c22-5fc468bcd2d5" + "9fedfeeb-cced-4e37-8b0b-52c69950e211" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14974" ], "x-ms-correlation-request-id": [ - "c63c15a5-e15b-49c2-bedc-4f3f60984534" + "bbbfafba-a623-4297-8379-063c0cb939e6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183949Z:c63c15a5-e15b-49c2-bedc-4f3f60984534" + "CENTRALUS:20170325T011046Z:bbbfafba-a623-4297-8379-063c0cb939e6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3564\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"29127229-2d52-4c79-a597-b0cbf241b92d\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6709\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/gatewayIPConfigurations/azsmnet6709\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet6145\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6558\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5555\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3427\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet949\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8377\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1467\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet1241\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8027\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet6603\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3937\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4263\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1766,7 +1766,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:39:49 GMT" + "Sat, 25 Mar 2017 01:10:46 GMT" ], "Pragma": [ "no-cache" @@ -1775,7 +1775,7 @@ "chunked" ], "ETag": [ - "W/\"0cdab41d-75f6-49e8-826e-0ffeec80865e\"" + "W/\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1785,41 +1785,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2365205a-72c2-476a-95ca-35927681b0b7" + "c996473c-cf35-470f-8c43-e6d442d0f675" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14973" ], "x-ms-correlation-request-id": [ - "93bf33b7-5a6c-4790-954a-694b5362bd08" + "cc5f664b-8990-422f-8004-d6bdb3be89f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183949Z:93bf33b7-5a6c-4790-954a-694b5362bd08" + "CENTRALUS:20170325T011046Z:cc5f664b-8990-422f-8004-d6bdb3be89f4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8403b1e1-b8aa-40a9-a17d-6a20f0d28f99" + "21d02e51-5135-4be9-a988-0483a914af60" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3564\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"29127229-2d52-4c79-a597-b0cbf241b92d\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6709\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/gatewayIPConfigurations/azsmnet6709\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet6145\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6558\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5555\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3427\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet949\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8377\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1467\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet1241\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8027\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet6603\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3937\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4263\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1831,7 +1831,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:39:49 GMT" + "Sat, 25 Mar 2017 01:19:38 GMT" ], "Pragma": [ "no-cache" @@ -1840,7 +1840,7 @@ "chunked" ], "ETag": [ - "W/\"0cdab41d-75f6-49e8-826e-0ffeec80865e\"" + "W/\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1850,41 +1850,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "851b19a5-2815-4d34-96a3-f6070c57461e" + "395f7473-041e-46a6-ac0e-cf1e99bc30b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14999" ], "x-ms-correlation-request-id": [ - "975e765a-5e66-46d2-a453-6b471a29e52e" + "bf0ab9d5-e39a-46ac-aa8a-c07603a6e4bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183949Z:975e765a-5e66-46d2-a453-6b471a29e52e" + "WESTUS2:20170325T011939Z:bf0ab9d5-e39a-46ac-aa8a-c07603a6e4bd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1bf7ea9-a8c0-4a7b-903d-717ec5447541" + "3d936eac-1c64-41e6-afb2-0adc891bcc13" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet9819\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d463b2e1-3aac-4072-adb7-ec67050cb5ec\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet790\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/gatewayIPConfigurations/azsmnet790\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet2995\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6486\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet2045\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5694\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet57\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet1047\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet2873\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet4293\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8504\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/authenticationCertificates/azsmnet2995\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet2535\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet5694\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet1579\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendIPConfigurations/azsmnet6486\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/frontendPorts/azsmnet57\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet129\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet129\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet2535\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3623\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/requestRoutingRules/azsmnet3623\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/httpListeners/azsmnet1579\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4411\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/probes/azsmnet4411\",\r\n \"etag\": \"W/\\\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet3564\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"29127229-2d52-4c79-a597-b0cbf241b92d\",\r\n \"sku\": {\r\n \"name\": \"WAF_Medium\",\r\n \"tier\": \"WAF\",\r\n \"capacity\": 2\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6709\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/gatewayIPConfigurations/azsmnet6709\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [\r\n {\r\n \"name\": \"azsmnet6145\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"data\": \"MIIDTzCCAjegAwIBAgIQj5oTlR6oyJ1NlX9Wb9aFyjANBgkqhkiG9w0BAQsFADAwMS4wLAYDVQQDEyVBcHBsaWNhdGlvbkdhdGV3YXlTc2xDZXJ0LVVuaXRUZXN0LTAxMB4XDTE2MDIxNzA3MDc1M1oXDTM5MTIzMTIzNTk1OVowMDEuMCwGA1UEAxMlQXBwbGljYXRpb25HYXRld2F5U3NsQ2VydC1Vbml0VGVzdC0wMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOUOFVmm+P4ht/qaiGZaiMzZSXwqGP8W/XWZRfJSc1mS6B4zBm8MtndmO9NbPUeGetk3E4jI0egP7NufuTAtfZY5nG9/gsZh8Hp4o+x+6F1wCUtK5pQ5Fne4Vwg0Q9k1CgUfQfK0zEoanOTEylcyp1nVpoGc3v4FZ9pQr8/xQ7+PSwgNpmGpU1gmgorDlXIO8jiKb+WfSoPAhHcavoPFg6DeGv30AK2m8ULFezOqbprrozRxXaKzt8fBaDSP1XMakFaO6ffZU4uNgrehW4zMnpdgAjT5koymDKGAfl/7+5QpLxSKc2478J+PvTwy/rfWKJLbEImoM7WE3imWgrHUNMCAwEAAaNlMGMwYQYDVR0BBFowWIAQxDXqD2PYxSlriJ6HuzZ+b6EyMDAxLjAsBgNVBAMTJUFwcGxpY2F0aW9uR2F0ZXdheVNzbENlcnQtVW5pdFRlc3QtMDGCEI+aE5UeqMidTZV/Vm/WhcowDQYJKoZIhvcNAQELBQADggEBADSC6PHkVYmoVOyyW2g7q3GG3MmXa43/HQNTM+pT3HENAlhGg8T9EFrOQ/0QAoEQbrtsP8Isj5u2Bd4MOlYA180ExyfL/NFb7QpXq/pRLbePMQAQicdSvk/9RyrNRBfNjT2KNlBp3RZtCkJjQWlc5ylWydPy4JPUZxit/5ygCRT+cmN1ioF469Ki8hzBlKmrDg8jkFUwFyD7B0fEfPP0gSZI3F6HqgCK2hzBTjujZjddZyn2XxXlxLu57C83CNPP8fbsGW2CwolgmYvt+dJsdDnT7VKX5RS4cOPp/JGG7QdhzqVBoK0vZP6gHEAOPoqBVUWf8SmlVuAVGmDl8EjLnK8=\",\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"azsmnet6558\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet7453\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"azsmnet5555\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3427\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 88,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"azsmnet949\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"104.42.6.202\"\r\n },\r\n {\r\n \"ipAddress\": \"23.99.1.115\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8377\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714/ipConfigurations/ipconfig\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"backendAddresses\": []\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"azsmnet1467\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"connectionDraining\": {\r\n \"enabled\": true,\r\n \"drainTimeoutInSec\": 42\r\n },\r\n \"requestTimeout\": 69,\r\n \"probe\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\"\r\n },\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8901\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"protocol\": \"Https\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"authenticationCertificates\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/authenticationCertificates/azsmnet6145\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"azsmnet1241\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet5555\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet8027\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendIPConfigurations/azsmnet6558\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/frontendPorts/azsmnet3427\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"azsmnet6603\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet6603\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet1241\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"azsmnet3937\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/requestRoutingRules/azsmnet3937\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/httpListeners/azsmnet8027\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"azsmnet4263\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/probes/azsmnet4263\",\r\n \"etag\": \"W/\\\"b4e2511b-dda6-456b-a135-758337e6ce52\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"host\": \"probe.com\",\r\n \"path\": \"/path/path.htm\",\r\n \"interval\": 17,\r\n \"timeout\": 17,\r\n \"unhealthyThreshold\": 5,\r\n \"backendHttpSettings\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"sslPolicy\": {\r\n \"disabledSslProtocols\": [\r\n \"TLSv1_0\",\r\n \"TLSv1_1\"\r\n ]\r\n },\r\n \"webApplicationFirewallConfiguration\": {\r\n \"enabled\": true,\r\n \"firewallMode\": \"Prevention\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"disabledRuleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"rules\": [\r\n 981318,\r\n 981320\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1896,7 +1896,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:48:29 GMT" + "Sat, 25 Mar 2017 01:27:50 GMT" ], "Pragma": [ "no-cache" @@ -1905,7 +1905,7 @@ "chunked" ], "ETag": [ - "W/\"3c05cd1a-1677-40ec-8f47-dbfcbd78cf35\"" + "W/\"b4e2511b-dda6-456b-a135-758337e6ce52\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1915,38 +1915,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d673d73a-92ae-4b3a-9d6c-02264209cd0a" + "2d3c4ba2-4135-4892-b8a4-1c23d0642f5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14975" ], "x-ms-correlation-request-id": [ - "df5d74c4-9225-49c4-8482-a14d76b966a9" + "45693cb3-6770-42bd-8db4-4b02829477c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184829Z:df5d74c4-9225-49c4-8482-a14d76b966a9" + "WESTUS2:20170325T012751Z:45693cb3-6770-42bd-8db4-4b02829477c3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendhealth?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOS9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendhealth?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2NC9iYWNrZW5kaGVhbHRoP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed9426ad-82d7-4aa1-be55-a759346589cf" + "60eb410d-67be-49dc-9550-b47927892018" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "null", @@ -1964,13 +1964,13 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:39:49 GMT" + "Sat, 25 Mar 2017 01:19:39 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/b6b485d2-d161-4ebe-8012-f412458d37f9?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a32fed5e-d27e-4477-b693-0f6e7b78722f?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -1980,35 +1980,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b6b485d2-d161-4ebe-8012-f412458d37f9" + "a32fed5e-d27e-4477-b693-0f6e7b78722f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "c98de22d-d022-4587-b2d0-e6c4e9ee6f6c" + "f0937f91-dff4-4c29-acc8-fa8f21bc7fd5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T183950Z:c98de22d-d022-4587-b2d0-e6c4e9ee6f6c" + "WESTUS2:20170325T011939Z:f0937f91-dff4-4c29-acc8-fa8f21bc7fd5" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/b6b485d2-d161-4ebe-8012-f412458d37f9?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9iNmI0ODVkMi1kMTYxLTRlYmUtODAxMi1mNDEyNDU4ZDM3Zjk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a32fed5e-d27e-4477-b693-0f6e7b78722f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9uUmVzdWx0cy9hMzJmZWQ1ZS1kMjdlLTQ0NzctYjY5My0wZjZlN2I3ODcyMmY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"backendAddressPools\": [\r\n {\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet1047\"\r\n },\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet4293\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unhealthy\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Healthy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendHttpSettingsCollection/azsmnet8504\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Partial\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Partial\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"backendAddressPools\": [\r\n {\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet949\"\r\n },\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet1467\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unhealthy\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Healthy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendHttpSettingsCollection/azsmnet8901\"\r\n },\r\n \"servers\": [\r\n {\r\n \"address\": \"104.42.6.202\",\r\n \"health\": \"Unhealthy\"\r\n },\r\n {\r\n \"address\": \"23.99.1.115\",\r\n \"health\": \"Unhealthy\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2020,7 +2020,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:20 GMT" + "Sat, 25 Mar 2017 01:20:09 GMT" ], "Pragma": [ "no-cache" @@ -2029,7 +2029,7 @@ "chunked" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/b6b485d2-d161-4ebe-8012-f412458d37f9?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/a32fed5e-d27e-4477-b693-0f6e7b78722f?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2039,19 +2039,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b6b485d2-d161-4ebe-8012-f412458d37f9" + "a32fed5e-d27e-4477-b693-0f6e7b78722f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14998" ], "x-ms-correlation-request-id": [ - "c20ae109-f4fa-4cca-9f55-8d76d829f9e0" + "de4de023-6855-4ea0-ab71-7f78c356b72b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184020Z:c20ae109-f4fa-4cca-9f55-8d76d829f9e0" + "WESTUS2:20170325T012010Z:de4de023-6855-4ea0-ab71-7f78c356b72b" ] }, "StatusCode": 200 @@ -2063,17 +2063,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bf825d3-2576-4343-b0ad-408c3bca4759" + "380e6634-bbac-4844-9f8d-1e48a53b9422" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"OWASP_3.0\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets/\",\r\n \"type\": \"Microsoft.Network/applicationGatewayAvailableWafRuleSets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"3.0\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"REQUEST-910-IP-REPUTATION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 910011,\r\n \"description\": \"Rule 910011\"\r\n },\r\n {\r\n \"ruleId\": 910012,\r\n \"description\": \"Rule 910012\"\r\n },\r\n {\r\n \"ruleId\": 910000,\r\n \"description\": \"Request from Known Malicious Client (Based on previous traffic violations).\"\r\n },\r\n {\r\n \"ruleId\": 910100,\r\n \"description\": \"Client IP is from a HIGH Risk Country Location.\"\r\n },\r\n {\r\n \"ruleId\": 910120,\r\n \"description\": \"Rule 910120\"\r\n },\r\n {\r\n \"ruleId\": 910130,\r\n \"description\": \"Rule 910130\"\r\n },\r\n {\r\n \"ruleId\": 910150,\r\n \"description\": \"HTTP Blacklist match for search engine IP\"\r\n },\r\n {\r\n \"ruleId\": 910160,\r\n \"description\": \"HTTP Blacklist match for spammer IP\"\r\n },\r\n {\r\n \"ruleId\": 910170,\r\n \"description\": \"HTTP Blacklist match for suspicious IP\"\r\n },\r\n {\r\n \"ruleId\": 910180,\r\n \"description\": \"HTTP Blacklist match for harvester IP\"\r\n },\r\n {\r\n \"ruleId\": 910013,\r\n \"description\": \"Rule 910013\"\r\n },\r\n {\r\n \"ruleId\": 910014,\r\n \"description\": \"Rule 910014\"\r\n },\r\n {\r\n \"ruleId\": 910015,\r\n \"description\": \"Rule 910015\"\r\n },\r\n {\r\n \"ruleId\": 910016,\r\n \"description\": \"Rule 910016\"\r\n },\r\n {\r\n \"ruleId\": 910017,\r\n \"description\": \"Rule 910017\"\r\n },\r\n {\r\n \"ruleId\": 910018,\r\n \"description\": \"Rule 910018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-911-METHOD-ENFORCEMENT\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 911011,\r\n \"description\": \"Rule 911011\"\r\n },\r\n {\r\n \"ruleId\": 911012,\r\n \"description\": \"Rule 911012\"\r\n },\r\n {\r\n \"ruleId\": 911100,\r\n \"description\": \"Method is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 911013,\r\n \"description\": \"Rule 911013\"\r\n },\r\n {\r\n \"ruleId\": 911014,\r\n \"description\": \"Rule 911014\"\r\n },\r\n {\r\n \"ruleId\": 911015,\r\n \"description\": \"Rule 911015\"\r\n },\r\n {\r\n \"ruleId\": 911016,\r\n \"description\": \"Rule 911016\"\r\n },\r\n {\r\n \"ruleId\": 911017,\r\n \"description\": \"Rule 911017\"\r\n },\r\n {\r\n \"ruleId\": 911018,\r\n \"description\": \"Rule 911018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-912-DOS-PROTECTION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 912100,\r\n \"description\": \"Rule 912100\"\r\n },\r\n {\r\n \"ruleId\": 912012,\r\n \"description\": \"Rule 912012\"\r\n },\r\n {\r\n \"ruleId\": 912120,\r\n \"description\": \"Denial of Service (DoS) attack identified from %{tx.real_ip} (%{tx.dos_block_counter} hits since last alert)\"\r\n },\r\n {\r\n \"ruleId\": 912130,\r\n \"description\": \"Rule 912130\"\r\n },\r\n {\r\n \"ruleId\": 912140,\r\n \"description\": \"Rule 912140\"\r\n },\r\n {\r\n \"ruleId\": 912150,\r\n \"description\": \"Rule 912150\"\r\n },\r\n {\r\n \"ruleId\": 912160,\r\n \"description\": \"Rule 912160\"\r\n },\r\n {\r\n \"ruleId\": 912170,\r\n \"description\": \"Potential Denial of Service (DoS) Attack from %{tx.real_ip} - # of Request Bursts: %{ip.dos_burst_counter}\"\r\n },\r\n {\r\n \"ruleId\": 912013,\r\n \"description\": \"Rule 912013\"\r\n },\r\n {\r\n \"ruleId\": 912014,\r\n \"description\": \"Rule 912014\"\r\n },\r\n {\r\n \"ruleId\": 912019,\r\n \"description\": \"Rule 912019\"\r\n },\r\n {\r\n \"ruleId\": 912171,\r\n \"description\": \"Potential Denial of Service (DoS) Attack from %{tx.real_ip} - # of Request Bursts: %{ip.dos_burst_counter}\"\r\n },\r\n {\r\n \"ruleId\": 912015,\r\n \"description\": \"Rule 912015\"\r\n },\r\n {\r\n \"ruleId\": 912016,\r\n \"description\": \"Rule 912016\"\r\n },\r\n {\r\n \"ruleId\": 912017,\r\n \"description\": \"Rule 912017\"\r\n },\r\n {\r\n \"ruleId\": 912018,\r\n \"description\": \"Rule 912018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-913-SCANNER-DETECTION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 913011,\r\n \"description\": \"Rule 913011\"\r\n },\r\n {\r\n \"ruleId\": 913012,\r\n \"description\": \"Rule 913012\"\r\n },\r\n {\r\n \"ruleId\": 913100,\r\n \"description\": \"Found User-Agent associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913110,\r\n \"description\": \"Found request header associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913120,\r\n \"description\": \"Found request filename/argument associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913013,\r\n \"description\": \"Rule 913013\"\r\n },\r\n {\r\n \"ruleId\": 913014,\r\n \"description\": \"Rule 913014\"\r\n },\r\n {\r\n \"ruleId\": 913101,\r\n \"description\": \"Found User-Agent associated with scripting/generic HTTP client\"\r\n },\r\n {\r\n \"ruleId\": 913102,\r\n \"description\": \"Found User-Agent associated with web crawler/bot\"\r\n },\r\n {\r\n \"ruleId\": 913015,\r\n \"description\": \"Rule 913015\"\r\n },\r\n {\r\n \"ruleId\": 913016,\r\n \"description\": \"Rule 913016\"\r\n },\r\n {\r\n \"ruleId\": 913017,\r\n \"description\": \"Rule 913017\"\r\n },\r\n {\r\n \"ruleId\": 913018,\r\n \"description\": \"Rule 913018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-920-PROTOCOL-ENFORCEMENT\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 920011,\r\n \"description\": \"Rule 920011\"\r\n },\r\n {\r\n \"ruleId\": 920012,\r\n \"description\": \"Rule 920012\"\r\n },\r\n {\r\n \"ruleId\": 920100,\r\n \"description\": \"Invalid HTTP Request Line\"\r\n },\r\n {\r\n \"ruleId\": 920130,\r\n \"description\": \"Failed to parse request body.\"\r\n },\r\n {\r\n \"ruleId\": 920140,\r\n \"description\": \"Multipart request body failed strict validation: PE %{REQBODY_PROCESSOR_ERROR}, BQ %{MULTIPART_BOUNDARY_QUOTED}, BW %{MULTIPART_BOUNDARY_WHITESPACE}, DB %{MULTIPART_DATA_BEFORE}, DA %{MULTIPART_DATA_AFTER}, HF %{MULTIPART_HEADER_FOLDING}, LF %{MULTIPART_LF_LINE}, SM %{MULTIPART_SEMICOLON_MISSING}, IQ %{MULTIPART_INVALID_QUOTING}, IH %{MULTIPART_INVALID_HEADER_FOLDING}, FLE %{MULTIPART_FILE_LIMIT_EXCEEDED}\"\r\n },\r\n {\r\n \"ruleId\": 920160,\r\n \"description\": \"Content-Length HTTP header is not numeric.\"\r\n },\r\n {\r\n \"ruleId\": 920170,\r\n \"description\": \"GET or HEAD Request with Body Content.\"\r\n },\r\n {\r\n \"ruleId\": 920180,\r\n \"description\": \"POST request missing Content-Length Header.\"\r\n },\r\n {\r\n \"ruleId\": 920190,\r\n \"description\": \"Range: Invalid Last Byte Value.\"\r\n },\r\n {\r\n \"ruleId\": 920210,\r\n \"description\": \"Multiple/Conflicting Connection Header Data Found.\"\r\n },\r\n {\r\n \"ruleId\": 920220,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920240,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920250,\r\n \"description\": \"UTF8 Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920260,\r\n \"description\": \"Unicode Full/Half Width Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920270,\r\n \"description\": \"Invalid character in request (null character)\"\r\n },\r\n {\r\n \"ruleId\": 920280,\r\n \"description\": \"Request Missing a Host Header\"\r\n },\r\n {\r\n \"ruleId\": 920290,\r\n \"description\": \"Empty Host Header\"\r\n },\r\n {\r\n \"ruleId\": 920310,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920311,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920330,\r\n \"description\": \"Empty User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 920340,\r\n \"description\": \"Request Containing Content, but Missing Content-Type header\"\r\n },\r\n {\r\n \"ruleId\": 920350,\r\n \"description\": \"Host header is a numeric IP address\"\r\n },\r\n {\r\n \"ruleId\": 920380,\r\n \"description\": \"Too many arguments in request\"\r\n },\r\n {\r\n \"ruleId\": 920360,\r\n \"description\": \"Argument name too long\"\r\n },\r\n {\r\n \"ruleId\": 920370,\r\n \"description\": \"Argument value too long\"\r\n },\r\n {\r\n \"ruleId\": 920390,\r\n \"description\": \"Total arguments size exceeded\"\r\n },\r\n {\r\n \"ruleId\": 920400,\r\n \"description\": \"Uploaded file size too large\"\r\n },\r\n {\r\n \"ruleId\": 920410,\r\n \"description\": \"Total uploaded files size too large\"\r\n },\r\n {\r\n \"ruleId\": 920420,\r\n \"description\": \"Request content type is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 920430,\r\n \"description\": \"HTTP protocol version is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 920440,\r\n \"description\": \"URL file extension is restricted by policy\"\r\n },\r\n {\r\n \"ruleId\": 920450,\r\n \"description\": \"HTTP header is restricted by policy (%{MATCHED_VAR})\"\r\n },\r\n {\r\n \"ruleId\": 920013,\r\n \"description\": \"Rule 920013\"\r\n },\r\n {\r\n \"ruleId\": 920014,\r\n \"description\": \"Rule 920014\"\r\n },\r\n {\r\n \"ruleId\": 920200,\r\n \"description\": \"Range: Too many fields (6 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920201,\r\n \"description\": \"Range: Too many fields for pdf request (35 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920230,\r\n \"description\": \"Multiple URL Encoding Detected\"\r\n },\r\n {\r\n \"ruleId\": 920300,\r\n \"description\": \"Request Missing an Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920271,\r\n \"description\": \"Invalid character in request (non printable characters)\"\r\n },\r\n {\r\n \"ruleId\": 920320,\r\n \"description\": \"Missing User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 920015,\r\n \"description\": \"Rule 920015\"\r\n },\r\n {\r\n \"ruleId\": 920016,\r\n \"description\": \"Rule 920016\"\r\n },\r\n {\r\n \"ruleId\": 920272,\r\n \"description\": \"Invalid character in request (outside of printable chars below ascii 127)\"\r\n },\r\n {\r\n \"ruleId\": 920017,\r\n \"description\": \"Rule 920017\"\r\n },\r\n {\r\n \"ruleId\": 920018,\r\n \"description\": \"Rule 920018\"\r\n },\r\n {\r\n \"ruleId\": 920202,\r\n \"description\": \"Range: Too many fields for pdf request (6 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920273,\r\n \"description\": \"Invalid character in request (outside of very strict set)\"\r\n },\r\n {\r\n \"ruleId\": 920274,\r\n \"description\": \"Invalid character in request headers (outside of very strict set)\"\r\n },\r\n {\r\n \"ruleId\": 920460,\r\n \"description\": \"Rule 920460\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-921-PROTOCOL-ATTACK\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 921011,\r\n \"description\": \"Rule 921011\"\r\n },\r\n {\r\n \"ruleId\": 921012,\r\n \"description\": \"Rule 921012\"\r\n },\r\n {\r\n \"ruleId\": 921100,\r\n \"description\": \"HTTP Request Smuggling Attack.\"\r\n },\r\n {\r\n \"ruleId\": 921110,\r\n \"description\": \"HTTP Request Smuggling Attack\"\r\n },\r\n {\r\n \"ruleId\": 921120,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 921130,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 921140,\r\n \"description\": \"HTTP Header Injection Attack via headers\"\r\n },\r\n {\r\n \"ruleId\": 921150,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF detected)\"\r\n },\r\n {\r\n \"ruleId\": 921160,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF and header-name detected)\"\r\n },\r\n {\r\n \"ruleId\": 921013,\r\n \"description\": \"Rule 921013\"\r\n },\r\n {\r\n \"ruleId\": 921014,\r\n \"description\": \"Rule 921014\"\r\n },\r\n {\r\n \"ruleId\": 921151,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF detected)\"\r\n },\r\n {\r\n \"ruleId\": 921015,\r\n \"description\": \"Rule 921015\"\r\n },\r\n {\r\n \"ruleId\": 921016,\r\n \"description\": \"Rule 921016\"\r\n },\r\n {\r\n \"ruleId\": 921170,\r\n \"description\": \"Rule 921170\"\r\n },\r\n {\r\n \"ruleId\": 921180,\r\n \"description\": \"HTTP Parameter Pollution (%{TX.1})\"\r\n },\r\n {\r\n \"ruleId\": 921017,\r\n \"description\": \"Rule 921017\"\r\n },\r\n {\r\n \"ruleId\": 921018,\r\n \"description\": \"Rule 921018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-930-APPLICATION-ATTACK-LFI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 930011,\r\n \"description\": \"Rule 930011\"\r\n },\r\n {\r\n \"ruleId\": 930012,\r\n \"description\": \"Rule 930012\"\r\n },\r\n {\r\n \"ruleId\": 930100,\r\n \"description\": \"Path Traversal Attack (/../)\"\r\n },\r\n {\r\n \"ruleId\": 930110,\r\n \"description\": \"Path Traversal Attack (/../)\"\r\n },\r\n {\r\n \"ruleId\": 930120,\r\n \"description\": \"OS File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 930130,\r\n \"description\": \"Restricted File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 930013,\r\n \"description\": \"Rule 930013\"\r\n },\r\n {\r\n \"ruleId\": 930014,\r\n \"description\": \"Rule 930014\"\r\n },\r\n {\r\n \"ruleId\": 930015,\r\n \"description\": \"Rule 930015\"\r\n },\r\n {\r\n \"ruleId\": 930016,\r\n \"description\": \"Rule 930016\"\r\n },\r\n {\r\n \"ruleId\": 930017,\r\n \"description\": \"Rule 930017\"\r\n },\r\n {\r\n \"ruleId\": 930018,\r\n \"description\": \"Rule 930018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-931-APPLICATION-ATTACK-RFI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 931011,\r\n \"description\": \"Rule 931011\"\r\n },\r\n {\r\n \"ruleId\": 931012,\r\n \"description\": \"Rule 931012\"\r\n },\r\n {\r\n \"ruleId\": 931100,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Parameter using IP Address\"\r\n },\r\n {\r\n \"ruleId\": 931110,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Common RFI Vulnerable Parameter Name used w/URL Payload\"\r\n },\r\n {\r\n \"ruleId\": 931120,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Payload Used w/Trailing Question Mark Character (?)\"\r\n },\r\n {\r\n \"ruleId\": 931013,\r\n \"description\": \"Rule 931013\"\r\n },\r\n {\r\n \"ruleId\": 931014,\r\n \"description\": \"Rule 931014\"\r\n },\r\n {\r\n \"ruleId\": 931130,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Off-Domain Reference/Link\"\r\n },\r\n {\r\n \"ruleId\": 931015,\r\n \"description\": \"Rule 931015\"\r\n },\r\n {\r\n \"ruleId\": 931016,\r\n \"description\": \"Rule 931016\"\r\n },\r\n {\r\n \"ruleId\": 931017,\r\n \"description\": \"Rule 931017\"\r\n },\r\n {\r\n \"ruleId\": 931018,\r\n \"description\": \"Rule 931018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-932-APPLICATION-ATTACK-RCE\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 932011,\r\n \"description\": \"Rule 932011\"\r\n },\r\n {\r\n \"ruleId\": 932012,\r\n \"description\": \"Rule 932012\"\r\n },\r\n {\r\n \"ruleId\": 932120,\r\n \"description\": \"Remote Command Execution: Windows PowerShell Command Found\"\r\n },\r\n {\r\n \"ruleId\": 932130,\r\n \"description\": \"Remote Command Execution: Unix Shell Expression Found\"\r\n },\r\n {\r\n \"ruleId\": 932140,\r\n \"description\": \"Remote Command Execution: Windows FOR/IF Command Found\"\r\n },\r\n {\r\n \"ruleId\": 932160,\r\n \"description\": \"Remote Command Execution: Unix Shell Code Found\"\r\n },\r\n {\r\n \"ruleId\": 932170,\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\"\r\n },\r\n {\r\n \"ruleId\": 932171,\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\"\r\n },\r\n {\r\n \"ruleId\": 932013,\r\n \"description\": \"Rule 932013\"\r\n },\r\n {\r\n \"ruleId\": 932014,\r\n \"description\": \"Rule 932014\"\r\n },\r\n {\r\n \"ruleId\": 932015,\r\n \"description\": \"Rule 932015\"\r\n },\r\n {\r\n \"ruleId\": 932016,\r\n \"description\": \"Rule 932016\"\r\n },\r\n {\r\n \"ruleId\": 932017,\r\n \"description\": \"Rule 932017\"\r\n },\r\n {\r\n \"ruleId\": 932018,\r\n \"description\": \"Rule 932018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-933-APPLICATION-ATTACK-PHP\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 933011,\r\n \"description\": \"Rule 933011\"\r\n },\r\n {\r\n \"ruleId\": 933012,\r\n \"description\": \"Rule 933012\"\r\n },\r\n {\r\n \"ruleId\": 933100,\r\n \"description\": \"PHP Injection Attack: Opening/Closing Tag Found\"\r\n },\r\n {\r\n \"ruleId\": 933110,\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\"\r\n },\r\n {\r\n \"ruleId\": 933120,\r\n \"description\": \"PHP Injection Attack: Configuration Directive Found\"\r\n },\r\n {\r\n \"ruleId\": 933130,\r\n \"description\": \"PHP Injection Attack: Variables Found\"\r\n },\r\n {\r\n \"ruleId\": 933150,\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Name Found\"\r\n },\r\n {\r\n \"ruleId\": 933160,\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933180,\r\n \"description\": \"PHP Injection Attack: Variable Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933013,\r\n \"description\": \"Rule 933013\"\r\n },\r\n {\r\n \"ruleId\": 933014,\r\n \"description\": \"Rule 933014\"\r\n },\r\n {\r\n \"ruleId\": 933151,\r\n \"description\": \"PHP Injection Attack: Medium-Risk PHP Function Name Found\"\r\n },\r\n {\r\n \"ruleId\": 933015,\r\n \"description\": \"Rule 933015\"\r\n },\r\n {\r\n \"ruleId\": 933016,\r\n \"description\": \"Rule 933016\"\r\n },\r\n {\r\n \"ruleId\": 933131,\r\n \"description\": \"PHP Injection Attack: Variables Found\"\r\n },\r\n {\r\n \"ruleId\": 933161,\r\n \"description\": \"PHP Injection Attack: Low-Value PHP Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933111,\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\"\r\n },\r\n {\r\n \"ruleId\": 933017,\r\n \"description\": \"Rule 933017\"\r\n },\r\n {\r\n \"ruleId\": 933018,\r\n \"description\": \"Rule 933018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-941-APPLICATION-ATTACK-XSS\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 941011,\r\n \"description\": \"Rule 941011\"\r\n },\r\n {\r\n \"ruleId\": 941012,\r\n \"description\": \"Rule 941012\"\r\n },\r\n {\r\n \"ruleId\": 941100,\r\n \"description\": \"XSS Attack Detected via libinjection\"\r\n },\r\n {\r\n \"ruleId\": 941110,\r\n \"description\": \"XSS Filter - Category 1: Script Tag Vector\"\r\n },\r\n {\r\n \"ruleId\": 941130,\r\n \"description\": \"XSS Filter - Category 3: Attribute Vector\"\r\n },\r\n {\r\n \"ruleId\": 941140,\r\n \"description\": \"XSS Filter - Category 4: Javascript URI Vector\"\r\n },\r\n {\r\n \"ruleId\": 941150,\r\n \"description\": \"XSS Filter - Category 5: Disallowed HTML Attributes\"\r\n },\r\n {\r\n \"ruleId\": 941180,\r\n \"description\": \"Node-Validator Blacklist Keywords\"\r\n },\r\n {\r\n \"ruleId\": 941190,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941200,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941210,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941220,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941230,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941240,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941260,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941270,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941280,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941290,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941300,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941310,\r\n \"description\": \"US-ASCII Malformed Encoding XSS Filter - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941350,\r\n \"description\": \"UTF-7 Encoding IE XSS - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941013,\r\n \"description\": \"Rule 941013\"\r\n },\r\n {\r\n \"ruleId\": 941014,\r\n \"description\": \"Rule 941014\"\r\n },\r\n {\r\n \"ruleId\": 941320,\r\n \"description\": \"Possible XSS Attack Detected - HTML Tag Handler\"\r\n },\r\n {\r\n \"ruleId\": 941015,\r\n \"description\": \"Rule 941015\"\r\n },\r\n {\r\n \"ruleId\": 941016,\r\n \"description\": \"Rule 941016\"\r\n },\r\n {\r\n \"ruleId\": 941017,\r\n \"description\": \"Rule 941017\"\r\n },\r\n {\r\n \"ruleId\": 941018,\r\n \"description\": \"Rule 941018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-942-APPLICATION-ATTACK-SQLI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 942011,\r\n \"description\": \"Rule 942011\"\r\n },\r\n {\r\n \"ruleId\": 942012,\r\n \"description\": \"Rule 942012\"\r\n },\r\n {\r\n \"ruleId\": 942100,\r\n \"description\": \"SQL Injection Attack Detected via libinjection\"\r\n },\r\n {\r\n \"ruleId\": 942140,\r\n \"description\": \"SQL Injection Attack: Common DB Names Detected\"\r\n },\r\n {\r\n \"ruleId\": 942160,\r\n \"description\": \"Detects blind sqli tests using sleep() or benchmark().\"\r\n },\r\n {\r\n \"ruleId\": 942170,\r\n \"description\": \"Detects SQL benchmark and sleep injection attempts including conditional queries\"\r\n },\r\n {\r\n \"ruleId\": 942230,\r\n \"description\": \"Detects conditional SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 942270,\r\n \"description\": \"Looking for basic sql injection. Common attack string for mysql, oracle and others.\"\r\n },\r\n {\r\n \"ruleId\": 942290,\r\n \"description\": \"Finds basic MongoDB SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 942320,\r\n \"description\": \"Detects MySQL and PostgreSQL stored procedure/function injections\"\r\n },\r\n {\r\n \"ruleId\": 942350,\r\n \"description\": \"Detects MySQL UDF injection and other data/structure manipulation attempts\"\r\n },\r\n {\r\n \"ruleId\": 942013,\r\n \"description\": \"Rule 942013\"\r\n },\r\n {\r\n \"ruleId\": 942014,\r\n \"description\": \"Rule 942014\"\r\n },\r\n {\r\n \"ruleId\": 942150,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942410,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942440,\r\n \"description\": \"SQL Comment Sequence Detected.\"\r\n },\r\n {\r\n \"ruleId\": 942450,\r\n \"description\": \"SQL Hex Encoding Identified\"\r\n },\r\n {\r\n \"ruleId\": 942015,\r\n \"description\": \"Rule 942015\"\r\n },\r\n {\r\n \"ruleId\": 942016,\r\n \"description\": \"Rule 942016\"\r\n },\r\n {\r\n \"ruleId\": 942251,\r\n \"description\": \"Detects HAVING injections\"\r\n },\r\n {\r\n \"ruleId\": 942460,\r\n \"description\": \"Meta-Character Anomaly Detection Alert - Repetitive Non-Word Characters\"\r\n },\r\n {\r\n \"ruleId\": 942017,\r\n \"description\": \"Rule 942017\"\r\n },\r\n {\r\n \"ruleId\": 942018,\r\n \"description\": \"Rule 942018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-943-APPLICATION-ATTACK-SESSION-FIXATION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 943011,\r\n \"description\": \"Rule 943011\"\r\n },\r\n {\r\n \"ruleId\": 943012,\r\n \"description\": \"Rule 943012\"\r\n },\r\n {\r\n \"ruleId\": 943100,\r\n \"description\": \"Possible Session Fixation Attack: Setting Cookie Values in HTML\"\r\n },\r\n {\r\n \"ruleId\": 943110,\r\n \"description\": \"Possible Session Fixation Attack: SessionID Parameter Name with Off-Domain Referer\"\r\n },\r\n {\r\n \"ruleId\": 943120,\r\n \"description\": \"Possible Session Fixation Attack: SessionID Parameter Name with No Referer\"\r\n },\r\n {\r\n \"ruleId\": 943013,\r\n \"description\": \"Rule 943013\"\r\n },\r\n {\r\n \"ruleId\": 943014,\r\n \"description\": \"Rule 943014\"\r\n },\r\n {\r\n \"ruleId\": 943015,\r\n \"description\": \"Rule 943015\"\r\n },\r\n {\r\n \"ruleId\": 943016,\r\n \"description\": \"Rule 943016\"\r\n },\r\n {\r\n \"ruleId\": 943017,\r\n \"description\": \"Rule 943017\"\r\n },\r\n {\r\n \"ruleId\": 943018,\r\n \"description\": \"Rule 943018\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"OWASP_2.2.9\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets/\",\r\n \"type\": \"Microsoft.Network/applicationGatewayAvailableWafRuleSets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_20_protocol_violations\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960911,\r\n \"description\": \"Invalid HTTP Request Line\"\r\n },\r\n {\r\n \"ruleId\": 981227,\r\n \"description\": \"Apache Error: Invalid URI in Request.\"\r\n },\r\n {\r\n \"ruleId\": 960912,\r\n \"description\": \"Failed to parse request body.\"\r\n },\r\n {\r\n \"ruleId\": 960914,\r\n \"description\": \"Multipart request body failed strict validation: PE %{REQBODY_PROCESSOR_ERROR}, BQ %{MULTIPART_BOUNDARY_QUOTED}, BW %{MULTIPART_BOUNDARY_WHITESPACE}, DB %{MULTIPART_DATA_BEFORE}, DA %{MULTIPART_DATA_AFTER}, HF %{MULTIPART_HEADER_FOLDING}, LF %{MULTIPART_LF_LINE}, SM %{MULTIPART_SEMICOLON_MISSING}, IQ %{MULTIPART_INVALID_QUOTING}, IH %{MULTIPART_INVALID_HEADER_FOLDING}, FLE %{MULTIPART_FILE_LIMIT_EXCEEDED}\"\r\n },\r\n {\r\n \"ruleId\": 960915,\r\n \"description\": \"Multipart parser detected a possible unmatched boundary.\"\r\n },\r\n {\r\n \"ruleId\": 960016,\r\n \"description\": \"Content-Length HTTP header is not numeric.\"\r\n },\r\n {\r\n \"ruleId\": 960011,\r\n \"description\": \"GET or HEAD Request with Body Content.\"\r\n },\r\n {\r\n \"ruleId\": 960012,\r\n \"description\": \"POST request missing Content-Length Header.\"\r\n },\r\n {\r\n \"ruleId\": 960902,\r\n \"description\": \"Invalid Use of Identity Encoding.\"\r\n },\r\n {\r\n \"ruleId\": 960022,\r\n \"description\": \"Expect Header Not Allowed for HTTP 1.0.\"\r\n },\r\n {\r\n \"ruleId\": 960020,\r\n \"description\": \"Pragma Header requires Cache-Control Header for HTTP/1.1 requests.\"\r\n },\r\n {\r\n \"ruleId\": 958291,\r\n \"description\": \"Range: field exists and begins with 0.\"\r\n },\r\n {\r\n \"ruleId\": 958230,\r\n \"description\": \"Range: Invalid Last Byte Value.\"\r\n },\r\n {\r\n \"ruleId\": 958295,\r\n \"description\": \"Multiple/Conflicting Connection Header Data Found.\"\r\n },\r\n {\r\n \"ruleId\": 950107,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950109,\r\n \"description\": \"Multiple URL Encoding Detected\"\r\n },\r\n {\r\n \"ruleId\": 950108,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950801,\r\n \"description\": \"UTF8 Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950116,\r\n \"description\": \"Unicode Full/Half Width Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 960901,\r\n \"description\": \"Invalid character in request\"\r\n },\r\n {\r\n \"ruleId\": 960018,\r\n \"description\": \"Invalid character in request\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_21_protocol_anomalies\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960008,\r\n \"description\": \"Request Missing a Host Header\"\r\n },\r\n {\r\n \"ruleId\": 960007,\r\n \"description\": \"Empty Host Header\"\r\n },\r\n {\r\n \"ruleId\": 960015,\r\n \"description\": \"Request Missing an Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 960021,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 960009,\r\n \"description\": \"Request Missing a User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 960006,\r\n \"description\": \"Empty User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 960904,\r\n \"description\": \"Request Containing Content, but Missing Content-Type header\"\r\n },\r\n {\r\n \"ruleId\": 960017,\r\n \"description\": \"Host header is a numeric IP address\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_23_request_limits\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960209,\r\n \"description\": \"Argument name too long\"\r\n },\r\n {\r\n \"ruleId\": 960208,\r\n \"description\": \"Argument value too long\"\r\n },\r\n {\r\n \"ruleId\": 960335,\r\n \"description\": \"Too many arguments in request\"\r\n },\r\n {\r\n \"ruleId\": 960341,\r\n \"description\": \"Total arguments size exceeded\"\r\n },\r\n {\r\n \"ruleId\": 960342,\r\n \"description\": \"Uploaded file size too large\"\r\n },\r\n {\r\n \"ruleId\": 960343,\r\n \"description\": \"Total uploaded files size too large\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_30_http_policy\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960032,\r\n \"description\": \"Method is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960010,\r\n \"description\": \"Request content type is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960034,\r\n \"description\": \"HTTP protocol version is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960035,\r\n \"description\": \"URL file extension is restricted by policy\"\r\n },\r\n {\r\n \"ruleId\": 960038,\r\n \"description\": \"HTTP header is restricted by policy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 990002,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990901,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990902,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990012,\r\n \"description\": \"Rogue web site crawler\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_40_generic_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960024,\r\n \"description\": \"Meta-Character Anomaly Detection Alert - Repetative Non-Word Characters\"\r\n },\r\n {\r\n \"ruleId\": 950008,\r\n \"description\": \"Injection of Undocumented ColdFusion Tags\"\r\n },\r\n {\r\n \"ruleId\": 950010,\r\n \"description\": \"LDAP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950011,\r\n \"description\": \"SSI injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950018,\r\n \"description\": \"Universal PDF XSS URL Detected.\"\r\n },\r\n {\r\n \"ruleId\": 950019,\r\n \"description\": \"Email Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950012,\r\n \"description\": \"HTTP Request Smuggling Attack.\"\r\n },\r\n {\r\n \"ruleId\": 950910,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 950911,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 950117,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950118,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950119,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950120,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Off-Domain Reference/Link\"\r\n },\r\n {\r\n \"ruleId\": 981133,\r\n \"description\": \"Rule 981133\"\r\n },\r\n {\r\n \"ruleId\": 981134,\r\n \"description\": \"Rule 981134\"\r\n },\r\n {\r\n \"ruleId\": 950009,\r\n \"description\": \"Session Fixation Attack\"\r\n },\r\n {\r\n \"ruleId\": 950003,\r\n \"description\": \"Session Fixation\"\r\n },\r\n {\r\n \"ruleId\": 950000,\r\n \"description\": \"Session Fixation\"\r\n },\r\n {\r\n \"ruleId\": 950005,\r\n \"description\": \"Remote File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950002,\r\n \"description\": \"System Command Access\"\r\n },\r\n {\r\n \"ruleId\": 950006,\r\n \"description\": \"System Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 959151,\r\n \"description\": \"PHP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 958976,\r\n \"description\": \"PHP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 958977,\r\n \"description\": \"PHP Injection Attack\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 981231,\r\n \"description\": \"SQL Comment Sequence Detected.\"\r\n },\r\n {\r\n \"ruleId\": 981260,\r\n \"description\": \"SQL Hex Encoding Identified\"\r\n },\r\n {\r\n \"ruleId\": 981320,\r\n \"description\": \"SQL Injection Attack: Common DB Names Detected\"\r\n },\r\n {\r\n \"ruleId\": 981300,\r\n \"description\": \"Rule 981300\"\r\n },\r\n {\r\n \"ruleId\": 981301,\r\n \"description\": \"Rule 981301\"\r\n },\r\n {\r\n \"ruleId\": 981302,\r\n \"description\": \"Rule 981302\"\r\n },\r\n {\r\n \"ruleId\": 981303,\r\n \"description\": \"Rule 981303\"\r\n },\r\n {\r\n \"ruleId\": 981304,\r\n \"description\": \"Rule 981304\"\r\n },\r\n {\r\n \"ruleId\": 981305,\r\n \"description\": \"Rule 981305\"\r\n },\r\n {\r\n \"ruleId\": 981306,\r\n \"description\": \"Rule 981306\"\r\n },\r\n {\r\n \"ruleId\": 981307,\r\n \"description\": \"Rule 981307\"\r\n },\r\n {\r\n \"ruleId\": 981308,\r\n \"description\": \"Rule 981308\"\r\n },\r\n {\r\n \"ruleId\": 981309,\r\n \"description\": \"Rule 981309\"\r\n },\r\n {\r\n \"ruleId\": 981310,\r\n \"description\": \"Rule 981310\"\r\n },\r\n {\r\n \"ruleId\": 981311,\r\n \"description\": \"Rule 981311\"\r\n },\r\n {\r\n \"ruleId\": 981312,\r\n \"description\": \"Rule 981312\"\r\n },\r\n {\r\n \"ruleId\": 981313,\r\n \"description\": \"Rule 981313\"\r\n },\r\n {\r\n \"ruleId\": 981314,\r\n \"description\": \"Rule 981314\"\r\n },\r\n {\r\n \"ruleId\": 981315,\r\n \"description\": \"Rule 981315\"\r\n },\r\n {\r\n \"ruleId\": 981316,\r\n \"description\": \"Rule 981316\"\r\n },\r\n {\r\n \"ruleId\": 981317,\r\n \"description\": \"SQL SELECT Statement Anomaly Detection Alert\"\r\n },\r\n {\r\n \"ruleId\": 950007,\r\n \"description\": \"Blind SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950001,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950908,\r\n \"description\": \"SQL Injection Attack.\"\r\n },\r\n {\r\n \"ruleId\": 959073,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 981272,\r\n \"description\": \"Detects blind sqli tests using sleep() or benchmark().\"\r\n },\r\n {\r\n \"ruleId\": 981250,\r\n \"description\": \"Detects SQL benchmark and sleep injection attempts including conditional queries\"\r\n },\r\n {\r\n \"ruleId\": 981241,\r\n \"description\": \"Detects conditional SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 981276,\r\n \"description\": \"Looking for basic sql injection. Common attack string for mysql, oracle and others.\"\r\n },\r\n {\r\n \"ruleId\": 981270,\r\n \"description\": \"Finds basic MongoDB SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 981253,\r\n \"description\": \"Detects MySQL and PostgreSQL stored procedure/function injections\"\r\n },\r\n {\r\n \"ruleId\": 981251,\r\n \"description\": \"Detects MySQL UDF injection and other data/structure manipulation attempts\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_41_xss_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 973336,\r\n \"description\": \"XSS Filter - Category 1: Script Tag Vector\"\r\n },\r\n {\r\n \"ruleId\": 973338,\r\n \"description\": \"XSS Filter - Category 3: Javascript URI Vector\"\r\n },\r\n {\r\n \"ruleId\": 981136,\r\n \"description\": \"Rule 981136\"\r\n },\r\n {\r\n \"ruleId\": 981018,\r\n \"description\": \"Rule 981018\"\r\n },\r\n {\r\n \"ruleId\": 958016,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958414,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958032,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958026,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958027,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958054,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958418,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958034,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958019,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958013,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958408,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958012,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958423,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958002,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958017,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958007,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958047,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958410,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958415,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958022,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958405,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958419,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958028,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958057,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958031,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958006,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958033,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958038,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958409,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958001,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958005,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958404,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958023,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958010,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958411,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958422,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958036,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958000,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958018,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958406,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958040,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958052,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958037,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958049,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958030,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958041,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958416,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958024,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958059,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958417,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958020,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958045,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958004,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958421,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958009,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958025,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958413,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958051,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958420,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958407,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958056,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958011,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958412,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958008,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958046,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958039,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958003,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 973300,\r\n \"description\": \"Possible XSS Attack Detected - HTML Tag Handler\"\r\n },\r\n {\r\n \"ruleId\": 973301,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973302,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973303,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973304,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973305,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973306,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973307,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973308,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973309,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973311,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973313,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973314,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973331,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973315,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973330,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973327,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973326,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973346,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973345,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973324,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973323,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973348,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973321,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973320,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973318,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973317,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973329,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973328,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_42_tight_security\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 950103,\r\n \"description\": \"Path Traversal Attack\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_45_trojans\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 950110,\r\n \"description\": \"Backdoor access\"\r\n },\r\n {\r\n \"ruleId\": 950921,\r\n \"description\": \"Backdoor access\"\r\n },\r\n {\r\n \"ruleId\": 950922,\r\n \"description\": \"Backdoor access\"\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\": \"OWASP_3.0\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets/\",\r\n \"type\": \"Microsoft.Network/applicationGatewayAvailableWafRuleSets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"3.0\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"REQUEST-910-IP-REPUTATION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 910011,\r\n \"description\": \"Rule 910011\"\r\n },\r\n {\r\n \"ruleId\": 910012,\r\n \"description\": \"Rule 910012\"\r\n },\r\n {\r\n \"ruleId\": 910000,\r\n \"description\": \"Request from Known Malicious Client (Based on previous traffic violations).\"\r\n },\r\n {\r\n \"ruleId\": 910100,\r\n \"description\": \"Client IP is from a HIGH Risk Country Location.\"\r\n },\r\n {\r\n \"ruleId\": 910120,\r\n \"description\": \"Rule 910120\"\r\n },\r\n {\r\n \"ruleId\": 910130,\r\n \"description\": \"Rule 910130\"\r\n },\r\n {\r\n \"ruleId\": 910150,\r\n \"description\": \"HTTP Blacklist match for search engine IP\"\r\n },\r\n {\r\n \"ruleId\": 910160,\r\n \"description\": \"HTTP Blacklist match for spammer IP\"\r\n },\r\n {\r\n \"ruleId\": 910170,\r\n \"description\": \"HTTP Blacklist match for suspicious IP\"\r\n },\r\n {\r\n \"ruleId\": 910180,\r\n \"description\": \"HTTP Blacklist match for harvester IP\"\r\n },\r\n {\r\n \"ruleId\": 910013,\r\n \"description\": \"Rule 910013\"\r\n },\r\n {\r\n \"ruleId\": 910014,\r\n \"description\": \"Rule 910014\"\r\n },\r\n {\r\n \"ruleId\": 910015,\r\n \"description\": \"Rule 910015\"\r\n },\r\n {\r\n \"ruleId\": 910016,\r\n \"description\": \"Rule 910016\"\r\n },\r\n {\r\n \"ruleId\": 910017,\r\n \"description\": \"Rule 910017\"\r\n },\r\n {\r\n \"ruleId\": 910018,\r\n \"description\": \"Rule 910018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-911-METHOD-ENFORCEMENT\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 911011,\r\n \"description\": \"Rule 911011\"\r\n },\r\n {\r\n \"ruleId\": 911012,\r\n \"description\": \"Rule 911012\"\r\n },\r\n {\r\n \"ruleId\": 911100,\r\n \"description\": \"Method is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 911013,\r\n \"description\": \"Rule 911013\"\r\n },\r\n {\r\n \"ruleId\": 911014,\r\n \"description\": \"Rule 911014\"\r\n },\r\n {\r\n \"ruleId\": 911015,\r\n \"description\": \"Rule 911015\"\r\n },\r\n {\r\n \"ruleId\": 911016,\r\n \"description\": \"Rule 911016\"\r\n },\r\n {\r\n \"ruleId\": 911017,\r\n \"description\": \"Rule 911017\"\r\n },\r\n {\r\n \"ruleId\": 911018,\r\n \"description\": \"Rule 911018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-912-DOS-PROTECTION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 912100,\r\n \"description\": \"Rule 912100\"\r\n },\r\n {\r\n \"ruleId\": 912012,\r\n \"description\": \"Rule 912012\"\r\n },\r\n {\r\n \"ruleId\": 912120,\r\n \"description\": \"Denial of Service (DoS) attack identified from %{tx.real_ip} (%{tx.dos_block_counter} hits since last alert)\"\r\n },\r\n {\r\n \"ruleId\": 912130,\r\n \"description\": \"Rule 912130\"\r\n },\r\n {\r\n \"ruleId\": 912140,\r\n \"description\": \"Rule 912140\"\r\n },\r\n {\r\n \"ruleId\": 912150,\r\n \"description\": \"Rule 912150\"\r\n },\r\n {\r\n \"ruleId\": 912160,\r\n \"description\": \"Rule 912160\"\r\n },\r\n {\r\n \"ruleId\": 912170,\r\n \"description\": \"Potential Denial of Service (DoS) Attack from %{tx.real_ip} - # of Request Bursts: %{ip.dos_burst_counter}\"\r\n },\r\n {\r\n \"ruleId\": 912013,\r\n \"description\": \"Rule 912013\"\r\n },\r\n {\r\n \"ruleId\": 912014,\r\n \"description\": \"Rule 912014\"\r\n },\r\n {\r\n \"ruleId\": 912019,\r\n \"description\": \"Rule 912019\"\r\n },\r\n {\r\n \"ruleId\": 912171,\r\n \"description\": \"Potential Denial of Service (DoS) Attack from %{tx.real_ip} - # of Request Bursts: %{ip.dos_burst_counter}\"\r\n },\r\n {\r\n \"ruleId\": 912015,\r\n \"description\": \"Rule 912015\"\r\n },\r\n {\r\n \"ruleId\": 912016,\r\n \"description\": \"Rule 912016\"\r\n },\r\n {\r\n \"ruleId\": 912017,\r\n \"description\": \"Rule 912017\"\r\n },\r\n {\r\n \"ruleId\": 912018,\r\n \"description\": \"Rule 912018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-913-SCANNER-DETECTION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 913011,\r\n \"description\": \"Rule 913011\"\r\n },\r\n {\r\n \"ruleId\": 913012,\r\n \"description\": \"Rule 913012\"\r\n },\r\n {\r\n \"ruleId\": 913100,\r\n \"description\": \"Found User-Agent associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913110,\r\n \"description\": \"Found request header associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913120,\r\n \"description\": \"Found request filename/argument associated with security scanner\"\r\n },\r\n {\r\n \"ruleId\": 913013,\r\n \"description\": \"Rule 913013\"\r\n },\r\n {\r\n \"ruleId\": 913014,\r\n \"description\": \"Rule 913014\"\r\n },\r\n {\r\n \"ruleId\": 913101,\r\n \"description\": \"Found User-Agent associated with scripting/generic HTTP client\"\r\n },\r\n {\r\n \"ruleId\": 913102,\r\n \"description\": \"Found User-Agent associated with web crawler/bot\"\r\n },\r\n {\r\n \"ruleId\": 913015,\r\n \"description\": \"Rule 913015\"\r\n },\r\n {\r\n \"ruleId\": 913016,\r\n \"description\": \"Rule 913016\"\r\n },\r\n {\r\n \"ruleId\": 913017,\r\n \"description\": \"Rule 913017\"\r\n },\r\n {\r\n \"ruleId\": 913018,\r\n \"description\": \"Rule 913018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-920-PROTOCOL-ENFORCEMENT\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 920011,\r\n \"description\": \"Rule 920011\"\r\n },\r\n {\r\n \"ruleId\": 920012,\r\n \"description\": \"Rule 920012\"\r\n },\r\n {\r\n \"ruleId\": 920100,\r\n \"description\": \"Invalid HTTP Request Line\"\r\n },\r\n {\r\n \"ruleId\": 920120,\r\n \"description\": \"Attempted multipart/form-data bypass\"\r\n },\r\n {\r\n \"ruleId\": 920130,\r\n \"description\": \"Failed to parse request body.\"\r\n },\r\n {\r\n \"ruleId\": 920140,\r\n \"description\": \"Multipart request body failed strict validation: PE %{REQBODY_PROCESSOR_ERROR}, BQ %{MULTIPART_BOUNDARY_QUOTED}, BW %{MULTIPART_BOUNDARY_WHITESPACE}, DB %{MULTIPART_DATA_BEFORE}, DA %{MULTIPART_DATA_AFTER}, HF %{MULTIPART_HEADER_FOLDING}, LF %{MULTIPART_LF_LINE}, SM %{MULTIPART_SEMICOLON_MISSING}, IQ %{MULTIPART_INVALID_QUOTING}, IH %{MULTIPART_INVALID_HEADER_FOLDING}, FLE %{MULTIPART_FILE_LIMIT_EXCEEDED}\"\r\n },\r\n {\r\n \"ruleId\": 920160,\r\n \"description\": \"Content-Length HTTP header is not numeric.\"\r\n },\r\n {\r\n \"ruleId\": 920170,\r\n \"description\": \"GET or HEAD Request with Body Content.\"\r\n },\r\n {\r\n \"ruleId\": 920180,\r\n \"description\": \"POST request missing Content-Length Header.\"\r\n },\r\n {\r\n \"ruleId\": 920190,\r\n \"description\": \"Range: Invalid Last Byte Value.\"\r\n },\r\n {\r\n \"ruleId\": 920210,\r\n \"description\": \"Multiple/Conflicting Connection Header Data Found.\"\r\n },\r\n {\r\n \"ruleId\": 920220,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920240,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920250,\r\n \"description\": \"UTF8 Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920260,\r\n \"description\": \"Unicode Full/Half Width Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 920270,\r\n \"description\": \"Invalid character in request (null character)\"\r\n },\r\n {\r\n \"ruleId\": 920280,\r\n \"description\": \"Request Missing a Host Header\"\r\n },\r\n {\r\n \"ruleId\": 920290,\r\n \"description\": \"Empty Host Header\"\r\n },\r\n {\r\n \"ruleId\": 920310,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920311,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920330,\r\n \"description\": \"Empty User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 920340,\r\n \"description\": \"Request Containing Content, but Missing Content-Type header\"\r\n },\r\n {\r\n \"ruleId\": 920350,\r\n \"description\": \"Host header is a numeric IP address\"\r\n },\r\n {\r\n \"ruleId\": 920380,\r\n \"description\": \"Too many arguments in request\"\r\n },\r\n {\r\n \"ruleId\": 920360,\r\n \"description\": \"Argument name too long\"\r\n },\r\n {\r\n \"ruleId\": 920370,\r\n \"description\": \"Argument value too long\"\r\n },\r\n {\r\n \"ruleId\": 920390,\r\n \"description\": \"Total arguments size exceeded\"\r\n },\r\n {\r\n \"ruleId\": 920400,\r\n \"description\": \"Uploaded file size too large\"\r\n },\r\n {\r\n \"ruleId\": 920410,\r\n \"description\": \"Total uploaded files size too large\"\r\n },\r\n {\r\n \"ruleId\": 920420,\r\n \"description\": \"Request content type is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 920430,\r\n \"description\": \"HTTP protocol version is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 920440,\r\n \"description\": \"URL file extension is restricted by policy\"\r\n },\r\n {\r\n \"ruleId\": 920450,\r\n \"description\": \"HTTP header is restricted by policy (%{MATCHED_VAR})\"\r\n },\r\n {\r\n \"ruleId\": 920013,\r\n \"description\": \"Rule 920013\"\r\n },\r\n {\r\n \"ruleId\": 920014,\r\n \"description\": \"Rule 920014\"\r\n },\r\n {\r\n \"ruleId\": 920200,\r\n \"description\": \"Range: Too many fields (6 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920201,\r\n \"description\": \"Range: Too many fields for pdf request (35 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920230,\r\n \"description\": \"Multiple URL Encoding Detected\"\r\n },\r\n {\r\n \"ruleId\": 920300,\r\n \"description\": \"Request Missing an Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 920271,\r\n \"description\": \"Invalid character in request (non printable characters)\"\r\n },\r\n {\r\n \"ruleId\": 920320,\r\n \"description\": \"Missing User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 920015,\r\n \"description\": \"Rule 920015\"\r\n },\r\n {\r\n \"ruleId\": 920016,\r\n \"description\": \"Rule 920016\"\r\n },\r\n {\r\n \"ruleId\": 920272,\r\n \"description\": \"Invalid character in request (outside of printable chars below ascii 127)\"\r\n },\r\n {\r\n \"ruleId\": 920017,\r\n \"description\": \"Rule 920017\"\r\n },\r\n {\r\n \"ruleId\": 920018,\r\n \"description\": \"Rule 920018\"\r\n },\r\n {\r\n \"ruleId\": 920202,\r\n \"description\": \"Range: Too many fields for pdf request (6 or more)\"\r\n },\r\n {\r\n \"ruleId\": 920273,\r\n \"description\": \"Invalid character in request (outside of very strict set)\"\r\n },\r\n {\r\n \"ruleId\": 920274,\r\n \"description\": \"Invalid character in request headers (outside of very strict set)\"\r\n },\r\n {\r\n \"ruleId\": 920460,\r\n \"description\": \"Rule 920460\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-921-PROTOCOL-ATTACK\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 921011,\r\n \"description\": \"Rule 921011\"\r\n },\r\n {\r\n \"ruleId\": 921012,\r\n \"description\": \"Rule 921012\"\r\n },\r\n {\r\n \"ruleId\": 921100,\r\n \"description\": \"HTTP Request Smuggling Attack.\"\r\n },\r\n {\r\n \"ruleId\": 921110,\r\n \"description\": \"HTTP Request Smuggling Attack\"\r\n },\r\n {\r\n \"ruleId\": 921120,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 921130,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 921140,\r\n \"description\": \"HTTP Header Injection Attack via headers\"\r\n },\r\n {\r\n \"ruleId\": 921150,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF detected)\"\r\n },\r\n {\r\n \"ruleId\": 921160,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF and header-name detected)\"\r\n },\r\n {\r\n \"ruleId\": 921013,\r\n \"description\": \"Rule 921013\"\r\n },\r\n {\r\n \"ruleId\": 921014,\r\n \"description\": \"Rule 921014\"\r\n },\r\n {\r\n \"ruleId\": 921151,\r\n \"description\": \"HTTP Header Injection Attack via payload (CR/LF detected)\"\r\n },\r\n {\r\n \"ruleId\": 921015,\r\n \"description\": \"Rule 921015\"\r\n },\r\n {\r\n \"ruleId\": 921016,\r\n \"description\": \"Rule 921016\"\r\n },\r\n {\r\n \"ruleId\": 921170,\r\n \"description\": \"Rule 921170\"\r\n },\r\n {\r\n \"ruleId\": 921180,\r\n \"description\": \"HTTP Parameter Pollution (%{TX.1})\"\r\n },\r\n {\r\n \"ruleId\": 921017,\r\n \"description\": \"Rule 921017\"\r\n },\r\n {\r\n \"ruleId\": 921018,\r\n \"description\": \"Rule 921018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-930-APPLICATION-ATTACK-LFI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 930011,\r\n \"description\": \"Rule 930011\"\r\n },\r\n {\r\n \"ruleId\": 930012,\r\n \"description\": \"Rule 930012\"\r\n },\r\n {\r\n \"ruleId\": 930100,\r\n \"description\": \"Path Traversal Attack (/../)\"\r\n },\r\n {\r\n \"ruleId\": 930110,\r\n \"description\": \"Path Traversal Attack (/../)\"\r\n },\r\n {\r\n \"ruleId\": 930120,\r\n \"description\": \"OS File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 930130,\r\n \"description\": \"Restricted File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 930013,\r\n \"description\": \"Rule 930013\"\r\n },\r\n {\r\n \"ruleId\": 930014,\r\n \"description\": \"Rule 930014\"\r\n },\r\n {\r\n \"ruleId\": 930015,\r\n \"description\": \"Rule 930015\"\r\n },\r\n {\r\n \"ruleId\": 930016,\r\n \"description\": \"Rule 930016\"\r\n },\r\n {\r\n \"ruleId\": 930017,\r\n \"description\": \"Rule 930017\"\r\n },\r\n {\r\n \"ruleId\": 930018,\r\n \"description\": \"Rule 930018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-931-APPLICATION-ATTACK-RFI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 931011,\r\n \"description\": \"Rule 931011\"\r\n },\r\n {\r\n \"ruleId\": 931012,\r\n \"description\": \"Rule 931012\"\r\n },\r\n {\r\n \"ruleId\": 931100,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Parameter using IP Address\"\r\n },\r\n {\r\n \"ruleId\": 931110,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Common RFI Vulnerable Parameter Name used w/URL Payload\"\r\n },\r\n {\r\n \"ruleId\": 931120,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: URL Payload Used w/Trailing Question Mark Character (?)\"\r\n },\r\n {\r\n \"ruleId\": 931013,\r\n \"description\": \"Rule 931013\"\r\n },\r\n {\r\n \"ruleId\": 931014,\r\n \"description\": \"Rule 931014\"\r\n },\r\n {\r\n \"ruleId\": 931130,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Off-Domain Reference/Link\"\r\n },\r\n {\r\n \"ruleId\": 931015,\r\n \"description\": \"Rule 931015\"\r\n },\r\n {\r\n \"ruleId\": 931016,\r\n \"description\": \"Rule 931016\"\r\n },\r\n {\r\n \"ruleId\": 931017,\r\n \"description\": \"Rule 931017\"\r\n },\r\n {\r\n \"ruleId\": 931018,\r\n \"description\": \"Rule 931018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-932-APPLICATION-ATTACK-RCE\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 932011,\r\n \"description\": \"Rule 932011\"\r\n },\r\n {\r\n \"ruleId\": 932012,\r\n \"description\": \"Rule 932012\"\r\n },\r\n {\r\n \"ruleId\": 932100,\r\n \"description\": \"Remote Command Execution: Unix Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 932105,\r\n \"description\": \"Remote Command Execution: Unix Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 932110,\r\n \"description\": \"Remote Command Execution: Windows Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 932115,\r\n \"description\": \"Remote Command Execution: Windows Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 932120,\r\n \"description\": \"Remote Command Execution: Windows PowerShell Command Found\"\r\n },\r\n {\r\n \"ruleId\": 932130,\r\n \"description\": \"Remote Command Execution: Unix Shell Expression Found\"\r\n },\r\n {\r\n \"ruleId\": 932140,\r\n \"description\": \"Remote Command Execution: Windows FOR/IF Command Found\"\r\n },\r\n {\r\n \"ruleId\": 932150,\r\n \"description\": \"Remote Command Execution: Direct Unix Command Execution\"\r\n },\r\n {\r\n \"ruleId\": 932160,\r\n \"description\": \"Remote Command Execution: Unix Shell Code Found\"\r\n },\r\n {\r\n \"ruleId\": 932170,\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\"\r\n },\r\n {\r\n \"ruleId\": 932171,\r\n \"description\": \"Remote Command Execution: Shellshock (CVE-2014-6271)\"\r\n },\r\n {\r\n \"ruleId\": 932013,\r\n \"description\": \"Rule 932013\"\r\n },\r\n {\r\n \"ruleId\": 932014,\r\n \"description\": \"Rule 932014\"\r\n },\r\n {\r\n \"ruleId\": 932015,\r\n \"description\": \"Rule 932015\"\r\n },\r\n {\r\n \"ruleId\": 932016,\r\n \"description\": \"Rule 932016\"\r\n },\r\n {\r\n \"ruleId\": 932017,\r\n \"description\": \"Rule 932017\"\r\n },\r\n {\r\n \"ruleId\": 932018,\r\n \"description\": \"Rule 932018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-933-APPLICATION-ATTACK-PHP\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 933011,\r\n \"description\": \"Rule 933011\"\r\n },\r\n {\r\n \"ruleId\": 933012,\r\n \"description\": \"Rule 933012\"\r\n },\r\n {\r\n \"ruleId\": 933100,\r\n \"description\": \"PHP Injection Attack: Opening/Closing Tag Found\"\r\n },\r\n {\r\n \"ruleId\": 933110,\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\"\r\n },\r\n {\r\n \"ruleId\": 933120,\r\n \"description\": \"PHP Injection Attack: Configuration Directive Found\"\r\n },\r\n {\r\n \"ruleId\": 933130,\r\n \"description\": \"PHP Injection Attack: Variables Found\"\r\n },\r\n {\r\n \"ruleId\": 933150,\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Name Found\"\r\n },\r\n {\r\n \"ruleId\": 933160,\r\n \"description\": \"PHP Injection Attack: High-Risk PHP Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933180,\r\n \"description\": \"PHP Injection Attack: Variable Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933013,\r\n \"description\": \"Rule 933013\"\r\n },\r\n {\r\n \"ruleId\": 933014,\r\n \"description\": \"Rule 933014\"\r\n },\r\n {\r\n \"ruleId\": 933151,\r\n \"description\": \"PHP Injection Attack: Medium-Risk PHP Function Name Found\"\r\n },\r\n {\r\n \"ruleId\": 933015,\r\n \"description\": \"Rule 933015\"\r\n },\r\n {\r\n \"ruleId\": 933016,\r\n \"description\": \"Rule 933016\"\r\n },\r\n {\r\n \"ruleId\": 933131,\r\n \"description\": \"PHP Injection Attack: Variables Found\"\r\n },\r\n {\r\n \"ruleId\": 933161,\r\n \"description\": \"PHP Injection Attack: Low-Value PHP Function Call Found\"\r\n },\r\n {\r\n \"ruleId\": 933111,\r\n \"description\": \"PHP Injection Attack: PHP Script File Upload Found\"\r\n },\r\n {\r\n \"ruleId\": 933017,\r\n \"description\": \"Rule 933017\"\r\n },\r\n {\r\n \"ruleId\": 933018,\r\n \"description\": \"Rule 933018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-941-APPLICATION-ATTACK-XSS\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 941011,\r\n \"description\": \"Rule 941011\"\r\n },\r\n {\r\n \"ruleId\": 941012,\r\n \"description\": \"Rule 941012\"\r\n },\r\n {\r\n \"ruleId\": 941100,\r\n \"description\": \"XSS Attack Detected via libinjection\"\r\n },\r\n {\r\n \"ruleId\": 941110,\r\n \"description\": \"XSS Filter - Category 1: Script Tag Vector\"\r\n },\r\n {\r\n \"ruleId\": 941120,\r\n \"description\": \"XSS Filter - Category 2: Event Handler Vector\"\r\n },\r\n {\r\n \"ruleId\": 941130,\r\n \"description\": \"XSS Filter - Category 3: Attribute Vector\"\r\n },\r\n {\r\n \"ruleId\": 941140,\r\n \"description\": \"XSS Filter - Category 4: Javascript URI Vector\"\r\n },\r\n {\r\n \"ruleId\": 941150,\r\n \"description\": \"XSS Filter - Category 5: Disallowed HTML Attributes\"\r\n },\r\n {\r\n \"ruleId\": 941170,\r\n \"description\": \"NoScript XSS InjectionChecker: Attribute Injection\"\r\n },\r\n {\r\n \"ruleId\": 941180,\r\n \"description\": \"Node-Validator Blacklist Keywords\"\r\n },\r\n {\r\n \"ruleId\": 941190,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941200,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941210,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941220,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941230,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941240,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941250,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941260,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941270,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941280,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941290,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941300,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941310,\r\n \"description\": \"US-ASCII Malformed Encoding XSS Filter - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941350,\r\n \"description\": \"UTF-7 Encoding IE XSS - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941013,\r\n \"description\": \"Rule 941013\"\r\n },\r\n {\r\n \"ruleId\": 941014,\r\n \"description\": \"Rule 941014\"\r\n },\r\n {\r\n \"ruleId\": 941320,\r\n \"description\": \"Possible XSS Attack Detected - HTML Tag Handler\"\r\n },\r\n {\r\n \"ruleId\": 941330,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941340,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 941015,\r\n \"description\": \"Rule 941015\"\r\n },\r\n {\r\n \"ruleId\": 941016,\r\n \"description\": \"Rule 941016\"\r\n },\r\n {\r\n \"ruleId\": 941017,\r\n \"description\": \"Rule 941017\"\r\n },\r\n {\r\n \"ruleId\": 941018,\r\n \"description\": \"Rule 941018\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-942-APPLICATION-ATTACK-SQLI\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 942011,\r\n \"description\": \"Rule 942011\"\r\n },\r\n {\r\n \"ruleId\": 942012,\r\n \"description\": \"Rule 942012\"\r\n },\r\n {\r\n \"ruleId\": 942100,\r\n \"description\": \"SQL Injection Attack Detected via libinjection\"\r\n },\r\n {\r\n \"ruleId\": 942140,\r\n \"description\": \"SQL Injection Attack: Common DB Names Detected\"\r\n },\r\n {\r\n \"ruleId\": 942160,\r\n \"description\": \"Detects blind sqli tests using sleep() or benchmark().\"\r\n },\r\n {\r\n \"ruleId\": 942170,\r\n \"description\": \"Detects SQL benchmark and sleep injection attempts including conditional queries\"\r\n },\r\n {\r\n \"ruleId\": 942190,\r\n \"description\": \"Detects MSSQL code execution and information gathering attempts\"\r\n },\r\n {\r\n \"ruleId\": 942220,\r\n \"description\": \"Looking for intiger overflow attacks, these are taken from skipfish, except 3.0.00738585072007e-308 is the \\\\\\\"magic number\\\\\\\" crash\"\r\n },\r\n {\r\n \"ruleId\": 942230,\r\n \"description\": \"Detects conditional SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 942240,\r\n \"description\": \"Detects MySQL charset switch and MSSQL DoS attempts\"\r\n },\r\n {\r\n \"ruleId\": 942250,\r\n \"description\": \"Detects MATCH AGAINST, MERGE and EXECUTE IMMEDIATE injections\"\r\n },\r\n {\r\n \"ruleId\": 942270,\r\n \"description\": \"Looking for basic sql injection. Common attack string for mysql, oracle and others.\"\r\n },\r\n {\r\n \"ruleId\": 942280,\r\n \"description\": \"Detects Postgres pg_sleep injection, waitfor delay attacks and database shutdown attempts\"\r\n },\r\n {\r\n \"ruleId\": 942290,\r\n \"description\": \"Finds basic MongoDB SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 942320,\r\n \"description\": \"Detects MySQL and PostgreSQL stored procedure/function injections\"\r\n },\r\n {\r\n \"ruleId\": 942350,\r\n \"description\": \"Detects MySQL UDF injection and other data/structure manipulation attempts\"\r\n },\r\n {\r\n \"ruleId\": 942360,\r\n \"description\": \"Detects concatenated basic SQL injection and SQLLFI attempts\"\r\n },\r\n {\r\n \"ruleId\": 942013,\r\n \"description\": \"Rule 942013\"\r\n },\r\n {\r\n \"ruleId\": 942014,\r\n \"description\": \"Rule 942014\"\r\n },\r\n {\r\n \"ruleId\": 942110,\r\n \"description\": \"SQL Injection Attack: Common Injection Testing Detected\"\r\n },\r\n {\r\n \"ruleId\": 942120,\r\n \"description\": \"SQL Injection Attack: SQL Operator Detected\"\r\n },\r\n {\r\n \"ruleId\": 942130,\r\n \"description\": \"SQL Injection Attack: SQL Tautology Detected.\"\r\n },\r\n {\r\n \"ruleId\": 942150,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942180,\r\n \"description\": \"Detects basic SQL authentication bypass attempts 1/3\"\r\n },\r\n {\r\n \"ruleId\": 942200,\r\n \"description\": \"Detects MySQL comment-/space-obfuscated injections and backtick termination\"\r\n },\r\n {\r\n \"ruleId\": 942210,\r\n \"description\": \"Detects chained SQL injection attempts 1/2\"\r\n },\r\n {\r\n \"ruleId\": 942260,\r\n \"description\": \"Detects basic SQL authentication bypass attempts 2/3\"\r\n },\r\n {\r\n \"ruleId\": 942300,\r\n \"description\": \"Detects MySQL comments, conditions and ch(a)r injections\"\r\n },\r\n {\r\n \"ruleId\": 942310,\r\n \"description\": \"Detects chained SQL injection attempts 2/2\"\r\n },\r\n {\r\n \"ruleId\": 942330,\r\n \"description\": \"Detects classic SQL injection probings 1/2\"\r\n },\r\n {\r\n \"ruleId\": 942340,\r\n \"description\": \"Detects basic SQL authentication bypass attempts 3/3\"\r\n },\r\n {\r\n \"ruleId\": 942370,\r\n \"description\": \"Detects classic SQL injection probings 2/2\"\r\n },\r\n {\r\n \"ruleId\": 942380,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942390,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942400,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942410,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 942430,\r\n \"description\": \"Restricted SQL Character Anomaly Detection (args): # of special characters exceeded (12)\"\r\n },\r\n {\r\n \"ruleId\": 942440,\r\n \"description\": \"SQL Comment Sequence Detected.\"\r\n },\r\n {\r\n \"ruleId\": 942450,\r\n \"description\": \"SQL Hex Encoding Identified\"\r\n },\r\n {\r\n \"ruleId\": 942015,\r\n \"description\": \"Rule 942015\"\r\n },\r\n {\r\n \"ruleId\": 942016,\r\n \"description\": \"Rule 942016\"\r\n },\r\n {\r\n \"ruleId\": 942251,\r\n \"description\": \"Detects HAVING injections\"\r\n },\r\n {\r\n \"ruleId\": 942420,\r\n \"description\": \"Restricted SQL Character Anomaly Detection (cookies): # of special characters exceeded (8)\"\r\n },\r\n {\r\n \"ruleId\": 942431,\r\n \"description\": \"Restricted SQL Character Anomaly Detection (args): # of special characters exceeded (6)\"\r\n },\r\n {\r\n \"ruleId\": 942460,\r\n \"description\": \"Meta-Character Anomaly Detection Alert - Repetitive Non-Word Characters\"\r\n },\r\n {\r\n \"ruleId\": 942017,\r\n \"description\": \"Rule 942017\"\r\n },\r\n {\r\n \"ruleId\": 942018,\r\n \"description\": \"Rule 942018\"\r\n },\r\n {\r\n \"ruleId\": 942421,\r\n \"description\": \"Restricted SQL Character Anomaly Detection (cookies): # of special characters exceeded (3)\"\r\n },\r\n {\r\n \"ruleId\": 942432,\r\n \"description\": \"Restricted SQL Character Anomaly Detection (args): # of special characters exceeded (2)\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"REQUEST-943-APPLICATION-ATTACK-SESSION-FIXATION\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 943011,\r\n \"description\": \"Rule 943011\"\r\n },\r\n {\r\n \"ruleId\": 943012,\r\n \"description\": \"Rule 943012\"\r\n },\r\n {\r\n \"ruleId\": 943100,\r\n \"description\": \"Possible Session Fixation Attack: Setting Cookie Values in HTML\"\r\n },\r\n {\r\n \"ruleId\": 943110,\r\n \"description\": \"Possible Session Fixation Attack: SessionID Parameter Name with Off-Domain Referer\"\r\n },\r\n {\r\n \"ruleId\": 943120,\r\n \"description\": \"Possible Session Fixation Attack: SessionID Parameter Name with No Referer\"\r\n },\r\n {\r\n \"ruleId\": 943013,\r\n \"description\": \"Rule 943013\"\r\n },\r\n {\r\n \"ruleId\": 943014,\r\n \"description\": \"Rule 943014\"\r\n },\r\n {\r\n \"ruleId\": 943015,\r\n \"description\": \"Rule 943015\"\r\n },\r\n {\r\n \"ruleId\": 943016,\r\n \"description\": \"Rule 943016\"\r\n },\r\n {\r\n \"ruleId\": 943017,\r\n \"description\": \"Rule 943017\"\r\n },\r\n {\r\n \"ruleId\": 943018,\r\n \"description\": \"Rule 943018\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"OWASP_2.2.9\",\r\n \"id\": \"/subscriptions//resourceGroups//providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets/\",\r\n \"type\": \"Microsoft.Network/applicationGatewayAvailableWafRuleSets\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleSetType\": \"OWASP\",\r\n \"ruleSetVersion\": \"2.2.9\",\r\n \"ruleGroups\": [\r\n {\r\n \"ruleGroupName\": \"crs_20_protocol_violations\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960911,\r\n \"description\": \"Invalid HTTP Request Line\"\r\n },\r\n {\r\n \"ruleId\": 981227,\r\n \"description\": \"Apache Error: Invalid URI in Request.\"\r\n },\r\n {\r\n \"ruleId\": 960000,\r\n \"description\": \"Attempted multipart/form-data bypass\"\r\n },\r\n {\r\n \"ruleId\": 960912,\r\n \"description\": \"Failed to parse request body.\"\r\n },\r\n {\r\n \"ruleId\": 960914,\r\n \"description\": \"Multipart request body failed strict validation: PE %{REQBODY_PROCESSOR_ERROR}, BQ %{MULTIPART_BOUNDARY_QUOTED}, BW %{MULTIPART_BOUNDARY_WHITESPACE}, DB %{MULTIPART_DATA_BEFORE}, DA %{MULTIPART_DATA_AFTER}, HF %{MULTIPART_HEADER_FOLDING}, LF %{MULTIPART_LF_LINE}, SM %{MULTIPART_SEMICOLON_MISSING}, IQ %{MULTIPART_INVALID_QUOTING}, IH %{MULTIPART_INVALID_HEADER_FOLDING}, FLE %{MULTIPART_FILE_LIMIT_EXCEEDED}\"\r\n },\r\n {\r\n \"ruleId\": 960915,\r\n \"description\": \"Multipart parser detected a possible unmatched boundary.\"\r\n },\r\n {\r\n \"ruleId\": 960016,\r\n \"description\": \"Content-Length HTTP header is not numeric.\"\r\n },\r\n {\r\n \"ruleId\": 960011,\r\n \"description\": \"GET or HEAD Request with Body Content.\"\r\n },\r\n {\r\n \"ruleId\": 960012,\r\n \"description\": \"POST request missing Content-Length Header.\"\r\n },\r\n {\r\n \"ruleId\": 960902,\r\n \"description\": \"Invalid Use of Identity Encoding.\"\r\n },\r\n {\r\n \"ruleId\": 960022,\r\n \"description\": \"Expect Header Not Allowed for HTTP 1.0.\"\r\n },\r\n {\r\n \"ruleId\": 960020,\r\n \"description\": \"Pragma Header requires Cache-Control Header for HTTP/1.1 requests.\"\r\n },\r\n {\r\n \"ruleId\": 958291,\r\n \"description\": \"Range: field exists and begins with 0.\"\r\n },\r\n {\r\n \"ruleId\": 958230,\r\n \"description\": \"Range: Invalid Last Byte Value.\"\r\n },\r\n {\r\n \"ruleId\": 958295,\r\n \"description\": \"Multiple/Conflicting Connection Header Data Found.\"\r\n },\r\n {\r\n \"ruleId\": 950107,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950109,\r\n \"description\": \"Multiple URL Encoding Detected\"\r\n },\r\n {\r\n \"ruleId\": 950108,\r\n \"description\": \"URL Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950801,\r\n \"description\": \"UTF8 Encoding Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950116,\r\n \"description\": \"Unicode Full/Half Width Abuse Attack Attempt\"\r\n },\r\n {\r\n \"ruleId\": 960901,\r\n \"description\": \"Invalid character in request\"\r\n },\r\n {\r\n \"ruleId\": 960018,\r\n \"description\": \"Invalid character in request\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_21_protocol_anomalies\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960008,\r\n \"description\": \"Request Missing a Host Header\"\r\n },\r\n {\r\n \"ruleId\": 960007,\r\n \"description\": \"Empty Host Header\"\r\n },\r\n {\r\n \"ruleId\": 960015,\r\n \"description\": \"Request Missing an Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 960021,\r\n \"description\": \"Request Has an Empty Accept Header\"\r\n },\r\n {\r\n \"ruleId\": 960009,\r\n \"description\": \"Request Missing a User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 960006,\r\n \"description\": \"Empty User Agent Header\"\r\n },\r\n {\r\n \"ruleId\": 960904,\r\n \"description\": \"Request Containing Content, but Missing Content-Type header\"\r\n },\r\n {\r\n \"ruleId\": 960017,\r\n \"description\": \"Host header is a numeric IP address\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_23_request_limits\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960209,\r\n \"description\": \"Argument name too long\"\r\n },\r\n {\r\n \"ruleId\": 960208,\r\n \"description\": \"Argument value too long\"\r\n },\r\n {\r\n \"ruleId\": 960335,\r\n \"description\": \"Too many arguments in request\"\r\n },\r\n {\r\n \"ruleId\": 960341,\r\n \"description\": \"Total arguments size exceeded\"\r\n },\r\n {\r\n \"ruleId\": 960342,\r\n \"description\": \"Uploaded file size too large\"\r\n },\r\n {\r\n \"ruleId\": 960343,\r\n \"description\": \"Total uploaded files size too large\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_30_http_policy\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 960032,\r\n \"description\": \"Method is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960010,\r\n \"description\": \"Request content type is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960034,\r\n \"description\": \"HTTP protocol version is not allowed by policy\"\r\n },\r\n {\r\n \"ruleId\": 960035,\r\n \"description\": \"URL file extension is restricted by policy\"\r\n },\r\n {\r\n \"ruleId\": 960038,\r\n \"description\": \"HTTP header is restricted by policy\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_35_bad_robots\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 990002,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990901,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990902,\r\n \"description\": \"Request Indicates a Security Scanner Scanned the Site\"\r\n },\r\n {\r\n \"ruleId\": 990012,\r\n \"description\": \"Rogue web site crawler\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_40_generic_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 950907,\r\n \"description\": \"System Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 960024,\r\n \"description\": \"Meta-Character Anomaly Detection Alert - Repetative Non-Word Characters\"\r\n },\r\n {\r\n \"ruleId\": 950008,\r\n \"description\": \"Injection of Undocumented ColdFusion Tags\"\r\n },\r\n {\r\n \"ruleId\": 950010,\r\n \"description\": \"LDAP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950011,\r\n \"description\": \"SSI injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950018,\r\n \"description\": \"Universal PDF XSS URL Detected.\"\r\n },\r\n {\r\n \"ruleId\": 950019,\r\n \"description\": \"Email Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950012,\r\n \"description\": \"HTTP Request Smuggling Attack.\"\r\n },\r\n {\r\n \"ruleId\": 950910,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 950911,\r\n \"description\": \"HTTP Response Splitting Attack\"\r\n },\r\n {\r\n \"ruleId\": 950117,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950118,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950119,\r\n \"description\": \"Remote File Inclusion Attack\"\r\n },\r\n {\r\n \"ruleId\": 950120,\r\n \"description\": \"Possible Remote File Inclusion (RFI) Attack: Off-Domain Reference/Link\"\r\n },\r\n {\r\n \"ruleId\": 981133,\r\n \"description\": \"Rule 981133\"\r\n },\r\n {\r\n \"ruleId\": 981134,\r\n \"description\": \"Rule 981134\"\r\n },\r\n {\r\n \"ruleId\": 950009,\r\n \"description\": \"Session Fixation Attack\"\r\n },\r\n {\r\n \"ruleId\": 950003,\r\n \"description\": \"Session Fixation\"\r\n },\r\n {\r\n \"ruleId\": 950000,\r\n \"description\": \"Session Fixation\"\r\n },\r\n {\r\n \"ruleId\": 950005,\r\n \"description\": \"Remote File Access Attempt\"\r\n },\r\n {\r\n \"ruleId\": 950002,\r\n \"description\": \"System Command Access\"\r\n },\r\n {\r\n \"ruleId\": 950006,\r\n \"description\": \"System Command Injection\"\r\n },\r\n {\r\n \"ruleId\": 959151,\r\n \"description\": \"PHP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 958976,\r\n \"description\": \"PHP Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 958977,\r\n \"description\": \"PHP Injection Attack\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_41_sql_injection_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 981231,\r\n \"description\": \"SQL Comment Sequence Detected.\"\r\n },\r\n {\r\n \"ruleId\": 981260,\r\n \"description\": \"SQL Hex Encoding Identified\"\r\n },\r\n {\r\n \"ruleId\": 981318,\r\n \"description\": \"SQL Injection Attack: Common Injection Testing Detected\"\r\n },\r\n {\r\n \"ruleId\": 981319,\r\n \"description\": \"SQL Injection Attack: SQL Operator Detected\"\r\n },\r\n {\r\n \"ruleId\": 950901,\r\n \"description\": \"SQL Injection Attack: SQL Tautology Detected.\"\r\n },\r\n {\r\n \"ruleId\": 981320,\r\n \"description\": \"SQL Injection Attack: Common DB Names Detected\"\r\n },\r\n {\r\n \"ruleId\": 981300,\r\n \"description\": \"Rule 981300\"\r\n },\r\n {\r\n \"ruleId\": 981301,\r\n \"description\": \"Rule 981301\"\r\n },\r\n {\r\n \"ruleId\": 981302,\r\n \"description\": \"Rule 981302\"\r\n },\r\n {\r\n \"ruleId\": 981303,\r\n \"description\": \"Rule 981303\"\r\n },\r\n {\r\n \"ruleId\": 981304,\r\n \"description\": \"Rule 981304\"\r\n },\r\n {\r\n \"ruleId\": 981305,\r\n \"description\": \"Rule 981305\"\r\n },\r\n {\r\n \"ruleId\": 981306,\r\n \"description\": \"Rule 981306\"\r\n },\r\n {\r\n \"ruleId\": 981307,\r\n \"description\": \"Rule 981307\"\r\n },\r\n {\r\n \"ruleId\": 981308,\r\n \"description\": \"Rule 981308\"\r\n },\r\n {\r\n \"ruleId\": 981309,\r\n \"description\": \"Rule 981309\"\r\n },\r\n {\r\n \"ruleId\": 981310,\r\n \"description\": \"Rule 981310\"\r\n },\r\n {\r\n \"ruleId\": 981311,\r\n \"description\": \"Rule 981311\"\r\n },\r\n {\r\n \"ruleId\": 981312,\r\n \"description\": \"Rule 981312\"\r\n },\r\n {\r\n \"ruleId\": 981313,\r\n \"description\": \"Rule 981313\"\r\n },\r\n {\r\n \"ruleId\": 981314,\r\n \"description\": \"Rule 981314\"\r\n },\r\n {\r\n \"ruleId\": 981315,\r\n \"description\": \"Rule 981315\"\r\n },\r\n {\r\n \"ruleId\": 981316,\r\n \"description\": \"Rule 981316\"\r\n },\r\n {\r\n \"ruleId\": 981317,\r\n \"description\": \"SQL SELECT Statement Anomaly Detection Alert\"\r\n },\r\n {\r\n \"ruleId\": 950007,\r\n \"description\": \"Blind SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950001,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 959070,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 959071,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 959072,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 950908,\r\n \"description\": \"SQL Injection Attack.\"\r\n },\r\n {\r\n \"ruleId\": 959073,\r\n \"description\": \"SQL Injection Attack\"\r\n },\r\n {\r\n \"ruleId\": 981172,\r\n \"description\": \"Restricted SQL Character Anomaly Detection Alert - Total # of special characters exceeded\"\r\n },\r\n {\r\n \"ruleId\": 981173,\r\n \"description\": \"Restricted SQL Character Anomaly Detection Alert - Total # of special characters exceeded\"\r\n },\r\n {\r\n \"ruleId\": 981272,\r\n \"description\": \"Detects blind sqli tests using sleep() or benchmark().\"\r\n },\r\n {\r\n \"ruleId\": 981244,\r\n \"description\": \"Detects basic SQL authentication bypass attempts 1/3\"\r\n },\r\n {\r\n \"ruleId\": 981255,\r\n \"description\": \"Detects MSSQL code execution and information gathering attempts\"\r\n },\r\n {\r\n \"ruleId\": 981257,\r\n \"description\": \"Detects MySQL comment-/space-obfuscated injections and backtick termination\"\r\n },\r\n {\r\n \"ruleId\": 981248,\r\n \"description\": \"Detects chained SQL injection attempts 1/2\"\r\n },\r\n {\r\n \"ruleId\": 981277,\r\n \"description\": \"Looking for integer overflow attacks, these are taken from skipfish, except 2.2.90738585072007e-308 is the \\\\\\\"magic number\\\\\\\" crash\"\r\n },\r\n {\r\n \"ruleId\": 981250,\r\n \"description\": \"Detects SQL benchmark and sleep injection attempts including conditional queries\"\r\n },\r\n {\r\n \"ruleId\": 981241,\r\n \"description\": \"Detects conditional SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 981252,\r\n \"description\": \"Detects MySQL charset switch and MSSQL DoS attempts\"\r\n },\r\n {\r\n \"ruleId\": 981256,\r\n \"description\": \"Detects MATCH AGAINST, MERGE, EXECUTE IMMEDIATE and HAVING injections\"\r\n },\r\n {\r\n \"ruleId\": 981245,\r\n \"description\": \"Detects basic SQL authentication bypass attempts 2/3\"\r\n },\r\n {\r\n \"ruleId\": 981276,\r\n \"description\": \"Looking for basic sql injection. Common attack string for mysql, oracle and others.\"\r\n },\r\n {\r\n \"ruleId\": 981254,\r\n \"description\": \"Detects Postgres pg_sleep injection, waitfor delay attacks and database shutdown attempts\"\r\n },\r\n {\r\n \"ruleId\": 981270,\r\n \"description\": \"Finds basic MongoDB SQL injection attempts\"\r\n },\r\n {\r\n \"ruleId\": 981240,\r\n \"description\": \"Detects MySQL comments, conditions and ch(a)r injections\"\r\n },\r\n {\r\n \"ruleId\": 981249,\r\n \"description\": \"Detects chained SQL injection attempts 2/2\"\r\n },\r\n {\r\n \"ruleId\": 981253,\r\n \"description\": \"Detects MySQL and PostgreSQL stored procedure/function injections\"\r\n },\r\n {\r\n \"ruleId\": 981242,\r\n \"description\": \"Detects classic SQL injection probings 1/2\"\r\n },\r\n {\r\n \"ruleId\": 981246,\r\n \"description\": \"Detects basic SQL authentication bypass attempts 3/3\"\r\n },\r\n {\r\n \"ruleId\": 981251,\r\n \"description\": \"Detects MySQL UDF injection and other data/structure manipulation attempts\"\r\n },\r\n {\r\n \"ruleId\": 981247,\r\n \"description\": \"Detects concatenated basic SQL injection and SQLLFI attempts\"\r\n },\r\n {\r\n \"ruleId\": 981243,\r\n \"description\": \"Detects classic SQL injection probings 2/2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_41_xss_attacks\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 973336,\r\n \"description\": \"XSS Filter - Category 1: Script Tag Vector\"\r\n },\r\n {\r\n \"ruleId\": 973337,\r\n \"description\": \"XSS Filter - Category 2: Event Handler Vector\"\r\n },\r\n {\r\n \"ruleId\": 973338,\r\n \"description\": \"XSS Filter - Category 3: Javascript URI Vector\"\r\n },\r\n {\r\n \"ruleId\": 981136,\r\n \"description\": \"Rule 981136\"\r\n },\r\n {\r\n \"ruleId\": 981018,\r\n \"description\": \"Rule 981018\"\r\n },\r\n {\r\n \"ruleId\": 958016,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958414,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958032,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958026,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958027,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958054,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958418,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958034,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958019,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958013,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958408,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958012,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958423,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958002,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958017,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958007,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958047,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958410,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958415,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958022,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958405,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958419,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958028,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958057,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958031,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958006,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958033,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958038,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958409,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958001,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958005,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958404,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958023,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958010,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958411,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958422,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958036,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958000,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958018,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958406,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958040,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958052,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958037,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958049,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958030,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958041,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958416,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958024,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958059,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958417,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958020,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958045,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958004,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958421,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958009,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958025,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958413,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958051,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958420,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958407,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958056,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958011,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958412,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958008,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958046,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958039,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 958003,\r\n \"description\": \"Cross-site Scripting (XSS) Attack\"\r\n },\r\n {\r\n \"ruleId\": 973300,\r\n \"description\": \"Possible XSS Attack Detected - HTML Tag Handler\"\r\n },\r\n {\r\n \"ruleId\": 973301,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973302,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973303,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973304,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973305,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973306,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973307,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973308,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973309,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973310,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973311,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973312,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973313,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973314,\r\n \"description\": \"XSS Attack Detected\"\r\n },\r\n {\r\n \"ruleId\": 973331,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973315,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973330,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973327,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973326,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973346,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973345,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973324,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973323,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973322,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973348,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973321,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973320,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973318,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973317,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973347,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973335,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973334,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973333,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973344,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973332,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973329,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973328,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973316,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973325,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n },\r\n {\r\n \"ruleId\": 973319,\r\n \"description\": \"IE XSS Filters - Attack Detected.\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_42_tight_security\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 950103,\r\n \"description\": \"Path Traversal Attack\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_45_trojans\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 950110,\r\n \"description\": \"Backdoor access\"\r\n },\r\n {\r\n \"ruleId\": 950921,\r\n \"description\": \"Backdoor access\"\r\n }\r\n ]\r\n },\r\n {\r\n \"ruleGroupName\": \"crs_49_inbound_blocking\",\r\n \"description\": \"\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": 981175,\r\n \"description\": \"Inbound Attack Targeting OSVDB Flagged Resource.\"\r\n },\r\n {\r\n \"ruleId\": 981176,\r\n \"description\": \"Inbound Anomaly Score Exceeded (Total Score: %{TX.ANOMALY_SCORE}, SQLi=%{TX.SQL_INJECTION_SCORE}, XSS=%{TX.XSS_SCORE}): Last Matched Message: %{tx.msg}\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2085,7 +2085,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:21 GMT" + "Sat, 25 Mar 2017 01:20:10 GMT" ], "Pragma": [ "no-cache" @@ -2101,28 +2101,28 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5a244f95-9b46-4376-ba0b-5496952aca6d" + "a8c414bf-7698-4734-a677-8bcdad5367cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14997" ], "x-ms-correlation-request-id": [ - "f5efdb20-377e-47fe-b68f-7c16aacfcbf9" + "f63adf56-6b2a-42fc-b9be-26d4bf09e049" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184022Z:f5efdb20-377e-47fe-b68f-7c16aacfcbf9" + "WESTUS2:20170325T012011Z:f63adf56-6b2a-42fc-b9be-26d4bf09e049" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2131,20 +2131,20 @@ "471" ], "x-ms-client-request-id": [ - "8fd838dd-c1bb-46d5-abd8-71a9851e8153" + "7c7c8a3a-71b1-4b76-aa30-21a18d859f44" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\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\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6714\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714\",\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b8c3bd18-7ef9-45bc-a534-5de4e6edb8d6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\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\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.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": [ - "1506" + "1509" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2156,7 +2156,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:22 GMT" + "Sat, 25 Mar 2017 01:20:11 GMT" ], "Pragma": [ "no-cache" @@ -2166,50 +2166,50 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5e84c760-5a76-4408-ade5-d7f33c89686a" + "54effb8b-4adb-4d50-8c68-7dabb880e297" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/5e84c760-5a76-4408-ade5-d7f33c89686a?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/54effb8b-4adb-4d50-8c68-7dabb880e297?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "f952cfce-8302-4fe0-a8bd-599c7a160f41" + "f17110a6-0427-4a8f-b218-08cf8f8a1854" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184023Z:f952cfce-8302-4fe0-a8bd-599c7a160f41" + "WESTUS2:20170325T012012Z:f17110a6-0427-4a8f-b218-08cf8f8a1854" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"name\": \"azsmnet132\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\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 \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet8377\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"b8c3bd18-7ef9-45bc-a534-5de4e6edb8d6\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714\",\r\n \"name\": \"azsmnet6714\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2043" + "2046" ], "x-ms-client-request-id": [ - "28fb2499-15c5-4d06-a8b3-d1a8a54bc089" + "76ae072c-bb94-4681-907d-0f1cbab67c7e" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"14c9c011-3b17-4a8d-a2b6-ec273bea52b1\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"14c9c011-3b17-4a8d-a2b6-ec273bea52b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6714\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714\",\r\n \"etag\": \"W/\\\"04fa884c-7350-41e9-af2a-2abbcaeb32cf\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b8c3bd18-7ef9-45bc-a534-5de4e6edb8d6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"04fa884c-7350-41e9-af2a-2abbcaeb32cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.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" @@ -2221,7 +2221,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:24 GMT" + "Sat, 25 Mar 2017 01:20:13 GMT" ], "Pragma": [ "no-cache" @@ -2240,38 +2240,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f54a9526-0e12-4d82-a0dd-1e07f32276e8" + "c3063729-ff95-4b0b-9434-3fccec53c362" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-correlation-request-id": [ - "447c1304-289f-4bc6-ad41-3ddfde83cbf0" + "cca4b630-7c48-410d-85c0-a1cbf81c5795" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184024Z:447c1304-289f-4bc6-ad41-3ddfde83cbf0" + "WESTUS2:20170325T012014Z:cca4b630-7c48-410d-85c0-a1cbf81c5795" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\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\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6714\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714\",\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b8c3bd18-7ef9-45bc-a534-5de4e6edb8d6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\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\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.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" @@ -2283,7 +2283,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:23 GMT" + "Sat, 25 Mar 2017 01:20:11 GMT" ], "Pragma": [ "no-cache" @@ -2292,7 +2292,7 @@ "chunked" ], "ETag": [ - "W/\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\"" + "W/\"ddda093d-23b3-4995-bff7-68eb1d997c9b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2302,41 +2302,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5ee6a394-d3d6-4492-9e91-da7692202105" + "f5f614d5-a511-440b-9a78-ba0e81ab5978" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14996" ], "x-ms-correlation-request-id": [ - "1d0f8124-16a0-474c-915f-c1dbc41dc944" + "b9aae2e0-3b6f-49b2-8adc-5f698186b3f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184023Z:1d0f8124-16a0-474c-915f-c1dbc41dc944" + "WESTUS2:20170325T012012Z:b9aae2e0-3b6f-49b2-8adc-5f698186b3f6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "641fcc15-e13d-441c-8dd6-437ec6667b1c" + "e125b0ef-22f9-4bea-bf59-3309177cb258" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\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\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6714\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714\",\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b8c3bd18-7ef9-45bc-a534-5de4e6edb8d6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"ddda093d-23b3-4995-bff7-68eb1d997c9b\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\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\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.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" @@ -2348,7 +2348,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:23 GMT" + "Sat, 25 Mar 2017 01:20:12 GMT" ], "Pragma": [ "no-cache" @@ -2357,7 +2357,7 @@ "chunked" ], "ETag": [ - "W/\"f1c3a7e3-f67a-4f30-ba6c-b2e08323814e\"" + "W/\"ddda093d-23b3-4995-bff7-68eb1d997c9b\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2367,35 +2367,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9ae8c8c3-c295-4777-bc4d-72f30c81a277" + "4f0fcd74-0f2e-4630-9f7b-dcba3b99ec02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14995" ], "x-ms-correlation-request-id": [ - "52f5b721-6aaa-4e10-abf5-839160ff3b89" + "2b4889e8-f30a-407b-a277-36cc4bc1af2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184023Z:52f5b721-6aaa-4e10-abf5-839160ff3b89" + "WESTUS2:20170325T012012Z:2b4889e8-f30a-407b-a277-36cc4bc1af2f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDEzMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDY3MTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet132\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132\",\r\n \"etag\": \"W/\\\"40bb2e1d-0e63-4842-bad4-e9e3fbf3369b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37110eb0-691e-488e-9fbc-66dfb6e35725\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet132/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"40bb2e1d-0e63-4842-bad4-e9e3fbf3369b\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet6714\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714\",\r\n \"etag\": \"W/\\\"f410d174-66bc-4b1e-a93c-dad782e12f94\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b8c3bd18-7ef9-45bc-a534-5de4e6edb8d6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet6714/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"f410d174-66bc-4b1e-a93c-dad782e12f94\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.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" @@ -2407,7 +2407,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:44:26 GMT" + "Sat, 25 Mar 2017 01:24:17 GMT" ], "Pragma": [ "no-cache" @@ -2416,7 +2416,7 @@ "chunked" ], "ETag": [ - "W/\"40bb2e1d-0e63-4842-bad4-e9e3fbf3369b\"" + "W/\"f410d174-66bc-4b1e-a93c-dad782e12f94\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2426,28 +2426,28 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "76979272-8b96-4eaf-999f-ef18514e17d9" + "c4270c6e-70c1-4f8f-a227-68b91269310f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14984" ], "x-ms-correlation-request-id": [ - "bfdcc9bd-016b-4286-81bb-a47b26a26834" + "7f191d5b-3066-4048-ac85-3e40807a8330" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184426Z:bfdcc9bd-016b-4286-81bb-a47b26a26834" + "WESTUS2:20170325T012417Z:7f191d5b-3066-4048-ac85-3e40807a8330" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n }\r\n },\r\n \"name\": \"ipconfig\"\r\n }\r\n ]\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2456,17 +2456,17 @@ "471" ], "x-ms-client-request-id": [ - "f9113d59-2633-4507-9fa5-41c3b67466d9" + "82477add-506f-49e9-a85e-0699162f03d5" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\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\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4640\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640\",\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8abdb28e-e23a-4e9c-9bd0-fa75b22f0928\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\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\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.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": [ "1509" @@ -2481,7 +2481,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:23 GMT" + "Sat, 25 Mar 2017 01:20:12 GMT" ], "Pragma": [ "no-cache" @@ -2491,31 +2491,31 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "db051329-684d-4e73-a53e-2ce1d604769a" + "73bd8fd0-fbf8-45e7-9019-b3359382cf8b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/db051329-684d-4e73-a53e-2ce1d604769a?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/73bd8fd0-fbf8-45e7-9019-b3359382cf8b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "3a9d61e2-bf36-4afa-9ae3-62ed922c5356" + "b19fe6a3-2d73-40de-95a7-c411babb7fb5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184024Z:3a9d61e2-bf36-4afa-9ae3-62ed922c5356" + "WESTUS2:20170325T012013Z:b19fe6a3-2d73-40de-95a7-c411babb7fb5" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet2873\",\r\n \"etag\": \"W/\\\"0cdab41d-75f6-49e8-826e-0ffeec80865e\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"name\": \"azsmnet3331\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\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 \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"properties\": {\r\n \"backendAddresses\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"azsmnet8377\",\r\n \"etag\": \"W/\\\"b7c66ccb-9133-4aa9-8a90-9f084d99a616\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\"\r\n }\r\n ],\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"ipconfig\",\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640/ipConfigurations/ipconfig\"\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"resourceGuid\": \"8abdb28e-e23a-4e9c-9bd0-fa75b22f0928\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640\",\r\n \"name\": \"azsmnet4640\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2524,17 +2524,17 @@ "2046" ], "x-ms-client-request-id": [ - "0d3643a1-e045-4791-9957-2ff6a0d3270b" + "b2bd82b2-b5d4-4e31-93f9-a59c6ff51bf6" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"1e44bbad-bc83-48a6-8508-e4311a79fe5d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"1e44bbad-bc83-48a6-8508-e4311a79fe5d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4640\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640\",\r\n \"etag\": \"W/\\\"d5798e78-14bf-410e-9884-771f710110ee\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8abdb28e-e23a-4e9c-9bd0-fa75b22f0928\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"d5798e78-14bf-410e-9884-771f710110ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.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" @@ -2546,7 +2546,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:44:26 GMT" + "Sat, 25 Mar 2017 01:24:17 GMT" ], "Pragma": [ "no-cache" @@ -2565,38 +2565,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4033969c-40d6-4b34-9f88-6305f195888e" + "e0f15234-720e-4277-8660-90d1d3a2fd34" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1195" ], "x-ms-correlation-request-id": [ - "8453b598-5b98-4e37-9b10-9f545cef0634" + "53d33425-9d07-4893-b013-bf95b23163bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184426Z:8453b598-5b98-4e37-9b10-9f545cef0634" + "WESTUS2:20170325T012418Z:53d33425-9d07-4893-b013-bf95b23163bd" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\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\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4640\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640\",\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8abdb28e-e23a-4e9c-9bd0-fa75b22f0928\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\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\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.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" @@ -2608,7 +2608,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:23 GMT" + "Sat, 25 Mar 2017 01:20:12 GMT" ], "Pragma": [ "no-cache" @@ -2617,7 +2617,7 @@ "chunked" ], "ETag": [ - "W/\"2802e74d-0306-417c-bcde-b4aafba7b66d\"" + "W/\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2627,41 +2627,41 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6663d153-4164-48b8-ac97-fb90c2ddd19f" + "76f464b4-da14-4796-b820-f132ad57d816" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14994" ], "x-ms-correlation-request-id": [ - "5190aa11-392f-473b-b425-9925ff8991ce" + "0f72ed19-254b-49bd-b738-9bd8ad8966af" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184024Z:5190aa11-392f-473b-b425-9925ff8991ce" + "WESTUS2:20170325T012013Z:0f72ed19-254b-49bd-b738-9bd8ad8966af" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a91b69f-72c4-4c12-a52e-6cc9cb15a1aa" + "c339b1a3-be16-4a6d-8ae1-db69d102dbad" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"2802e74d-0306-417c-bcde-b4aafba7b66d\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\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\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4640\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640\",\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8abdb28e-e23a-4e9c-9bd0-fa75b22f0928\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\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\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.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" @@ -2673,7 +2673,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:24 GMT" + "Sat, 25 Mar 2017 01:20:13 GMT" ], "Pragma": [ "no-cache" @@ -2682,7 +2682,7 @@ "chunked" ], "ETag": [ - "W/\"2802e74d-0306-417c-bcde-b4aafba7b66d\"" + "W/\"7be61758-db09-4897-a7d4-20eb4d8d3eb8\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2692,35 +2692,35 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2ca70137-5930-4f92-be2d-2fa788d9f063" + "3464ca9b-5306-4e14-8e0b-a3dbbf04f018" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14993" ], "x-ms-correlation-request-id": [ - "72aa8fab-3c7a-4072-8247-2b0cb192fb2b" + "32a79c72-023d-4a2b-98fd-59bc439ba4de" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184024Z:72aa8fab-3c7a-4072-8247-2b0cb192fb2b" + "WESTUS2:20170325T012013Z:32a79c72-023d-4a2b-98fd-59bc439ba4de" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDMzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYXpzbW5ldDQ2NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"azsmnet3331\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331\",\r\n \"etag\": \"W/\\\"7c256e7c-1963-43c0-88ab-19dd1db2d50f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4c93d5f-949d-4308-8c4c-ecb4b4350586\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/networkInterfaces/azsmnet3331/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7c256e7c-1963-43c0-88ab-19dd1db2d50f\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/virtualNetworks/azsmnet5723/subnets/azsmnet3830\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/backendAddressPools/azsmnet2873\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zjnus44xg4sudj42xbjl1vnbnf.d--x.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"azsmnet4640\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640\",\r\n \"etag\": \"W/\\\"7593fa9b-d460-450e-85ef-f0275e006786\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8abdb28e-e23a-4e9c-9bd0-fa75b22f0928\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/networkInterfaces/azsmnet4640/ipConfigurations/ipconfig\",\r\n \"etag\": \"W/\\\"7593fa9b-d460-450e-85ef-f0275e006786\\\"\",\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/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/virtualNetworks/azsmnet7758/subnets/azsmnet2882\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"applicationGatewayBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/backendAddressPools/azsmnet8377\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cz0aex2lcw3u1b4zznykoi4rvc.d--x.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" @@ -2732,7 +2732,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:48:28 GMT" + "Sat, 25 Mar 2017 01:27:50 GMT" ], "Pragma": [ "no-cache" @@ -2741,7 +2741,7 @@ "chunked" ], "ETag": [ - "W/\"7c256e7c-1963-43c0-88ab-19dd1db2d50f\"" + "W/\"7593fa9b-d460-450e-85ef-f0275e006786\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -2751,32 +2751,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "26833811-b532-49e1-ae1a-037cf48e0b1c" + "b9d0f411-7dc3-49d3-9e8b-931abdfee9d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14976" ], "x-ms-correlation-request-id": [ - "1134b132-c3df-4dfa-a48f-314395f1424d" + "356c926d-2904-40eb-84f4-e00800007f28" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184828Z:1134b132-c3df-4dfa-a48f-314395f1424d" + "WESTUS2:20170325T012750Z:356c926d-2904-40eb-84f4-e00800007f28" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2791,7 +2791,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:40:53 GMT" + "Sat, 25 Mar 2017 01:20:44 GMT" ], "Pragma": [ "no-cache" @@ -2810,32 +2810,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4f799a62-b21f-4b01-91ef-aeb40b02ed8f" + "0155a13f-bc20-4fb1-8e08-024624827c11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14992" ], "x-ms-correlation-request-id": [ - "7428a521-897f-4043-af44-4e7d279047f5" + "ad33c425-7c64-4550-8ca7-463fbec7c25d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184054Z:7428a521-897f-4043-af44-4e7d279047f5" + "WESTUS2:20170325T012044Z:ad33c425-7c64-4550-8ca7-463fbec7c25d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2850,7 +2850,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:41:23 GMT" + "Sat, 25 Mar 2017 01:21:15 GMT" ], "Pragma": [ "no-cache" @@ -2869,32 +2869,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "36990cc4-cae9-47d0-a015-7693329d1596" + "9a463441-c786-4f5e-b749-e4352da393d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14991" ], "x-ms-correlation-request-id": [ - "b05a1fed-27e4-48fb-98d0-c5ea1027bf2d" + "3b39d2b5-98d5-4c13-b0be-a1aeccecbc14" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184124Z:b05a1fed-27e4-48fb-98d0-c5ea1027bf2d" + "WESTUS2:20170325T012115Z:3b39d2b5-98d5-4c13-b0be-a1aeccecbc14" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2909,7 +2909,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:41:55 GMT" + "Sat, 25 Mar 2017 01:21:45 GMT" ], "Pragma": [ "no-cache" @@ -2928,32 +2928,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2df53e0e-a8c9-4e19-8279-86e4800e6b76" + "703fecda-76e1-4bb3-a48a-ccfbc3a76cd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "14990" ], "x-ms-correlation-request-id": [ - "82c36fa7-e432-416e-bde4-41a57248bf86" + "228682b4-f216-4729-a40a-e30d7ddeb7fb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184155Z:82c36fa7-e432-416e-bde4-41a57248bf86" + "WESTUS2:20170325T012146Z:228682b4-f216-4729-a40a-e30d7ddeb7fb" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -2968,7 +2968,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:42:25 GMT" + "Sat, 25 Mar 2017 01:22:16 GMT" ], "Pragma": [ "no-cache" @@ -2987,32 +2987,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8111eccb-7304-49ae-8268-c4d525888f6d" + "fe04f3d4-068f-4f4e-9d0b-d0a3f3ab309a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14989" ], "x-ms-correlation-request-id": [ - "1e940111-781b-4e88-9a6c-2435d6188ff6" + "274d80b9-71d9-4681-ac8c-ed59062548a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184225Z:1e940111-781b-4e88-9a6c-2435d6188ff6" + "WESTUS2:20170325T012216Z:274d80b9-71d9-4681-ac8c-ed59062548a8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3027,7 +3027,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:42:54 GMT" + "Sat, 25 Mar 2017 01:22:46 GMT" ], "Pragma": [ "no-cache" @@ -3046,32 +3046,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dbbb5478-96f5-43c5-843f-c39c5906c80c" + "8583ede7-edb6-4894-b148-cf8598e87a3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14988" ], "x-ms-correlation-request-id": [ - "e9cfb5a3-ac55-4174-831e-663aab74fe2d" + "63d570c8-9967-4340-8c90-e5248da39205" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184255Z:e9cfb5a3-ac55-4174-831e-663aab74fe2d" + "WESTUS2:20170325T012246Z:63d570c8-9967-4340-8c90-e5248da39205" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3086,7 +3086,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:43:25 GMT" + "Sat, 25 Mar 2017 01:23:16 GMT" ], "Pragma": [ "no-cache" @@ -3105,32 +3105,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "429c5f44-5c8f-4d30-b062-b92d5f4dce2a" + "eda07fa4-5a60-4e3e-8203-2d01bb94c1a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14987" ], "x-ms-correlation-request-id": [ - "56805eb7-1601-4b24-a833-9f8154d1b574" + "00582577-8dae-4b6d-8396-9fe0a0963205" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184325Z:56805eb7-1601-4b24-a833-9f8154d1b574" + "WESTUS2:20170325T012316Z:00582577-8dae-4b6d-8396-9fe0a0963205" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3145,7 +3145,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:43:55 GMT" + "Sat, 25 Mar 2017 01:23:46 GMT" ], "Pragma": [ "no-cache" @@ -3164,32 +3164,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "62194e52-db8a-44e3-a99d-b8cfc4fe7423" + "c1d75a38-3370-45c0-89e0-e0f441d8e3dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14986" ], "x-ms-correlation-request-id": [ - "15dea197-de81-4e48-a884-8abe4e7139b1" + "0a10de8a-c8c9-43da-82cd-06f2985ad5b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184355Z:15dea197-de81-4e48-a884-8abe4e7139b1" + "WESTUS2:20170325T012347Z:0a10de8a-c8c9-43da-82cd-06f2985ad5b5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/f54a9526-0e12-4d82-a0dd-1e07f32276e8?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9mNTRhOTUyNi0wZTEyLTRkODItYTBkZC0xZTA3ZjMyMjc2ZTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c3063729-ff95-4b0b-9434-3fccec53c362?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jMzA2MzcyOS1mZjk1LTRiMGItOTQzNC0zZmNjZWM1M2MzNjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -3204,7 +3204,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:44:26 GMT" + "Sat, 25 Mar 2017 01:24:17 GMT" ], "Pragma": [ "no-cache" @@ -3220,32 +3220,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "053fa53f-c378-49f1-8be8-0e9708139700" + "a4724bd8-5233-4c67-ba68-5c7b6391452e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14985" ], "x-ms-correlation-request-id": [ - "48d3087d-4945-47ad-a046-342d99fdb2c9" + "6fc4c61c-7636-4130-8700-6ad0540f82d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184426Z:48d3087d-4945-47ad-a046-342d99fdb2c9" + "WESTUS2:20170325T012417Z:6fc4c61c-7636-4130-8700-6ad0540f82d1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lMGYxNTIzNC03MjBlLTQyNzctODY2MC05MGQxZDNhMmZkMzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3260,7 +3260,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:44:56 GMT" + "Sat, 25 Mar 2017 01:24:47 GMT" ], "Pragma": [ "no-cache" @@ -3279,32 +3279,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7844d083-e2c6-4183-805c-faf01f61c11a" + "666c3716-ffc7-407d-82b6-08bff9c51c18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14983" ], "x-ms-correlation-request-id": [ - "005f2e1b-76cf-4393-8724-075fb42ca665" + "ffe2d417-8ad1-4536-af6a-74878ba9618c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184456Z:005f2e1b-76cf-4393-8724-075fb42ca665" + "WESTUS2:20170325T012448Z:ffe2d417-8ad1-4536-af6a-74878ba9618c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lMGYxNTIzNC03MjBlLTQyNzctODY2MC05MGQxZDNhMmZkMzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3319,7 +3319,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:45:26 GMT" + "Sat, 25 Mar 2017 01:25:17 GMT" ], "Pragma": [ "no-cache" @@ -3338,32 +3338,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9146f75c-b526-4576-a15c-d049e72d7d48" + "289b76b4-e389-4e8c-ba63-09090cacf9e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" + "14982" ], "x-ms-correlation-request-id": [ - "3457d411-f6f5-4874-9793-0cdf90f5dd1c" + "94feab79-887f-4fd0-a961-81aa74b0f703" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184527Z:3457d411-f6f5-4874-9793-0cdf90f5dd1c" + "WESTUS2:20170325T012518Z:94feab79-887f-4fd0-a961-81aa74b0f703" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lMGYxNTIzNC03MjBlLTQyNzctODY2MC05MGQxZDNhMmZkMzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3378,7 +3378,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:45:56 GMT" + "Sat, 25 Mar 2017 01:25:48 GMT" ], "Pragma": [ "no-cache" @@ -3397,32 +3397,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fef8b978-ef46-4e74-992f-320fd60b26a8" + "e55e3f5e-5478-4e39-9da3-42b63b26631c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" + "14981" ], "x-ms-correlation-request-id": [ - "6794837c-242a-4ff9-b241-6a5671e1c322" + "eff8f378-8928-43ef-9a69-3eb877a6e194" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184557Z:6794837c-242a-4ff9-b241-6a5671e1c322" + "WESTUS2:20170325T012549Z:eff8f378-8928-43ef-9a69-3eb877a6e194" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lMGYxNTIzNC03MjBlLTQyNzctODY2MC05MGQxZDNhMmZkMzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3437,7 +3437,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:46:27 GMT" + "Sat, 25 Mar 2017 01:26:18 GMT" ], "Pragma": [ "no-cache" @@ -3456,32 +3456,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "936dbbeb-19c4-4886-9e31-78f60c64871a" + "0d022776-1f3e-4426-bccc-b182fa13a9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" + "14980" ], "x-ms-correlation-request-id": [ - "7118f1ae-6390-417c-93b6-3e336f758388" + "dfe339d0-a391-456a-84a2-158f22bdfdf9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184627Z:7118f1ae-6390-417c-93b6-3e336f758388" + "WESTUS2:20170325T012619Z:dfe339d0-a391-456a-84a2-158f22bdfdf9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lMGYxNTIzNC03MjBlLTQyNzctODY2MC05MGQxZDNhMmZkMzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3496,7 +3496,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:46:57 GMT" + "Sat, 25 Mar 2017 01:26:48 GMT" ], "Pragma": [ "no-cache" @@ -3515,32 +3515,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "760506c7-19d1-49f1-a62b-14ef42897a80" + "5b74eaf8-0408-4a1d-9d0f-71d71a807fe7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" + "14979" ], "x-ms-correlation-request-id": [ - "5f69a5b3-b88d-4781-829a-f9c1db0bcca2" + "678b2605-fb1e-491d-8939-4fedee87597d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184657Z:5f69a5b3-b88d-4781-829a-f9c1db0bcca2" + "WESTUS2:20170325T012649Z:678b2605-fb1e-491d-8939-4fedee87597d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lMGYxNTIzNC03MjBlLTQyNzctODY2MC05MGQxZDNhMmZkMzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3555,7 +3555,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:47:27 GMT" + "Sat, 25 Mar 2017 01:27:18 GMT" ], "Pragma": [ "no-cache" @@ -3574,91 +3574,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e45bf5f5-1b12-4eec-a151-bec13340765c" + "e534d603-6063-4ee5-8fb4-d5a475e2ff0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" + "14978" ], "x-ms-correlation-request-id": [ - "5107fba9-96ee-433f-b6b8-591bc591a6bc" + "d4a208ae-5674-430e-a9e1-2d3a497dd3ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184727Z:5107fba9-96ee-433f-b6b8-591bc591a6bc" + "WESTUS2:20170325T012719Z:d4a208ae-5674-430e-a9e1-2d3a497dd3ba" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e0f15234-720e-4277-8660-90d1d3a2fd34?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lMGYxNTIzNC03MjBlLTQyNzctODY2MC05MGQxZDNhMmZkMzQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 20 Mar 2017 18:47:57 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": [ - "b8629352-0df2-4efe-8723-d7a0ef0c4248" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" - ], - "x-ms-correlation-request-id": [ - "e4a197e7-848a-480f-8d6b-98a96228d122" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170320T184758Z:e4a197e7-848a-480f-8d6b-98a96228d122" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/4033969c-40d6-4b34-9f88-6305f195888e?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80MDMzOTY5Yy00MGQ2LTRiMzQtOWY4OC02MzA1ZjE5NTg4OGU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -3673,7 +3614,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:48:28 GMT" + "Sat, 25 Mar 2017 01:27:49 GMT" ], "Pragma": [ "no-cache" @@ -3689,38 +3630,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fe726313-485e-409f-91bd-d3149bdf228f" + "932b0ff7-537e-49cd-82cd-30cb27527bb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14977" ], "x-ms-correlation-request-id": [ - "4e6d2fda-f4b3-4032-9728-59d503e18b25" + "ee7c1fd4-c3e6-4861-bf9a-eb8286821497" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184828Z:4e6d2fda-f4b3-4032-9728-59d503e18b25" + "WESTUS2:20170325T012750Z:ee7c1fd4-c3e6-4861-bf9a-eb8286821497" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/start?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOS9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/start?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2NC9zdGFydD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e51950e-8d15-4585-98c2-b36633fd5511" + "24f3102e-3241-4040-bfc4-5c19bb2978d0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "", @@ -3735,54 +3676,54 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:48:29 GMT" + "Sat, 25 Mar 2017 01:27:50 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/1f9896d4-b69c-4277-80f0-8bd7bef87769?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/d7ab9a60-fe49-44f4-ac3c-c89fe499a41d?api-version=2017-03-01" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1f9896d4-b69c-4277-80f0-8bd7bef87769" + "d7ab9a60-fe49-44f4-ac3c-c89fe499a41d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/1f9896d4-b69c-4277-80f0-8bd7bef87769?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/d7ab9a60-fe49-44f4-ac3c-c89fe499a41d?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1194" ], "x-ms-correlation-request-id": [ - "52bedd86-4d74-4584-b855-e9c28e34b11f" + "4d47b55f-4ada-4407-b102-23ce0b85e44d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184829Z:52bedd86-4d74-4584-b855-e9c28e34b11f" + "WESTUS2:20170325T012750Z:4d47b55f-4ada-4407-b102-23ce0b85e44d" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819/stop?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOS9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564/stop?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2NC9zdG9wP2FwaS12ZXJzaW9uPTIwMTctMDMtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88f48fe8-f135-4e7d-8015-192594509110" + "7bd2c68e-0e0e-4a3b-a3ca-7296a503c7f8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "", @@ -3797,13 +3738,13 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:48:29 GMT" + "Sat, 25 Mar 2017 01:27:51 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/e99de0c4-9a50-42d0-a8dd-28d1237b2331?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -3813,35 +3754,35 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "09e10dcb-3fb0-4036-97c9-9420cc720bb7" + "e99de0c4-9a50-42d0-a8dd-28d1237b2331" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e99de0c4-9a50-42d0-a8dd-28d1237b2331?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1193" ], "x-ms-correlation-request-id": [ - "7a5e893d-ea2b-434e-8af2-452d0e7267a7" + "67550d55-a68e-464e-812d-31d48a5bf4a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184829Z:7a5e893d-ea2b-434e-8af2-452d0e7267a7" + "WESTUS2:20170325T012751Z:67550d55-a68e-464e-812d-31d48a5bf4a6" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e99de0c4-9a50-42d0-a8dd-28d1237b2331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lOTlkZTBjNC05YTUwLTQyZDAtYThkZC0yOGQxMjM3YjIzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3856,7 +3797,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:48:59 GMT" + "Sat, 25 Mar 2017 01:28:21 GMT" ], "Pragma": [ "no-cache" @@ -3875,32 +3816,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d19212d5-73d1-496e-8b18-a9dbdd78d356" + "225e4ee7-7750-4aca-972e-65a9a9d70567" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" + "14974" ], "x-ms-correlation-request-id": [ - "412b2840-6af6-4bfd-9f2b-0868a4ac157e" + "39896f62-0925-4c9c-8288-4e846131eb35" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184859Z:412b2840-6af6-4bfd-9f2b-0868a4ac157e" + "WESTUS2:20170325T012821Z:39896f62-0925-4c9c-8288-4e846131eb35" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e99de0c4-9a50-42d0-a8dd-28d1237b2331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lOTlkZTBjNC05YTUwLTQyZDAtYThkZC0yOGQxMjM3YjIzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3915,7 +3856,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:49:29 GMT" + "Sat, 25 Mar 2017 01:28:50 GMT" ], "Pragma": [ "no-cache" @@ -3934,32 +3875,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "238f98cd-59f1-4bc7-8d01-6087dca04a86" + "c7b90a48-bb49-4ee1-98ac-cb36af71d167" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" + "14973" ], "x-ms-correlation-request-id": [ - "39172f04-fe7d-4ce1-a601-22dd3627b450" + "85629156-174f-4539-ab1e-bc24a5ff0f4a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T184930Z:39172f04-fe7d-4ce1-a601-22dd3627b450" + "WESTUS2:20170325T012851Z:85629156-174f-4539-ab1e-bc24a5ff0f4a" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e99de0c4-9a50-42d0-a8dd-28d1237b2331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lOTlkZTBjNC05YTUwLTQyZDAtYThkZC0yOGQxMjM3YjIzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -3974,7 +3915,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:49:59 GMT" + "Sat, 25 Mar 2017 01:29:21 GMT" ], "Pragma": [ "no-cache" @@ -3993,32 +3934,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d9d57609-a16e-412d-a936-2a9982f355e7" + "92ec6f5c-43a9-4b4d-9447-8fa507f07792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "14972" ], "x-ms-correlation-request-id": [ - "6086ca03-4dc8-46c6-8f10-35c6d39fbbc5" + "86636110-e974-44ed-98cd-051376386663" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T185000Z:6086ca03-4dc8-46c6-8f10-35c6d39fbbc5" + "WESTUS2:20170325T012922Z:86636110-e974-44ed-98cd-051376386663" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/09e10dcb-3fb0-4036-97c9-9420cc720bb7?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy8wOWUxMGRjYi0zZmIwLTQwMzYtOTdjOS05NDIwY2M3MjBiYjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/e99de0c4-9a50-42d0-a8dd-28d1237b2331?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9lOTlkZTBjNC05YTUwLTQyZDAtYThkZC0yOGQxMjM3YjIzMzE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -4033,7 +3974,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:50:29 GMT" + "Sat, 25 Mar 2017 01:29:51 GMT" ], "Pragma": [ "no-cache" @@ -4049,38 +3990,38 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "754fd0ac-d4af-45d7-a24a-d03bb6d012a1" + "cc2f126a-ac0e-49fc-b97b-7ac2b4e1624b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14971" ], "x-ms-correlation-request-id": [ - "60cb780d-672f-46b7-9b3d-e246ddded87a" + "1ea8b062-c115-42a9-ae87-e94d9c36939c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T185030Z:60cb780d-672f-46b7-9b3d-e246ddded87a" + "WESTUS2:20170325T012952Z:1ea8b062-c115-42a9-ae87-e94d9c36939c" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7667/providers/Microsoft.Network/applicationGateways/azsmnet9819?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzY2Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0OTgxOT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/resourceGroups/csmrg7781/providers/Microsoft.Network/applicationGateways/azsmnet3564?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Jlc291cmNlR3JvdXBzL2NzbXJnNzc4MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXBwbGljYXRpb25HYXRld2F5cy9henNtbmV0MzU2ND9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17ac7490-10d7-4a76-af5f-32d16397ec5f" + "92481912-809f-40ef-8ce8-989c6c2b6f6f" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "", @@ -4095,13 +4036,13 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:50:30 GMT" + "Sat, 25 Mar 2017 01:29:52 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operationResults/c880da57-f0af-44f5-bbc1-a52b6030ad67?api-version=2017-03-01" ], "Retry-After": [ "10" @@ -4111,35 +4052,94 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "44b9f1fb-5e69-4836-9cde-431b82315b03" + "c880da57-f0af-44f5-bbc1-a52b6030ad67" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01" + "https://management.azure.com/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c880da57-f0af-44f5-bbc1-a52b6030ad67?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1192" ], "x-ms-correlation-request-id": [ - "eb0ee3bf-4afc-49cc-a0a4-1b3e43e30bc5" + "8cd05812-8a1c-4181-bf1e-85a3295ebf17" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T185031Z:eb0ee3bf-4afc-49cc-a0a4-1b3e43e30bc5" + "WESTUS2:20170325T012953Z:8cd05812-8a1c-4181-bf1e-85a3295ebf17" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80NGI5ZjFmYi01ZTY5LTQ4MzYtOWNkZS00MzFiODIzMTViMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c880da57-f0af-44f5-bbc1-a52b6030ad67?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jODgwZGE1Ny1mMGFmLTQ0ZjUtYmJjMS1hNTJiNjAzMGFkNjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 25 Mar 2017 01:30:22 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": [ + "42735052-c76a-4f79-9d5a-8920f410272b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-correlation-request-id": [ + "cefbf2fa-0b3b-4def-8325-594c8bcfae2a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170325T013023Z:cefbf2fa-0b3b-4def-8325-594c8bcfae2a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c880da57-f0af-44f5-bbc1-a52b6030ad67?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jODgwZGE1Ny1mMGFmLTQ0ZjUtYmJjMS1hNTJiNjAzMGFkNjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", @@ -4154,7 +4154,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:51:01 GMT" + "Sat, 25 Mar 2017 01:30:53 GMT" ], "Pragma": [ "no-cache" @@ -4173,32 +4173,32 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a7abeea8-161e-456d-87cd-52ef0ebaa524" + "44e58e9f-a6eb-4ed6-b724-fdac408cc1fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14969" ], "x-ms-correlation-request-id": [ - "8bcaf0ae-7379-4a14-8f83-a65cdd89a482" + "1e5258dc-518d-44c5-9491-5db72262ce5f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T185101Z:8bcaf0ae-7379-4a14-8f83-a65cdd89a482" + "WESTUS2:20170325T013053Z:1e5258dc-518d-44c5-9491-5db72262ce5f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/44b9f1fb-5e69-4836-9cde-431b82315b03?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy80NGI5ZjFmYi01ZTY5LTQ4MzYtOWNkZS00MzFiODIzMTViMDM/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/70a5cb48-f9db-44e5-b819-936d54cc83d4/providers/Microsoft.Network/locations/westus.validation/operations/c880da57-f0af-44f5-bbc1-a52b6030ad67?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzBhNWNiNDgtZjlkYi00NGU1LWI4MTktOTM2ZDU0Y2M4M2Q0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzLnZhbGlkYXRpb24vb3BlcmF0aW9ucy9jODgwZGE1Ny1mMGFmLTQ0ZjUtYmJjMS1hNTJiNjAzMGFkNjc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Network.NetworkManagementClient/9.1.0-preview" + "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -4213,7 +4213,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 18:51:31 GMT" + "Sat, 25 Mar 2017 01:31:23 GMT" ], "Pragma": [ "no-cache" @@ -4229,19 +4229,19 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "034ed006-4c28-45db-84ad-f2d4c07feb2d" + "45979373-9eb4-48d7-96f9-ef2bad95d55e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14968" ], "x-ms-correlation-request-id": [ - "c7f64b00-c6fa-49c9-8fe5-9ac5d3ed7bc3" + "608ad902-cd12-4d30-8681-f98dd6a52e47" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T185131Z:c7f64b00-c6fa-49c9-8fe5-9ac5d3ed7bc3" + "WESTUS2:20170325T013123Z:608ad902-cd12-4d30-8681-f98dd6a52e47" ] }, "StatusCode": 200 @@ -4249,30 +4249,30 @@ ], "Names": { "ApplicationGatewayApiTest": [ - "csmrg7667", - "azsmnet5723", - "azsmnet2045", - "azsmnet3830", - "azsmnet9819", - "azsmnet132", - "azsmnet3331" + "csmrg7781", + "azsmnet7758", + "azsmnet7453", + "azsmnet2882", + "azsmnet3564", + "azsmnet6714", + "azsmnet4640" ], "CreateApplicationGateway": [ - "azsmnet790", - "azsmnet6486", - "azsmnet5694", - "azsmnet57", - "azsmnet1047", - "azsmnet2873", - "azsmnet4293", - "azsmnet8504", - "azsmnet129", - "azsmnet3623", - "azsmnet2535", - "azsmnet1579", - "azsmnet4411", - "azsmnet4106", - "azsmnet2995" + "azsmnet6709", + "azsmnet6558", + "azsmnet5555", + "azsmnet3427", + "azsmnet949", + "azsmnet8377", + "azsmnet1467", + "azsmnet8901", + "azsmnet6603", + "azsmnet3937", + "azsmnet1241", + "azsmnet8027", + "azsmnet4263", + "azsmnet8052", + "azsmnet6145" ] }, "Variables": { From 2716b60e592d7eaef00cc1d388aa2acf732208c7 Mon Sep 17 00:00:00 2001 From: begoldsm Date: Tue, 28 Mar 2017 16:14:27 -0700 Subject: [PATCH 48/56] Swagger and test update for ADL (#2995) * Swagger and test update for ADL This also uses the latest nightly AutoRest generator, which results in a touch of every file. * missed recording one test. * Update version of the ADL packages before PR merge --- .../ScenarioTests/AccountOperationTests.cs | 4 +- .../ScenarioTests/CatalogOperationTests.cs | 41 +- .../ScenarioTests/JobOperationTests.cs | 2 - .../CreateGetUpdateDeleteTest.json | 1496 ++++------- .../FirewallTest.json | 598 +++-- .../CredentialCRUDTest.json | 854 +++---- .../GetCatalogItemsTest.json | 937 +++---- .../SecretAndCredentialCRUDTest.json | 2101 ++-------------- .../SecretCRUDTest.json | 2237 +++++++++++++++++ .../SubmitGetListCancelTest.json | 844 +++---- .../DataLakeAnalyticsManagementHelper.cs | 2 +- .../DataLakeAnalytics.Tests/project.json | 4 +- .../DataLakeAnalyticsCustomizationHelper.cs | 2 +- .../Generated/AccountOperations.cs | 134 +- .../Generated/AccountOperationsExtensions.cs | 24 +- .../Generated/CatalogOperations.cs | 647 +++-- .../Generated/CatalogOperationsExtensions.cs | 29 +- ...ataLakeAnalyticsAccountManagementClient.cs | 48 +- ...ataLakeAnalyticsCatalogManagementClient.cs | 35 +- .../DataLakeAnalyticsJobManagementClient.cs | 39 +- .../DataLakeStoreAccountsOperations.cs | 102 +- ...taLakeStoreAccountsOperationsExtensions.cs | 26 +- .../Generated/FirewallRulesOperations.cs | 104 +- .../FirewallRulesOperationsExtensions.cs | 20 +- .../Generated/IAccountOperations.cs | 82 +- .../Generated/ICatalogOperations.cs | 15 +- ...ataLakeAnalyticsAccountManagementClient.cs | 22 +- ...ataLakeAnalyticsCatalogManagementClient.cs | 17 +- .../IDataLakeAnalyticsJobManagementClient.cs | 21 +- .../IDataLakeStoreAccountsOperations.cs | 46 +- .../Generated/IFirewallRulesOperations.cs | 52 +- .../Generated/IJobOperations.cs | 65 +- .../Generated/IStorageAccountsOperations.cs | 80 +- .../Generated/JobOperations.cs | 129 +- .../Generated/JobOperationsExtensions.cs | 21 +- .../Models/AddDataLakeStoreParameters.cs | 34 +- .../Models/AddStorageAccountParameters.cs | 34 +- .../Generated/Models/CatalogItem.cs | 22 +- .../Generated/Models/CatalogItemList.cs | 22 +- .../Generated/Models/CompileMode.cs | 18 +- .../Models/DataLakeAnalyticsAccount.cs | 50 +- .../Models/DataLakeAnalyticsAccountState.cs | 19 +- .../Models/DataLakeAnalyticsAccountStatus.cs | 19 +- ...ataLakeAnalyticsAccountUpdateParameters.cs | 34 +- ...lyticsCatalogCredentialCreateParameters.cs | 24 +- ...lyticsCatalogCredentialDeleteParameters.cs | 22 +- ...lyticsCatalogCredentialUpdateParameters.cs | 22 +- ...csCatalogSecretCreateOrUpdateParameters.cs | 24 +- .../Models/DataLakeStoreAccountInfo.cs | 34 +- .../Generated/Models/DdlName.cs | 22 +- .../Generated/Models/Diagnostics.cs | 39 +- .../Generated/Models/EntityId.cs | 22 +- .../Generated/Models/ExternalTable.cs | 22 +- .../Generated/Models/FileType.cs | 13 +- .../Models/FirewallAllowAzureIpsState.cs | 19 +- .../Generated/Models/FirewallRule.cs | 34 +- .../Generated/Models/FirewallState.cs | 19 +- .../Generated/Models/HiveJobProperties.cs | 35 +- .../Generated/Models/JobDataPath.cs | 33 +- .../Generated/Models/JobErrorDetails.cs | 55 +- .../Generated/Models/JobInformation.cs | 49 +- .../Generated/Models/JobInnerError.cs | 49 +- .../Generated/Models/JobProperties.cs | 29 +- .../Generated/Models/JobResource.cs | 27 +- .../Generated/Models/JobResourceType.cs | 18 +- .../Generated/Models/JobResult.cs | 18 +- .../Generated/Models/JobState.cs | 18 +- .../Generated/Models/JobStateAuditRecord.cs | 35 +- .../Generated/Models/JobStatistics.cs | 33 +- .../Models/JobStatisticsVertexStage.cs | 67 +- .../Generated/Models/JobType.cs | 18 +- .../Generated/Models/OptionalSubResource.cs | 32 +- .../Generated/Models/Page.cs | 15 +- .../Generated/Models/Resource.cs | 38 +- .../Generated/Models/SasTokenInfo.cs | 30 +- .../Generated/Models/SeverityTypes.cs | 18 +- .../Generated/Models/StorageAccountInfo.cs | 34 +- .../Generated/Models/StorageContainer.cs | 42 +- .../Generated/Models/SubResource.cs | 34 +- .../Generated/Models/TierType.cs | 19 +- .../Generated/Models/TypeFieldInfo.cs | 22 +- .../Generated/Models/USqlAssembly.cs | 22 +- .../Generated/Models/USqlAssemblyClr.cs | 22 +- .../Models/USqlAssemblyDependencyInfo.cs | 22 +- .../Generated/Models/USqlAssemblyFileInfo.cs | 22 +- .../Generated/Models/USqlCredential.cs | 22 +- .../Generated/Models/USqlDatabase.cs | 22 +- .../Generated/Models/USqlDirectedColumn.cs | 22 +- .../Generated/Models/USqlDistributionInfo.cs | 22 +- .../Models/USqlExternalDataSource.cs | 22 +- .../Generated/Models/USqlIndex.cs | 22 +- .../Generated/Models/USqlJobProperties.cs | 43 +- .../Generated/Models/USqlProcedure.cs | 22 +- .../Generated/Models/USqlSchema.cs | 22 +- .../Generated/Models/USqlSecret.cs | 22 +- .../Generated/Models/USqlTable.cs | 22 +- .../Generated/Models/USqlTableColumn.cs | 22 +- .../Generated/Models/USqlTablePartition.cs | 22 +- .../Generated/Models/USqlTableStatistics.cs | 22 +- .../Generated/Models/USqlTableType.cs | 24 +- .../Models/USqlTableValuedFunction.cs | 22 +- .../Generated/Models/USqlType.cs | 22 +- .../Generated/Models/USqlView.cs | 22 +- .../Models/UpdateFirewallRuleParameters.cs | 34 +- .../Models/UpdateStorageAccountParameters.cs | 34 +- .../Generated/StorageAccountsOperations.cs | 186 +- .../StorageAccountsOperationsExtensions.cs | 28 +- .../Properties/AssemblyInfo.cs | 2 +- .../generate.cmd | 14 +- .../project.json | 2 +- .../ScenarioTests/AccountOperationTests.cs | 4 +- .../ScenarioTests/FileSystemOperationTests.cs | 84 +- .../CreateGetUpdateDeleteTest.json | 532 ++-- .../FirewallAndTrustedProviderTest.json | 548 ++-- ...aLakeStoreDownloadUploadFileAndFolder.json | 882 +++---- .../DataLakeStoreFileSystemAppendToFile.json | 298 ++- ...reFileSystemAppendToFileWithBadOffset.json | 295 ++- ...StoreFileSystemAppendToFileWithOffset.json | 338 ++- ...taLakeStoreFileSystemConcatenateFiles.json | 391 ++- ...eFileSystemConcurrentAppendCreateFile.json | 388 +-- ...StoreFileSystemConcurrentAppendToFile.json | 380 +-- .../DataLakeStoreFileSystemDeleteFile.json | 292 ++- .../DataLakeStoreFileSystemDeleteFolder.json | 371 ++- ...ataLakeStoreFileSystemEmptyFileCreate.json | 280 +-- ...aLakeStoreFileSystemFileAlreadyExists.json | 293 ++- ...StoreFileSystemFileCreateWithContents.json | 321 ++- .../DataLakeStoreFileSystemFolderCreate.json | 266 +- .../DataLakeStoreFileSystemGetAcl.json | 311 +-- .../DataLakeStoreFileSystemGetAndSetAcl.json | 324 ++- ...stemGetContentSummaryForFileAndFolder.json | 312 ++- ...LakeStoreFileSystemGetNonExistentFile.json | 251 +- ...LakeStoreFileSystemListFolderContents.json | 321 ++- ...aLakeStoreFileSystemMoveFileAndFolder.json | 412 ++- ...aLakeStoreFileSystemMsConcatDeleteDir.json | 406 ++- ...LakeStoreFileSystemMsConcatenateFiles.json | 393 ++- ...oreFileSystemNegativeConcurrentAppend.json | 317 ++- ...DataLakeStoreFileSystemNegativeExpiry.json | 357 ++- .../DataLakeStoreFileSystemSetAcl.json | 291 ++- ...LakeStoreFileSystemSetAndRemoveExpiry.json | 419 ++- ...aLakeStoreFileSystemSetDeleteAclEntry.json | 329 ++- ...aLakeStoreFileSystemSetFileProperties.json | 298 ++- .../DataLakeStoreFileSystemTestFile.json | 283 +-- ...StoreFileSystemValidateDefaultTimeout.json | 236 +- .../DataLakeStore.Tests/project.json | 4 +- .../DataLakeStoreCustomizationHelper.cs | 2 +- .../DataTransfer/Common/StringExtensions.cs | 2 +- .../Generated/AccountOperations.cs | 155 +- .../Generated/AccountOperationsExtensions.cs | 25 +- .../DataLakeStoreAccountManagementClient.cs | 47 +- ...DataLakeStoreFileSystemManagementClient.cs | 35 +- .../Generated/FileSystemOperations.cs | 382 ++- .../FileSystemOperationsExtensions.cs | 209 +- .../Generated/FirewallRulesOperations.cs | 103 +- .../FirewallRulesOperationsExtensions.cs | 19 +- .../Generated/IAccountOperations.cs | 85 +- .../IDataLakeStoreAccountManagementClient.cs | 21 +- ...DataLakeStoreFileSystemManagementClient.cs | 17 +- .../Generated/IFileSystemOperations.cs | 87 +- .../Generated/IFirewallRulesOperations.cs | 51 +- .../ITrustedIdProvidersOperations.cs | 51 +- .../Generated/Models/AclStatus.cs | 24 +- .../Generated/Models/AclStatusResult.cs | 22 +- .../Models/AdlsAccessControlException.cs | 22 +- .../Models/AdlsBadOffsetException.cs | 22 +- .../Generated/Models/AdlsError.cs | 24 +- .../Generated/Models/AdlsErrorException.cs | 24 +- .../Models/AdlsFileAlreadyExistsException.cs | 22 +- .../Models/AdlsFileNotFoundException.cs | 22 +- .../Generated/Models/AdlsIOException.cs | 22 +- .../Models/AdlsIllegalArgumentException.cs | 22 +- .../Generated/Models/AdlsRemoteException.cs | 26 +- .../Generated/Models/AdlsRuntimeException.cs | 22 +- .../Generated/Models/AdlsSecurityException.cs | 22 +- .../Models/AdlsThrottledException.cs | 22 +- .../AdlsUnsupportedOperationException.cs | 22 +- .../Generated/Models/AppendModeType.cs | 13 +- .../Generated/Models/ContentSummary.cs | 30 +- .../Generated/Models/ContentSummaryResult.cs | 24 +- .../Generated/Models/DataLakeStoreAccount.cs | 43 +- .../Models/DataLakeStoreAccountState.cs | 18 +- .../Models/DataLakeStoreAccountStatus.cs | 18 +- .../DataLakeStoreAccountUpdateParameters.cs | 33 +- .../Generated/Models/EncryptionConfig.cs | 27 +- .../Generated/Models/EncryptionConfigType.cs | 18 +- .../Generated/Models/EncryptionIdentity.cs | 31 +- .../Models/EncryptionProvisioningState.cs | 18 +- .../Generated/Models/EncryptionState.cs | 18 +- .../Generated/Models/ErrorDetails.cs | 33 +- .../Generated/Models/ExpiryOptionType.cs | 13 +- .../Generated/Models/FileOperationResult.cs | 24 +- .../Generated/Models/FileStatusProperties.cs | 57 +- .../Generated/Models/FileStatusResult.cs | 24 +- .../Generated/Models/FileStatuses.cs | 24 +- .../Generated/Models/FileStatusesResult.cs | 24 +- .../Generated/Models/FileType.cs | 13 +- .../Models/FirewallAllowAzureIpsState.cs | 18 +- .../Generated/Models/FirewallRule.cs | 33 +- .../Generated/Models/FirewallState.cs | 18 +- .../Generated/Models/KeyVaultMetaInfo.cs | 29 +- .../Generated/Models/Page.cs | 20 +- .../Generated/Models/Resource.cs | 37 +- .../Generated/Models/SubResource.cs | 31 +- .../Generated/Models/SyncFlag.cs | 13 +- .../Generated/Models/TierType.cs | 18 +- .../Generated/Models/TrustedIdProvider.cs | 33 +- .../Models/TrustedIdProviderState.cs | 18 +- .../Models/UpdateFirewallRuleParameters.cs | 33 +- .../UpdateTrustedIdProviderParameters.cs | 33 +- .../Generated/TrustedIdProvidersOperations.cs | 103 +- .../TrustedIdProvidersOperationsExtensions.cs | 19 +- .../Properties/AssemblyInfo.cs | 2 +- .../generate.cmd | 10 +- .../project.json | 2 +- 213 files changed, 13599 insertions(+), 13255 deletions(-) create mode 100644 src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretCRUDTest.json diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/AccountOperationTests.cs b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/AccountOperationTests.cs index e8b8196d4a2f..698b548d4596 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/AccountOperationTests.cs +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/AccountOperationTests.cs @@ -294,7 +294,9 @@ public void FirewallTest() Assert.Equal(firewallStart, responseGet.FirewallRules[0].StartIpAddress); Assert.Equal(firewallEnd, responseGet.FirewallRules[0].EndIpAddress); Assert.Equal(firewallRuleName1, responseGet.FirewallRules[0].Name); - Assert.Equal(FirewallAllowAzureIpsState.Enabled, responseGet.FirewallAllowAzureIps); + + // TODO: re-enable when this is re-enabled on the server side. + //Assert.Equal(FirewallAllowAzureIpsState.Enabled, responseGet.FirewallAllowAzureIps); // Test getting the specific firewall rules var firewallRule = clientToUse.FirewallRules.Get(commonData.ResourceGroupName, adlaAcocunt, firewallRuleName1); diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/CatalogOperationTests.cs b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/CatalogOperationTests.cs index d2350fb60294..3cb0c2239c63 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/CatalogOperationTests.cs +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/CatalogOperationTests.cs @@ -27,7 +27,7 @@ public void GetCatalogItemsTest() commonData.HostUrl = commonData.DataLakeAnalyticsManagementHelper.TryCreateDataLakeAnalyticsAccount(commonData.ResourceGroupName, commonData.Location, commonData.DataLakeStoreAccountName, commonData.SecondDataLakeAnalyticsAccountName); - TestUtilities.Wait(120000); // Sleep for two minutes to give the account a chance to provision the queue + commonData.DataLakeAnalyticsManagementHelper.CreateCatalog(commonData.ResourceGroupName, commonData.SecondDataLakeAnalyticsAccountName, commonData.DatabaseName, commonData.TableName, commonData.TvfName, commonData.ViewName, commonData.ProcName); using (var clientToUse = commonData.GetDataLakeAnalyticsCatalogManagementClient(context)) @@ -160,7 +160,7 @@ public void CredentialCRUDTest() commonData.HostUrl = commonData.DataLakeAnalyticsManagementHelper.TryCreateDataLakeAnalyticsAccount(commonData.ResourceGroupName, commonData.Location, commonData.DataLakeStoreAccountName, commonData.SecondDataLakeAnalyticsAccountName); - TestUtilities.Wait(120000); // Sleep for two minutes to give the account a chance to provision the queue + commonData.DataLakeAnalyticsManagementHelper.CreateCatalog(commonData.ResourceGroupName, commonData.SecondDataLakeAnalyticsAccountName, commonData.DatabaseName, commonData.TableName, commonData.TvfName, commonData.ViewName, commonData.ProcName); using (var clientToUse = commonData.GetDataLakeAnalyticsCatalogManagementClient(context)) @@ -261,7 +261,7 @@ public void CredentialCRUDTest() } [Fact] - public void SecretAndCredentialCRUDTest() + public void SecretCRUDTest() { // NOTE: This is deprecated and will be removed in a future release using (var context = MockContext.Start(this.GetType().FullName)) @@ -270,7 +270,7 @@ public void SecretAndCredentialCRUDTest() commonData.HostUrl = commonData.DataLakeAnalyticsManagementHelper.TryCreateDataLakeAnalyticsAccount(commonData.ResourceGroupName, commonData.Location, commonData.DataLakeStoreAccountName, commonData.SecondDataLakeAnalyticsAccountName); - TestUtilities.Wait(120000); // Sleep for two minutes to give the account a chance to provision the queue + commonData.DataLakeAnalyticsManagementHelper.CreateCatalog(commonData.ResourceGroupName, commonData.SecondDataLakeAnalyticsAccountName, commonData.DatabaseName, commonData.TableName, commonData.TvfName, commonData.ViewName, commonData.ProcName); using (var clientToUse = commonData.GetDataLakeAnalyticsCatalogManagementClient(context)) @@ -308,6 +308,7 @@ public void SecretAndCredentialCRUDTest() Password = commonData.SecretPwd, Uri = "https://adlasecrettest.contoso.com:443" }); + // Get the secret and ensure the response contains a date. var secretGetResponse = clientToUse.Catalog.GetSecret( commonData.SecondDataLakeAnalyticsAccountName, @@ -316,38 +317,6 @@ public void SecretAndCredentialCRUDTest() Assert.NotNull(secretGetResponse); Assert.NotNull(secretGetResponse.CreationTime); - // Create a credential with the secret - var credentialCreationScript = - string.Format( - @"USE {0}; CREATE CREDENTIAL {1} WITH USER_NAME = ""scope@rkm4grspxa"", IDENTITY = ""{2}"";", - commonData.DatabaseName, commonData.CredentialName, commonData.SecretName); - commonData.DataLakeAnalyticsManagementHelper.RunJobToCompletion(jobClient, - commonData.SecondDataLakeAnalyticsAccountName, TestUtilities.GenerateGuid(), - credentialCreationScript); - - // Get the Credential list - var credListResponse = clientToUse.Catalog.ListCredentials( - commonData.SecondDataLakeAnalyticsAccountName, - commonData.DatabaseName); - Assert.True(credListResponse.Count() >= 1); - - // look for the credential we created - Assert.True(credListResponse.Any(cred => cred.Name.Equals(commonData.CredentialName))); - - // Get the specific credential as well - var credGetResponse = clientToUse.Catalog.GetCredential( - commonData.SecondDataLakeAnalyticsAccountName, - commonData.DatabaseName, commonData.CredentialName); - Assert.Equal(commonData.CredentialName, credGetResponse.Name); - - // Drop the credential (to enable secret deletion) - var credentialDropScript = - string.Format( - @"USE {0}; DROP CREDENTIAL {1};", commonData.DatabaseName, commonData.CredentialName); - commonData.DataLakeAnalyticsManagementHelper.RunJobToCompletion(jobClient, - commonData.SecondDataLakeAnalyticsAccountName, TestUtilities.GenerateGuid(), - credentialDropScript); - // Delete the secret clientToUse.Catalog.DeleteSecret( commonData.SecondDataLakeAnalyticsAccountName, diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs index 5623b57fc0a9..fd724a900682 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/ScenarioTests/JobOperationTests.cs @@ -28,8 +28,6 @@ public void SubmitGetListCancelTest() commonData.DataLakeAnalyticsManagementHelper.TryCreateDataLakeAnalyticsAccount(commonData.ResourceGroupName, commonData.Location, commonData.DataLakeStoreAccountName, commonData.SecondDataLakeAnalyticsAccountName); - // TODO: Remove this sleep once defect 5022906 is fixed - TestUtilities.Wait(120000); // Sleep for two minutes to give the account a chance to provision the queue var clientToUse = this.GetDataLakeAnalyticsJobManagementClient(context); Guid jobId = TestUtilities.GenerateGuid(); diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json index a7d1738f4d5c..6b2f67b22f76 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "932dd78b-f10c-431a-926a-7b507c1f942e" + "397bd1fb-7086-44bf-b7d3-c91ff796dd20" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:33 GMT" + "Mon, 27 Mar 2017 19:54:36 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-request-id": [ - "1c4bbe2b-885e-4b09-a36f-df4b57924ad3" + "7add856d-d6db-4573-9183-006ce475afec" ], "x-ms-correlation-request-id": [ - "1c4bbe2b-885e-4b09-a36f-df4b57924ad3" + "7add856d-d6db-4573-9183-006ce475afec" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194433Z:1c4bbe2b-885e-4b09-a36f-df4b57924ad3" + "WESTUS2:20170327T195436Z:7add856d-d6db-4573-9183-006ce475afec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecbbecc0-775e-4bcb-962d-c84291ebe578" + "6f53e9d6-475c-4c6a-a5e9-7c60420a96b1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:33 GMT" + "Mon, 27 Mar 2017 19:54:36 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14977" ], "x-ms-request-id": [ - "a8475ec2-33a2-4072-8d90-b48075ef09f7" + "95a8906a-5b14-45db-8224-c28f5256ef45" ], "x-ms-correlation-request-id": [ - "a8475ec2-33a2-4072-8d90-b48075ef09f7" + "95a8906a-5b14-45db-8224-c28f5256ef45" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194433Z:a8475ec2-33a2-4072-8d90-b48075ef09f7" + "WESTUS2:20170327T195436Z:95a8906a-5b14-45db-8224-c28f5256ef45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03b279e5-3b2e-4ab2-a252-ba2162f96d14" + "18c126b1-f14c-492b-9559-d8ee70f3bbf8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:34 GMT" + "Mon, 27 Mar 2017 19:54:38 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-request-id": [ - "eea11e15-f3bb-44ac-93d7-7fa7ac1661be" + "d71a40e8-9789-4ff9-a8e1-5b6cf9443242" ], "x-ms-correlation-request-id": [ - "eea11e15-f3bb-44ac-93d7-7fa7ac1661be" + "d71a40e8-9789-4ff9-a8e1-5b6cf9443242" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194434Z:eea11e15-f3bb-44ac-93d7-7fa7ac1661be" + "WESTUS2:20170327T195438Z:d71a40e8-9789-4ff9-a8e1-5b6cf9443242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f9fabff-bc87-4660-8fa8-9573ad650c5e" + "0acf9a5c-8556-4e4d-90b5-2a87930cf14e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:34 GMT" + "Mon, 27 Mar 2017 19:54:38 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14976" ], "x-ms-request-id": [ - "690ad787-aab0-4a1c-909c-4d669f5446bf" + "94350470-0c79-443b-9036-3d5fd5104e90" ], "x-ms-correlation-request-id": [ - "690ad787-aab0-4a1c-909c-4d669f5446bf" + "94350470-0c79-443b-9036-3d5fd5104e90" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194434Z:690ad787-aab0-4a1c-909c-4d669f5446bf" + "WESTUS2:20170327T195438Z:94350470-0c79-443b-9036-3d5fd5104e90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,17 +229,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee20de27-a513-4b15-9e34-d6a60da353e8" + "0240afd7-e9e9-404a-8a74-02f9a04aa773" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +250,28 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:35 GMT" + "Mon, 27 Mar 2017 19:54:39 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-request-id": [ - "96235861-478f-43d4-9617-c4f9f84c3c6f" + "e9c27abc-b93e-4b29-8556-2db6b6cd92e9" ], "x-ms-correlation-request-id": [ - "96235861-478f-43d4-9617-c4f9f84c3c6f" + "e9c27abc-b93e-4b29-8556-2db6b6cd92e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194435Z:96235861-478f-43d4-9617-c4f9f84c3c6f" + "WESTUS2:20170327T195439Z:e9c27abc-b93e-4b29-8556-2db6b6cd92e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,17 +286,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e551e405-2c78-4e98-ad64-825101ac2e7b" + "e36076f6-a1b8-427f-8422-29df29447b27" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -304,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:35 GMT" + "Mon, 27 Mar 2017 19:54:39 GMT" ], "Pragma": [ "no-cache" @@ -313,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14975" ], "x-ms-request-id": [ - "a2d1d42e-49da-4240-b733-9dca6010e940" + "719cf68a-57e6-4876-a145-c371d8b9fa25" ], "x-ms-correlation-request-id": [ - "a2d1d42e-49da-4240-b733-9dca6010e940" + "719cf68a-57e6-4876-a145-c371d8b9fa25" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194435Z:a2d1d42e-49da-4240-b733-9dca6010e940" + "WESTUS2:20170327T195439Z:719cf68a-57e6-4876-a145-c371d8b9fa25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,23 +334,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba14971?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTQ5NzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19246?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTkyNDY/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8139ad15-92d3-4fe8-b738-79ea14d224f7" + "871f2482-c9cd-424e-8ae6-cad948503e86" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba14971' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba19246' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "102" @@ -362,7 +364,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:35 GMT" + "Mon, 27 Mar 2017 19:54:39 GMT" ], "Pragma": [ "no-cache" @@ -371,16 +373,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14974" ], "x-ms-request-id": [ - "c1e875d6-5ff1-4fe5-b1ec-f2ec7a8a0d57" + "7ea7da6a-aa98-4c8a-8ead-7106a062753d" ], "x-ms-correlation-request-id": [ - "c1e875d6-5ff1-4fe5-b1ec-f2ec7a8a0d57" + "7ea7da6a-aa98-4c8a-8ead-7106a062753d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194435Z:c1e875d6-5ff1-4fe5-b1ec-f2ec7a8a0d57" + "WESTUS2:20170327T195439Z:7ea7da6a-aa98-4c8a-8ead-7106a062753d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -389,23 +391,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba14971?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTQ5NzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19246?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTkyNDY/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08c6ac3a-bbe3-413c-a990-a8cd147fdfd5" + "1a1f4b5a-a1af-4360-8358-cf63361c7af6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971\",\r\n \"name\": \"rgaba14971\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246\",\r\n \"name\": \"rgaba19246\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,7 +418,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:37 GMT" + "Mon, 27 Mar 2017 19:54:41 GMT" ], "Pragma": [ "no-cache" @@ -426,16 +427,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14973" ], "x-ms-request-id": [ - "c4a08880-2bfe-43eb-81b8-3efd30735a37" + "e6087f07-dfdb-4aa4-9bce-3c4522c8e46b" ], "x-ms-correlation-request-id": [ - "c4a08880-2bfe-43eb-81b8-3efd30735a37" + "e6087f07-dfdb-4aa4-9bce-3c4522c8e46b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194437Z:c4a08880-2bfe-43eb-81b8-3efd30735a37" + "WESTUS2:20170327T195441Z:e6087f07-dfdb-4aa4-9bce-3c4522c8e46b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,8 +445,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba14971?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTQ5NzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19246?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTkyNDY/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -456,17 +457,16 @@ "31" ], "x-ms-client-request-id": [ - "e4220300-0da5-4699-9bcb-42ce81cf7ad3" + "d962a5b4-7191-4220-86fa-77193b667f4a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971\",\r\n \"name\": \"rgaba14971\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246\",\r\n \"name\": \"rgaba19246\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "174" @@ -481,22 +481,22 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:37 GMT" + "Mon, 27 Mar 2017 19:54:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1188" ], "x-ms-request-id": [ - "6b7bc5a6-f90f-4994-b4f9-02bd26a990b6" + "3cda1082-fbd8-4c66-b1e0-975d081c9d8f" ], "x-ms-correlation-request-id": [ - "6b7bc5a6-f90f-4994-b4f9-02bd26a990b6" + "3cda1082-fbd8-4c66-b1e0-975d081c9d8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194437Z:6b7bc5a6-f90f-4994-b4f9-02bd26a990b6" + "WESTUS2:20170327T195441Z:3cda1082-fbd8-4c66-b1e0-975d081c9d8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,8 +505,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.Storage/storageAccounts/testazureblob15124?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTUxMjQ/YXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.Storage/storageAccounts/testazureblob11922?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTE5MjI/YXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -517,13 +517,12 @@ "99" ], "x-ms-client-request-id": [ - "344a5e2e-4e25-4222-891e-1a803f97c5a5" + "88c917fa-3a25-4eab-b251-fbd29bd11a14" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, @@ -539,13 +538,13 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:44:37 GMT" + "Mon, 27 Mar 2017 19:54:43 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/operations/e70e5c07-1284-4eb7-8780-5f74f864e00c?monitor=true&api-version=2016-01-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/operations/5b5952f3-75ab-4005-8f76-833ea352ea48?monitor=true&api-version=2016-01-01" ], "Retry-After": [ "17" @@ -555,16 +554,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-request-id": [ - "47c9e742-3b2b-4754-9b07-cd25c32c64c7" + "54a6782e-6368-407f-a321-2ffb8951852d" ], "x-ms-correlation-request-id": [ - "47c9e742-3b2b-4754-9b07-cd25c32c64c7" + "54a6782e-6368-407f-a321-2ffb8951852d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194438Z:47c9e742-3b2b-4754-9b07-cd25c32c64c7" + "WESTUS2:20170327T195443Z:54a6782e-6368-407f-a321-2ffb8951852d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -573,17 +572,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/operations/e70e5c07-1284-4eb7-8780-5f74f864e00c?monitor=true&api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2U3MGU1YzA3LTEyODQtNGViNy04NzgwLTVmNzRmODY0ZTAwYz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/operations/5b5952f3-75ab-4005-8f76-833ea352ea48?monitor=true&api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzViNTk1MmYzLTc1YWItNDAwNS04Zjc2LTgzM2VhMzUyZWE0OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.Storage/storageAccounts/testazureblob15124\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"testazureblob15124\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-01-05T19:44:38.3825414Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testazureblob15124.blob.core.windows.net/\",\r\n \"file\": \"https://testazureblob15124.file.core.windows.net/\",\r\n \"queue\": \"https://testazureblob15124.queue.core.windows.net/\",\r\n \"table\": \"https://testazureblob15124.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.Storage/storageAccounts/testazureblob11922\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"testazureblob11922\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-27T19:54:43.7397561Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testazureblob11922.blob.core.windows.net/\",\r\n \"file\": \"https://testazureblob11922.file.core.windows.net/\",\r\n \"queue\": \"https://testazureblob11922.queue.core.windows.net/\",\r\n \"table\": \"https://testazureblob11922.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -595,7 +593,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:45:08 GMT" + "Mon, 27 Mar 2017 19:55:13 GMT" ], "Pragma": [ "no-cache" @@ -611,16 +609,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "015f6680-c3ca-497b-9430-98fdad62e341" + "73e2ba6f-b96a-4fea-a976-0828bc891f47" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14987" ], "x-ms-correlation-request-id": [ - "015f6680-c3ca-497b-9430-98fdad62e341" + "73e2ba6f-b96a-4fea-a976-0828bc891f47" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194508Z:015f6680-c3ca-497b-9430-98fdad62e341" + "WESTUS2:20170327T195514Z:73e2ba6f-b96a-4fea-a976-0828bc891f47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -629,23 +627,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.Storage/storageAccounts/testazureblob15124/listKeys?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTUxMjQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.Storage/storageAccounts/testazureblob11922/listKeys?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTE5MjIvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54c32b5f-63f8-472c-8164-82fa43a0fa9c" + "72b70a58-66f6-412f-b969-892569f9aab3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"yQ/DxMh2BtDNHZyNqJ3zNzBdeQ7nxD7/t42uPWPTIWIfAdGGnG4eA6zu58oxFCql8xr4/8rQ2hGY3z2fvTI+hA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"GQRabM6aLg7Kk+jv5U3Ydl0DjjBn+GrGQazFJG9zmycDgTfmruNTKV1K52Kilul52GqdXoOiIoLnYsaY4+kvLg==\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"+rWcrDb+L9Gag5otj/Rn5jov+EQZFSmTJ6cpzBqAPkDlx5DCS4NoOMifGxPAns98JkVoNSq0lni5NOEp4snhpA==\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"permissions\": \"Full\",\r\n \"value\": \"0DpZqxrx8VcFdPIm1mZm1SkxPotbV3HRzWKewMkU49u4y2gKCRnQgPkeaz+Ba3Jm1ltjCkuhr91iH+6QUKim/Q==\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -657,7 +654,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:45:09 GMT" + "Mon, 27 Mar 2017 19:55:13 GMT" ], "Pragma": [ "no-cache" @@ -673,16 +670,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8ae9d18c-0fc0-4ee0-a048-fc52187c8997" + "16bc2083-fca0-4cab-a4f3-6575d1149c5c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-correlation-request-id": [ - "8ae9d18c-0fc0-4ee0-a048-fc52187c8997" + "16bc2083-fca0-4cab-a4f3-6575d1149c5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194509Z:8ae9d18c-0fc0-4ee0-a048-fc52187c8997" + "WESTUS2:20170327T195514Z:16bc2083-fca0-4cab-a4f3-6575d1149c5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -691,23 +688,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.Storage/storageAccounts/testazureblob15124?api-version=2016-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTUxMjQ/YXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.Storage/storageAccounts/testazureblob11922?api-version=2016-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZXN0YXp1cmVibG9iMTE5MjI/YXBpLXZlcnNpb249MjAxNi0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "573a905c-5e86-449f-97ec-da146a00dbe3" + "738531f6-aa45-4fb1-9cb6-375d81fe73d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Storage.StorageManagementClient/5.0.2-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.Storage/storageAccounts/testazureblob15124\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"testazureblob15124\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-01-05T19:44:38.3825414Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testazureblob15124.blob.core.windows.net/\",\r\n \"file\": \"https://testazureblob15124.file.core.windows.net/\",\r\n \"queue\": \"https://testazureblob15124.queue.core.windows.net/\",\r\n \"table\": \"https://testazureblob15124.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.Storage/storageAccounts/testazureblob11922\",\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"name\": \"testazureblob11922\",\r\n \"properties\": {\r\n \"creationTime\": \"2017-03-27T19:54:43.7397561Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://testazureblob11922.blob.core.windows.net/\",\r\n \"file\": \"https://testazureblob11922.file.core.windows.net/\",\r\n \"queue\": \"https://testazureblob11922.queue.core.windows.net/\",\r\n \"table\": \"https://testazureblob11922.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -719,7 +715,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:45:09 GMT" + "Mon, 27 Mar 2017 19:55:13 GMT" ], "Pragma": [ "no-cache" @@ -735,16 +731,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4eac81c4-73ef-4142-9e85-f2d4cf02074f" + "16ed6d71-0b90-4f10-ae9f-4667fbaeb15c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14986" ], "x-ms-correlation-request-id": [ - "4eac81c4-73ef-4142-9e85-f2d4cf02074f" + "16ed6d71-0b90-4f10-ae9f-4667fbaeb15c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194509Z:4eac81c4-73ef-4142-9e85-f2d4cf02074f" + "WESTUS2:20170327T195514Z:16ed6d71-0b90-4f10-ae9f-4667fbaeb15c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -753,23 +749,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyNTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2Njc3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e5a68b0-0f0d-4a24-8195-a612e6148d19" + "421d1d57-a786-4e62-961f-7467bda2ddcb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake12545' under resource group 'rgaba14971' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake16677' under resource group 'rgaba19246' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -784,7 +779,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:45:08 GMT" + "Mon, 27 Mar 2017 19:55:13 GMT" ], "Pragma": [ "no-cache" @@ -793,13 +788,13 @@ "gateway" ], "x-ms-request-id": [ - "6f47df8f-c199-4634-b91d-758a00b89c82" + "d87c5f45-f8cf-4edd-bd2f-e7029c091ac6" ], "x-ms-correlation-request-id": [ - "6f47df8f-c199-4634-b91d-758a00b89c82" + "d87c5f45-f8cf-4edd-bd2f-e7029c091ac6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194509Z:6f47df8f-c199-4634-b91d-758a00b89c82" + "WESTUS2:20170327T195514Z:d87c5f45-f8cf-4edd-bd2f-e7029c091ac6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -808,17 +803,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyNTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2Njc3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12545.azuredatalakestore.net\",\r\n \"accountId\": \"ddd0c097-17c8-4f97-ada1-2dd691a995f0\",\r\n \"creationTime\": \"2017-01-05T19:45:11.8247695Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:45:11.8247695Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545\",\r\n \"name\": \"testdatalake12545\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16677.azuredatalakestore.net\",\r\n \"accountId\": \"c729fe85-ae03-4c3d-b5bb-df66aef8e4b9\",\r\n \"creationTime\": \"2017-03-27T19:55:14.2945701Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:55:14.2945701Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677\",\r\n \"name\": \"testdatalake16677\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -833,7 +827,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:45:41 GMT" + "Mon, 27 Mar 2017 19:55:45 GMT" ], "Pragma": [ "no-cache" @@ -845,7 +839,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f26d8e73-e602-45ee-94be-69109049abb3" + "6d795f70-bea6-4fd1-ac56-e4ba3e41b4b5" ], "X-Content-Type-Options": [ "nosniff" @@ -857,13 +851,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14972" ], "x-ms-correlation-request-id": [ - "bbc1a66f-f6de-4e94-9764-5830ce639969" + "fa6e59f3-14e5-4b7e-8cd3-3dde70aa4288" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194542Z:bbc1a66f-f6de-4e94-9764-5830ce639969" + "WESTUS2:20170327T195546Z:fa6e59f3-14e5-4b7e-8cd3-3dde70aa4288" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -872,23 +866,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyNTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2Njc3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68408aef-6166-4fcd-90d1-834bc992ffe7" + "ec3c39ce-f105-452a-b4e5-81082acfc52f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12545.azuredatalakestore.net\",\r\n \"accountId\": \"ddd0c097-17c8-4f97-ada1-2dd691a995f0\",\r\n \"creationTime\": \"2017-01-05T19:45:11.8247695Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:45:11.8247695Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545\",\r\n \"name\": \"testdatalake12545\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16677.azuredatalakestore.net\",\r\n \"accountId\": \"c729fe85-ae03-4c3d-b5bb-df66aef8e4b9\",\r\n \"creationTime\": \"2017-03-27T19:55:14.2945701Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:55:14.2945701Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677\",\r\n \"name\": \"testdatalake16677\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -903,7 +896,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:45:42 GMT" + "Mon, 27 Mar 2017 19:55:46 GMT" ], "Pragma": [ "no-cache" @@ -915,7 +908,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7d013f57-917b-445a-916a-be1a5c83c8b5" + "b8038065-33ea-4277-a1d0-ea2eac6d818e" ], "X-Content-Type-Options": [ "nosniff" @@ -927,13 +920,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-correlation-request-id": [ - "19747644-9754-47a9-be34-2163198f30d7" + "4623a624-4d95-4f2a-8fc4-be85b7679755" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194543Z:19747644-9754-47a9-be34-2163198f30d7" + "WESTUS2:20170327T195547Z:4623a624-4d95-4f2a-8fc4-be85b7679755" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -942,8 +935,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyNTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2Njc3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -954,17 +947,16 @@ "31" ], "x-ms-client-request-id": [ - "4ccd2408-45f2-4d92-bfb8-16c020e25d4e" + "e6a51f86-ed4d-4778-9751-aad9d02ce9d8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"ddd0c097-17c8-4f97-ada1-2dd691a995f0\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545\",\r\n \"name\": \"testdatalake12545\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"c729fe85-ae03-4c3d-b5bb-df66aef8e4b9\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677\",\r\n \"name\": \"testdatalake16677\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -982,13 +974,13 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:45:10 GMT" + "Mon, 27 Mar 2017 19:55:14 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake12545/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake16677/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -997,10 +989,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ddd0c097-17c8-4f97-ada1-2dd691a995f00?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c729fe85-ae03-4c3d-b5bb-df66aef8e4b90?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "dac7827d-407a-4ec6-8fc1-4e78a2de726f" + "bd002827-9324-4137-b488-56bde51d60a4" ], "X-Content-Type-Options": [ "nosniff" @@ -1012,13 +1004,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1178" ], "x-ms-correlation-request-id": [ - "e62aa5a3-7a29-4f2c-97fc-3c4bc8784b30" + "e120ebda-58d5-407e-ac21-8ed1746a6382" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194511Z:e62aa5a3-7a29-4f2c-97fc-3c4bc8784b30" + "WESTUS2:20170327T195515Z:e120ebda-58d5-407e-ac21-8ed1746a6382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1027,14 +1019,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ddd0c097-17c8-4f97-ada1-2dd691a995f00?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2RkZDBjMDk3LTE3YzgtNGY5Ny1hZGExLTJkZDY5MWE5OTVmMDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c729fe85-ae03-4c3d-b5bb-df66aef8e4b90?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2M3MjlmZTg1LWFlMDMtNGMzZC1iNWJiLWRmNjZhZWY4ZTRiOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1052,7 +1043,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:45:41 GMT" + "Mon, 27 Mar 2017 19:55:45 GMT" ], "Pragma": [ "no-cache" @@ -1064,7 +1055,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3cdb96b6-7151-4809-8325-887dd463a993" + "296a682f-7127-47e5-b4f6-33da66cef659" ], "X-Content-Type-Options": [ "nosniff" @@ -1076,13 +1067,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14980" ], "x-ms-correlation-request-id": [ - "a6dd7b88-5bf1-4e87-874d-0cbb7b629056" + "d273c4db-c4f3-48f4-bd8d-573eba2e1f56" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194542Z:a6dd7b88-5bf1-4e87-874d-0cbb7b629056" + "WESTUS2:20170327T195546Z:d273c4db-c4f3-48f4-bd8d-573eba2e1f56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1091,23 +1082,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09477611-d8c9-4586-9163-591624cc215e" + "52f076e9-5033-4a7d-8414-4ea2d8de96ae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake29426' under resource group 'rgaba14971' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake29664' under resource group 'rgaba19246' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -1122,7 +1112,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:45:43 GMT" + "Mon, 27 Mar 2017 19:55:47 GMT" ], "Pragma": [ "no-cache" @@ -1131,13 +1121,13 @@ "gateway" ], "x-ms-request-id": [ - "23c47d82-2803-4d16-8713-875ecb3c7025" + "319ce24f-3fb0-4d3d-8a90-f5ce1fa48f3b" ], "x-ms-correlation-request-id": [ - "23c47d82-2803-4d16-8713-875ecb3c7025" + "319ce24f-3fb0-4d3d-8a90-f5ce1fa48f3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194543Z:23c47d82-2803-4d16-8713-875ecb3c7025" + "WESTUS2:20170327T195547Z:319ce24f-3fb0-4d3d-8a90-f5ce1fa48f3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,17 +1136,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29426.azuredatalakestore.net\",\r\n \"accountId\": \"03450a15-91c1-4c43-8250-133de886cbef\",\r\n \"creationTime\": \"2017-01-05T19:45:46.2277039Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:45:46.2277039Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426\",\r\n \"name\": \"testdatalake29426\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29664.azuredatalakestore.net\",\r\n \"accountId\": \"8c818548-90c5-4593-b50f-631335b4edca\",\r\n \"creationTime\": \"2017-03-27T19:55:49.4540802Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:55:49.4540802Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664\",\r\n \"name\": \"testdatalake29664\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1171,7 +1160,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:46:16 GMT" + "Mon, 27 Mar 2017 19:56:20 GMT" ], "Pragma": [ "no-cache" @@ -1183,7 +1172,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ee0f4204-a16e-475b-8b3c-c2673fe57c00" + "23eab638-41b9-4764-9793-d11d9b7295a5" ], "X-Content-Type-Options": [ "nosniff" @@ -1195,13 +1184,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14989" ], "x-ms-correlation-request-id": [ - "cdd77fec-7063-4a49-a7ef-5a0d8ae320f6" + "92d47823-4e32-419e-8bb7-61385f113295" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194616Z:cdd77fec-7063-4a49-a7ef-5a0d8ae320f6" + "WESTUS2:20170327T195620Z:92d47823-4e32-419e-8bb7-61385f113295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1210,23 +1199,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "547e52aa-8a7d-4a2b-8e39-4c4f666d9d75" + "b1f3fb02-3486-4e07-8edf-e1efbdeb76b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29426.azuredatalakestore.net\",\r\n \"accountId\": \"03450a15-91c1-4c43-8250-133de886cbef\",\r\n \"creationTime\": \"2017-01-05T19:45:46.2277039Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:45:46.2277039Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426\",\r\n \"name\": \"testdatalake29426\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29664.azuredatalakestore.net\",\r\n \"accountId\": \"8c818548-90c5-4593-b50f-631335b4edca\",\r\n \"creationTime\": \"2017-03-27T19:55:49.4540802Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:55:49.4540802Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664\",\r\n \"name\": \"testdatalake29664\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1241,7 +1229,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:46:16 GMT" + "Mon, 27 Mar 2017 19:56:20 GMT" ], "Pragma": [ "no-cache" @@ -1253,7 +1241,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8c3a4d22-2136-494d-bad7-beb277c8265c" + "4f1bf361-d0c8-4f49-84a8-88128958803c" ], "X-Content-Type-Options": [ "nosniff" @@ -1265,13 +1253,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14980" ], "x-ms-correlation-request-id": [ - "82c65ba5-dcd5-4cd9-8ea3-11285bc7ab8f" + "4b8b9b49-4718-4b53-96df-18fd25ed4a8d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194617Z:82c65ba5-dcd5-4cd9-8ea3-11285bc7ab8f" + "WESTUS2:20170327T195621Z:4b8b9b49-4718-4b53-96df-18fd25ed4a8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1280,8 +1268,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1292,17 +1280,16 @@ "31" ], "x-ms-client-request-id": [ - "2c6cc1b4-4755-4721-9d85-721c8aa00005" + "324e92a9-69cb-4e66-8b48-6c5809e0b586" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"03450a15-91c1-4c43-8250-133de886cbef\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426\",\r\n \"name\": \"testdatalake29426\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"8c818548-90c5-4593-b50f-631335b4edca\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664\",\r\n \"name\": \"testdatalake29664\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -1320,13 +1307,13 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:45:45 GMT" + "Mon, 27 Mar 2017 19:55:49 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba14971/providers/Microsoft.DataLakeStore/accounts/testdatalake29426/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19246/providers/Microsoft.DataLakeStore/accounts/testdatalake29664/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1335,10 +1322,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/03450a15-91c1-4c43-8250-133de886cbef0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8c818548-90c5-4593-b50f-631335b4edca0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "c141a875-dd3a-4b38-804e-cdada4ae0791" + "332460b4-dbcd-459c-a697-7a1ffa742c63" ], "X-Content-Type-Options": [ "nosniff" @@ -1350,13 +1337,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "e03732a2-14a4-4ac6-ab67-60b9946ee178" + "4ef6877a-e5d7-4a4b-97ba-c60032132650" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194545Z:e03732a2-14a4-4ac6-ab67-60b9946ee178" + "WESTUS2:20170327T195549Z:4ef6877a-e5d7-4a4b-97ba-c60032132650" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1365,14 +1352,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/03450a15-91c1-4c43-8250-133de886cbef0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzAzNDUwYTE1LTkxYzEtNGM0My04MjUwLTEzM2RlODg2Y2JlZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8c818548-90c5-4593-b50f-631335b4edca0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzhjODE4NTQ4LTkwYzUtNDU5My1iNTBmLTYzMTMzNWI0ZWRjYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1390,7 +1376,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:46:15 GMT" + "Mon, 27 Mar 2017 19:56:19 GMT" ], "Pragma": [ "no-cache" @@ -1402,7 +1388,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a4bbad87-d340-4f0a-92d7-8aadfa561841" + "887a9da2-68e0-4309-a20a-430303580c3f" ], "X-Content-Type-Options": [ "nosniff" @@ -1414,13 +1400,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14963" ], "x-ms-correlation-request-id": [ - "c6be1ea3-59c3-41d1-9f62-6ccc54655dcd" + "d75caf38-2911-44f3-a4e3-5b878f039792" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194616Z:c6be1ea3-59c3-41d1-9f62-6ccc54655dcd" + "WESTUS2:20170327T195619Z:d75caf38-2911-44f3-a4e3-5b878f039792" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1429,23 +1415,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "147edd48-4ddf-4beb-b251-75c14da6fd09" + "58c48744-497f-4542-801c-ee7fa45632e2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba13253' under resource group 'rgaba14971' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeAnalytics/accounts/testaba13568' under resource group 'rgaba19246' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "163" @@ -1460,7 +1445,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:46:16 GMT" + "Mon, 27 Mar 2017 19:56:21 GMT" ], "Pragma": [ "no-cache" @@ -1469,13 +1454,13 @@ "gateway" ], "x-ms-request-id": [ - "f9b8826d-28ff-4142-b66a-acad291bfcd6" + "bbb6d797-f5a5-4b85-aa9a-9fa62a5a3336" ], "x-ms-correlation-request-id": [ - "f9b8826d-28ff-4142-b66a-acad291bfcd6" + "bbb6d797-f5a5-4b85-aa9a-9fa62a5a3336" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194617Z:f9b8826d-28ff-4142-b66a-acad291bfcd6" + "WESTUS2:20170327T195621Z:bbb6d797-f5a5-4b85-aa9a-9fa62a5a3336" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1484,17 +1469,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:01.4603812Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:26.4942579Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1509,7 +1493,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:22 GMT" + "Mon, 27 Mar 2017 19:56:54 GMT" ], "Pragma": [ "no-cache" @@ -1521,7 +1505,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c52d821b-3cf1-4fb6-861a-391b58ce2b39" + "c152779e-a8f6-424a-bc9f-44348c7a8963" ], "X-Content-Type-Options": [ "nosniff" @@ -1533,13 +1517,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14981" ], "x-ms-correlation-request-id": [ - "39a05a42-3251-4ba3-8944-b3507c2ce51c" + "4795005c-ac6e-4f81-8849-ca4a19745d3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194822Z:39a05a42-3251-4ba3-8944-b3507c2ce51c" + "WESTUS2:20170327T195654Z:4795005c-ac6e-4f81-8849-ca4a19745d3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1548,23 +1532,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fbc9b3b-7e26-4cbf-a713-741bbf2f217f" + "6c5956a2-bb6c-4dac-8229-f159aabc81c9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:01.4603812Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:26.4942579Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1579,7 +1562,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:22 GMT" + "Mon, 27 Mar 2017 19:56:54 GMT" ], "Pragma": [ "no-cache" @@ -1591,7 +1574,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "20cf18c0-da14-4dba-8ed0-8c019129a733" + "0a25e850-94d5-46e3-9272-cc48905c297e" ], "X-Content-Type-Options": [ "nosniff" @@ -1603,13 +1586,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14977" ], "x-ms-correlation-request-id": [ - "5e23d0ca-7f5f-4adc-86b3-5fe585ae3356" + "edb375d6-778c-4ded-b411-ea6406bc9ec0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194823Z:5e23d0ca-7f5f-4adc-86b3-5fe585ae3356" + "WESTUS2:20170327T195655Z:edb375d6-778c-4ded-b411-ea6406bc9ec0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1618,23 +1601,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4783a0c-f520-4150-a81c-0347295d791c" + "01b137aa-d2e6-478d-951b-70ea7c4bc331" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:01.4603812Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:26.4942579Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1649,7 +1631,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:22 GMT" + "Mon, 27 Mar 2017 19:56:55 GMT" ], "Pragma": [ "no-cache" @@ -1661,7 +1643,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eb187c67-ac7f-47e7-91c0-ae52ff0c3060" + "855e6ebc-1d02-4896-bd4b-7adbacd35e65" ], "X-Content-Type-Options": [ "nosniff" @@ -1673,13 +1655,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14991" ], "x-ms-correlation-request-id": [ - "3ddcf1e2-bd8d-400e-a78d-054618d5d427" + "fe87926e-d93c-432c-817d-ea9d131aa89d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194823Z:3ddcf1e2-bd8d-400e-a78d-054618d5d427" + "WESTUS2:20170327T195656Z:fe87926e-d93c-432c-817d-ea9d131aa89d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1688,23 +1670,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52e52118-320e-435e-af6e-20524fc3fb34" + "362ea02b-bd94-47b7-b08d-2b739631a89d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:24.5201547Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:57.6784967Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1719,7 +1700,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:25 GMT" + "Mon, 27 Mar 2017 19:56:57 GMT" ], "Pragma": [ "no-cache" @@ -1731,7 +1712,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8710e1c9-21e3-49be-bbcf-1f67ea424d52" + "c1c06934-b84d-4e22-a9d5-088c9400fb28" ], "X-Content-Type-Options": [ "nosniff" @@ -1743,13 +1724,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14985" ], "x-ms-correlation-request-id": [ - "899f445a-be73-40ba-b8c0-30a85d63b1a4" + "7a8e8eb8-5fcf-4c8f-95c4-b36e2a26d009" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194826Z:899f445a-be73-40ba-b8c0-30a85d63b1a4" + "WESTUS2:20170327T195658Z:7a8e8eb8-5fcf-4c8f-95c4-b36e2a26d009" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1758,23 +1739,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c30e52-15a1-4416-b7a8-a21f9961250b" + "536cd195-7f65-45b6-8a11-e6e288cf6cea" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:24.5201547Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:57.6784967Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1789,7 +1769,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:26 GMT" + "Mon, 27 Mar 2017 19:56:58 GMT" ], "Pragma": [ "no-cache" @@ -1801,7 +1781,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "51059548-012e-4db2-8c1a-b25ff737e114" + "f6cfea52-d8fc-4d30-a7e0-e84263a867c1" ], "X-Content-Type-Options": [ "nosniff" @@ -1813,13 +1793,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14987" ], "x-ms-correlation-request-id": [ - "358bc7ec-da8c-44b6-86eb-369b14e12f6a" + "1ffaed70-1f44-4d91-b993-980ed490520f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194826Z:358bc7ec-da8c-44b6-86eb-369b14e12f6a" + "WESTUS2:20170327T195658Z:1ffaed70-1f44-4d91-b993-980ed490520f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1828,10 +1808,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1840,17 +1820,16 @@ "378" ], "x-ms-client-request-id": [ - "6521b4cb-3f41-44cc-965e-101fa1508cdb" + "705025dd-0891-48ea-a14f-72b648838f14" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"newTier\": \"Commitment_100AUHours\",\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "626" @@ -1868,13 +1847,13 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:46:19 GMT" + "Mon, 27 Mar 2017 19:56:23 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1883,10 +1862,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/83cd8786-03c2-4969-9e2f-1f14cdf9e3fb0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/f509e9c0-b783-4a7e-83e1-29772bdf32f90?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "4ad52591-8a1a-41d0-b96a-50371b4b3696" + "2d260124-1ae3-412e-8c9e-14c676875c4d" ], "X-Content-Type-Options": [ "nosniff" @@ -1898,13 +1877,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-correlation-request-id": [ - "7bb07af9-dd49-45a6-9b9b-b3231055ba3b" + "f177dec0-517f-45f1-8dd0-6fdbfb5d51b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194620Z:7bb07af9-dd49-45a6-9b9b-b3231055ba3b" + "WESTUS2:20170327T195623Z:f177dec0-517f-45f1-8dd0-6fdbfb5d51b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1913,206 +1892,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/83cd8786-03c2-4969-9e2f-1f14cdf9e3fb0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy84M2NkODc4Ni0wM2MyLTQ5NjktOWUyZi0xZjE0Y2RmOWUzZmIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/f509e9c0-b783-4a7e-83e1-29772bdf32f90?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9mNTA5ZTljMC1iNzgzLTRhN2UtODNlMS0yOTc3MmJkZjMyZjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Thu, 05 Jan 2017 19:46:49 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "718a3a11-fd2d-470d-b4cb-459e22ac9197" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "e3e22bea-0d12-40ee-b95b-e0742ae11e7a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170105T194650Z:e3e22bea-0d12-40ee-b95b-e0742ae11e7a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/83cd8786-03c2-4969-9e2f-1f14cdf9e3fb0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy84M2NkODc4Ni0wM2MyLTQ5NjktOWUyZi0xZjE0Y2RmOWUzZmIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Thu, 05 Jan 2017 19:47:20 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f9e2a38d-e810-4e5c-b072-ae6a4b53fbe2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-correlation-request-id": [ - "8f5cddf0-522c-47cf-8d66-4d09f625d978" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170105T194721Z:8f5cddf0-522c-47cf-8d66-4d09f625d978" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/83cd8786-03c2-4969-9e2f-1f14cdf9e3fb0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy84M2NkODc4Ni0wM2MyLTQ5NjktOWUyZi0xZjE0Y2RmOWUzZmIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Thu, 05 Jan 2017 19:47:51 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "2bb43966-13c4-4c88-b3c0-92bd4b7d04f4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "c491e1b7-8031-45e0-b8fa-3b0de9da81d8" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170105T194751Z:c491e1b7-8031-45e0-b8fa-3b0de9da81d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/83cd8786-03c2-4969-9e2f-1f14cdf9e3fb0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy84M2NkODc4Ni0wM2MyLTQ5NjktOWUyZi0xZjE0Y2RmOWUzZmIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -2130,7 +1916,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:21 GMT" + "Mon, 27 Mar 2017 19:56:53 GMT" ], "Pragma": [ "no-cache" @@ -2142,7 +1928,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "075d8bb7-ad80-455a-8e42-6a8a53ae07fe" + "cc46dd48-74e0-45b1-83ab-7a768b518428" ], "X-Content-Type-Options": [ "nosniff" @@ -2154,13 +1940,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14971" ], "x-ms-correlation-request-id": [ - "5cbdde8f-0f12-49e3-9d8a-0215e848b58b" + "9a0db3ae-582b-4719-b617-08e11d3cb430" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194822Z:5cbdde8f-0f12-49e3-9d8a-0215e848b58b" + "WESTUS2:20170327T195654Z:9a0db3ae-582b-4719-b617-08e11d3cb430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2169,8 +1955,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"properties\": {\r\n \"newTier\": \"Consumption\"\r\n }\r\n}", "RequestHeaders": { @@ -2181,17 +1967,16 @@ "111" ], "x-ms-client-request-id": [ - "cbac00f5-abf5-45d6-ad78-9ff035089388" + "a8ee860e-3ca2-4260-9cc2-a9a92b052c12" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:24.5201547Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Commitment_100AUHours\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:57.6784967Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -2206,7 +1991,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:25 GMT" + "Mon, 27 Mar 2017 19:56:57 GMT" ], "Pragma": [ "no-cache" @@ -2218,7 +2003,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5baa2f40-6516-481d-aca8-eee3c967b8f9" + "f93f6136-248a-4f7c-8f29-4254b3e86751" ], "X-Content-Type-Options": [ "nosniff" @@ -2230,13 +2015,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "8644537e-b411-482c-baa4-6e4302510341" + "6b42bdb2-e583-4531-a008-3878891180ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194825Z:8644537e-b411-482c-baa4-6e4302510341" + "WESTUS2:20170327T195657Z:6b42bdb2-e583-4531-a008-3878891180ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2245,10 +2030,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253secondacct?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTNzZWNvbmRhY2N0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568secondacct?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjhzZWNvbmRhY2N0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2257,17 +2042,16 @@ "290" ], "x-ms-client-request-id": [ - "a7110240-6436-456a-ab66-059ac71ee416" + "36710ad5-f86d-4bff-92c9-0e465b8306a3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"493174b6-3fa1-4daa-9982-0e246fdcdf83\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253secondacct\",\r\n \"name\": \"testaba13253secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"915c79dd-c974-4d02-9da3-2bbef9657cb5\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568secondacct\",\r\n \"name\": \"testaba13568secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "593" @@ -2285,13 +2069,13 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:48:27 GMT" + "Mon, 27 Mar 2017 19:57:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253secondacct/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568secondacct/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -2300,10 +2084,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/493174b6-3fa1-4daa-9982-0e246fdcdf830?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/915c79dd-c974-4d02-9da3-2bbef9657cb50?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "ca2c0b2f-7c0c-4254-8275-894e6d6a5650" + "27927fdb-140d-446f-8216-7054912ff98f" ], "X-Content-Type-Options": [ "nosniff" @@ -2315,13 +2099,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1183" ], "x-ms-correlation-request-id": [ - "852994b9-2d36-4fbe-8ad3-a01193f9dea1" + "152e98c4-dcf3-47b3-a93f-14ccee877648" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T194828Z:852994b9-2d36-4fbe-8ad3-a01193f9dea1" + "WESTUS2:20170327T195700Z:152e98c4-dcf3-47b3-a93f-14ccee877648" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2330,206 +2114,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/493174b6-3fa1-4daa-9982-0e246fdcdf830?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80OTMxNzRiNi0zZmExLTRkYWEtOTk4Mi0wZTI0NmZkY2RmODMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Thu, 05 Jan 2017 19:48:58 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "13554e47-dc4e-4492-8dda-6c649c5a1f84" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "501e110f-bd7c-44c4-956c-a56ae0baa3da" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170105T194859Z:501e110f-bd7c-44c4-956c-a56ae0baa3da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/493174b6-3fa1-4daa-9982-0e246fdcdf830?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80OTMxNzRiNi0zZmExLTRkYWEtOTk4Mi0wZTI0NmZkY2RmODMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Thu, 05 Jan 2017 19:49:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "c793cab4-7cc5-4127-8afc-573958cc7978" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "c850cf4e-741b-4347-ba76-4b6880aefb80" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170105T194929Z:c850cf4e-741b-4347-ba76-4b6880aefb80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/493174b6-3fa1-4daa-9982-0e246fdcdf830?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80OTMxNzRiNi0zZmExLTRkYWEtOTk4Mi0wZTI0NmZkY2RmODMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Thu, 05 Jan 2017 19:50:00 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "31f2aaab-8661-40f6-8e66-6c37d216251f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "55ab110d-4ce5-427c-b7e8-c65f25804b5c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170105T195000Z:55ab110d-4ce5-427c-b7e8-c65f25804b5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/493174b6-3fa1-4daa-9982-0e246fdcdf830?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80OTMxNzRiNi0zZmExLTRkYWEtOTk4Mi0wZTI0NmZkY2RmODMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/915c79dd-c974-4d02-9da3-2bbef9657cb50?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy85MTVjNzlkZC1jOTc0LTRkMDItOWRhMy0yYmJlZjk2NTdjYjUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -2547,7 +2138,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:30 GMT" + "Mon, 27 Mar 2017 19:57:31 GMT" ], "Pragma": [ "no-cache" @@ -2559,7 +2150,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e4612516-076d-4617-8330-a11290cdf69d" + "62084bc9-7c83-4d7b-8fca-28fedaba8a09" ], "X-Content-Type-Options": [ "nosniff" @@ -2571,13 +2162,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14985" ], "x-ms-correlation-request-id": [ - "39069e15-6ae1-4a67-b454-b9de8f71f876" + "ac96d659-4b64-4eef-93da-2121ae5f1f9a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195030Z:39069e15-6ae1-4a67-b454-b9de8f71f876" + "WESTUS2:20170327T195731Z:ac96d659-4b64-4eef-93da-2121ae5f1f9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2586,17 +2177,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253secondacct?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTNzZWNvbmRhY2N0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568secondacct?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjhzZWNvbmRhY2N0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12545\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12545\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"493174b6-3fa1-4daa-9982-0e246fdcdf83\",\r\n \"creationTime\": \"2017-01-05T19:50:09.2391645Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:50:09.2391645Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253secondacct\",\r\n \"name\": \"testaba13253secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16677\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16677\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"915c79dd-c974-4d02-9da3-2bbef9657cb5\",\r\n \"creationTime\": \"2017-03-27T19:57:04.1706463Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:57:04.1706463Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568secondacct\",\r\n \"name\": \"testaba13568secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -2611,7 +2201,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:31 GMT" + "Mon, 27 Mar 2017 19:57:31 GMT" ], "Pragma": [ "no-cache" @@ -2623,7 +2213,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "50861962-2100-46f7-9ce7-12b3909ed5b9" + "72c8068d-eac9-4c5c-9c15-840ccfdc4769" ], "X-Content-Type-Options": [ "nosniff" @@ -2635,13 +2225,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14985" ], "x-ms-correlation-request-id": [ - "d282d667-a042-4a5a-8f1d-e309e01f7d71" + "ca4e24b1-340b-44fa-abf5-44062f461de1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195031Z:d282d667-a042-4a5a-8f1d-e309e01f7d71" + "WESTUS2:20170327T195731Z:ca4e24b1-340b-44fa-abf5-44062f461de1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2656,17 +2246,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a2e4c49-4923-4fc3-8cb2-10b5063a99e9" + "37e627ee-692d-485e-9c1b-d5b8f3df06ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlapysample01.azuredatalakeanalytics.net\",\r\n \"accountId\": \"3d01b8f3-98a6-4412-8490-257bdc6e1cff\",\r\n \"creationTime\": \"2016-09-07T18:14:49.4919192Z\",\r\n \"lastModifiedTime\": \"2016-09-07T18:14:49.4919192Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/adlpysamplerg01/providers/Microsoft.DataLakeAnalytics/accounts/adlapysample01\",\r\n \"name\": \"adlapysample01\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:24.5201547Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"493174b6-3fa1-4daa-9982-0e246fdcdf83\",\r\n \"creationTime\": \"2017-01-05T19:50:09.2391645Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:50:09.2391645Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253secondacct\",\r\n \"name\": \"testaba13253secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"pyarmadla25e621603.azuredatalakeanalytics.net\",\r\n \"accountId\": \"005e965d-f953-4157-aad4-d75a5f20dbf4\",\r\n \"creationTime\": \"2016-11-10T19:32:24.278054Z\",\r\n \"lastModifiedTime\": \"2016-11-10T19:32:24.278054Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/test_mgmt_datalake_analytics_test_adla_catalog_secrets5e621603/providers/Microsoft.DataLakeAnalytics/accounts/pyarmadla25e621603\",\r\n \"name\": \"pyarmadla25e621603\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:57.6784967Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"915c79dd-c974-4d02-9da3-2bbef9657cb5\",\r\n \"creationTime\": \"2017-03-27T19:57:04.1706463Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:57:04.1706463Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568secondacct\",\r\n \"name\": \"testaba13568secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -2681,7 +2270,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:31 GMT" + "Mon, 27 Mar 2017 19:57:31 GMT" ], "Pragma": [ "no-cache" @@ -2693,7 +2282,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "71dd3c7b-e68b-474c-ba23-3138d09d5756" + "dfbbac34-98a1-4125-9377-7c754850027e" ], "X-Content-Type-Options": [ "nosniff" @@ -2705,13 +2294,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14979" ], "x-ms-correlation-request-id": [ - "565e4ad7-a4ac-41f8-8366-c0bf5496b01b" + "40326b60-7d50-4059-b69e-63cbac77c0b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195031Z:565e4ad7-a4ac-41f8-8366-c0bf5496b01b" + "WESTUS2:20170327T195732Z:40326b60-7d50-4059-b69e-63cbac77c0b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2720,23 +2309,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ceeefd83-69bb-4bd4-98ae-712a1c8bb89a" + "562ef9e6-f1c8-404b-b95e-31b9dbff467b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253.azuredatalakeanalytics.net\",\r\n \"accountId\": \"83cd8786-03c2-4969-9e2f-1f14cdf9e3fb\",\r\n \"creationTime\": \"2017-01-05T19:48:01.4603812Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:48:24.5201547Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253\",\r\n \"name\": \"testaba13253\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13253secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"493174b6-3fa1-4daa-9982-0e246fdcdf83\",\r\n \"creationTime\": \"2017-01-05T19:50:09.2391645Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:50:09.2391645Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253secondacct\",\r\n \"name\": \"testaba13253secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f509e9c0-b783-4a7e-83e1-29772bdf32f9\",\r\n \"creationTime\": \"2017-03-27T19:56:26.4942579Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:56:57.6784967Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568\",\r\n \"name\": \"testaba13568\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba13568secondacct.azuredatalakeanalytics.net\",\r\n \"accountId\": \"915c79dd-c974-4d02-9da3-2bbef9657cb5\",\r\n \"creationTime\": \"2017-03-27T19:57:04.1706463Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:57:04.1706463Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568secondacct\",\r\n \"name\": \"testaba13568secondacct\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -2751,7 +2339,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:32 GMT" + "Mon, 27 Mar 2017 19:57:32 GMT" ], "Pragma": [ "no-cache" @@ -2763,7 +2351,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4b96eb32-316d-4a0f-81b6-1d4e8c9cf279" + "96431b83-1f93-4577-978a-1179ddc6509e" ], "X-Content-Type-Options": [ "nosniff" @@ -2775,13 +2363,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14970" ], "x-ms-correlation-request-id": [ - "1106a393-a1fa-4a08-baaa-c42a7727317c" + "270f1902-72f7-435b-b0ee-ec525bc8eaad" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195032Z:1106a393-a1fa-4a08-baaa-c42a7727317c" + "WESTUS2:20170327T195732Z:270f1902-72f7-435b-b0ee-ec525bc8eaad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2790,20 +2378,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/DataLakeStoreAccounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/DataLakeStoreAccounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bec74469-cff4-49b5-8a9b-90bc1e72e048" + "bdb548ce-c755-409b-8de9-2ff9661d0598" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"DataLakeStore Account does not exist.\"\r\n }\r\n}", @@ -2824,7 +2411,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:32 GMT" + "Mon, 27 Mar 2017 19:57:32 GMT" ], "Pragma": [ "no-cache" @@ -2833,7 +2420,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "747f45cd-c2fe-47ac-8197-928372d967eb" + "8f24d6c7-857d-4f54-a908-3c21a1a88f21" ], "X-Content-Type-Options": [ "nosniff" @@ -2845,13 +2432,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14980" ], "x-ms-correlation-request-id": [ - "93f8b7f2-d5ac-4457-84b8-d30a2e1c8223" + "aa6484e5-2432-4c04-93b0-7ad56d2924cb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195033Z:93f8b7f2-d5ac-4457-84b8-d30a2e1c8223" + "WESTUS2:20170327T195733Z:aa6484e5-2432-4c04-93b0-7ad56d2924cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2860,23 +2447,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/DataLakeStoreAccounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/DataLakeStoreAccounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c489139a-f1b4-49a7-b144-987b0710b1fa" + "051db54c-7cfa-4ebe-80cb-e955833570dc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/dataLakeStoreAccounts/testdatalake29426\",\r\n \"name\": \"testdatalake29426\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/dataLakeStoreAccounts/testdatalake29664\",\r\n \"name\": \"testdatalake29664\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -2891,7 +2477,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:33 GMT" + "Mon, 27 Mar 2017 19:57:34 GMT" ], "Pragma": [ "no-cache" @@ -2903,7 +2489,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "138bdcfe-7385-44a5-b22b-c63c59522af4" + "dd406331-c307-417c-b4d2-2c3e5549f639" ], "X-Content-Type-Options": [ "nosniff" @@ -2915,13 +2501,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14990" ], "x-ms-correlation-request-id": [ - "68ab9491-3da1-45db-8157-e854c7f04b17" + "3013c54d-79e2-4d23-b41f-d5769910cf11" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195034Z:68ab9491-3da1-45db-8157-e854c7f04b17" + "WESTUS2:20170327T195734Z:3013c54d-79e2-4d23-b41f-d5769910cf11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2930,23 +2516,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/DataLakeStoreAccounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/DataLakeStoreAccounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4af49cb4-e80f-4aba-ab80-27a897eb15e0" + "0baa7fc2-5a2f-4e1a-ace4-1898eaa5254e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/dataLakeStoreAccounts/testdatalake29426\",\r\n \"name\": \"testdatalake29426\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/dataLakeStoreAccounts/testdatalake29664\",\r\n \"name\": \"testdatalake29664\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -2961,7 +2546,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:35 GMT" + "Mon, 27 Mar 2017 19:57:35 GMT" ], "Pragma": [ "no-cache" @@ -2973,7 +2558,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "04aee8e0-530d-49aa-b956-d5abb97df494" + "516b2981-1a9c-4c6f-94d8-4501245ab4aa" ], "X-Content-Type-Options": [ "nosniff" @@ -2985,13 +2570,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14984" ], "x-ms-correlation-request-id": [ - "9a9e23a0-823a-4992-b801-de2a556a96a2" + "f8059350-9e5f-4165-9f1a-2c81851380cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195035Z:9a9e23a0-823a-4992-b801-de2a556a96a2" + "WESTUS2:20170327T195735Z:f8059350-9e5f-4165-9f1a-2c81851380cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3000,8 +2585,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/DataLakeStoreAccounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/DataLakeStoreAccounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n }\r\n}", "RequestHeaders": { @@ -3012,17 +2597,16 @@ "68" ], "x-ms-client-request-id": [ - "660695b2-12de-410d-aab5-25a9c7fda950" + "0a9dbcf0-382c-4b73-b28b-112c311a7f36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/dataLakeStoreAccounts/testdatalake29426\",\r\n \"name\": \"testdatalake29426\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/dataLakeStoreAccounts/testdatalake29664\",\r\n \"name\": \"testdatalake29664\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -3037,7 +2621,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:33 GMT" + "Mon, 27 Mar 2017 19:57:33 GMT" ], "Pragma": [ "no-cache" @@ -3049,7 +2633,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4e00faa7-7128-4700-8efa-6ec0229d2fa6" + "87f87092-42e5-485a-b7ab-9c2b492d2cf0" ], "X-Content-Type-Options": [ "nosniff" @@ -3061,13 +2645,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1186" ], "x-ms-correlation-request-id": [ - "e98df333-5939-4529-a138-70859c604cdb" + "9ae684ee-fd2d-425e-9341-ecad59dda91f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195033Z:e98df333-5939-4529-a138-70859c604cdb" + "WESTUS2:20170327T195734Z:9ae684ee-fd2d-425e-9341-ecad59dda91f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3076,23 +2660,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/DataLakeStoreAccounts/?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvRGF0YUxha2VTdG9yZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/DataLakeStoreAccounts/?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvRGF0YUxha2VTdG9yZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c194666c-9460-4e56-8d6f-0fa837622d47" + "175e3d12-93e2-42bc-833a-837f7e62a82c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/dataLakeStoreAccounts/testdatalake12545\",\r\n \"name\": \"testdatalake12545\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/dataLakeStoreAccounts/testdatalake29426\",\r\n \"name\": \"testdatalake29426\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/dataLakeStoreAccounts/testdatalake16677\",\r\n \"name\": \"testdatalake16677\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/dataLakeStoreAccounts/testdatalake29664\",\r\n \"name\": \"testdatalake29664\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -3107,7 +2690,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:34 GMT" + "Mon, 27 Mar 2017 19:57:34 GMT" ], "Pragma": [ "no-cache" @@ -3119,7 +2702,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "494744a0-26cb-4f68-b72c-03ba35bb226a" + "78f0ce54-0726-4f82-9163-76dd501f979a" ], "X-Content-Type-Options": [ "nosniff" @@ -3131,13 +2714,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14986" ], "x-ms-correlation-request-id": [ - "5e5d6f78-7052-4256-b537-2cd3feeef488" + "b3634bd7-d8a8-40bc-be9c-7d27fb760ad7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195035Z:5e5d6f78-7052-4256-b537-2cd3feeef488" + "WESTUS2:20170327T195735Z:b3634bd7-d8a8-40bc-be9c-7d27fb760ad7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3146,23 +2729,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/DataLakeStoreAccounts/?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvRGF0YUxha2VTdG9yZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/DataLakeStoreAccounts/?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvRGF0YUxha2VTdG9yZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b05320ca-7651-4eb3-993f-a1414dc5d687" + "b01f2092-5ce8-405c-9585-23dea7f1c291" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/dataLakeStoreAccounts/testdatalake12545\",\r\n \"name\": \"testdatalake12545\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/dataLakeStoreAccounts/testdatalake16677\",\r\n \"name\": \"testdatalake16677\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -3177,7 +2759,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:35 GMT" + "Mon, 27 Mar 2017 19:57:36 GMT" ], "Pragma": [ "no-cache" @@ -3189,7 +2771,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ce7c4015-beeb-4eb1-8ad6-20cc0a8c55d9" + "3eb39ba9-6350-42a9-bb18-eac2ef404a9f" ], "X-Content-Type-Options": [ "nosniff" @@ -3201,13 +2783,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14968" ], "x-ms-correlation-request-id": [ - "e44a4200-ea5e-4bf7-a85f-e32e70647847" + "28dfe033-8bfa-4078-b1e3-14e575a3ff56" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195036Z:e44a4200-ea5e-4bf7-a85f-e32e70647847" + "WESTUS2:20170327T195737Z:28dfe033-8bfa-4078-b1e3-14e575a3ff56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3216,20 +2798,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/DataLakeStoreAccounts/testdatalake29426?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NDI2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/DataLakeStoreAccounts/testdatalake29664?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvRGF0YUxha2VTdG9yZUFjY291bnRzL3Rlc3RkYXRhbGFrZTI5NjY0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07ddfc90-9588-41ae-9a95-1890ff846150" + "105ec700-cc91-4a7e-882e-8b18201df5ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -3247,7 +2828,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:35 GMT" + "Mon, 27 Mar 2017 19:57:36 GMT" ], "Pragma": [ "no-cache" @@ -3256,7 +2837,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "d65eed26-9f95-4f87-8d5c-0fd29acc810c" + "c79d524c-be72-4061-ac3b-9a4e9582c74b" ], "X-AspNet-Version": [ "4.0.30319" @@ -3265,13 +2846,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "2601c0d1-87d0-43a7-9b88-c66bba58b114" + "ab95e508-49fc-450f-a2d9-ecd2c7132879" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195036Z:2601c0d1-87d0-43a7-9b88-c66bba58b114" + "WESTUS2:20170327T195736Z:ab95e508-49fc-450f-a2d9-ecd2c7132879" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3280,20 +2861,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/StorageAccounts/testazureblob15124?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxNTEyND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/StorageAccounts/testazureblob11922?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMTkyMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aed6312b-9b8d-403b-ba59-b46f49693fd8" + "e1eaf294-65fa-4f2e-9645-3fed27c64225" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Storage Account does not exist.\"\r\n }\r\n}", @@ -3314,7 +2894,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:37 GMT" + "Mon, 27 Mar 2017 19:57:37 GMT" ], "Pragma": [ "no-cache" @@ -3323,7 +2903,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "b17a7f44-eab8-44ff-92d1-0b29932fc19b" + "66fe9d34-6e3c-4a23-ba32-19dd07bf6aee" ], "X-Content-Type-Options": [ "nosniff" @@ -3335,13 +2915,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14962" ], "x-ms-correlation-request-id": [ - "a89d87f8-8f16-44df-b018-faf662448962" + "1579888f-428c-4c04-9fd5-c36d85290e55" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195037Z:a89d87f8-8f16-44df-b018-faf662448962" + "WESTUS2:20170327T195737Z:1579888f-428c-4c04-9fd5-c36d85290e55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3350,23 +2930,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/StorageAccounts/testazureblob15124?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxNTEyND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/StorageAccounts/testazureblob11922?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMTkyMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5abd4d83-7346-48a6-83f9-cce839f6d0af" + "b398dba0-e1d1-407b-b92b-62db604b695a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/storageAccounts/testazureblob15124\",\r\n \"name\": \"testazureblob15124\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/storageAccounts/testazureblob11922\",\r\n \"name\": \"testazureblob11922\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -3381,7 +2960,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:39 GMT" + "Mon, 27 Mar 2017 19:57:40 GMT" ], "Pragma": [ "no-cache" @@ -3393,7 +2972,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e8250520-1851-46d7-96f7-3291c5fa8529" + "3b8cf345-0662-4928-9d7a-a3324ffc3b58" ], "X-Content-Type-Options": [ "nosniff" @@ -3405,13 +2984,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14979" ], "x-ms-correlation-request-id": [ - "a9879b15-2ad3-4404-b806-31a8ad36f4f0" + "8446a8ac-02e6-4bfe-9e0a-23751fde1e79" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195039Z:a9879b15-2ad3-4404-b806-31a8ad36f4f0" + "WESTUS2:20170327T195741Z:8446a8ac-02e6-4bfe-9e0a-23751fde1e79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3420,23 +2999,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/StorageAccounts/testazureblob15124?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxNTEyND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/StorageAccounts/testazureblob11922?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMTkyMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef6e7e40-ba52-4826-9fa7-128dbfe7afdf" + "a6253ea4-a228-4fa8-ab3e-4cda8e331c41" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/storageAccounts/testazureblob15124\",\r\n \"name\": \"testazureblob15124\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/storageAccounts/testazureblob11922\",\r\n \"name\": \"testazureblob11922\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -3451,7 +3029,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:40 GMT" + "Mon, 27 Mar 2017 19:57:41 GMT" ], "Pragma": [ "no-cache" @@ -3463,7 +3041,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "92fd1715-f49c-4989-ac92-7178b6ef6dc0" + "de6cadb5-27b1-487c-a9c5-a727d1e60dfe" ], "X-Content-Type-Options": [ "nosniff" @@ -3475,13 +3053,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14984" ], "x-ms-correlation-request-id": [ - "6705c0b5-92b1-4c0d-bee8-d0a1bfbade58" + "0a7eb17a-3fd7-40c1-ac4c-d7938a6285ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195040Z:6705c0b5-92b1-4c0d-bee8-d0a1bfbade58" + "WESTUS2:20170327T195742Z:0a7eb17a-3fd7-40c1-ac4c-d7938a6285ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3490,10 +3068,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/StorageAccounts/testazureblob15124?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxNTEyND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/StorageAccounts/testazureblob11922?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMTkyMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"accessKey\": \"yQ/DxMh2BtDNHZyNqJ3zNzBdeQ7nxD7/t42uPWPTIWIfAdGGnG4eA6zu58oxFCql8xr4/8rQ2hGY3z2fvTI+hA==\",\r\n \"suffix\": \"core.windows.net\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"accessKey\": \"+rWcrDb+L9Gag5otj/Rn5jov+EQZFSmTJ6cpzBqAPkDlx5DCS4NoOMifGxPAns98JkVoNSq0lni5NOEp4snhpA==\",\r\n \"suffix\": \"core.windows.net\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -3502,17 +3080,16 @@ "172" ], "x-ms-client-request-id": [ - "a05ebc95-2fe5-4b73-8922-21efac8ef7e5" + "77af27aa-6189-447c-8245-d4d1ff13bb17" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/storageAccounts/testazureblob15124\",\r\n \"name\": \"testazureblob15124\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/storageAccounts/testazureblob11922\",\r\n \"name\": \"testazureblob11922\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -3527,7 +3104,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:38 GMT" + "Mon, 27 Mar 2017 19:57:39 GMT" ], "Pragma": [ "no-cache" @@ -3539,7 +3116,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "25c03f2c-1ac3-47bb-bd60-0a0bcad87551" + "e3daabd6-874d-4e81-93c4-986017b16879" ], "X-Content-Type-Options": [ "nosniff" @@ -3551,13 +3128,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "79c1fc7d-5f4d-4459-b5ac-a8ccf94f6073" + "33bb79c7-4901-4268-936c-af4a2ed1a3bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195039Z:79c1fc7d-5f4d-4459-b5ac-a8ccf94f6073" + "WESTUS2:20170327T195739Z:33bb79c7-4901-4268-936c-af4a2ed1a3bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3566,23 +3143,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/StorageAccounts/?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvU3RvcmFnZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/StorageAccounts/?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvU3RvcmFnZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d2627f9-5424-47f7-8fea-70899debb7c4" + "dd13b64a-7832-4eb9-8225-98b93a8ae43a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/storageAccounts/testazureblob15124\",\r\n \"name\": \"testazureblob15124\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"core.windows.net\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/storageAccounts/testazureblob11922\",\r\n \"name\": \"testazureblob11922\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/storageAccounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -3597,7 +3173,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:39 GMT" + "Mon, 27 Mar 2017 19:57:41 GMT" ], "Pragma": [ "no-cache" @@ -3609,7 +3185,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2c99d37c-1779-4972-9dbd-df9785842b5a" + "e8bd17c5-7f18-4aa1-8815-810f68fb2ef4" ], "X-Content-Type-Options": [ "nosniff" @@ -3621,13 +3197,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14984" ], "x-ms-correlation-request-id": [ - "9a0404b2-524c-4c80-be1c-51f8c77ded4c" + "c72525c0-4110-41be-9a89-d9b1452e3b14" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195040Z:9a0404b2-524c-4c80-be1c-51f8c77ded4c" + "WESTUS2:20170327T195741Z:c72525c0-4110-41be-9a89-d9b1452e3b14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3636,20 +3212,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/StorageAccounts/?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvU3RvcmFnZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/StorageAccounts/?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvU3RvcmFnZUFjY291bnRzLz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be26ec79-508d-4b06-82de-b50eff9b0ce7" + "dc95500b-7a6e-4a10-9597-5d5ed5cec727" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -3667,7 +3242,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:41 GMT" + "Mon, 27 Mar 2017 19:57:43 GMT" ], "Pragma": [ "no-cache" @@ -3679,7 +3254,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b2963da8-cfed-48d4-a9b0-bc6ac7e5334b" + "275d2582-3893-442f-b515-5e5320bbf68c" ], "X-Content-Type-Options": [ "nosniff" @@ -3691,13 +3266,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14969" ], "x-ms-correlation-request-id": [ - "639f7cc2-f21c-479f-a7a3-dd70dc512779" + "7599de99-437b-4672-96d8-f85fd4f67e67" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195041Z:639f7cc2-f21c-479f-a7a3-dd70dc512779" + "WESTUS2:20170327T195743Z:7599de99-437b-4672-96d8-f85fd4f67e67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3706,20 +3281,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253/StorageAccounts/testazureblob15124?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTMvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxNTEyND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568/StorageAccounts/testazureblob11922?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1NjgvU3RvcmFnZUFjY291bnRzL3Rlc3RhenVyZWJsb2IxMTkyMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "105908c2-e05f-4d74-9ec7-8fffa1f228af" + "9ec0781e-f8c7-42de-b2e5-0ca186366ed6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -3737,7 +3311,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:41 GMT" + "Mon, 27 Mar 2017 19:57:42 GMT" ], "Pragma": [ "no-cache" @@ -3746,7 +3320,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "5b1d6b9a-b395-4e2a-9f7b-a5648b2d6ac7" + "551be30b-aced-4c58-81da-2064ca072135" ], "X-AspNet-Version": [ "4.0.30319" @@ -3755,13 +3329,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1187" ], "x-ms-correlation-request-id": [ - "05e0beef-de67-4ad7-98fb-d0946bc2110d" + "71bbff09-89b3-4a50-a8d0-4b80f3982ae1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195041Z:05e0beef-de67-4ad7-98fb-d0946bc2110d" + "WESTUS2:20170327T195743Z:71bbff09-89b3-4a50-a8d0-4b80f3982ae1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3770,20 +3344,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8819dfe9-e588-4346-84bc-92626f71f43b" + "84f6a772-66e8-442e-a404-fbb25ba40168" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -3801,7 +3374,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:50:45 GMT" + "Mon, 27 Mar 2017 19:57:46 GMT" ], "Pragma": [ "no-cache" @@ -3810,7 +3383,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "f81dec8b-528a-4029-9f45-6385b984e6f0" + "7414fc15-b407-42b4-bec2-276bcddfdb5a" ], "X-AspNet-Version": [ "4.0.30319" @@ -3819,13 +3392,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "f50cc1ae-5bfc-4d32-81c5-177c835c08a2" + "939bd65e-b422-4611-a684-96480a7676f9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195046Z:f50cc1ae-5bfc-4d32-81c5-177c835c08a2" + "WESTUS2:20170327T195747Z:939bd65e-b422-4611-a684-96480a7676f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3834,20 +3407,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e0ef8d2-7588-4257-ab6b-be4c8a855064" + "47e232c3-c459-486e-b933-ea45276553ca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -3859,22 +3431,22 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:50:46 GMT" + "Mon, 27 Mar 2017 19:57:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1185" ], "x-ms-request-id": [ - "b525443d-9d64-4255-a832-1ef4f85bd06b" + "3d9e5995-e11b-43c3-a3d7-f1520b43286d" ], "x-ms-correlation-request-id": [ - "b525443d-9d64-4255-a832-1ef4f85bd06b" + "3d9e5995-e11b-43c3-a3d7-f1520b43286d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195046Z:b525443d-9d64-4255-a832-1ef4f85bd06b" + "WESTUS2:20170327T195747Z:3d9e5995-e11b-43c3-a3d7-f1520b43286d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3883,20 +3455,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "695b1371-1b5e-4dba-84a7-8df1fb9e40d2" + "16d9e2ce-31a4-4b5e-9a91-73eb1fa7557c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -3908,22 +3479,22 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:50:46 GMT" + "Mon, 27 Mar 2017 19:57:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1184" ], "x-ms-request-id": [ - "dbe02045-4ea9-48bc-ba8e-1d0c6b74cf11" + "33a71819-ae82-49df-a7fe-f2b9d142d4ff" ], "x-ms-correlation-request-id": [ - "dbe02045-4ea9-48bc-ba8e-1d0c6b74cf11" + "33a71819-ae82-49df-a7fe-f2b9d142d4ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195046Z:dbe02045-4ea9-48bc-ba8e-1d0c6b74cf11" + "WESTUS2:20170327T195747Z:33a71819-ae82-49df-a7fe-f2b9d142d4ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3932,20 +3503,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba14971/providers/Microsoft.DataLakeAnalytics/accounts/testaba13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTQ5NzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTMyNTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19246/providers/Microsoft.DataLakeAnalytics/accounts/testaba13568?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyNDYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMTM1Njg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7590c928-d1d2-4713-9d93-cac8cd65529f" + "15e56905-1b4a-4070-a115-bdd42c1e219e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.2" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -3957,22 +3527,22 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:50:46 GMT" + "Mon, 27 Mar 2017 19:57:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1183" ], "x-ms-request-id": [ - "ae603000-0721-400e-aac7-38b77b2a8009" + "a477942f-2bcf-41b6-a8f1-887050be83ae" ], "x-ms-correlation-request-id": [ - "ae603000-0721-400e-aac7-38b77b2a8009" + "a477942f-2bcf-41b6-a8f1-887050be83ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T195046Z:ae603000-0721-400e-aac7-38b77b2a8009" + "WESTUS2:20170327T195747Z:a477942f-2bcf-41b6-a8f1-887050be83ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3983,21 +3553,21 @@ ], "Names": { ".ctor": [ - "rgaba14971", - "testaba13253", - "testaba29188", - "teststorage19707", - "testdatalake12545", - "testdatalake29426", - "testazureblob15124", - "testdb17166", - "testtbl17651", - "testtvf18821", - "testproc14472", - "testview1701", - "testcred19877", - "testsecret15866", - "testsecretpwd18662" + "rgaba19246", + "testaba13568", + "testaba28225", + "teststorage1565", + "testdatalake16677", + "testdatalake29664", + "testazureblob11922", + "testdb19233", + "testtbl15999", + "testtvf13248", + "testproc17303", + "testview17851", + "testcred17603", + "testsecret12540", + "testsecretpwd11630" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/FirewallTest.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/FirewallTest.json index 1cc2fcd0507e..80a62be9bf4b 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/FirewallTest.json +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.AccountOperationTests/FirewallTest.json @@ -1,23 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeAnalytics/register?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8eaea465-bd70-4a28-82be-26a9e23aa13a" + "bfb9a890-7961-4513-9f1d-3839841d6264" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +28,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:28 GMT" + "Mon, 27 Mar 2017 20:07:42 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +40,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1193" ], "x-ms-request-id": [ - "9efe6b76-c093-4e3e-ae47-4e14829d06d9" + "54bb36d8-5580-4e23-bfa6-aa562c727787" ], "x-ms-correlation-request-id": [ - "9efe6b76-c093-4e3e-ae47-4e14829d06d9" + "54bb36d8-5580-4e23-bfa6-aa562c727787" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005728Z:9efe6b76-c093-4e3e-ae47-4e14829d06d9" + "WESTUS2:20170327T200742Z:54bb36d8-5580-4e23-bfa6-aa562c727787" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,23 +58,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeAnalytics?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99f35b36-af45-4b74-9705-3498967f8461" + "dff1be36-8aa0-44f6-a197-9bdc81b47caa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -87,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:28 GMT" + "Mon, 27 Mar 2017 20:07:42 GMT" ], "Pragma": [ "no-cache" @@ -96,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14978" ], "x-ms-request-id": [ - "e9630a3f-d09d-4bf9-b4a2-18fd0f4fb41c" + "2362cbfb-db06-4698-a7dd-b75a540c507b" ], "x-ms-correlation-request-id": [ - "e9630a3f-d09d-4bf9-b4a2-18fd0f4fb41c" + "2362cbfb-db06-4698-a7dd-b75a540c507b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005728Z:e9630a3f-d09d-4bf9-b4a2-18fd0f4fb41c" + "WESTUS2:20170327T200742Z:2362cbfb-db06-4698-a7dd-b75a540c507b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,23 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage/register?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac7d5045-8ff2-4ebd-8d66-11fcec57a2fd" + "7a91b667-63c0-4de3-9b38-6b969f717247" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"cd0cad5c-ac96-4c4c-99cd-cfafc285ba36\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/customKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listReadOnlyKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/generateSasCredentials\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -142,7 +139,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:28 GMT" + "Mon, 27 Mar 2017 20:07:43 GMT" ], "Pragma": [ "no-cache" @@ -154,16 +151,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1192" ], "x-ms-request-id": [ - "cc2edf6a-472d-4e91-8a5d-b48e45518678" + "d9d4c10b-3d71-4eaa-9c09-ad7b35707a10" ], "x-ms-correlation-request-id": [ - "cc2edf6a-472d-4e91-8a5d-b48e45518678" + "d9d4c10b-3d71-4eaa-9c09-ad7b35707a10" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005729Z:cc2edf6a-472d-4e91-8a5d-b48e45518678" + "WESTUS2:20170327T200743Z:d9d4c10b-3d71-4eaa-9c09-ad7b35707a10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,23 +169,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe4f9091-0894-451f-9d5f-f38aad4f9ce3" + "97610ad4-bc5d-493f-8060-661bbb89f0a7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"cd0cad5c-ac96-4c4c-99cd-cfafc285ba36\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/customKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listReadOnlyKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/generateSasCredentials\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -200,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:28 GMT" + "Mon, 27 Mar 2017 20:07:43 GMT" ], "Pragma": [ "no-cache" @@ -209,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14977" ], "x-ms-request-id": [ - "ad3a0b89-5c31-4f64-b27e-030604686d44" + "afc049bd-89c8-4407-a2b3-bbadb8b9880a" ], "x-ms-correlation-request-id": [ - "ad3a0b89-5c31-4f64-b27e-030604686d44" + "afc049bd-89c8-4407-a2b3-bbadb8b9880a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005729Z:ad3a0b89-5c31-4f64-b27e-030604686d44" + "WESTUS2:20170327T200743Z:afc049bd-89c8-4407-a2b3-bbadb8b9880a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/register?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "834f0fbe-b436-4ff9-91fc-6f18496d5374" + "1152b78c-9d96-42f3-a948-b73c0de50340" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"41c47f4b-8b45-4522-a73a-d20b16f0f1ec\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -255,7 +250,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:28 GMT" + "Mon, 27 Mar 2017 20:07:44 GMT" ], "Pragma": [ "no-cache" @@ -267,16 +262,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1191" ], "x-ms-request-id": [ - "0551c5a8-2089-4b3e-b843-a48c2289f829" + "3db134a7-ff59-42ab-ab95-3aee35d07b22" ], "x-ms-correlation-request-id": [ - "0551c5a8-2089-4b3e-b843-a48c2289f829" + "3db134a7-ff59-42ab-ab95-3aee35d07b22" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005729Z:0551c5a8-2089-4b3e-b843-a48c2289f829" + "WESTUS2:20170327T200744Z:3db134a7-ff59-42ab-ab95-3aee35d07b22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -285,23 +280,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4ede27f-9495-4082-a15c-bef073537400" + "6a57517e-495e-4606-a72b-4679bf7c61ef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"41c47f4b-8b45-4522-a73a-d20b16f0f1ec\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -313,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:29 GMT" + "Mon, 27 Mar 2017 20:07:44 GMT" ], "Pragma": [ "no-cache" @@ -322,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14976" ], "x-ms-request-id": [ - "f3b112a7-ffc3-4d63-b0f5-1cc41e9e13ee" + "4b678c23-7ed7-4455-ade8-777aa21aab22" ], "x-ms-correlation-request-id": [ - "f3b112a7-ffc3-4d63-b0f5-1cc41e9e13ee" + "4b678c23-7ed7-4455-ade8-777aa21aab22" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005729Z:f3b112a7-ffc3-4d63-b0f5-1cc41e9e13ee" + "WESTUS2:20170327T200744Z:4b678c23-7ed7-4455-ade8-777aa21aab22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,23 +334,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/rgaba12931?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTI5MzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13196?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTMxOTY/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d15ff59e-7093-43c0-9590-3325c8bcbfea" + "7d9f8e26-2f17-43e4-97aa-7df95612beb4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba12931' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba13196' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "102" @@ -371,7 +364,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:29 GMT" + "Mon, 27 Mar 2017 20:07:44 GMT" ], "Pragma": [ "no-cache" @@ -380,16 +373,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14975" ], "x-ms-request-id": [ - "c0deaec1-6cf6-497a-a2c1-2ac2388a263c" + "761b605f-13f3-4bfe-b28c-f0e874e5c95a" ], "x-ms-correlation-request-id": [ - "c0deaec1-6cf6-497a-a2c1-2ac2388a263c" + "761b605f-13f3-4bfe-b28c-f0e874e5c95a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005729Z:c0deaec1-6cf6-497a-a2c1-2ac2388a263c" + "WESTUS2:20170327T200744Z:761b605f-13f3-4bfe-b28c-f0e874e5c95a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -398,23 +391,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/rgaba12931?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTI5MzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13196?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTMxOTY/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b7c9b53-795d-4802-b2a1-44c4dbb791ae" + "c3e15978-9adc-4449-9fcf-e9c200b9c0dc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931\",\r\n \"name\": \"rgaba12931\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196\",\r\n \"name\": \"rgaba13196\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +418,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:29 GMT" + "Mon, 27 Mar 2017 20:07:45 GMT" ], "Pragma": [ "no-cache" @@ -435,16 +427,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14974" ], "x-ms-request-id": [ - "fd038865-2695-4b47-965c-c590457e5435" + "029dfda1-43ff-4dbd-8784-08c87359cfaa" ], "x-ms-correlation-request-id": [ - "fd038865-2695-4b47-965c-c590457e5435" + "029dfda1-43ff-4dbd-8784-08c87359cfaa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005729Z:fd038865-2695-4b47-965c-c590457e5435" + "WESTUS2:20170327T200745Z:029dfda1-43ff-4dbd-8784-08c87359cfaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -453,8 +445,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/rgaba12931?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTI5MzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13196?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTMxOTY/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -465,17 +457,16 @@ "31" ], "x-ms-client-request-id": [ - "a3dba4d8-8193-4f62-83e1-7490fb6fdd85" + "631c42bd-6c9e-4604-925e-e45f07675d92" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931\",\r\n \"name\": \"rgaba12931\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196\",\r\n \"name\": \"rgaba13196\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "174" @@ -490,22 +481,22 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:29 GMT" + "Mon, 27 Mar 2017 20:07:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1190" ], "x-ms-request-id": [ - "74f81537-f0f9-45fd-a9ca-f31f4760add3" + "1cc0d71d-7c54-45ba-b6d8-90a0c3cc21e7" ], "x-ms-correlation-request-id": [ - "74f81537-f0f9-45fd-a9ca-f31f4760add3" + "1cc0d71d-7c54-45ba-b6d8-90a0c3cc21e7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005729Z:74f81537-f0f9-45fd-a9ca-f31f4760add3" + "WESTUS2:20170327T200745Z:1cc0d71d-7c54-45ba-b6d8-90a0c3cc21e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +505,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE3ODk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzUzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac63b629-fa62-4152-b3ed-91d28529fea7" + "f787a8f8-59c6-4ccd-b411-ca9e8bcba41d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake17894' under resource group 'rgaba12931' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake18353' under resource group 'rgaba13196' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -545,7 +535,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:57:29 GMT" + "Mon, 27 Mar 2017 20:07:45 GMT" ], "Pragma": [ "no-cache" @@ -554,13 +544,13 @@ "gateway" ], "x-ms-request-id": [ - "4ed2aa46-a282-4f3e-bd43-cae52ac03eb6" + "2bfe3c1f-d3c2-4d69-8c39-2851f5f1c080" ], "x-ms-correlation-request-id": [ - "4ed2aa46-a282-4f3e-bd43-cae52ac03eb6" + "2bfe3c1f-d3c2-4d69-8c39-2851f5f1c080" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005730Z:4ed2aa46-a282-4f3e-bd43-cae52ac03eb6" + "WESTUS2:20170327T200746Z:2bfe3c1f-d3c2-4d69-8c39-2851f5f1c080" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -569,17 +559,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE3ODk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzUzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake17894.caboaccountdogfood.net\",\r\n \"accountId\": \"e130250b-7de9-41f9-98fd-7751b5136107\",\r\n \"creationTime\": \"2017-02-09T00:57:32.2481764Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:57:32.2481764Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894\",\r\n \"name\": \"testdatalake17894\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18353.azuredatalakestore.net\",\r\n \"accountId\": \"e365ae3d-62e8-4cd5-a0bb-5d33eb6d3512\",\r\n \"creationTime\": \"2017-03-27T20:07:48.0007007Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:07:48.0007007Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353\",\r\n \"name\": \"testdatalake18353\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -594,7 +583,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:01 GMT" + "Mon, 27 Mar 2017 20:08:18 GMT" ], "Pragma": [ "no-cache" @@ -606,7 +595,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "26cd3627-ce4f-4ad7-bed6-18c65dc8ae2f" + "421f43f1-21e1-4405-897f-d7ad6f03d08a" ], "X-Content-Type-Options": [ "nosniff" @@ -618,13 +607,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14788" + "14979" ], "x-ms-correlation-request-id": [ - "5403db96-d75b-43f1-9730-80671d336bdb" + "78c52422-8b50-4172-8cbf-70dd348c6155" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005801Z:5403db96-d75b-43f1-9730-80671d336bdb" + "WESTUS2:20170327T200818Z:78c52422-8b50-4172-8cbf-70dd348c6155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,23 +622,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE3ODk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzUzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8ba0a74-2b94-4e64-ba8c-fa762e362395" + "89bbbfcc-7df1-47ee-bfc2-225c4a4c4279" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake17894.caboaccountdogfood.net\",\r\n \"accountId\": \"e130250b-7de9-41f9-98fd-7751b5136107\",\r\n \"creationTime\": \"2017-02-09T00:57:32.2481764Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:57:32.2481764Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894\",\r\n \"name\": \"testdatalake17894\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18353.azuredatalakestore.net\",\r\n \"accountId\": \"e365ae3d-62e8-4cd5-a0bb-5d33eb6d3512\",\r\n \"creationTime\": \"2017-03-27T20:07:48.0007007Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:07:48.0007007Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353\",\r\n \"name\": \"testdatalake18353\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -664,7 +652,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:02 GMT" + "Mon, 27 Mar 2017 20:08:18 GMT" ], "Pragma": [ "no-cache" @@ -676,7 +664,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "850466a3-ce1a-4fd5-9324-773326adf89b" + "a3817187-68bd-4ccc-a36e-20fa4c50dbbf" ], "X-Content-Type-Options": [ "nosniff" @@ -688,13 +676,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "14980" ], "x-ms-correlation-request-id": [ - "40270ec3-2923-4192-b390-5fddcc4c8af5" + "3850c114-6b12-4710-8557-ec4baa1276a3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005802Z:40270ec3-2923-4192-b390-5fddcc4c8af5" + "WESTUS2:20170327T200819Z:3850c114-6b12-4710-8557-ec4baa1276a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -703,8 +691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE3ODk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzUzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -715,17 +703,16 @@ "31" ], "x-ms-client-request-id": [ - "5d27ef8b-8544-4809-a7ae-517e2b55bf9e" + "cab59ddf-7fa6-4810-801a-d6ff77dbdbc1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e130250b-7de9-41f9-98fd-7751b5136107\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894\",\r\n \"name\": \"testdatalake17894\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e365ae3d-62e8-4cd5-a0bb-5d33eb6d3512\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353\",\r\n \"name\": \"testdatalake18353\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -743,13 +730,13 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:57:29 GMT" + "Mon, 27 Mar 2017 20:07:47 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake17894/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake18353/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -758,10 +745,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e130250b-7de9-41f9-98fd-7751b51361070?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e365ae3d-62e8-4cd5-a0bb-5d33eb6d35120?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "6c66f98b-d8f2-4c6b-94c8-699bcbdb22b6" + "5ddd5f4a-5a9b-4405-8171-6332da075a9e" ], "X-Content-Type-Options": [ "nosniff" @@ -773,13 +760,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1108" + "1179" ], "x-ms-correlation-request-id": [ - "560c4b24-7454-4412-80a1-78d77eba5f16" + "1dfb9879-1094-4dc1-a82d-b214cdceb5bc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005730Z:560c4b24-7454-4412-80a1-78d77eba5f16" + "WESTUS2:20170327T200747Z:1dfb9879-1094-4dc1-a82d-b214cdceb5bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -788,14 +775,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e130250b-7de9-41f9-98fd-7751b51361070?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2UxMzAyNTBiLTdkZTktNDFmOS05OGZkLTc3NTFiNTEzNjEwNzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e365ae3d-62e8-4cd5-a0bb-5d33eb6d35120?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2UzNjVhZTNkLTYyZTgtNGNkNS1hMGJiLTVkMzNlYjZkMzUxMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -813,7 +799,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:01 GMT" + "Mon, 27 Mar 2017 20:08:18 GMT" ], "Pragma": [ "no-cache" @@ -825,7 +811,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e90ddcb0-0ca7-4636-af30-98c090e181fa" + "e7110c64-3b4f-4a8e-b369-04b8d3a84a83" ], "X-Content-Type-Options": [ "nosniff" @@ -837,13 +823,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14972" ], "x-ms-correlation-request-id": [ - "b5db0dae-0181-4afa-ba09-db04a53e1437" + "45b296dd-b286-4a77-a55c-10b58104f550" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005801Z:b5db0dae-0181-4afa-ba09-db04a53e1437" + "WESTUS2:20170327T200818Z:45b296dd-b286-4a77-a55c-10b58104f550" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,23 +838,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5Nzc4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0MDUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05a5d5ad-9548-428c-a370-3dd9d12cb416" + "29161cc7-fbe1-4d32-846a-0b2567e06599" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake29778' under resource group 'rgaba12931' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake24051' under resource group 'rgaba13196' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -883,7 +868,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:58:02 GMT" + "Mon, 27 Mar 2017 20:08:19 GMT" ], "Pragma": [ "no-cache" @@ -892,13 +877,13 @@ "gateway" ], "x-ms-request-id": [ - "91e1e40b-6fde-4faf-a21f-9b3f1d4790bd" + "a308567d-0955-4794-9211-e731b0f7adf7" ], "x-ms-correlation-request-id": [ - "91e1e40b-6fde-4faf-a21f-9b3f1d4790bd" + "a308567d-0955-4794-9211-e731b0f7adf7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005802Z:91e1e40b-6fde-4faf-a21f-9b3f1d4790bd" + "WESTUS2:20170327T200819Z:a308567d-0955-4794-9211-e731b0f7adf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -907,17 +892,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5Nzc4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0MDUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29778.caboaccountdogfood.net\",\r\n \"accountId\": \"e4a2edba-2951-4034-85cb-fdc28a8cf180\",\r\n \"creationTime\": \"2017-02-09T00:58:04.8180921Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:58:04.8180921Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778\",\r\n \"name\": \"testdatalake29778\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake24051.azuredatalakestore.net\",\r\n \"accountId\": \"9059f9e4-275d-47d0-a30f-3a736b2f5216\",\r\n \"creationTime\": \"2017-03-27T20:08:20.8430813Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:08:20.8430813Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051\",\r\n \"name\": \"testdatalake24051\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -932,7 +916,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:32 GMT" + "Mon, 27 Mar 2017 20:08:51 GMT" ], "Pragma": [ "no-cache" @@ -944,7 +928,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9746b818-221f-44c9-80dc-1b0ec617a119" + "96816b05-e990-4beb-a322-9ac3a8c74380" ], "X-Content-Type-Options": [ "nosniff" @@ -956,13 +940,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" + "14983" ], "x-ms-correlation-request-id": [ - "a725c4f7-cd9f-4371-825a-4f68dfbdcec4" + "d8e8d3a1-a160-4911-bb50-85e8ca9520c2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005833Z:a725c4f7-cd9f-4371-825a-4f68dfbdcec4" + "WESTUS2:20170327T200852Z:d8e8d3a1-a160-4911-bb50-85e8ca9520c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -971,23 +955,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5Nzc4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0MDUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce5235f7-e00d-4ce1-8cd2-f791abebd06f" + "8693baa0-0383-4d8e-b6ae-318201c29757" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29778.caboaccountdogfood.net\",\r\n \"accountId\": \"e4a2edba-2951-4034-85cb-fdc28a8cf180\",\r\n \"creationTime\": \"2017-02-09T00:58:04.8180921Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:58:04.8180921Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778\",\r\n \"name\": \"testdatalake29778\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake24051.azuredatalakestore.net\",\r\n \"accountId\": \"9059f9e4-275d-47d0-a30f-3a736b2f5216\",\r\n \"creationTime\": \"2017-03-27T20:08:20.8430813Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:08:20.8430813Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051\",\r\n \"name\": \"testdatalake24051\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1002,7 +985,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:33 GMT" + "Mon, 27 Mar 2017 20:08:52 GMT" ], "Pragma": [ "no-cache" @@ -1014,7 +997,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a554598a-f6c4-46f0-8882-279824f13c7b" + "44a291ab-0fa2-4b57-820b-69b4930bdb8a" ], "X-Content-Type-Options": [ "nosniff" @@ -1026,13 +1009,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14787" + "14982" ], "x-ms-correlation-request-id": [ - "eff33e82-f659-4aba-af64-41f925344421" + "f69a88b7-3213-4640-9c16-9a89aac9927a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005834Z:eff33e82-f659-4aba-af64-41f925344421" + "WESTUS2:20170327T200852Z:f69a88b7-3213-4640-9c16-9a89aac9927a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1041,8 +1024,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5Nzc4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0MDUxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1053,17 +1036,16 @@ "31" ], "x-ms-client-request-id": [ - "c31ad513-0e60-4603-8084-9364c5a92f9f" + "4592fde6-2f0d-46f4-acd8-e055f70ec51a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e4a2edba-2951-4034-85cb-fdc28a8cf180\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778\",\r\n \"name\": \"testdatalake29778\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"9059f9e4-275d-47d0-a30f-3a736b2f5216\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051\",\r\n \"name\": \"testdatalake24051\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -1081,13 +1063,13 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:02 GMT" + "Mon, 27 Mar 2017 20:08:20 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/rgaba12931/providers/Microsoft.DataLakeStore/accounts/testdatalake29778/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13196/providers/Microsoft.DataLakeStore/accounts/testdatalake24051/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1096,10 +1078,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e4a2edba-2951-4034-85cb-fdc28a8cf1800?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/9059f9e4-275d-47d0-a30f-3a736b2f52160?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "6139bf61-c131-4877-a6a1-2a152945cc74" + "08e1aa68-ff46-4dd7-990e-2cf40f185a79" ], "X-Content-Type-Options": [ "nosniff" @@ -1111,13 +1093,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1107" + "1185" ], "x-ms-correlation-request-id": [ - "aaf16de3-81a4-403f-acb4-e394be223551" + "c746866a-3a21-4d33-a478-8acfef7287ba" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005803Z:aaf16de3-81a4-403f-acb4-e394be223551" + "WESTUS2:20170327T200821Z:c746866a-3a21-4d33-a478-8acfef7287ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1126,14 +1108,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e4a2edba-2951-4034-85cb-fdc28a8cf1800?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2U0YTJlZGJhLTI5NTEtNDAzNC04NWNiLWZkYzI4YThjZjE4MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/9059f9e4-275d-47d0-a30f-3a736b2f52160?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzkwNTlmOWU0LTI3NWQtNDdkMC1hMzBmLTNhNzM2YjJmNTIxNjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1151,7 +1132,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:32 GMT" + "Mon, 27 Mar 2017 20:08:51 GMT" ], "Pragma": [ "no-cache" @@ -1163,7 +1144,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "106d84fc-b296-48ac-bda8-58a56e77acba" + "b26a745e-cb2e-40e6-99ed-9b2bf876d9b4" ], "X-Content-Type-Options": [ "nosniff" @@ -1175,13 +1156,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14700" + "14986" ], "x-ms-correlation-request-id": [ - "fa018c7a-b29f-4694-b96f-4bbb9fae8b04" + "5cb1cadd-3d8f-4e4e-8afc-4e49a153aebc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005833Z:fa018c7a-b29f-4694-b96f-4bbb9fae8b04" + "WESTUS2:20170327T200851Z:5cb1cadd-3d8f-4e4e-8afc-4e49a153aebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1190,10 +1171,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake17894\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"testdatalake17894\"\r\n }\r\n ],\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule16199\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18353\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18353\"\r\n }\r\n ],\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule13535\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1202,17 +1183,16 @@ "565" ], "x-ms-client-request-id": [ - "edbcda05-eb70-413a-ba94-b1be14240007" + "6161403c-70c6-4575-8fb7-e38413cc0ec6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule16199\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake17894\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"testdatalake17894\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"332e952d-805b-45a5-9e05-4748a9396113\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194\",\r\n \"name\": \"adla017194\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule13535\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18353\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18353\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"2277ec07-b358-4363-9669-36b2f2ddc62f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111\",\r\n \"name\": \"adla018111\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "743" @@ -1230,13 +1210,13 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:58:34 GMT" + "Mon, 27 Mar 2017 20:08:54 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1245,10 +1225,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/332e952d-805b-45a5-9e05-4748a93961130?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/2277ec07-b358-4363-9669-36b2f2ddc62f0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "ae4a6bef-6f19-478c-ba36-736a2df0f12f" + "4aaedc4c-1985-4bdf-a19a-e1ef36c36f1b" ], "X-Content-Type-Options": [ "nosniff" @@ -1260,13 +1240,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1179" ], "x-ms-correlation-request-id": [ - "b785f341-c72f-4c8c-b0be-23f697c53536" + "4d38fc45-ed6d-4b2e-b70e-199014265d47" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005835Z:b785f341-c72f-4c8c-b0be-23f697c53536" + "WESTUS2:20170327T200854Z:4d38fc45-ed6d-4b2e-b70e-199014265d47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1275,14 +1255,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/332e952d-805b-45a5-9e05-4748a93961130?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8zMzJlOTUyZC04MDViLTQ1YTUtOWUwNS00NzQ4YTkzOTYxMTMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/2277ec07-b358-4363-9669-36b2f2ddc62f0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8yMjc3ZWMwNy1iMzU4LTQzNjMtOTY2OS0zNmIyZjJkZGM2MmYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1300,7 +1279,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:05 GMT" + "Mon, 27 Mar 2017 20:09:24 GMT" ], "Pragma": [ "no-cache" @@ -1312,7 +1291,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2821c10d-d27b-4432-a669-00c3da08e1ed" + "0d7f53a5-5ad7-41b1-b5a9-2f04e5bc46d2" ], "X-Content-Type-Options": [ "nosniff" @@ -1324,13 +1303,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" + "14979" ], "x-ms-correlation-request-id": [ - "01c7f52f-f5b7-42b2-ba62-b91203d7ad30" + "d955159d-0677-42b9-a8f2-19c1b26a57aa" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005905Z:01c7f52f-f5b7-42b2-ba62-b91203d7ad30" + "WESTUS2:20170327T200925Z:d955159d-0677-42b9-a8f2-19c1b26a57aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1339,17 +1318,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule16199\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake17894\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"testdatalake17894\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 63,\r\n \"maxJobCount\": 3,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adla017194.konaaccountdogfood.net\",\r\n \"accountId\": \"332e952d-805b-45a5-9e05-4748a9396113\",\r\n \"creationTime\": \"2017-02-09T00:58:40.2731661Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:58:40.2731661Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194\",\r\n \"name\": \"adla017194\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule13535\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18353\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18353\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adla018111.azuredatalakeanalytics.net\",\r\n \"accountId\": \"2277ec07-b358-4363-9669-36b2f2ddc62f\",\r\n \"creationTime\": \"2017-03-27T20:08:56.032894Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:08:56.032894Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111\",\r\n \"name\": \"adla018111\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1364,7 +1342,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:06 GMT" + "Mon, 27 Mar 2017 20:09:25 GMT" ], "Pragma": [ "no-cache" @@ -1376,7 +1354,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "914430d6-e1a8-4569-be47-518f1db96601" + "00c70748-92c8-4397-8574-a2525fa23e24" ], "X-Content-Type-Options": [ "nosniff" @@ -1388,13 +1366,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14978" ], "x-ms-correlation-request-id": [ - "35e4ea4b-5c39-42e7-aad2-8259ba6ea457" + "89baf1f4-44d9-4042-8603-43e73b36f018" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005906Z:35e4ea4b-5c39-42e7-aad2-8259ba6ea457" + "WESTUS2:20170327T200926Z:89baf1f4-44d9-4042-8603-43e73b36f018" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1403,23 +1381,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5eabd96f-20f7-4f5c-abe6-e39809826957" + "cea40344-9204-4030-b8ef-c71eb10113d1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule16199\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake17894\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"caboaccountdogfood.net\"\r\n },\r\n \"name\": \"testdatalake17894\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 63,\r\n \"maxJobCount\": 3,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adla017194.konaaccountdogfood.net\",\r\n \"accountId\": \"332e952d-805b-45a5-9e05-4748a9396113\",\r\n \"creationTime\": \"2017-02-09T00:58:40.2731661Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:58:40.2731661Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194\",\r\n \"name\": \"adla017194\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule13535\"\r\n }\r\n ],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18353\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18353\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adla018111.azuredatalakeanalytics.net\",\r\n \"accountId\": \"2277ec07-b358-4363-9669-36b2f2ddc62f\",\r\n \"creationTime\": \"2017-03-27T20:08:56.032894Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:08:56.032894Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111\",\r\n \"name\": \"adla018111\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1434,7 +1411,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:06 GMT" + "Mon, 27 Mar 2017 20:09:26 GMT" ], "Pragma": [ "no-cache" @@ -1446,7 +1423,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bda2e76b-8225-496b-b067-67a17c362e77" + "873c66c9-d3a2-4f82-939f-ae316c61ccfb" ], "X-Content-Type-Options": [ "nosniff" @@ -1458,13 +1435,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14753" + "14966" ], "x-ms-correlation-request-id": [ - "3dfd7976-dd75-483f-9f2b-1fd8177be7cd" + "72812ef0-6a1d-48a1-b0f4-51b89988acec" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005906Z:3dfd7976-dd75-483f-9f2b-1fd8177be7cd" + "WESTUS2:20170327T200926Z:72812ef0-6a1d-48a1-b0f4-51b89988acec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1473,23 +1450,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNjE5OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzUzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c894fbe-adff-4781-b06c-f14a38c9b637" + "c303241d-3042-4c3d-8a28-b688074cb8d6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199\",\r\n \"name\": \"firerule16199\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535\",\r\n \"name\": \"firerule13535\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1504,7 +1480,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:07 GMT" + "Mon, 27 Mar 2017 20:09:26 GMT" ], "Pragma": [ "no-cache" @@ -1516,7 +1492,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8c628ac6-bc39-4246-acb7-2415e7cc0473" + "d96bb873-00f7-4235-92b9-8818471c073a" ], "X-Content-Type-Options": [ "nosniff" @@ -1528,13 +1504,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14699" + "14970" ], "x-ms-correlation-request-id": [ - "b3182c48-1179-43c1-8d27-95c41c2dd996" + "ac0f596a-c00c-4c58-b1e2-ffcdae15a59b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005907Z:b3182c48-1179-43c1-8d27-95c41c2dd996" + "WESTUS2:20170327T200927Z:ac0f596a-c00c-4c58-b1e2-ffcdae15a59b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1543,20 +1519,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNjE5OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzUzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0a1fa63-9d0d-491d-a23a-f24e040eddd6" + "c0564ef7-48fb-4944-974e-1aa23502b7d0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Firewall Rule does not exist.\"\r\n }\r\n}", @@ -1577,7 +1552,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:09 GMT" + "Mon, 27 Mar 2017 20:09:29 GMT" ], "Pragma": [ "no-cache" @@ -1586,7 +1561,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "8268c84a-f66b-48ff-a0b5-e82372a9b358" + "07719d9a-9fa6-4de3-a874-c6ce1c464f69" ], "X-Content-Type-Options": [ "nosniff" @@ -1598,13 +1573,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14971" ], "x-ms-correlation-request-id": [ - "0f73d278-75c7-46c3-bdb6-4a88780a7bd2" + "817a4ebb-858e-48c2-9f4b-ab30135344d5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005910Z:0f73d278-75c7-46c3-bdb6-4a88780a7bd2" + "WESTUS2:20170327T200930Z:817a4ebb-858e-48c2-9f4b-ab30135344d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1613,29 +1588,28 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNjE5OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzUzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199\",\r\n \"name\": \"firerule16199\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"name\": \"firerule13535\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "370" + "129" ], "x-ms-client-request-id": [ - "ec125aeb-e83a-4afc-a1af-852a12154724" + "dbdee514-7838-490d-a6a1-1a06f1fd5e09" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199\",\r\n \"name\": \"firerule16199\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535\",\r\n \"name\": \"firerule13535\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1650,7 +1624,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:07 GMT" + "Mon, 27 Mar 2017 20:09:27 GMT" ], "Pragma": [ "no-cache" @@ -1662,7 +1636,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "65943f82-5c84-4522-8226-5ea639fb9b5e" + "ba1b3aaf-a15c-43db-b014-4acb15d7d39a" ], "X-Content-Type-Options": [ "nosniff" @@ -1674,13 +1648,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1168" + "1181" ], "x-ms-correlation-request-id": [ - "87e2f560-7f42-48a2-98c4-b452f480ee2e" + "a79fcf75-07f7-4d72-b158-5f38392d16c9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005908Z:87e2f560-7f42-48a2-98c4-b452f480ee2e" + "WESTUS2:20170327T200927Z:a79fcf75-07f7-4d72-b158-5f38392d16c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1689,8 +1663,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNjE5OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzUzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\"\r\n }\r\n}", "RequestHeaders": { @@ -1701,17 +1675,16 @@ "63" ], "x-ms-client-request-id": [ - "66f6f239-b8ff-4845-836e-9b96c2cbbfe9" + "8e9e64cd-5a60-4b08-8a49-39341b26ed8a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199\",\r\n \"name\": \"firerule16199\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535\",\r\n \"name\": \"firerule13535\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1726,7 +1699,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:08 GMT" + "Mon, 27 Mar 2017 20:09:27 GMT" ], "Pragma": [ "no-cache" @@ -1738,7 +1711,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6603b072-24b4-4113-ab8c-a0494e8ca89c" + "797f51f7-af9d-4102-97bd-e67e0707c326" ], "X-Content-Type-Options": [ "nosniff" @@ -1750,13 +1723,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1094" + "1189" ], "x-ms-correlation-request-id": [ - "9bf742e0-b1e3-4e67-8c94-df7c0d872db3" + "4ae4b670-e60d-474f-bd1e-42031a69fe83" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005909Z:9bf742e0-b1e3-4e67-8c94-df7c0d872db3" + "WESTUS2:20170327T200928Z:4ae4b670-e60d-474f-bd1e-42031a69fe83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1765,20 +1738,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/rgaba12931/providers/Microsoft.DataLakeAnalytics/accounts/adla017194/firewallRules/firerule16199?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL3JnYWJhMTI5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE3MTk0L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNjE5OT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13196/providers/Microsoft.DataLakeAnalytics/accounts/adla018111/firewallRules/firerule13535?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMxOTYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy9hZGxhMDE4MTExL2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMzUzNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22b23cd6-ff45-4023-a1b6-0bf2ca2eaf84" + "40a5f2cf-1e7f-43db-84e8-471605000820" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1796,7 +1768,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:59:09 GMT" + "Mon, 27 Mar 2017 20:09:29 GMT" ], "Pragma": [ "no-cache" @@ -1805,7 +1777,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "c567e538-4c8c-4cea-84b2-1b3ef363c63f" + "f5d8d45e-e8be-4b11-9a7c-6dd2a2bf4b0c" ], "X-AspNet-Version": [ "4.0.30319" @@ -1814,13 +1786,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1117" + "1178" ], "x-ms-correlation-request-id": [ - "f591de15-5a2b-4a02-99f5-6feeeef749ac" + "04dfa87e-0bce-4c26-9a3a-3288c2a0709f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T005909Z:f591de15-5a2b-4a02-99f5-6feeeef749ac" + "WESTUS2:20170327T200929Z:04dfa87e-0bce-4c26-9a3a-3288c2a0709f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1831,28 +1803,28 @@ ], "Names": { ".ctor": [ - "rgaba12931", - "testaba18423", - "testaba24535", - "teststorage15609", - "testdatalake17894", - "testdatalake29778", - "testazureblob19059", - "testdb16583", - "testtbl11696", - "testtvf18636", - "testproc11077", - "testview14399", - "testcred15240", - "testsecret11927", - "testsecretpwd14827" + "rgaba13196", + "testaba13111", + "testaba21208", + "teststorage17623", + "testdatalake18353", + "testdatalake24051", + "testazureblob17712", + "testdb13182", + "testtbl12897", + "testtvf11789", + "testproc12646", + "testview19466", + "testcred18093", + "testsecret1876", + "testsecretpwd15552" ], "FirewallTest": [ - "firerule16199", - "adla017194" + "firerule13535", + "adla018111" ] }, "Variables": { - "SubscriptionId": "90585f39-ab85-4921-bb37-0468f7efd1dd" + "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" } } \ No newline at end of file diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/CredentialCRUDTest.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/CredentialCRUDTest.json index 91ba936e6e4c..d4511731fffe 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/CredentialCRUDTest.json +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/CredentialCRUDTest.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44d62d76-1881-4222-ba8c-930de5a0a14e" + "14de18e7-9059-4a43-acde-3f531a4175b8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:52 GMT" + "Mon, 27 Mar 2017 20:14:08 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1179" ], "x-ms-request-id": [ - "01e42cd3-c7d9-41cf-b787-4d6569212975" + "b34f66f7-695b-44e6-b8f4-19789d07eb6a" ], "x-ms-correlation-request-id": [ - "01e42cd3-c7d9-41cf-b787-4d6569212975" + "b34f66f7-695b-44e6-b8f4-19789d07eb6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181153Z:01e42cd3-c7d9-41cf-b787-4d6569212975" + "WESTUS2:20170327T201408Z:b34f66f7-695b-44e6-b8f4-19789d07eb6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3743098e-6314-4d6a-8a0e-b4ab1761ee7c" + "6f7ce604-d91a-488f-b043-a5b7895bff48" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:52 GMT" + "Mon, 27 Mar 2017 20:14:08 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14964" ], "x-ms-request-id": [ - "1edc91dd-c0d3-42c2-a09b-b5f0d511f6a9" + "e1590ad1-1dd4-4d06-b7b7-c5aa3dfbc92d" ], "x-ms-correlation-request-id": [ - "1edc91dd-c0d3-42c2-a09b-b5f0d511f6a9" + "e1590ad1-1dd4-4d06-b7b7-c5aa3dfbc92d" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181153Z:1edc91dd-c0d3-42c2-a09b-b5f0d511f6a9" + "WESTUS2:20170327T201408Z:e1590ad1-1dd4-4d06-b7b7-c5aa3dfbc92d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63401c7f-0b85-4d69-84b7-cca4ce1527c9" + "8fbdace2-d387-42e4-ac93-a85b8d393c09" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:53 GMT" + "Mon, 27 Mar 2017 20:14:09 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1178" ], "x-ms-request-id": [ - "59625a08-6c47-4411-a121-0051c4b4b089" + "48a72ab4-b425-47b3-a868-6e20f41b5d6d" ], "x-ms-correlation-request-id": [ - "59625a08-6c47-4411-a121-0051c4b4b089" + "48a72ab4-b425-47b3-a868-6e20f41b5d6d" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181154Z:59625a08-6c47-4411-a121-0051c4b4b089" + "WESTUS2:20170327T201409Z:48a72ab4-b425-47b3-a868-6e20f41b5d6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f68dcb6-621a-43ec-aede-95ee031db131" + "5876035f-21c8-416a-acdc-c08ef3c2045e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:53 GMT" + "Mon, 27 Mar 2017 20:14:09 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14963" ], "x-ms-request-id": [ - "64208c8e-e071-404a-8670-ae3302165eb8" + "50c76ffe-003a-4852-8c2b-c7881681b6c7" ], "x-ms-correlation-request-id": [ - "64208c8e-e071-404a-8670-ae3302165eb8" + "50c76ffe-003a-4852-8c2b-c7881681b6c7" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181154Z:64208c8e-e071-404a-8670-ae3302165eb8" + "WESTUS2:20170327T201409Z:50c76ffe-003a-4852-8c2b-c7881681b6c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,17 +229,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46a06b05-55fc-48d1-8ff2-5254d85199c7" + "1c834221-e2e7-4804-b80a-d5cfaa85a566" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +250,28 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:54 GMT" + "Mon, 27 Mar 2017 20:14:10 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1177" ], "x-ms-request-id": [ - "ced3ef49-b7ae-4532-9bac-848b0b9cdbe1" + "a2d91e3a-82c1-4de3-965b-595761ac6fa6" ], "x-ms-correlation-request-id": [ - "ced3ef49-b7ae-4532-9bac-848b0b9cdbe1" + "a2d91e3a-82c1-4de3-965b-595761ac6fa6" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181154Z:ced3ef49-b7ae-4532-9bac-848b0b9cdbe1" + "WESTUS2:20170327T201410Z:a2d91e3a-82c1-4de3-965b-595761ac6fa6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,17 +286,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "888cb5a8-8957-4ec8-b42c-2cd704e37676" + "76a52012-4704-465d-8f65-ce1a00798608" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -304,7 +307,7 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:54 GMT" + "Mon, 27 Mar 2017 20:14:10 GMT" ], "Pragma": [ "no-cache" @@ -313,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14962" ], "x-ms-request-id": [ - "31eafe1a-3dee-41e5-85b5-fb8b416da21e" + "467e2a7f-7827-4de7-bc32-731fb424bd4e" ], "x-ms-correlation-request-id": [ - "31eafe1a-3dee-41e5-85b5-fb8b416da21e" + "467e2a7f-7827-4de7-bc32-731fb424bd4e" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181154Z:31eafe1a-3dee-41e5-85b5-fb8b416da21e" + "WESTUS2:20170327T201410Z:467e2a7f-7827-4de7-bc32-731fb424bd4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,26 +334,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11415?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTE0MTU/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1507?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUwNz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db600a2b-2cf4-4cda-a8d5-1c1ff364b603" + "f23f3334-d8ae-4735-a445-cfbca86abfd2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba11415' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba1507' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "102" + "101" ], "Content-Type": [ "application/json; charset=utf-8" @@ -362,7 +364,7 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:54 GMT" + "Mon, 27 Mar 2017 20:14:10 GMT" ], "Pragma": [ "no-cache" @@ -371,16 +373,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14961" ], "x-ms-request-id": [ - "9b924644-66de-4e4b-acb1-f78bf0cfaf8b" + "e82f27c8-829b-4b70-aae8-366cada7c2ad" ], "x-ms-correlation-request-id": [ - "9b924644-66de-4e4b-acb1-f78bf0cfaf8b" + "e82f27c8-829b-4b70-aae8-366cada7c2ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181154Z:9b924644-66de-4e4b-acb1-f78bf0cfaf8b" + "WESTUS2:20170327T201410Z:e82f27c8-829b-4b70-aae8-366cada7c2ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -389,23 +391,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11415?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTE0MTU/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1507?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUwNz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82b2fddd-7971-4d85-8358-0a125662d97d" + "ae426f8c-a1e9-43a2-bbf4-046fa4fe3e67" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415\",\r\n \"name\": \"rgaba11415\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507\",\r\n \"name\": \"rgaba1507\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,7 +418,7 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:55 GMT" + "Mon, 27 Mar 2017 20:14:11 GMT" ], "Pragma": [ "no-cache" @@ -426,16 +427,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14960" ], "x-ms-request-id": [ - "ed0999c3-3a5a-4ca9-ad5e-faca84cd49a9" + "fbccb375-7f45-4296-b601-a0110c70bf3e" ], "x-ms-correlation-request-id": [ - "ed0999c3-3a5a-4ca9-ad5e-faca84cd49a9" + "fbccb375-7f45-4296-b601-a0110c70bf3e" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181156Z:ed0999c3-3a5a-4ca9-ad5e-faca84cd49a9" + "WESTUS2:20170327T201411Z:fbccb375-7f45-4296-b601-a0110c70bf3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,8 +445,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11415?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTE0MTU/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1507?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUwNz9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -456,20 +457,19 @@ "31" ], "x-ms-client-request-id": [ - "19459df4-abe3-4738-8482-39a9f7379910" + "e395a2b4-5b1b-44d3-b115-c1cc88c487cf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415\",\r\n \"name\": \"rgaba11415\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507\",\r\n \"name\": \"rgaba1507\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "174" + "172" ], "Content-Type": [ "application/json; charset=utf-8" @@ -481,22 +481,22 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:55 GMT" + "Mon, 27 Mar 2017 20:14:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1176" ], "x-ms-request-id": [ - "4b9e0393-caf7-4695-9775-17b26dddf50d" + "532f09bf-62a4-4b1a-8af2-7547e34e0f53" ], "x-ms-correlation-request-id": [ - "4b9e0393-caf7-4695-9775-17b26dddf50d" + "532f09bf-62a4-4b1a-8af2-7547e34e0f53" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181156Z:4b9e0393-caf7-4695-9775-17b26dddf50d" + "WESTUS2:20170327T201411Z:532f09bf-62a4-4b1a-8af2-7547e34e0f53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,26 +505,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2ODYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE2ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de2d3718-4adb-4aa6-b05a-98167a620505" + "7d14f91f-a763-4cfc-bc67-4cd92c3e05ff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake16861' under resource group 'rgaba11415' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake11687' under resource group 'rgaba1507' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "164" + "163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -536,7 +535,7 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:11:56 GMT" + "Mon, 27 Mar 2017 20:14:11 GMT" ], "Pragma": [ "no-cache" @@ -545,13 +544,13 @@ "gateway" ], "x-ms-request-id": [ - "adc9100f-f8ad-488d-9345-be0fa023cc98" + "f9499b5a-c0ee-49d2-a198-d2526dd46930" ], "x-ms-correlation-request-id": [ - "adc9100f-f8ad-488d-9345-be0fa023cc98" + "f9499b5a-c0ee-49d2-a198-d2526dd46930" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181156Z:adc9100f-f8ad-488d-9345-be0fa023cc98" + "WESTUS2:20170327T201412Z:f9499b5a-c0ee-49d2-a198-d2526dd46930" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,17 +559,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2ODYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE2ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16861.azuredatalakestore.net\",\r\n \"accountId\": \"13246a5f-2a48-4f82-bc64-c472ef4f0892\",\r\n \"creationTime\": \"2016-11-28T18:12:03.4756208Z\",\r\n \"lastModifiedTime\": \"2016-11-28T18:12:03.4756208Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861\",\r\n \"name\": \"testdatalake16861\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11687.azuredatalakestore.net\",\r\n \"accountId\": \"c1a507cd-f86b-4cb1-bf3a-c1ceeb864c35\",\r\n \"creationTime\": \"2017-03-27T20:14:13.7256629Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:14:13.7256629Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687\",\r\n \"name\": \"testdatalake11687\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -585,7 +583,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:12:29 GMT" + "Mon, 27 Mar 2017 20:14:44 GMT" ], "Pragma": [ "no-cache" @@ -597,7 +595,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1959cf27-4a04-4f57-9c7c-74a2463d94d2" + "61b1b2fb-aa4e-46e2-9de7-b61882e9a74d" ], "X-Content-Type-Options": [ "nosniff" @@ -609,13 +607,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14979" ], "x-ms-correlation-request-id": [ - "c52b6482-411f-43b8-9b4a-869d13faa8a0" + "28a4214c-4093-4c77-98f3-06290ce6b860" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181230Z:c52b6482-411f-43b8-9b4a-869d13faa8a0" + "WESTUS2:20170327T201445Z:28a4214c-4093-4c77-98f3-06290ce6b860" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,23 +622,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2ODYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE2ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e05b01e5-97f9-4cb0-b242-8c967c9c5e9e" + "4b70cff6-00ac-44fa-84c6-9fae2805e641" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16861.azuredatalakestore.net\",\r\n \"accountId\": \"13246a5f-2a48-4f82-bc64-c472ef4f0892\",\r\n \"creationTime\": \"2016-11-28T18:12:03.4756208Z\",\r\n \"lastModifiedTime\": \"2016-11-28T18:12:03.4756208Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861\",\r\n \"name\": \"testdatalake16861\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11687.azuredatalakestore.net\",\r\n \"accountId\": \"c1a507cd-f86b-4cb1-bf3a-c1ceeb864c35\",\r\n \"creationTime\": \"2017-03-27T20:14:13.7256629Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:14:13.7256629Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687\",\r\n \"name\": \"testdatalake11687\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -655,7 +652,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:12:30 GMT" + "Mon, 27 Mar 2017 20:14:45 GMT" ], "Pragma": [ "no-cache" @@ -667,7 +664,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "21b72827-d4a0-414c-a513-204b6e2caf58" + "6af55611-08dc-4d7c-9947-3afd3355565f" ], "X-Content-Type-Options": [ "nosniff" @@ -679,13 +676,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14977" ], "x-ms-correlation-request-id": [ - "86b74b12-6233-4516-98c6-5806c57937d7" + "60ac7341-d6dd-44ce-b8cb-e956f5eb0b45" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181230Z:86b74b12-6233-4516-98c6-5806c57937d7" + "WESTUS2:20170327T201445Z:60ac7341-d6dd-44ce-b8cb-e956f5eb0b45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -694,23 +691,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2ODYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE2ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6ee2434-908b-447b-9329-646d3e02643a" + "a3f9df37-3bde-4c56-b8c3-a3e4d36e8a86" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake16861.azuredatalakestore.net\",\r\n \"accountId\": \"13246a5f-2a48-4f82-bc64-c472ef4f0892\",\r\n \"creationTime\": \"2016-11-28T18:12:03.4756208Z\",\r\n \"lastModifiedTime\": \"2016-11-28T18:12:03.4756208Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861\",\r\n \"name\": \"testdatalake16861\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11687.azuredatalakestore.net\",\r\n \"accountId\": \"c1a507cd-f86b-4cb1-bf3a-c1ceeb864c35\",\r\n \"creationTime\": \"2017-03-27T20:14:13.7256629Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:14:13.7256629Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687\",\r\n \"name\": \"testdatalake11687\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -725,7 +721,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:05 GMT" + "Mon, 27 Mar 2017 20:15:20 GMT" ], "Pragma": [ "no-cache" @@ -737,7 +733,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a2dcde69-13bd-495a-a491-b46e72564789" + "98c5a587-487c-4910-a5b6-dbdc643f75cf" ], "X-Content-Type-Options": [ "nosniff" @@ -749,13 +745,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14982" ], "x-ms-correlation-request-id": [ - "a1342377-8f26-4f77-b4f3-7090a3477a90" + "ad21e6b2-ef7a-429e-96c4-550ffc3ec069" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181305Z:a1342377-8f26-4f77-b4f3-7090a3477a90" + "WESTUS2:20170327T201520Z:ad21e6b2-ef7a-429e-96c4-550ffc3ec069" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -764,8 +760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE2ODYxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE2ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -776,20 +772,19 @@ "31" ], "x-ms-client-request-id": [ - "5cce67b9-10bb-4088-8a62-e598a3be92e0" + "5e6c5e31-5a9a-48ea-a1d9-df545d8da814" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"13246a5f-2a48-4f82-bc64-c472ef4f0892\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861\",\r\n \"name\": \"testdatalake16861\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"c1a507cd-f86b-4cb1-bf3a-c1ceeb864c35\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687\",\r\n \"name\": \"testdatalake11687\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "421" + "420" ], "Content-Type": [ "application/json" @@ -804,13 +799,13 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:11:58 GMT" + "Mon, 27 Mar 2017 20:14:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake16861/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake11687/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -819,10 +814,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/13246a5f-2a48-4f82-bc64-c472ef4f08920?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c1a507cd-f86b-4cb1-bf3a-c1ceeb864c350?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "7c3ba44b-2f98-4518-9d59-5afff8e68db1" + "12340bc3-f56e-4210-8e29-1dac2c4209e5" ], "X-Content-Type-Options": [ "nosniff" @@ -834,13 +829,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "bc4c29a0-f5d3-4caa-81eb-58b94cc00c84" + "aa30614f-5e45-4ad1-8fed-59d4a0d8e49a" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181158Z:bc4c29a0-f5d3-4caa-81eb-58b94cc00c84" + "WESTUS2:20170327T201414Z:aa30614f-5e45-4ad1-8fed-59d4a0d8e49a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,14 +844,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/13246a5f-2a48-4f82-bc64-c472ef4f08920?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzEzMjQ2YTVmLTJhNDgtNGY4Mi1iYzY0LWM0NzJlZjRmMDg5MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c1a507cd-f86b-4cb1-bf3a-c1ceeb864c350?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2MxYTUwN2NkLWY4NmItNGNiMS1iZjNhLWMxY2VlYjg2NGMzNTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -874,7 +868,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:12:29 GMT" + "Mon, 27 Mar 2017 20:14:44 GMT" ], "Pragma": [ "no-cache" @@ -886,7 +880,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e05797df-4c15-46c3-bf70-5eac9db3568d" + "eb810849-de90-4aa5-8063-0f7c6d6f929c" ], "X-Content-Type-Options": [ "nosniff" @@ -898,13 +892,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14978" ], "x-ms-correlation-request-id": [ - "5941ad49-58e3-43bd-8cba-eb8fab39704c" + "370c082d-84c0-4663-b35e-30a56157c740" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181229Z:5941ad49-58e3-43bd-8cba-eb8fab39704c" + "WESTUS2:20170327T201444Z:370c082d-84c0-4663-b35e-30a56157c740" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -913,23 +907,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIzMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjg2NjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18b3fddf-d3e2-4c51-860a-7a1eefa92713" + "b6145fa7-1237-4ecd-a785-a483340043f0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake2309' under resource group 'rgaba11415' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake28663' under resource group 'rgaba1507' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "163" @@ -944,7 +937,7 @@ "no-cache" ], "Date": [ - "Mon, 28 Nov 2016 18:12:31 GMT" + "Mon, 27 Mar 2017 20:14:46 GMT" ], "Pragma": [ "no-cache" @@ -953,13 +946,13 @@ "gateway" ], "x-ms-request-id": [ - "dfd3dd6f-0280-459a-a987-65787f97525d" + "d8cb8027-3add-4da9-900f-e1380fb6781e" ], "x-ms-correlation-request-id": [ - "dfd3dd6f-0280-459a-a987-65787f97525d" + "d8cb8027-3add-4da9-900f-e1380fb6781e" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181231Z:dfd3dd6f-0280-459a-a987-65787f97525d" + "WESTUS2:20170327T201446Z:d8cb8027-3add-4da9-900f-e1380fb6781e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -968,17 +961,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIzMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjg2NjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake2309.azuredatalakestore.net\",\r\n \"accountId\": \"65fc7e61-86d8-4b71-9053-017d19366178\",\r\n \"creationTime\": \"2016-11-28T18:12:36.9555424Z\",\r\n \"lastModifiedTime\": \"2016-11-28T18:12:36.9555424Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309\",\r\n \"name\": \"testdatalake2309\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake28663.azuredatalakestore.net\",\r\n \"accountId\": \"47d1c397-b244-4125-b557-003ee155895b\",\r\n \"creationTime\": \"2017-03-27T20:14:47.6748783Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:14:47.6748783Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663\",\r\n \"name\": \"testdatalake28663\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -993,7 +985,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:03 GMT" + "Mon, 27 Mar 2017 20:15:18 GMT" ], "Pragma": [ "no-cache" @@ -1005,7 +997,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cb428d17-c6ef-4aa1-92f1-867387bd1208" + "b56a7785-c7e4-4f36-aa54-b0b7a0d6e48c" ], "X-Content-Type-Options": [ "nosniff" @@ -1017,13 +1009,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14986" ], "x-ms-correlation-request-id": [ - "99575bff-fd9a-479f-9f3d-85add7af34e4" + "3074206f-691e-49dc-81f9-31fe4efe98df" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181304Z:99575bff-fd9a-479f-9f3d-85add7af34e4" + "WESTUS2:20170327T201519Z:3074206f-691e-49dc-81f9-31fe4efe98df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,23 +1024,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIzMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjg2NjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d4cd5aa-ab2c-4b7c-97b4-718c05f0a899" + "3126e5cf-69bc-4f58-b3d6-2386f8fbc3ae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake2309.azuredatalakestore.net\",\r\n \"accountId\": \"65fc7e61-86d8-4b71-9053-017d19366178\",\r\n \"creationTime\": \"2016-11-28T18:12:36.9555424Z\",\r\n \"lastModifiedTime\": \"2016-11-28T18:12:36.9555424Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309\",\r\n \"name\": \"testdatalake2309\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake28663.azuredatalakestore.net\",\r\n \"accountId\": \"47d1c397-b244-4125-b557-003ee155895b\",\r\n \"creationTime\": \"2017-03-27T20:14:47.6748783Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:14:47.6748783Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663\",\r\n \"name\": \"testdatalake28663\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1063,7 +1054,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:04 GMT" + "Mon, 27 Mar 2017 20:15:19 GMT" ], "Pragma": [ "no-cache" @@ -1075,7 +1066,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9aee3116-ab3a-4ef1-a8d3-43243e86c284" + "c3ec96e3-4ed5-4162-8e7c-a669c2a8eb0b" ], "X-Content-Type-Options": [ "nosniff" @@ -1087,13 +1078,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14983" ], "x-ms-correlation-request-id": [ - "47a66478-db35-434c-9d54-83ff71a3692e" + "03947785-4159-45db-8b95-06d6a87f9fa9" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181304Z:47a66478-db35-434c-9d54-83ff71a3692e" + "WESTUS2:20170327T201519Z:03947785-4159-45db-8b95-06d6a87f9fa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1102,8 +1093,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIzMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMjg2NjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1114,20 +1105,19 @@ "31" ], "x-ms-client-request-id": [ - "b9d9f7f0-0d00-4e30-b6dc-f700f92a67a9" + "f67124ec-a1c7-4add-b352-2ea79a671a80" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"65fc7e61-86d8-4b71-9053-017d19366178\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309\",\r\n \"name\": \"testdatalake2309\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"47d1c397-b244-4125-b557-003ee155895b\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663\",\r\n \"name\": \"testdatalake28663\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "420" ], "Content-Type": [ "application/json" @@ -1142,13 +1132,13 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:12:32 GMT" + "Mon, 27 Mar 2017 20:14:47 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11415/providers/Microsoft.DataLakeStore/accounts/testdatalake2309/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1507/providers/Microsoft.DataLakeStore/accounts/testdatalake28663/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1157,10 +1147,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/65fc7e61-86d8-4b71-9053-017d193661780?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/47d1c397-b244-4125-b557-003ee155895b0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "dfbf0cc2-2f50-4053-a161-c65522da8e68" + "808f0405-dc7b-4475-ad77-ee5c8bf85f75" ], "X-Content-Type-Options": [ "nosniff" @@ -1172,13 +1162,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1187" ], "x-ms-correlation-request-id": [ - "cd69b205-b4a3-46cf-b135-8188cc2e845e" + "c227a406-49eb-4727-92fc-b7c8d28d44ac" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181233Z:cd69b205-b4a3-46cf-b135-8188cc2e845e" + "WESTUS2:20170327T201448Z:c227a406-49eb-4727-92fc-b7c8d28d44ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1187,14 +1177,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/65fc7e61-86d8-4b71-9053-017d193661780?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY1ZmM3ZTYxLTg2ZDgtNGI3MS05MDUzLTAxN2QxOTM2NjE3ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/47d1c397-b244-4125-b557-003ee155895b0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQ3ZDFjMzk3LWIyNDQtNDEyNS1iNTU3LTAwM2VlMTU1ODk1YjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1212,7 +1201,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:02 GMT" + "Mon, 27 Mar 2017 20:15:17 GMT" ], "Pragma": [ "no-cache" @@ -1224,7 +1213,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4a030940-1e48-485e-a813-38e2c657ba0d" + "4f18e427-441f-4235-ba13-6dcd70e0ca63" ], "X-Content-Type-Options": [ "nosniff" @@ -1236,13 +1225,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14974" ], "x-ms-correlation-request-id": [ - "da46fe88-e512-4b48-b991-af9e92f56fa4" + "b98610b8-5a5d-4a6a-b432-aeb6a1348264" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181303Z:da46fe88-e512-4b48-b991-af9e92f56fa4" + "WESTUS2:20170327T201518Z:b98610b8-5a5d-4a6a-b432-aeb6a1348264" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1251,10 +1240,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeAnalytics/accounts/testaba23448?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjM0NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeAnalytics/accounts/testaba26488?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3Rlc3RhYmEyNjQ4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16861\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"testdatalake16861\",\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake11687\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake11687\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1263,20 +1252,19 @@ "290" ], "x-ms-client-request-id": [ - "00c4157c-b405-427e-8520-7b6d0bf5fb39" + "43644ded-3be7-4dda-b08e-fab2491118a4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16861\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16861\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"b92d7ca8-ca3b-40fd-9864-1757e3c1368a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeAnalytics/accounts/testaba23448\",\r\n \"name\": \"testaba23448\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake11687\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake11687\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"fe560807-0f34-4ae0-9a98-27a984e51f2e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeAnalytics/accounts/testaba26488\",\r\n \"name\": \"testaba26488\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "573" + "572" ], "Content-Type": [ "application/json" @@ -1291,13 +1279,13 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:06 GMT" + "Mon, 27 Mar 2017 20:15:21 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba11415/providers/Microsoft.DataLakeAnalytics/accounts/testaba23448/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba1507/providers/Microsoft.DataLakeAnalytics/accounts/testaba26488/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1306,10 +1294,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b92d7ca8-ca3b-40fd-9864-1757e3c1368a0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/fe560807-0f34-4ae0-9a98-27a984e51f2e0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "88abdeaf-89f7-4f5e-81bf-442169cb2bea" + "1f9b72a8-de39-4dcd-a19a-00ab35ee76b5" ], "X-Content-Type-Options": [ "nosniff" @@ -1321,13 +1309,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1175" ], "x-ms-correlation-request-id": [ - "1dae1eb2-2ff7-4548-8c39-d90c77d51b91" + "7d00cdb6-b200-4862-a9eb-5cd3ba305a88" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181307Z:1dae1eb2-2ff7-4548-8c39-d90c77d51b91" + "WESTUS2:20170327T201521Z:7d00cdb6-b200-4862-a9eb-5cd3ba305a88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1336,14 +1324,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/b92d7ca8-ca3b-40fd-9864-1757e3c1368a0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9iOTJkN2NhOC1jYTNiLTQwZmQtOTg2NC0xNzU3ZTNjMTM2OGEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/fe560807-0f34-4ae0-9a98-27a984e51f2e0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9mZTU2MDgwNy0wZjM0LTRhZTAtOWE5OC0yN2E5ODRlNTFmMmUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1361,7 +1348,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:37 GMT" + "Mon, 27 Mar 2017 20:15:52 GMT" ], "Pragma": [ "no-cache" @@ -1373,7 +1360,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d59cd3c4-8aa5-44cb-892b-46db33f45807" + "b92a1a32-6e2f-45b3-b2b2-9b1736aed428" ], "X-Content-Type-Options": [ "nosniff" @@ -1385,13 +1372,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14984" ], "x-ms-correlation-request-id": [ - "bd395f2d-aa6b-471d-8ba5-0d24adce302b" + "b06401a6-7050-4de2-8156-d9d0abe8abcb" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181338Z:bd395f2d-aa6b-471d-8ba5-0d24adce302b" + "WESTUS2:20170327T201552Z:b06401a6-7050-4de2-8156-d9d0abe8abcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1400,17 +1387,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeAnalytics/accounts/testaba23448?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjM0NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeAnalytics/accounts/testaba26488?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3Rlc3RhYmEyNjQ4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16861\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16861\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba23448.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b92d7ca8-ca3b-40fd-9864-1757e3c1368a\",\r\n \"creationTime\": \"2016-11-28T18:13:09.7252371Z\",\r\n \"lastModifiedTime\": \"2016-11-28T18:13:09.7252371Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeAnalytics/accounts/testaba23448\",\r\n \"name\": \"testaba23448\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake11687\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake11687\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba26488.azuredatalakeanalytics.net\",\r\n \"accountId\": \"fe560807-0f34-4ae0-9a98-27a984e51f2e\",\r\n \"creationTime\": \"2017-03-27T20:15:24.02601Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:15:24.02601Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeAnalytics/accounts/testaba26488\",\r\n \"name\": \"testaba26488\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1425,7 +1411,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:38 GMT" + "Mon, 27 Mar 2017 20:15:52 GMT" ], "Pragma": [ "no-cache" @@ -1437,7 +1423,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "22f6ee2c-38a6-495b-a7b4-b526dc83ef0d" + "e971c441-4ba4-467c-9d36-1c7811390df5" ], "X-Content-Type-Options": [ "nosniff" @@ -1449,13 +1435,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14970" ], "x-ms-correlation-request-id": [ - "40539c08-f11e-47a5-8621-7846eb12df5c" + "8eb597be-b9bc-491e-b4f1-326dfa2edd31" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181338Z:40539c08-f11e-47a5-8621-7846eb12df5c" + "WESTUS2:20170327T201552Z:8eb597be-b9bc-491e-b4f1-326dfa2edd31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1464,23 +1450,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeAnalytics/accounts/testaba23448?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTE0MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjM0NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeAnalytics/accounts/testaba26488?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlQW5hbHl0aWNzL2FjY291bnRzL3Rlc3RhYmEyNjQ4OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe312e9-d9aa-4e84-839e-1f2f56d49487" + "cd6321d0-9b76-4ce4-af8a-59b3553bc0fc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake16861\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake16861\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba23448.azuredatalakeanalytics.net\",\r\n \"accountId\": \"b92d7ca8-ca3b-40fd-9864-1757e3c1368a\",\r\n \"creationTime\": \"2016-11-28T18:13:09.7252371Z\",\r\n \"lastModifiedTime\": \"2016-11-28T18:13:09.7252371Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba11415/providers/Microsoft.DataLakeAnalytics/accounts/testaba23448\",\r\n \"name\": \"testaba23448\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake11687\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake11687\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba26488.azuredatalakeanalytics.net\",\r\n \"accountId\": \"fe560807-0f34-4ae0-9a98-27a984e51f2e\",\r\n \"creationTime\": \"2017-03-27T20:15:24.02601Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:15:24.02601Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba1507/providers/Microsoft.DataLakeAnalytics/accounts/testaba26488\",\r\n \"name\": \"testaba26488\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1495,7 +1480,7 @@ "close" ], "Date": [ - "Mon, 28 Nov 2016 18:13:39 GMT" + "Mon, 27 Mar 2017 20:15:53 GMT" ], "Pragma": [ "no-cache" @@ -1507,7 +1492,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ef798bde-3bef-4369-abb1-66687d391632" + "3a3484c1-5414-4fca-a1b9-b31b9aa09c7f" ], "X-Content-Type-Options": [ "nosniff" @@ -1519,13 +1504,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14977" ], "x-ms-correlation-request-id": [ - "01b50086-3d8b-4611-881e-dddfbdd7133c" + "144e68ff-1b8c-4b45-9e3f-49d934cf0307" ], "x-ms-routing-request-id": [ - "WESTUS2:20161128T181339Z:01b50086-3d8b-4611-881e-dddfbdd7133c" + "WESTUS2:20170327T201553Z:144e68ff-1b8c-4b45-9e3f-49d934cf0307" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1534,75 +1519,28 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\r\\n//Create Table\\r\\nCREATE TABLE testdb13618.dbo.testtbl19292\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW testdb13618.dbo.testview14347 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb13618.dbo.testview14347 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\r\\n//Create Table\\r\\nCREATE TABLE testdb14427.dbo.testtbl1499\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW testdb14427.dbo.testview19846 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb14427.dbo.testview19846 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2537" - ], - "x-ms-client-request-id": [ - "42d9d9c2-dafa-40ab-95f6-d1b5bddc926c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Mon, 28 Nov 2016 18:15:42 GMT" + "2527" ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "cdb78c19-61a8-4337-b588-9cd7aaf8a33a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "x-ms-client-request-id": [ - "62ad5dd2-3411-4d47-a6cf-1e80e71c4447" + "021c87b4-c34c-4cb9-a6b7-e4e530d3a056" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.2056449S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1614,13 +1552,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:15:43 GMT" + "Mon, 27 Mar 2017 20:15:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "844c9dda-bd31-4b91-9350-bcf96540c27c" + "429f48b4-107f-4e17-a0cf-5c9439d7f369" ], "X-Content-Type-Options": [ "nosniff" @@ -1632,23 +1570,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffe97930-7f04-44bd-8292-2bc7a29b38d6" + "f9370b4e-7fe7-49a9-926f-5b193ff02ac7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.6620902S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.4273107-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\n//Create Table\\nCREATE TABLE testdb14427.dbo.testtbl1499\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb14427.dbo.testview19846 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\nAS BEGIN\\n CREATE VIEW testdb14427.dbo.testview19846 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.2398108S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1660,13 +1597,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:15:48 GMT" + "Mon, 27 Mar 2017 20:15:57 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "6e81e197-dbae-4226-90e4-006f12e41572" + "acb4858e-3052-4591-8ad6-29935fbb0bc0" ], "X-Content-Type-Options": [ "nosniff" @@ -1678,23 +1615,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c8142e5-8918-4d9f-b845-f2674ab4785b" + "3c2a7403-08c0-4301-8fc8-f80fa2ff3239" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.1760557S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.4273107-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\n//Create Table\\nCREATE TABLE testdb14427.dbo.testtbl1499\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb14427.dbo.testview19846 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\nAS BEGIN\\n CREATE VIEW testdb14427.dbo.testview19846 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.7033535S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1706,13 +1642,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:15:53 GMT" + "Mon, 27 Mar 2017 20:16:02 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "8a81c817-4c1e-46b8-bf9d-a0d0c06a54e6" + "006307c2-051d-4c5d-958a-08188de92405" ], "X-Content-Type-Options": [ "nosniff" @@ -1724,23 +1660,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b5bd802-965e-4154-a769-ca7361393804" + "f10a2d53-46b6-4834-8dcc-625d9843a35b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-28T10:15:54.9865923-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0490988-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0647201-08:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5186128\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5186128\",\r\n \"rootProcessNodeId\": \"5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"yarnApplicationId\": 20078,\r\n \"yarnApplicationTimeStamp\": 1480211360043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.0469827S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0625065S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.4273107-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\n//Create Table\\nCREATE TABLE testdb14427.dbo.testtbl1499\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb14427.dbo.testview19846 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\nAS BEGIN\\n CREATE VIEW testdb14427.dbo.testview19846 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.9118722S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1752,13 +1687,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:15:59 GMT" + "Mon, 27 Mar 2017 20:16:08 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "b96b0b0b-bd3f-434f-93f5-080de329a66d" + "2d411dea-1cf6-4fdb-9284-b864563cb4bd" ], "X-Content-Type-Options": [ "nosniff" @@ -1770,23 +1705,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54869236-50f8-4b01-bddd-484482006e46" + "267a4963-cb4a-4481-9a4d-c5f883370365" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-28T10:15:54.9865923-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0490988-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0647201-08:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5186128\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5186128\",\r\n \"rootProcessNodeId\": \"5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"yarnApplicationId\": 20078,\r\n \"yarnApplicationTimeStamp\": 1480211360043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.0469827S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0625065S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.4273107-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3808093-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3964115-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:34319170-10e9-40e5-ad38-82cf2244a3a7\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.4120484-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"34319170-10e9-40e5-ad38-82cf2244a3a7\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\n//Create Table\\nCREATE TABLE testdb14427.dbo.testtbl1499\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb14427.dbo.testview19846 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\nAS BEGIN\\n CREATE VIEW testdb14427.dbo.testview19846 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"yarnApplicationId\": 90824,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.9534986S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156022S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1798,13 +1732,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:04 GMT" + "Mon, 27 Mar 2017 20:16:13 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "104c2669-832b-461e-9340-1b6677db63ba" + "e119274c-32de-47d9-aef5-221b89dddc6c" ], "X-Content-Type-Options": [ "nosniff" @@ -1816,23 +1750,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f541c5e-0909-4436-baf9-7dd26821d65c" + "113f8189-4f32-4f1a-96e1-02a374c3ef6d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"startTime\": \"2016-11-28T10:16:09.3460927-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-28T10:15:54.9865923-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0490988-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0647201-08:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5186128\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-28T10:16:09.3460927-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5186128\",\r\n \"rootProcessNodeId\": \"5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"yarnApplicationId\": 20078,\r\n \"yarnApplicationTimeStamp\": 1480211360043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.0469827S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0625065S\",\r\n \"totalRunningTime\": \"PT1.0822013S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.4273107-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3808093-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3964115-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:34319170-10e9-40e5-ad38-82cf2244a3a7\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.4120484-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"34319170-10e9-40e5-ad38-82cf2244a3a7\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\n//Create Table\\nCREATE TABLE testdb14427.dbo.testtbl1499\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb14427.dbo.testview19846 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\nAS BEGIN\\n CREATE VIEW testdb14427.dbo.testview19846 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"yarnApplicationId\": 90824,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.9534986S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156022S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1844,13 +1777,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:10 GMT" + "Mon, 27 Mar 2017 20:16:18 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "d3a984e9-92ff-4db3-b5d5-043c27bc0317" + "ea0bb73e-8e69-48a2-a5fc-a340847d0eed" ], "X-Content-Type-Options": [ "nosniff" @@ -1862,23 +1795,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00d826c2-719c-4d0a-bba0-81cf193b9385" + "fb8fb049-4d76-494d-858d-58a468b81fef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"startTime\": \"2016-11-28T10:16:09.3460927-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-28T10:15:54.9865923-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0490988-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0647201-08:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5186128\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-28T10:16:09.3460927-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5186128\",\r\n \"rootProcessNodeId\": \"5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"yarnApplicationId\": 20078,\r\n \"yarnApplicationTimeStamp\": 1480211360043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.0469827S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0625065S\",\r\n \"totalRunningTime\": \"PT6.2885126S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"startTime\": \"2017-03-27T13:16:21.9434515-07:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.4273107-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3808093-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3964115-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:34319170-10e9-40e5-ad38-82cf2244a3a7\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.4120484-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-03-27T13:16:21.9434515-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"34319170-10e9-40e5-ad38-82cf2244a3a7\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\n//Create Table\\nCREATE TABLE testdb14427.dbo.testtbl1499\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb14427.dbo.testview19846 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\nAS BEGIN\\n CREATE VIEW testdb14427.dbo.testview19846 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"yarnApplicationId\": 90824,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.9534986S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156022S\",\r\n \"totalRunningTime\": \"PT2.1189859S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1890,13 +1822,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:15 GMT" + "Mon, 27 Mar 2017 20:16:24 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "c7e2c7fe-da79-4b8e-b0e7-ef19bf6c78a4" + "fca9d769-ef0e-4f77-8c89-67441442f657" ], "X-Content-Type-Options": [ "nosniff" @@ -1908,23 +1840,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/590ddb2c-8363-4fa0-b267-7bca03604efc?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvNTkwZGRiMmMtODM2My00ZmEwLWIyNjctN2JjYTAzNjA0ZWZjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/00c4b84b-6579-4d41-9ab9-990d7b33791e?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMDBjNGI4NGItNjU3OS00ZDQxLTlhYjktOTkwZDdiMzM3OTFlP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c679185c-80d7-4570-88db-5561f0b2611b" + "b8cfc32d-f30e-4190-a296-e807b392d75a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"590ddb2c-8363-4fa0-b267-7bca03604efc\",\r\n \"name\": \"testjob16968\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"startTime\": \"2016-11-28T10:16:09.3460927-08:00\",\r\n \"endTime\": \"2016-11-28T10:16:15.5805206-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.0802071-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-28T10:15:42.9396096-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-28T10:15:54.9865923-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0490988-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-28T10:15:55.0647201-08:00\",\r\n \"details\": \"runtimeVersion:kobo_live_signed_5186128\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-28T10:16:09.3460927-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-28T10:16:15.5805206-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_live_signed_5186128\",\r\n \"rootProcessNodeId\": \"5f15c834-b2c1-48b5-b2cf-23513d8a6cf0\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13618; CREATE DATABASE testdb13618; \\n//Create Table\\nCREATE TABLE testdb13618.dbo.testtbl19292\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13618.dbo.testtbl19292 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13618.dbo.testtvf1691;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13618.dbo.testtvf1691()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13618.dbo.testview14347 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13618.dbo.testproc11700()\\nAS BEGIN\\n CREATE VIEW testdb13618.dbo.testview14347 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake16861.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/28/18/15/590ddb2c-8363-4fa0-b267-7bca03604efc/algebra.xml\",\r\n \"yarnApplicationId\": 20078,\r\n \"yarnApplicationTimeStamp\": 1480211360043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.0469827S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0625065S\",\r\n \"totalRunningTime\": \"PT6.2344279S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"00c4b84b-6579-4d41-9ab9-990d7b33791e\",\r\n \"name\": \"testjob17080\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"startTime\": \"2017-03-27T13:16:21.9434515-07:00\",\r\n \"endTime\": \"2017-03-27T13:16:27.9904653-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.0366827-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:15:57.4273107-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3808093-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.3964115-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:34319170-10e9-40e5-ad38-82cf2244a3a7\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:16:13.4120484-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-03-27T13:16:21.9434515-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T13:16:27.9904653-07:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"34319170-10e9-40e5-ad38-82cf2244a3a7\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb14427; CREATE DATABASE testdb14427; \\n//Create Table\\nCREATE TABLE testdb14427.dbo.testtbl1499\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb14427.dbo.testtbl1499 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb14427.dbo.testtvf1378;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb14427.dbo.testtvf1378()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb14427.dbo.testview19846 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb14427.dbo.testproc14653()\\nAS BEGIN\\n CREATE VIEW testdb14427.dbo.testview19846 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake11687.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/15/00c4b84b-6579-4d41-9ab9-990d7b33791e/algebra.xml\",\r\n \"yarnApplicationId\": 90824,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.9534986S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156022S\",\r\n \"totalRunningTime\": \"PT6.0470138S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1936,13 +1867,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:20 GMT" + "Mon, 27 Mar 2017 20:16:28 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "780aec5c-de0a-4931-85ae-2370e54d7431" + "00fc9bc8-03b3-4442-8e8e-bfc12b2ef66c" ], "X-Content-Type-Options": [ "nosniff" @@ -1954,10 +1885,10 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"testsecretpwd15917\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"18a4e406-9ebb-47ab-b13f-07ecdbdcafb3\"\r\n}", + "RequestBody": "{\r\n \"password\": \"testsecretpwd12784\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"bb6d3742-82d8-4bde-8a8d-b0efa8c0789b\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1966,14 +1897,13 @@ "145" ], "x-ms-client-request-id": [ - "f78818ee-624d-4b49-ac96-d563b42f31f0" + "c74c0550-fec5-4d3e-9fdb-a9218c9c56f8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1985,13 +1915,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:22 GMT" + "Mon, 27 Mar 2017 20:16:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "f8615ea2-f1c6-4ab9-a6f0-777c18139df8" + "454515be-7778-4d9e-9cdf-82bc87a3cd0b" ], "X-Content-Type-Options": [ "nosniff" @@ -2003,10 +1933,10 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"testsecretpwd15917\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"104c170d-c13b-46ea-9962-930665506426\"\r\n}", + "RequestBody": "{\r\n \"password\": \"testsecretpwd12784\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"7496d639-54fe-4c0c-8436-ae7af32845df\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2015,17 +1945,16 @@ "145" ], "x-ms-client-request-id": [ - "44499375-20fc-4b3f-bc37-bd6d10298722" + "24046405-6c91-44cd-9158-0c9e52490b0f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceAlreadyExists\",\r\n \"message\": \"The resource 'testsecret1615' already exists. Trace: 52654d5b-aa66-4f47-b1cc-c40fcb85ee75 Time: 2016-11-28T10:16:23.3658010-08:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceAlreadyExists\",\r\n \"message\": \"The resource 'testsecret12100' already exists. Trace: 13c0869f-a7b8-4034-8983-1de31efa7c6a Time: 2017-03-27T13:16:32.3053044-07:00\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2037,13 +1966,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:23 GMT" + "Mon, 27 Mar 2017 20:16:32 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "52654d5b-aa66-4f47-b1cc-c40fcb85ee75" + "13c0869f-a7b8-4034-8983-1de31efa7c6a" ], "X-Content-Type-Options": [ "nosniff" @@ -2055,10 +1984,10 @@ "StatusCode": 409 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"testsecretpwd15917\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"18074053-480d-4bf5-8f67-4dccda70cd1c\"\r\n}", + "RequestBody": "{\r\n \"password\": \"testsecretpwd12784\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"2351d7b3-03f6-40f0-ae12-d907eba5eeb2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2067,14 +1996,13 @@ "145" ], "x-ms-client-request-id": [ - "efe9873a-13b8-4166-9d38-6ad98418b51a" + "8cfb744c-198b-47fb-8156-2d946fbc62f6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2086,13 +2014,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:26 GMT" + "Mon, 27 Mar 2017 20:16:35 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "fa860d95-95ba-43ba-bec1-952950a53a64" + "862578cf-6232-414a-98a9-cfdc67a22191" ], "X-Content-Type-Options": [ "nosniff" @@ -2104,10 +2032,10 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615dup?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTVkdXA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100dup?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwZHVwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"testsecretpwd15917\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"fedca0a0-f5ce-4384-870e-ca16a40e4665\"\r\n}", + "RequestBody": "{\r\n \"password\": \"testsecretpwd12784\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\",\r\n \"userId\": \"616b1864-65ae-4a58-884b-05bd1a25f1f3\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2116,14 +2044,13 @@ "145" ], "x-ms-client-request-id": [ - "8bab57ee-2fd2-45bc-a4ac-5aff5866117a" + "dac3d489-8e70-4909-88c2-7ed887098d20" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2135,13 +2062,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:24 GMT" + "Mon, 27 Mar 2017 20:16:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "b70c9691-3f7b-449a-a124-9f32a6c08f08" + "90dfe686-2fc2-499a-be50-5af9f5de3496" ], "X-Content-Type-Options": [ "nosniff" @@ -2153,23 +2080,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8937d3f6-f88a-4a62-8428-5503047d4c47" + "f327fd76-4940-4577-8a95-673b288da2b2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"credentialName\": \"testsecret1615\"\r\n}", + "ResponseBody": "{\r\n \"credentialName\": \"testsecret12100\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2181,13 +2107,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:24 GMT" + "Mon, 27 Mar 2017 20:16:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "0ce4f885-f969-4a83-a50c-1ac02d20e4be" + "8f6781a6-26e2-42e0-b885-04e43e445bfb" ], "X-Content-Type-Options": [ "nosniff" @@ -2199,23 +2125,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b795c49e-483a-4430-a8fe-08d0e41c477b" + "de1c4fee-9784-45a5-8f08-1b16b7946499" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"credentialName\": \"testsecret1615\"\r\n}", + "ResponseBody": "{\r\n \"credentialName\": \"testsecret12100\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2227,13 +2152,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:25 GMT" + "Mon, 27 Mar 2017 20:16:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "034d932c-66cc-42e2-91f3-49888a9e8e3f" + "73468cc8-0473-499a-869c-8b162962a150" ], "X-Content-Type-Options": [ "nosniff" @@ -2245,23 +2170,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6cc45bd-c47b-4e32-87a0-b7f947b04ac9" + "e3e1d5cc-a149-4b62-b65b-34b6aee63978" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret1615' does not exist. Trace: 41c4090f-d93c-46c2-80a4-7394247a7b16 Time: 2016-11-28T10:16:26.1314612-08:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret12100' does not exist. Trace: de32857a-cf4e-417d-bf1c-cfa5359c49b2 Time: 2017-03-27T13:16:35.1647436-07:00\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2273,13 +2197,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:25 GMT" + "Mon, 27 Mar 2017 20:16:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "41c4090f-d93c-46c2-80a4-7394247a7b16" + "de32857a-cf4e-417d-bf1c-cfa5359c49b2" ], "X-Content-Type-Options": [ "nosniff" @@ -2291,23 +2215,22 @@ "StatusCode": 404 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37af07af-fea0-4ce6-9f23-de4c883fce98" + "8199f147-54d4-4215-8ba4-6d512ac1e9ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret1615' does not exist. Trace: ebf1aa73-4de1-4d5b-a289-53ca043eaf05 Time: 2016-11-28T10:16:27.9752537-08:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret12100' does not exist. Trace: 2f209298-0885-4c39-accd-2f0d762a6df4 Time: 2017-03-27T13:16:37.3678913-07:00\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2319,13 +2242,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:27 GMT" + "Mon, 27 Mar 2017 20:16:37 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "ebf1aa73-4de1-4d5b-a289-53ca043eaf05" + "2f209298-0885-4c39-accd-2f0d762a6df4" ], "X-Content-Type-Options": [ "nosniff" @@ -2337,23 +2260,22 @@ "StatusCode": 404 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb706257-1027-4a71-9870-b20e4dbcfd4a" + "29e90d3d-7ca1-48cc-a414-6aecfeb43935" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"credentialName\": \"testsecret1615\"\r\n },\r\n {\r\n \"credentialName\": \"testsecret1615dup\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"credentialName\": \"testsecret12100\"\r\n },\r\n {\r\n \"credentialName\": \"testsecret12100dup\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2365,13 +2287,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:24 GMT" + "Mon, 27 Mar 2017 20:16:33 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "ec29133f-0789-40ed-9c1f-f79c240fd2d9" + "b9562eca-f7bc-441c-91aa-e650a3ebf44b" ], "X-Content-Type-Options": [ "nosniff" @@ -2383,10 +2305,10 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?cascade=false&api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/Y2FzY2FkZT1mYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?cascade=false&api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2Nhc2NhZGU9ZmFsc2UmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"password\": \"testsecretpwd15917\"\r\n}", + "RequestBody": "{\r\n \"password\": \"testsecretpwd12784\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2395,14 +2317,13 @@ "40" ], "x-ms-client-request-id": [ - "a4ed4ed1-efcb-4aac-ad20-291140ae041d" + "33c31694-0efa-402e-93cb-c7923fc025da" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2414,13 +2335,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:25 GMT" + "Mon, 27 Mar 2017 20:16:34 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "149e7700-8ad2-4ed8-a2a1-5a9bbc7e611f" + "d5228615-c887-4266-b219-69cd7c77109b" ], "X-Content-Type-Options": [ "nosniff" @@ -2432,10 +2353,10 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb13618/credentials/testsecret1615?cascade=true&api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTM2MTgvY3JlZGVudGlhbHMvdGVzdHNlY3JldDE2MTU/Y2FzY2FkZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/catalog/usql/databases/testdb14427/credentials/testsecret12100?cascade=true&api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTQ0MjcvY3JlZGVudGlhbHMvdGVzdHNlY3JldDEyMTAwP2Nhc2NhZGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"password\": \"testsecretpwd15917\"\r\n}", + "RequestBody": "{\r\n \"password\": \"testsecretpwd12784\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2444,14 +2365,13 @@ "40" ], "x-ms-client-request-id": [ - "4bf703fe-e81c-4aad-90e6-3ba1a96174e4" + "d9249f6a-0163-4973-98ff-53f612da908f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/1.0.1-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2463,13 +2383,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Mon, 28 Nov 2016 18:16:27 GMT" + "Mon, 27 Mar 2017 20:16:36 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "d8db3d5e-10d7-4c25-99a6-c207d63e7c3a" + "97f56527-e598-4330-aaf2-bf7cb5ada054" ], "X-Content-Type-Options": [ "nosniff" @@ -2483,37 +2403,37 @@ ], "Names": { ".ctor": [ - "rgaba11415", - "testaba17740", - "testaba23448", - "teststorage13373", - "testdatalake16861", - "testdatalake2309", - "testazureblob11375", - "testdb13618", - "testtbl19292", - "testtvf1691", - "testproc11700", - "testview14347", - "testcred16140", - "testsecret1615", - "testsecretpwd15917" + "rgaba1507", + "testaba16209", + "testaba26488", + "teststorage1291", + "testdatalake11687", + "testdatalake28663", + "testazureblob16071", + "testdb14427", + "testtbl1499", + "testtvf1378", + "testproc14653", + "testview19846", + "testcred11608", + "testsecret12100", + "testsecretpwd12784" ], "CreateCatalog": [ - "590ddb2c-8363-4fa0-b267-7bca03604efc" + "00c4b84b-6579-4d41-9ab9-990d7b33791e" ], "RunJobToCompletion": [ - "testjob16968" + "testjob17080" ], "fakeUserId01": [ - "18a4e406-9ebb-47ab-b13f-07ecdbdcafb3", - "18074053-480d-4bf5-8f67-4dccda70cd1c" + "bb6d3742-82d8-4bde-8a8d-b0efa8c0789b", + "2351d7b3-03f6-40f0-ae12-d907eba5eeb2" ], "fakeUserId02": [ - "104c170d-c13b-46ea-9962-930665506426" + "7496d639-54fe-4c0c-8436-ae7af32845df" ], "fakeUserId03": [ - "fedca0a0-f5ce-4384-870e-ca16a40e4665" + "616b1864-65ae-4a58-884b-05bd1a25f1f3" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/GetCatalogItemsTest.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/GetCatalogItemsTest.json index 8c2b22368d5e..199eb315b5af 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/GetCatalogItemsTest.json +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/GetCatalogItemsTest.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e3e382f-0620-45cf-8cb4-1eded9bf9f45" + "0cb42f25-eb03-45b9-9e47-66aad683fc50" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:43 GMT" + "Mon, 27 Mar 2017 20:01:00 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1193" ], "x-ms-request-id": [ - "e12ac1b8-154a-4ad2-9733-02546e5a800d" + "238ede0b-79c4-4061-8f33-d03e6c3b3c12" ], "x-ms-correlation-request-id": [ - "e12ac1b8-154a-4ad2-9733-02546e5a800d" + "238ede0b-79c4-4061-8f33-d03e6c3b3c12" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040643Z:e12ac1b8-154a-4ad2-9733-02546e5a800d" + "WESTUS2:20170327T200100Z:238ede0b-79c4-4061-8f33-d03e6c3b3c12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7b1d8b1-20a3-4668-9689-502d96324101" + "5d8d251a-76a7-49f5-b70b-ee29dd62e739" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:43 GMT" + "Mon, 27 Mar 2017 20:01:00 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14978" ], "x-ms-request-id": [ - "e7a7debc-0a1d-49da-8359-3d26a87b9faa" + "3593ae11-47ed-4e3e-bf45-01a8c8d034fc" ], "x-ms-correlation-request-id": [ - "e7a7debc-0a1d-49da-8359-3d26a87b9faa" + "3593ae11-47ed-4e3e-bf45-01a8c8d034fc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040643Z:e7a7debc-0a1d-49da-8359-3d26a87b9faa" + "WESTUS2:20170327T200100Z:3593ae11-47ed-4e3e-bf45-01a8c8d034fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73807b8e-9ccc-4aaf-863b-aa92656af120" + "11ac0303-6795-4419-acd9-e3295fea1527" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:44 GMT" + "Mon, 27 Mar 2017 20:01:01 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1192" ], "x-ms-request-id": [ - "e6103eaa-3473-4e07-b8d7-9f5fb121f9b4" + "162fbce2-a31d-47b8-a3cf-5d5c3f62cb48" ], "x-ms-correlation-request-id": [ - "e6103eaa-3473-4e07-b8d7-9f5fb121f9b4" + "162fbce2-a31d-47b8-a3cf-5d5c3f62cb48" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040644Z:e6103eaa-3473-4e07-b8d7-9f5fb121f9b4" + "WESTUS2:20170327T200101Z:162fbce2-a31d-47b8-a3cf-5d5c3f62cb48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd743666-21cb-4c66-83e3-539175e4e98a" + "1b291e3c-879d-4e95-bf5e-102173c62ec5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:44 GMT" + "Mon, 27 Mar 2017 20:01:01 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14977" ], "x-ms-request-id": [ - "f69c47bc-f030-4c11-9b27-2a753d828d21" + "488b71dc-99e8-4e3b-beeb-76ae1a6556c7" ], "x-ms-correlation-request-id": [ - "f69c47bc-f030-4c11-9b27-2a753d828d21" + "488b71dc-99e8-4e3b-beeb-76ae1a6556c7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040644Z:f69c47bc-f030-4c11-9b27-2a753d828d21" + "WESTUS2:20170327T200101Z:488b71dc-99e8-4e3b-beeb-76ae1a6556c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,17 +229,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be0bf134-3cab-4858-ba01-f0f1e8ced93a" + "e4507261-826a-4a20-9a68-c159db3f1c29" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +250,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:45 GMT" + "Mon, 27 Mar 2017 20:01:02 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1191" ], "x-ms-request-id": [ - "7cb696cf-e48e-4fd9-b575-c0644ec53608" + "1b0679a6-9a7d-4176-80aa-782eef100e5a" ], "x-ms-correlation-request-id": [ - "7cb696cf-e48e-4fd9-b575-c0644ec53608" + "1b0679a6-9a7d-4176-80aa-782eef100e5a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040645Z:7cb696cf-e48e-4fd9-b575-c0644ec53608" + "WESTUS2:20170327T200102Z:1b0679a6-9a7d-4176-80aa-782eef100e5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,17 +286,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a0d359a-9e11-4d4f-8d7d-ea4251beba9c" + "431cf295-175c-4d4f-b676-571794297c9d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -304,7 +307,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:45 GMT" + "Mon, 27 Mar 2017 20:01:02 GMT" ], "Pragma": [ "no-cache" @@ -313,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14976" ], "x-ms-request-id": [ - "ac75d212-8722-4378-8da7-e3fd467ddf07" + "a1288e72-7177-4800-9eb4-41ef172e3f16" ], "x-ms-correlation-request-id": [ - "ac75d212-8722-4378-8da7-e3fd467ddf07" + "a1288e72-7177-4800-9eb4-41ef172e3f16" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040645Z:ac75d212-8722-4378-8da7-e3fd467ddf07" + "WESTUS2:20170327T200102Z:a1288e72-7177-4800-9eb4-41ef172e3f16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,23 +334,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19677?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTk2Nzc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12062?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTIwNjI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a492fd3c-c27e-4d79-b42b-6b586bfe0949" + "b933dd41-88b5-447d-9d2b-c57f9e95e14f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba19677' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba12062' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "102" @@ -362,7 +364,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:45 GMT" + "Mon, 27 Mar 2017 20:01:02 GMT" ], "Pragma": [ "no-cache" @@ -371,16 +373,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14975" ], "x-ms-request-id": [ - "eb1db2a6-4e25-4a47-9f12-c1c513874093" + "2d783fd0-cede-4a5e-8714-4e8133254270" ], "x-ms-correlation-request-id": [ - "eb1db2a6-4e25-4a47-9f12-c1c513874093" + "2d783fd0-cede-4a5e-8714-4e8133254270" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040645Z:eb1db2a6-4e25-4a47-9f12-c1c513874093" + "WESTUS2:20170327T200102Z:2d783fd0-cede-4a5e-8714-4e8133254270" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -389,23 +391,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19677?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTk2Nzc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12062?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTIwNjI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82cde8dc-0d4f-4af9-a9fb-848c87db5ab2" + "5fb0e148-04a8-4ef3-90d0-966d965e1174" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677\",\r\n \"name\": \"rgaba19677\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062\",\r\n \"name\": \"rgaba12062\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,7 +418,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:45 GMT" + "Mon, 27 Mar 2017 20:01:03 GMT" ], "Pragma": [ "no-cache" @@ -426,16 +427,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14974" ], "x-ms-request-id": [ - "554e4911-5ea2-44c1-9766-0b9892470f36" + "61a4f0e0-c6f0-479e-8758-6fe77645039a" ], "x-ms-correlation-request-id": [ - "554e4911-5ea2-44c1-9766-0b9892470f36" + "61a4f0e0-c6f0-479e-8758-6fe77645039a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040646Z:554e4911-5ea2-44c1-9766-0b9892470f36" + "WESTUS2:20170327T200104Z:61a4f0e0-c6f0-479e-8758-6fe77645039a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,8 +445,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19677?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTk2Nzc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12062?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTIwNjI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -456,17 +457,16 @@ "31" ], "x-ms-client-request-id": [ - "df7c9a95-0e6c-463b-a70d-c490b3879c19" + "efb8e7b9-0411-499c-8fe2-0a133ebe642b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677\",\r\n \"name\": \"rgaba19677\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062\",\r\n \"name\": \"rgaba12062\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "174" @@ -481,22 +481,22 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:45 GMT" + "Mon, 27 Mar 2017 20:01:03 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1190" ], "x-ms-request-id": [ - "497b5665-49da-45a0-8a27-c01f19ffe6da" + "7de5efdc-1278-495c-802d-d756a11147bf" ], "x-ms-correlation-request-id": [ - "497b5665-49da-45a0-8a27-c01f19ffe6da" + "7de5efdc-1278-495c-802d-d756a11147bf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040646Z:497b5665-49da-45a0-8a27-c01f19ffe6da" + "WESTUS2:20170327T200104Z:7de5efdc-1278-495c-802d-d756a11147bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,23 +505,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4NDE0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3d9070b-9db5-4f0d-99f0-f8c7a060cea4" + "e701e513-f6ad-4d58-a61e-9e70ad3b91d4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake12038' under resource group 'rgaba19677' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake18414' under resource group 'rgaba12062' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -536,7 +535,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:06:46 GMT" + "Mon, 27 Mar 2017 20:01:04 GMT" ], "Pragma": [ "no-cache" @@ -545,13 +544,13 @@ "gateway" ], "x-ms-request-id": [ - "e97d4500-8ea3-4597-8f75-f51862087851" + "6f6b9ee9-7608-4cf3-ab7f-1a0d0dfb932b" ], "x-ms-correlation-request-id": [ - "e97d4500-8ea3-4597-8f75-f51862087851" + "6f6b9ee9-7608-4cf3-ab7f-1a0d0dfb932b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040646Z:e97d4500-8ea3-4597-8f75-f51862087851" + "WESTUS2:20170327T200104Z:6f6b9ee9-7608-4cf3-ab7f-1a0d0dfb932b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,17 +559,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4NDE0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12038.azuredatalakestore.net\",\r\n \"accountId\": \"67217cb6-5eba-46af-9420-44d0df4bee6e\",\r\n \"creationTime\": \"2016-11-08T04:06:47.5453058Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:06:47.5453058Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038\",\r\n \"name\": \"testdatalake12038\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18414.azuredatalakestore.net\",\r\n \"accountId\": \"6b24d269-afea-4043-80e1-73b30a0a348e\",\r\n \"creationTime\": \"2017-03-27T20:01:05.3742699Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:01:05.3742699Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414\",\r\n \"name\": \"testdatalake18414\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -585,7 +583,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:07:17 GMT" + "Mon, 27 Mar 2017 20:01:36 GMT" ], "Pragma": [ "no-cache" @@ -597,7 +595,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ebea4740-6607-48e5-b988-784899e51f43" + "6051f2cb-5f9c-4aa9-8e4b-9812b49b3cb9" ], "X-Content-Type-Options": [ "nosniff" @@ -609,13 +607,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14983" ], "x-ms-correlation-request-id": [ - "b49f591f-6737-478c-b0db-696bb42b8f72" + "f65070d6-4981-48e7-894c-63d3273b2cde" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040718Z:b49f591f-6737-478c-b0db-696bb42b8f72" + "WESTUS2:20170327T200137Z:f65070d6-4981-48e7-894c-63d3273b2cde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,23 +622,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4NDE0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9971b15a-6b7d-45c5-8ff0-9b58ebae6420" + "a1336e4f-1356-4d36-a8e9-0b2265cbc7eb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12038.azuredatalakestore.net\",\r\n \"accountId\": \"67217cb6-5eba-46af-9420-44d0df4bee6e\",\r\n \"creationTime\": \"2016-11-08T04:06:47.5453058Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:06:47.5453058Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038\",\r\n \"name\": \"testdatalake12038\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18414.azuredatalakestore.net\",\r\n \"accountId\": \"6b24d269-afea-4043-80e1-73b30a0a348e\",\r\n \"creationTime\": \"2017-03-27T20:01:05.3742699Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:01:05.3742699Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414\",\r\n \"name\": \"testdatalake18414\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -655,7 +652,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:07:18 GMT" + "Mon, 27 Mar 2017 20:01:37 GMT" ], "Pragma": [ "no-cache" @@ -667,7 +664,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c0ad5d89-b925-47a1-ad7f-c897f75140d4" + "0dccec82-ee18-422b-9a61-95ef2379866a" ], "X-Content-Type-Options": [ "nosniff" @@ -679,13 +676,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14987" ], "x-ms-correlation-request-id": [ - "eb45e500-6533-4dad-8cea-899429b740a8" + "dac64897-370e-4ddf-a5bd-eef5e2ad954a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040718Z:eb45e500-6533-4dad-8cea-899429b740a8" + "WESTUS2:20170327T200138Z:dac64897-370e-4ddf-a5bd-eef5e2ad954a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -694,23 +691,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4NDE0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "536a9d93-fd2d-4885-9fde-02738941522b" + "77b93a01-3920-4cc3-aa58-91013fd94da2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12038.azuredatalakestore.net\",\r\n \"accountId\": \"67217cb6-5eba-46af-9420-44d0df4bee6e\",\r\n \"creationTime\": \"2016-11-08T04:06:47.5453058Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:06:47.5453058Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038\",\r\n \"name\": \"testdatalake12038\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18414.azuredatalakestore.net\",\r\n \"accountId\": \"6b24d269-afea-4043-80e1-73b30a0a348e\",\r\n \"creationTime\": \"2017-03-27T20:01:05.3742699Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:01:05.3742699Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414\",\r\n \"name\": \"testdatalake18414\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -725,7 +721,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:22 GMT" + "Mon, 27 Mar 2017 20:02:12 GMT" ], "Pragma": [ "no-cache" @@ -737,7 +733,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4dae4aea-35c8-420f-9ae0-b27ba459fefd" + "e4ba7b48-a57c-426f-b3ea-582c717641f9" ], "X-Content-Type-Options": [ "nosniff" @@ -749,13 +745,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14980" ], "x-ms-correlation-request-id": [ - "c6a3ba41-8ff9-4fe7-9b35-071d3bde50a9" + "910a8956-a132-469a-a763-bfb2f7c7308b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040822Z:c6a3ba41-8ff9-4fe7-9b35-071d3bde50a9" + "WESTUS2:20170327T200212Z:910a8956-a132-469a-a763-bfb2f7c7308b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -764,8 +760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4NDE0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -776,17 +772,16 @@ "31" ], "x-ms-client-request-id": [ - "fdf71655-6f53-4a80-8e71-f2ffe68b26b5" + "221d7f6b-f538-49e8-a8ee-6b67e358cc83" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"67217cb6-5eba-46af-9420-44d0df4bee6e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038\",\r\n \"name\": \"testdatalake12038\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"6b24d269-afea-4043-80e1-73b30a0a348e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414\",\r\n \"name\": \"testdatalake18414\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -804,13 +799,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:06:46 GMT" + "Mon, 27 Mar 2017 20:01:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake12038/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake18414/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -819,10 +814,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/67217cb6-5eba-46af-9420-44d0df4bee6e0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6b24d269-afea-4043-80e1-73b30a0a348e0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "0121440a-67c3-4502-a8ad-bb676240b5b8" + "fcd5417b-83c7-49dc-8435-b390da89fe64" ], "X-Content-Type-Options": [ "nosniff" @@ -834,13 +829,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1182" ], "x-ms-correlation-request-id": [ - "7dfab0ff-f7bc-4317-8fc3-7953a9ca0688" + "04a56051-a0da-41b5-8f8c-ba4c47b69364" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040647Z:7dfab0ff-f7bc-4317-8fc3-7953a9ca0688" + "WESTUS2:20170327T200106Z:04a56051-a0da-41b5-8f8c-ba4c47b69364" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,14 +844,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/67217cb6-5eba-46af-9420-44d0df4bee6e0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY3MjE3Y2I2LTVlYmEtNDZhZi05NDIwLTQ0ZDBkZjRiZWU2ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6b24d269-afea-4043-80e1-73b30a0a348e0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzZiMjRkMjY5LWFmZWEtNDA0My04MGUxLTczYjMwYTBhMzQ4ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -874,7 +868,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:07:17 GMT" + "Mon, 27 Mar 2017 20:01:36 GMT" ], "Pragma": [ "no-cache" @@ -886,7 +880,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fe9b0a6f-3829-4247-8fd6-691a2dadd2c9" + "f5ab4d2d-1c20-4e34-a28b-098baaf9f701" ], "X-Content-Type-Options": [ "nosniff" @@ -898,13 +892,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14984" ], "x-ms-correlation-request-id": [ - "8a39cf67-e1a3-43a5-bf33-a941ee73b645" + "092477de-ec5d-4daf-b8e8-949043973c03" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040717Z:8a39cf67-e1a3-43a5-bf33-a941ee73b645" + "WESTUS2:20170327T200137Z:092477de-ec5d-4daf-b8e8-949043973c03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -913,23 +907,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5OTY2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MzE5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e75ec67-9eca-4aca-8020-051d0ce30653" + "e0e6e14b-0738-4a36-a08b-d17f2f453f0e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake29966' under resource group 'rgaba19677' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake26319' under resource group 'rgaba12062' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -944,7 +937,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:07:18 GMT" + "Mon, 27 Mar 2017 20:01:38 GMT" ], "Pragma": [ "no-cache" @@ -953,13 +946,13 @@ "gateway" ], "x-ms-request-id": [ - "f1f6e158-ca8f-41cf-aa22-25806a384a94" + "440a2c19-2583-4c2a-ba05-0f4f586263f2" ], "x-ms-correlation-request-id": [ - "f1f6e158-ca8f-41cf-aa22-25806a384a94" + "440a2c19-2583-4c2a-ba05-0f4f586263f2" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040719Z:f1f6e158-ca8f-41cf-aa22-25806a384a94" + "WESTUS2:20170327T200138Z:440a2c19-2583-4c2a-ba05-0f4f586263f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -968,17 +961,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5OTY2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MzE5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29966.azuredatalakestore.net\",\r\n \"accountId\": \"9fae142b-99d5-49d5-9798-0b5c2993def5\",\r\n \"creationTime\": \"2016-11-08T04:07:20.7196565Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:07:20.7196565Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966\",\r\n \"name\": \"testdatalake29966\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake26319.azuredatalakestore.net\",\r\n \"accountId\": \"76c4d631-03c6-4e69-9fea-344270358fc1\",\r\n \"creationTime\": \"2017-03-27T20:01:41.0239612Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:01:41.0239612Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319\",\r\n \"name\": \"testdatalake26319\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -993,7 +985,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:20 GMT" + "Mon, 27 Mar 2017 20:02:11 GMT" ], "Pragma": [ "no-cache" @@ -1005,7 +997,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1b90f936-6621-4fcb-bb1f-9a95c2c932c0" + "96ffc6b1-568c-441d-a549-fa276d2cbe60" ], "X-Content-Type-Options": [ "nosniff" @@ -1017,13 +1009,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14966" ], "x-ms-correlation-request-id": [ - "39cc412b-f4b2-4c5b-9ed5-717d5f11197b" + "0a54d898-7006-425c-94a2-063340d6d5bf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040821Z:39cc412b-f4b2-4c5b-9ed5-717d5f11197b" + "WESTUS2:20170327T200211Z:0a54d898-7006-425c-94a2-063340d6d5bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,23 +1024,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5OTY2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MzE5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3aed6b0-93a4-4185-8a7b-3066a16820c2" + "86c7368e-e7b4-4b47-aeaf-685a3e7ba5ee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake29966.azuredatalakestore.net\",\r\n \"accountId\": \"9fae142b-99d5-49d5-9798-0b5c2993def5\",\r\n \"creationTime\": \"2016-11-08T04:07:20.7196565Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:07:20.7196565Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966\",\r\n \"name\": \"testdatalake29966\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake26319.azuredatalakestore.net\",\r\n \"accountId\": \"76c4d631-03c6-4e69-9fea-344270358fc1\",\r\n \"creationTime\": \"2017-03-27T20:01:41.0239612Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:01:41.0239612Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319\",\r\n \"name\": \"testdatalake26319\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1063,7 +1054,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:20 GMT" + "Mon, 27 Mar 2017 20:02:11 GMT" ], "Pragma": [ "no-cache" @@ -1075,7 +1066,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5c253757-0434-4e8a-a665-aaf02dc84750" + "6371f01e-2cf7-440b-8759-3c5f340ba62b" ], "X-Content-Type-Options": [ "nosniff" @@ -1087,13 +1078,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14988" ], "x-ms-correlation-request-id": [ - "e548ebd3-e3f1-4ed2-81dd-1cabfde1d301" + "05f66e72-170c-4b24-a12c-c61a1a119590" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040821Z:e548ebd3-e3f1-4ed2-81dd-1cabfde1d301" + "WESTUS2:20170327T200212Z:05f66e72-170c-4b24-a12c-c61a1a119590" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1102,8 +1093,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI5OTY2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI2MzE5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1114,17 +1105,16 @@ "31" ], "x-ms-client-request-id": [ - "f7037524-ab04-44c5-b5c0-7dfeb377fa26" + "84b0dcc7-57e2-4950-b82f-1826364ef44f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"9fae142b-99d5-49d5-9798-0b5c2993def5\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966\",\r\n \"name\": \"testdatalake29966\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"76c4d631-03c6-4e69-9fea-344270358fc1\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319\",\r\n \"name\": \"testdatalake26319\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -1142,13 +1132,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:07:19 GMT" + "Mon, 27 Mar 2017 20:01:40 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19677/providers/Microsoft.DataLakeStore/accounts/testdatalake29966/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12062/providers/Microsoft.DataLakeStore/accounts/testdatalake26319/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1157,10 +1147,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/9fae142b-99d5-49d5-9798-0b5c2993def50?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/76c4d631-03c6-4e69-9fea-344270358fc10?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "56963808-e7e2-48e3-90b6-6c20dd302d8c" + "19d8883f-1a77-48cd-b5a9-5dacd2591410" ], "X-Content-Type-Options": [ "nosniff" @@ -1172,13 +1162,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1182" ], "x-ms-correlation-request-id": [ - "37e44ce1-12c4-42c6-94a0-a13bf687c27f" + "654b63c4-3edd-44f2-8f38-318f3fbd0735" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040719Z:37e44ce1-12c4-42c6-94a0-a13bf687c27f" + "WESTUS2:20170327T200140Z:654b63c4-3edd-44f2-8f38-318f3fbd0735" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1187,78 +1177,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/9fae142b-99d5-49d5-9798-0b5c2993def50?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzlmYWUxNDJiLTk5ZDUtNDlkNS05Nzk4LTBiNWMyOTkzZGVmNTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/76c4d631-03c6-4e69-9fea-344270358fc10?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzc2YzRkNjMxLTAzYzYtNGU2OS05ZmVhLTM0NDI3MDM1OGZjMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Tue, 08 Nov 2016 04:07:50 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "65e92f56-a979-4821-8afd-f61348fad2ce" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" - ], - "x-ms-correlation-request-id": [ - "229248ec-ff76-451d-b069-0a903c465b68" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040750Z:229248ec-ff76-451d-b069-0a903c465b68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/9fae142b-99d5-49d5-9798-0b5c2993def50?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzlmYWUxNDJiLTk5ZDUtNDlkNS05Nzk4LTBiNWMyOTkzZGVmNTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1276,7 +1201,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:20 GMT" + "Mon, 27 Mar 2017 20:02:11 GMT" ], "Pragma": [ "no-cache" @@ -1288,7 +1213,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2211c1ef-fe93-4257-ae3a-1b1b187a80e7" + "fbe33c06-b3b9-4a5e-a824-d626890a0d6b" ], "X-Content-Type-Options": [ "nosniff" @@ -1300,13 +1225,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14986" ], "x-ms-correlation-request-id": [ - "65854f41-88bc-4ea7-86bd-83e9535c9e2a" + "e4ac9835-acee-4b62-8d0e-4ea079e20005" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040820Z:65854f41-88bc-4ea7-86bd-83e9535c9e2a" + "WESTUS2:20170327T200211Z:e4ac9835-acee-4b62-8d0e-4ea079e20005" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1315,10 +1240,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeAnalytics/accounts/testaba25610?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjU2MTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeAnalytics/accounts/testaba24858?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQ4NTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12038\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"testdatalake12038\",\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18414\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18414\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1327,17 +1252,16 @@ "290" ], "x-ms-client-request-id": [ - "c4ac5b29-9f32-4925-93e9-03c170f740e6" + "3ae9fbc3-6cd4-4f1d-8a3e-cccd0f1ef939" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12038\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12038\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"2b70f130-c3f1-4f2a-845b-5cdf733f3131\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeAnalytics/accounts/testaba25610\",\r\n \"name\": \"testaba25610\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18414\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18414\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4ebb4031-a323-4746-a6ec-fbab5be03820\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeAnalytics/accounts/testaba24858\",\r\n \"name\": \"testaba24858\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "573" @@ -1355,13 +1279,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:24 GMT" + "Mon, 27 Mar 2017 20:02:14 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19677/providers/Microsoft.DataLakeAnalytics/accounts/testaba25610/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba12062/providers/Microsoft.DataLakeAnalytics/accounts/testaba24858/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1370,10 +1294,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/2b70f130-c3f1-4f2a-845b-5cdf733f31310?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/4ebb4031-a323-4746-a6ec-fbab5be038200?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "17dff3b3-395b-454d-8aa9-a1d5dd1a1c41" + "5025484f-eaa6-4744-9288-3945dd3cf52a" ], "X-Content-Type-Options": [ "nosniff" @@ -1385,13 +1309,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "2939befd-b03a-4fee-8ec5-bb3696b8ff2d" + "5b81bd86-b26c-4eb0-b73c-976d2251bf83" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040824Z:2939befd-b03a-4fee-8ec5-bb3696b8ff2d" + "CENTRALUS:20170327T200215Z:5b81bd86-b26c-4eb0-b73c-976d2251bf83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1400,14 +1324,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/2b70f130-c3f1-4f2a-845b-5cdf733f31310?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8yYjcwZjEzMC1jM2YxLTRmMmEtODQ1Yi01Y2RmNzMzZjMxMzEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/4ebb4031-a323-4746-a6ec-fbab5be038200?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80ZWJiNDAzMS1hMzIzLTQ3NDYtYTZlYy1mYmFiNWJlMDM4MjAwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1425,7 +1348,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:54 GMT" + "Mon, 27 Mar 2017 20:02:44 GMT" ], "Pragma": [ "no-cache" @@ -1437,7 +1360,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bcfc4dff-46ff-4a07-9d1d-ed9e318488d6" + "fb5e86a5-30da-4d98-bfbc-01445e1eb397" ], "X-Content-Type-Options": [ "nosniff" @@ -1449,13 +1372,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14992" ], "x-ms-correlation-request-id": [ - "b88aadce-bdd4-4248-9627-4aae59f3e29b" + "ee77b841-8509-482e-b295-4479d8cf2fe9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040855Z:b88aadce-bdd4-4248-9627-4aae59f3e29b" + "CENTRALUS:20170327T200245Z:ee77b841-8509-482e-b295-4479d8cf2fe9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1464,17 +1387,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeAnalytics/accounts/testaba25610?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjU2MTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeAnalytics/accounts/testaba24858?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQ4NTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12038\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12038\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 120,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba25610.azuredatalakeanalytics.net\",\r\n \"accountId\": \"2b70f130-c3f1-4f2a-845b-5cdf733f3131\",\r\n \"creationTime\": \"2016-11-08T04:08:27.324033Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:08:27.324033Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeAnalytics/accounts/testaba25610\",\r\n \"name\": \"testaba25610\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18414\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18414\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba24858.azuredatalakeanalytics.net\",\r\n \"accountId\": \"4ebb4031-a323-4746-a6ec-fbab5be03820\",\r\n \"creationTime\": \"2017-03-27T20:02:17.7965133Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:02:17.7965133Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeAnalytics/accounts/testaba24858\",\r\n \"name\": \"testaba24858\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1489,7 +1411,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:55 GMT" + "Mon, 27 Mar 2017 20:02:46 GMT" ], "Pragma": [ "no-cache" @@ -1501,7 +1423,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "5022c169-c788-4680-a8e5-7d6e59fa4e85" + "c805eb6b-38ab-479d-878d-1f30943d2bcf" ], "X-Content-Type-Options": [ "nosniff" @@ -1513,13 +1435,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14997" ], "x-ms-correlation-request-id": [ - "9331fd57-0e4d-43fe-b3ef-e9597e81e613" + "e1b69f1f-ac43-441c-b470-6c1b1977d4fb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040855Z:9331fd57-0e4d-43fe-b3ef-e9597e81e613" + "CENTRALUS:20170327T200246Z:e1b69f1f-ac43-441c-b470-6c1b1977d4fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1528,23 +1450,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeAnalytics/accounts/testaba25610?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTk2NzcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjU2MTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeAnalytics/accounts/testaba24858?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTIwNjIvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQ4NTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79316445-3236-444a-aa8a-50654493e334" + "d9613bbb-98c0-4cce-b41a-2f3354250179" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12038\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12038\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 120,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba25610.azuredatalakeanalytics.net\",\r\n \"accountId\": \"2b70f130-c3f1-4f2a-845b-5cdf733f3131\",\r\n \"creationTime\": \"2016-11-08T04:08:27.324033Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:08:27.324033Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19677/providers/Microsoft.DataLakeAnalytics/accounts/testaba25610\",\r\n \"name\": \"testaba25610\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18414\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18414\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba24858.azuredatalakeanalytics.net\",\r\n \"accountId\": \"4ebb4031-a323-4746-a6ec-fbab5be03820\",\r\n \"creationTime\": \"2017-03-27T20:02:17.7965133Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:02:17.7965133Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba12062/providers/Microsoft.DataLakeAnalytics/accounts/testaba24858\",\r\n \"name\": \"testaba24858\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1559,7 +1480,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:08:56 GMT" + "Mon, 27 Mar 2017 20:02:45 GMT" ], "Pragma": [ "no-cache" @@ -1571,7 +1492,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9b97dda5-1712-4d0f-b68b-aebdf55fa355" + "7d8a08e6-39e9-4a45-bfc8-1baed4eca7f6" ], "X-Content-Type-Options": [ "nosniff" @@ -1583,13 +1504,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14996" ], "x-ms-correlation-request-id": [ - "5a7329ff-6e8d-483d-84c9-0e7ab433dbc3" + "ceecc342-66e9-4dc5-9611-d173762af55a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T040856Z:5a7329ff-6e8d-483d-84c9-0e7ab433dbc3" + "CENTRALUS:20170327T200246Z:ceecc342-66e9-4dc5-9611-d173762af55a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1598,75 +1519,28 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\r\\n//Create Table\\r\\nCREATE TABLE testdb15849.dbo.testtbl13852\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW testdb15849.dbo.testview16733 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb15849.dbo.testview16733 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\r\\n//Create Table\\r\\nCREATE TABLE testdb18438.dbo.testtbl17545\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW testdb18438.dbo.testview15912 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb18438.dbo.testview15912 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2538" - ], - "x-ms-client-request-id": [ - "a85bf48e-df12-4485-83ad-a670a3ed813e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 04:10:58 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "2531" ], - "x-ms-request-id": [ - "5e83e1f3-1e69-4676-a2ca-c9b32545c740" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "x-ms-client-request-id": [ - "584e9ed1-83e0-492f-919e-af42fa259329" + "ecbab512-e57b-4bed-a479-faa8ae3fc7e8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.1887993S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1678,13 +1552,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:10:58 GMT" + "Mon, 27 Mar 2017 20:02:49 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "40867e9a-3b1e-4aa3-abf5-899c922ffd9b" + "fc3afb8d-23eb-4f9d-807a-16b89e47fbb6" ], "X-Content-Type-Options": [ "nosniff" @@ -1696,23 +1570,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9afd1134-bb3b-432d-b83c-63b3b59d9fb5" + "58068923-33cb-4c4f-be8a-740193305f4f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.3607824S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.7673933-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\n//Create Table\\nCREATE TABLE testdb18438.dbo.testtbl17545\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.2349367S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1724,13 +1597,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:03 GMT" + "Mon, 27 Mar 2017 20:02:49 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "925b38b5-14f4-4c1c-9b32-eed5da45e1b7" + "6b54e334-142b-4391-b374-fd07bbbd737e" ], "X-Content-Type-Options": [ "nosniff" @@ -1742,23 +1615,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e419783f-1b62-464f-9a52-f5107cd95b33" + "790a8dfb-c912-4d00-8216-7143d6a24014" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.5729052S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.7673933-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\n//Create Table\\nCREATE TABLE testdb18438.dbo.testtbl17545\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.5319214S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1770,13 +1642,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:08 GMT" + "Mon, 27 Mar 2017 20:02:54 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "db5b7540-6074-4d3f-9746-81db07548de6" + "30f5eaa7-82eb-4612-abfd-ab93d48fc93f" ], "X-Content-Type-Options": [ "nosniff" @@ -1788,23 +1660,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e667f9d2-3724-47c0-b98b-2e6320ee5030" + "56c48245-a7cc-4466-8df7-5b766608a73a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.3861986-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:09392212-9d10-4c94-b75c-a328b3be0c75\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"09392212-9d10-4c94-b75c-a328b3be0c75\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"yarnApplicationId\": 57673,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.9376238S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156304S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.7673933-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\n//Create Table\\nCREATE TABLE testdb18438.dbo.testtbl17545\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.7195389S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1816,13 +1687,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:13 GMT" + "Mon, 27 Mar 2017 20:03:00 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "27827806-1994-4ad2-8ce9-4ff4158f2b9f" + "1e0f3d2f-8c87-4d89-a227-549b0ea4566f" ], "X-Content-Type-Options": [ "nosniff" @@ -1834,23 +1705,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9e29148-25ab-4a94-89db-34a95a290858" + "23402612-bd4b-4edc-b3c6-2b6703536dd8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.3861986-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:09392212-9d10-4c94-b75c-a328b3be0c75\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"09392212-9d10-4c94-b75c-a328b3be0c75\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"yarnApplicationId\": 57673,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.9376238S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156304S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.7673933-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.4909094-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\n//Create Table\\nCREATE TABLE testdb18438.dbo.testtbl17545\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"yarnApplicationId\": 90649,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.7235161S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156104S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1862,13 +1732,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:18 GMT" + "Mon, 27 Mar 2017 20:03:05 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "cab22a18-f84f-456b-a2b9-136608b37fae" + "fd6b97bf-1443-4c95-8fb0-f1445ffc8609" ], "X-Content-Type-Options": [ "nosniff" @@ -1880,23 +1750,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81d7b0e6-740b-46d6-8646-f1e7ada3e137" + "a779c82a-21ac-4d15-bb65-3adb015bc117" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.3861986-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:09392212-9d10-4c94-b75c-a328b3be0c75\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"09392212-9d10-4c94-b75c-a328b3be0c75\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"yarnApplicationId\": 57673,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.9376238S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156304S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.7673933-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.4909094-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\n//Create Table\\nCREATE TABLE testdb18438.dbo.testtbl17545\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"yarnApplicationId\": 90649,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.7235161S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156104S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1908,13 +1777,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:23 GMT" + "Mon, 27 Mar 2017 20:03:10 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "be990f03-440f-4550-9eff-d079dff62164" + "92ce2193-97cd-4110-a84a-d7c98b1a1b64" ], "X-Content-Type-Options": [ "nosniff" @@ -1926,23 +1795,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6385217-c045-4c57-9c40-14a901de3681" + "8cb381cd-4c87-45fe-b5ba-5ba54edc522b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"startTime\": \"2016-11-07T20:11:29.6681165-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.3861986-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:09392212-9d10-4c94-b75c-a328b3be0c75\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-07T20:11:29.6681165-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"09392212-9d10-4c94-b75c-a328b3be0c75\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"yarnApplicationId\": 57673,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.9376238S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156304S\",\r\n \"totalRunningTime\": \"PT0.2670253S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.7673933-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.4909094-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\n//Create Table\\nCREATE TABLE testdb18438.dbo.testtbl17545\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"yarnApplicationId\": 90649,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.7235161S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156104S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1954,13 +1822,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:29 GMT" + "Mon, 27 Mar 2017 20:03:15 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "78126738-7ea9-4f23-81da-0fa22b458a60" + "7d83296b-6304-41c3-a523-09e0459f612a" ], "X-Content-Type-Options": [ "nosniff" @@ -1972,23 +1840,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/8c8c0020-38e2-4d9f-a271-f31df03b4063?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvOGM4YzAwMjAtMzhlMi00ZDlmLWEyNzEtZjMxZGYwM2I0MDYzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvNzg3YWNiN2ItN2VkZC00Y2E3LThiYTEtZWEwMGEwYzBiZmIzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f81aa09-7f94-48e6-97ed-00a061dc497e" + "e416d956-0ed1-48b5-835e-f6a95152870d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"8c8c0020-38e2-4d9f-a271-f31df03b4063\",\r\n \"name\": \"testjob16387\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"startTime\": \"2016-11-07T20:11:29.6681165-08:00\",\r\n \"endTime\": \"2016-11-07T20:11:29.6837194-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.1204461-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:10:58.4485748-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.3861986-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:09392212-9d10-4c94-b75c-a328b3be0c75\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:11:10.401829-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-07T20:11:29.6681165-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-07T20:11:29.6837194-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"09392212-9d10-4c94-b75c-a328b3be0c75\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb15849; CREATE DATABASE testdb15849; \\n//Create Table\\nCREATE TABLE testdb15849.dbo.testtbl13852\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb15849.dbo.testtbl13852 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb15849.dbo.testtvf12607;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake12038.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/10/8c8c0020-38e2-4d9f-a271-f31df03b4063/algebra.xml\",\r\n \"yarnApplicationId\": 57673,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.9376238S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156304S\",\r\n \"totalRunningTime\": \"PT0.0156029S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3\",\r\n \"name\": \"testjob13068\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"startTime\": \"2017-03-27T13:03:19.0693374-07:00\",\r\n \"endTime\": \"2017-03-27T13:03:19.084964-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.3924073-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:02:49.7673933-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.4909094-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:03:05.5065198-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-03-27T13:03:19.0693374-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T13:03:19.084964-07:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"190329ce-2070-4cbd-8cfb-1c3d8c0ecfe3\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb18438; CREATE DATABASE testdb18438; \\n//Create Table\\nCREATE TABLE testdb18438.dbo.testtbl17545\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb18438.dbo.testtbl17545 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb18438.dbo.testtvf12667;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18414.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/02/787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3/algebra.xml\",\r\n \"yarnApplicationId\": 90649,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT15.7235161S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156104S\",\r\n \"totalRunningTime\": \"PT0.0156266S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2000,13 +1867,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:35 GMT" + "Mon, 27 Mar 2017 20:03:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "f7cab878-231f-4eee-ac67-3b25538f70b4" + "bf31ff44-8d90-4eee-8e99-d4a6fd298915" ], "X-Content-Type-Options": [ "nosniff" @@ -2024,17 +1891,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c070f749-64d1-4779-8e89-0a678ab6ce26" + "a75d3e2e-6882-4a28-aa97-cc6af0f9f473" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#databases\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"version\": \"8364f838-9e4d-4586-b148-0b6c19d55382\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"version\": \"71eb7bb6-c1dd-47df-88cf-ce1972c273d7\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#databases\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"version\": \"0285c445-83f8-4ab2-b875-cdc4de7b6e0f\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"version\": \"9f69665f-a126-490b-8dda-dbf62089f96f\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2046,13 +1912,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:35 GMT" + "Mon, 27 Mar 2017 20:03:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "7913250a-b3cf-4f65-b387-0c63ba896ab3" + "95fb486b-0019-4f12-84c3-8a1bd1380cb1" ], "OData-Version": [ "4.0" @@ -2067,23 +1933,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb18438?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb3c419a-b6ac-4d11-9f13-b856013b2cbf" + "7c1a4170-2db5-4b23-8627-7215dde4b975" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#databases/$entity\",\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"version\": \"71eb7bb6-c1dd-47df-88cf-ce1972c273d7\"\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#databases/$entity\",\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"version\": \"9f69665f-a126-490b-8dda-dbf62089f96f\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2095,13 +1960,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:35 GMT" + "Mon, 27 Mar 2017 20:03:21 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "b36cb4e9-afdb-4198-982b-fba13ba12da1" + "4da7327e-d63d-4478-abdf-c7bb2e235db4" ], "OData-Version": [ "4.0" @@ -2116,23 +1981,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/tables?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdGFibGVzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/tables?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdGFibGVzP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7625581a-f512-4ed8-8e8b-e266f9a93a7a" + "8039f5b7-e3c0-43a1-b279-dcff853f6daa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"testtbl13852\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"aae5d43a-cd22-4a1e-9579-9bf820273c81\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"28fd08f8-debd-468f-916e-6ba9aaf032d1\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#tables\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"testtbl17545\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"b513a70e-4e21-4951-ad04-095af21068d8\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"89dbeb68-94bc-4da3-95d0-8ec93935a89a\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2144,13 +2008,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:36 GMT" + "Mon, 27 Mar 2017 20:03:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "4981288b-a2cc-41f3-8766-156d5d023b40" + "60c1445b-c7aa-42c7-ae17-a53fc9109c21" ], "OData-Version": [ "4.0" @@ -2165,23 +2029,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/tables/testtbl13852?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxMzg1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/tables/testtbl17545?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxNzU0NT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1436309-be91-4e43-96b7-d39b1a848c34" + "38311e7f-f687-4bfb-b881-56873e28c6ee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#tables/$entity\",\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"testtbl13852\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"aae5d43a-cd22-4a1e-9579-9bf820273c81\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"28fd08f8-debd-468f-916e-6ba9aaf032d1\"\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#tables/$entity\",\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"testtbl17545\",\r\n \"columnList\": [\r\n {\r\n \"name\": \"UserId\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Start\",\r\n \"type\": \"System.DateTime\"\r\n },\r\n {\r\n \"name\": \"Region\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Query\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"type\": \"System.Int32\"\r\n },\r\n {\r\n \"name\": \"Urls\",\r\n \"type\": \"System.String\"\r\n },\r\n {\r\n \"name\": \"ClickedUrls\",\r\n \"type\": \"System.String\"\r\n }\r\n ],\r\n \"indexList\": [\r\n {\r\n \"name\": \"idx1\",\r\n \"indexKeys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"columns\": [\r\n \"Region\",\r\n \"UserId\"\r\n ],\r\n \"distributionInfo\": {\r\n \"type\": 2,\r\n \"keys\": [\r\n {\r\n \"name\": \"Region\",\r\n \"descending\": false\r\n }\r\n ],\r\n \"count\": 0,\r\n \"dynamicCount\": 0\r\n },\r\n \"partitionFunction\": \"b513a70e-4e21-4951-ad04-095af21068d8\",\r\n \"partitionKeyList\": [\r\n \"UserId\"\r\n ],\r\n \"isColumnstore\": false,\r\n \"indexId\": 1,\r\n \"isUnique\": false\r\n }\r\n ],\r\n \"partitionKeyList\": [],\r\n \"externalTable\": null,\r\n \"distributionInfo\": null,\r\n \"version\": \"89dbeb68-94bc-4da3-95d0-8ec93935a89a\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2193,13 +2056,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:36 GMT" + "Mon, 27 Mar 2017 20:03:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "06228dd4-754a-4428-b4cb-e8e471e24ae3" + "89a91e73-2104-40f9-bd68-d4fef2380de6" ], "OData-Version": [ "4.0" @@ -2214,23 +2077,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/tablevaluedfunctions?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdGFibGV2YWx1ZWRmdW5jdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/tablevaluedfunctions?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdGFibGV2YWx1ZWRmdW5jdGlvbnM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f6f900d-4912-462c-a339-a3f301a0c883" + "1f7f327d-c131-4128-be46-23c2729bbe4b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"testtvf12607\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\",\r\n \"version\": \"d3c62b5c-109e-4ef7-9784-5a30d7f403ce\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"testtvf12667\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\",\r\n \"version\": \"47834a00-1a6e-4029-9e74-af38bd1de13b\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2242,13 +2104,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:36 GMT" + "Mon, 27 Mar 2017 20:03:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "30746ee1-bf9c-4b2e-970c-8ccb7c76389a" + "ab0534b2-a48f-48e6-ace3-80728d58d458" ], "OData-Version": [ "4.0" @@ -2263,23 +2125,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/tablevaluedfunctions/testtvf12607?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdGFibGV2YWx1ZWRmdW5jdGlvbnMvdGVzdHR2ZjEyNjA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/tablevaluedfunctions/testtvf12667?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdGFibGV2YWx1ZWRmdW5jdGlvbnMvdGVzdHR2ZjEyNjY3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb042cc3-ecad-4090-839c-bfedffd00623" + "f4804122-34e1-4a23-b817-cb992dd295c5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions/$entity\",\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"testtvf12607\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb15849.dbo.testtvf12607()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\",\r\n \"version\": \"d3c62b5c-109e-4ef7-9784-5a30d7f403ce\"\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#tablevaluedfunctions/$entity\",\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"tvfName\": \"testtvf12667\",\r\n \"definition\": \"//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb18438.dbo.testtvf12667()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\",\r\n \"version\": \"47834a00-1a6e-4029-9e74-af38bd1de13b\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2291,13 +2152,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:36 GMT" + "Mon, 27 Mar 2017 20:03:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "3f0d29ee-83dc-4740-be5f-20a9cceb0e20" + "d75e946a-d182-4aec-96b9-dcfce64afb5a" ], "OData-Version": [ "4.0" @@ -2312,23 +2173,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/views?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdmlld3M/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/views?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdmlld3M/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3eeb2bd9-31da-43e6-bd9d-9e1442615b86" + "c8781715-5cf1-433e-aa24-ee34dd3586ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"testview16733\",\r\n \"definition\": \"CREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"version\": \"6cdb2e4c-d90e-44dc-9996-fc5d82b3b3c3\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#views\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"testview15912\",\r\n \"definition\": \"CREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"version\": \"17e15e3b-aebe-4c67-a94d-90dfba59790b\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2340,13 +2200,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:36 GMT" + "Mon, 27 Mar 2017 20:03:22 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "55ebd271-8621-4547-b013-e99c29a657fc" + "d4841b02-df8c-4f48-ba56-3b4bd6623458" ], "OData-Version": [ "4.0" @@ -2361,23 +2221,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/views/testview16733?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdmlld3MvdGVzdHZpZXcxNjczMz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/views/testview15912?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdmlld3MvdGVzdHZpZXcxNTkxMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2b832ad-2c9a-4f10-abe4-efc1c0c403fb" + "5102de56-2591-4f47-90c5-cd33e1d84729" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#views/$entity\",\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"testview16733\",\r\n \"definition\": \"CREATE VIEW testdb15849.dbo.testview16733 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"version\": \"6cdb2e4c-d90e-44dc-9996-fc5d82b3b3c3\"\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#views/$entity\",\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"viewName\": \"testview15912\",\r\n \"definition\": \"CREATE VIEW testdb18438.dbo.testview15912 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\",\r\n \"version\": \"17e15e3b-aebe-4c67-a94d-90dfba59790b\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2389,13 +2248,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:37 GMT" + "Mon, 27 Mar 2017 20:03:23 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "ed011330-f61f-4352-a40a-fddccb6990b4" + "d40eb461-3af9-48c3-962f-c7db6bd8e246" ], "OData-Version": [ "4.0" @@ -2410,23 +2269,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/procedures?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vcHJvY2VkdXJlcz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/procedures?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vcHJvY2VkdXJlcz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "002e797b-5b72-471d-9377-57ba2c113416" + "67001b17-fe3d-4f92-b120-37adf9e5e7b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#procedures\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"testproc1345\",\r\n \"definition\": \"CREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"version\": \"1b84ac98-f28e-464d-b6a0-625cd2f6e0af\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#procedures\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"testproc19005\",\r\n \"definition\": \"CREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"version\": \"f54d58e7-90fe-4431-9af7-7042af3c6604\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2438,13 +2296,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:37 GMT" + "Mon, 27 Mar 2017 20:03:23 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "579aeec5-004b-4902-aad0-975cc6ef05fe" + "a2806bfc-9ed9-406d-8981-8d1a56b6ef57" ], "OData-Version": [ "4.0" @@ -2459,23 +2317,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/procedures/testproc1345?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vcHJvY2VkdXJlcy90ZXN0cHJvYzEzNDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/procedures/testproc19005?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vcHJvY2VkdXJlcy90ZXN0cHJvYzE5MDA1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "730d7cea-0a80-40b9-9cdf-951e5ce37e9d" + "c03f04e6-214e-445a-bef6-b5bd938a994d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#procedures/$entity\",\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"testproc1345\",\r\n \"definition\": \"CREATE PROCEDURE testdb15849.dbo.testproc1345()\\nAS BEGIN\\n CREATE VIEW testdb15849.dbo.testview16733 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"version\": \"1b84ac98-f28e-464d-b6a0-625cd2f6e0af\"\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#procedures/$entity\",\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"procName\": \"testproc19005\",\r\n \"definition\": \"CREATE PROCEDURE testdb18438.dbo.testproc19005()\\nAS BEGIN\\n CREATE VIEW testdb18438.dbo.testview15912 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"version\": \"f54d58e7-90fe-4431-9af7-7042af3c6604\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2487,13 +2344,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:37 GMT" + "Mon, 27 Mar 2017 20:03:23 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "5c2aef8d-97e8-4621-b3c9-e73deda2fcce" + "d259346c-aa02-4a7f-badf-ad4ae0ac6ed9" ], "OData-Version": [ "4.0" @@ -2508,23 +2365,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/tables/testtbl13852/partitions?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxMzg1Mi9wYXJ0aXRpb25zP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/tables/testtbl17545/partitions?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxNzU0NS9wYXJ0aXRpb25zP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e5a030b-c973-4e98-b217-b4d29a91f7d0" + "9dadccdd-a2a3-4c8a-a86a-c2a7c7732441" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#partitions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"testtbl13852_Partition_6b160950-0910-4a8c-bc39-2dbd60342491\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createDate\": \"2016-11-08T04:11:25.71-08:00\",\r\n \"parentName\": {\r\n \"server\": \"2b70f130-c3f1-4f2a-845b-5cdf733f3131\",\r\n \"firstPart\": \"testdb15849\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"testtbl13852\"\r\n },\r\n \"version\": \"5f34121f-2f50-4091-8ebc-685b1befa843\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#partitions\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"testtbl17545_Partition_b9bdd796-6ee6-4c15-916e-9de16985f6ac\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createDate\": \"2017-03-27T20:03:13.537-07:00\",\r\n \"parentName\": {\r\n \"server\": \"4ebb4031-a323-4746-a6ec-fbab5be03820\",\r\n \"firstPart\": \"testdb18438\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"testtbl17545\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"b154f876-f780-4550-a20a-56c6584fd1a1\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2536,13 +2392,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:37 GMT" + "Mon, 27 Mar 2017 20:03:24 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "9b3f090f-a16a-4878-bbb6-72bfc70a662c" + "aee43c10-a757-4626-8a6e-8da7a7ed0c6a" ], "OData-Version": [ "4.0" @@ -2557,23 +2413,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/tables/testtbl13852/partitions/testtbl13852_Partition_6b160950-0910-4a8c-bc39-2dbd60342491?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxMzg1Mi9wYXJ0aXRpb25zL3Rlc3R0YmwxMzg1Ml9QYXJ0aXRpb25fNmIxNjA5NTAtMDkxMC00YThjLWJjMzktMmRiZDYwMzQyNDkxP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/tables/testtbl17545/partitions/testtbl17545_Partition_b9bdd796-6ee6-4c15-916e-9de16985f6ac?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdGFibGVzL3Rlc3R0YmwxNzU0NS9wYXJ0aXRpb25zL3Rlc3R0YmwxNzU0NV9QYXJ0aXRpb25fYjliZGQ3OTYtNmVlNi00YzE1LTkxNmUtOWRlMTY5ODVmNmFjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4866a5ad-b5a0-435f-a26b-81f083ea10c3" + "09c8de61-dbda-42a0-878e-cede2739fe62" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#partitions/$entity\",\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"testdb15849\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"testtbl13852_Partition_6b160950-0910-4a8c-bc39-2dbd60342491\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createDate\": \"2016-11-08T04:11:25.71-08:00\",\r\n \"parentName\": {\r\n \"server\": \"2b70f130-c3f1-4f2a-845b-5cdf733f3131\",\r\n \"firstPart\": \"testdb15849\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"testtbl13852\"\r\n },\r\n \"version\": \"5f34121f-2f50-4091-8ebc-685b1befa843\"\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#partitions/$entity\",\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"testdb18438\",\r\n \"schemaName\": \"dbo\",\r\n \"partitionName\": \"testtbl17545_Partition_b9bdd796-6ee6-4c15-916e-9de16985f6ac\",\r\n \"indexId\": 1,\r\n \"label\": [\r\n \"1\"\r\n ],\r\n \"createDate\": \"2017-03-27T20:03:13.537-07:00\",\r\n \"parentName\": {\r\n \"server\": \"4ebb4031-a323-4746-a6ec-fbab5be03820\",\r\n \"firstPart\": \"testdb18438\",\r\n \"secondPart\": \"dbo\",\r\n \"thirdPart\": \"testtbl17545\",\r\n \"fourthPart\": null\r\n },\r\n \"version\": \"b154f876-f780-4550-a20a-56c6584fd1a1\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2585,13 +2440,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:37 GMT" + "Mon, 27 Mar 2017 20:03:24 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "9939ff1c-5ead-4a64-8237-a905ad289bbb" + "0b212b1a-569c-4990-a5dd-29e446c9f868" ], "OData-Version": [ "4.0" @@ -2606,23 +2461,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/types?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdHlwZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/types?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdHlwZXM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3b6be8f-5809-4100-b5c2-6f12a27018bc" + "f08a3006-3c49-4023-87bd-72fc986af257" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#types\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 334,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"1137ad93-d19b-4d4e-b726-011f76d4d833\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBinary\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 341,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b05e4357-12c7-461f-9559-4c39cfae1338\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBit\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 339,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"caeb6f59-f027-4348-a3ff-f064531e0ee8\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlByte\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 338,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f2583736-1f0e-4072-8a04-d83db5e08241\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDate\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 343,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29f9721a-315b-498f-a304-762e0511226d\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDecimal\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 342,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"d6d8f781-23bf-48a6-a462-8946bab23c36\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDouble\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 344,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db1bc9a7-f5da-4d64-9baa-399c9f72d6e2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlGuid\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 345,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ab6715ed-cfba-4b5a-92e9-f86520b8e711\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt16\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 335,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4ee64682-cbd4-40cc-90e9-c5de1433bbed\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt32\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 336,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"9af787e7-9fc0-4819-80ac-0339ce031ab3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt64\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 337,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"44d67b27-8bd8-4072-81ca-2d32adfdb17c\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 333,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"18cf5d12-3651-44fe-ad16-cf5068f0b112\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlMoney\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 346,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"861e13ee-e110-4dd2-b0df-f2eb9a6b5bd2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlSingle\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 347,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7037d7f1-e3d4-416f-bf81-285b630a75e4\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlString\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 340,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a15306f5-43f5-433b-b795-ce02ee911953\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 332,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"f89f413d-bd5f-440a-b069-8fc345643648\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool\",\r\n \"fullCSharpName\": \"System.Boolean\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 300,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c04b91b8-2b7e-45b3-ada9-db5ede901672\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool?\",\r\n \"fullCSharpName\": \"System.Boolean?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 301,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"42f3147a-ed9b-47ae-a8ad-aa2fbc51e0ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte\",\r\n \"fullCSharpName\": \"System.Byte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 302,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"6a048add-f003-4d73-8471-3b0be963d1ac\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte?\",\r\n \"fullCSharpName\": \"System.Byte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 303,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c2623267-2a86-444a-a773-89783eae5b30\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte[]\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte[]\",\r\n \"fullCSharpName\": \"System.Byte[]\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 328,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"84506afa-d9ad-4bef-9e44-cd00f1f54ce3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char\",\r\n \"fullCSharpName\": \"System.Char\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 310,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"bb4bb082-4d9c-4ce4-aa1b-bfaea278ac92\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char?\",\r\n \"fullCSharpName\": \"System.Char?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 311,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"748c6bfa-5a8e-43d4-823b-3b3be0d8b85a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime\",\r\n \"fullCSharpName\": \"System.DateTime\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 326,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4e348b46-7218-4c30-b879-ceee5a59e7bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime?\",\r\n \"fullCSharpName\": \"System.DateTime?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 327,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"eb486159-acfa-4499-9b1a-e0ecda5d52a2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal\",\r\n \"fullCSharpName\": \"System.Decimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 324,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f29ebb5f-17e8-4448-8aec-1a6702380e75\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal?\",\r\n \"fullCSharpName\": \"System.Decimal?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 325,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b78657ef-955b-4841-805e-bec1e9d11e37\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double\",\r\n \"fullCSharpName\": \"System.Double\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 322,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f3bbcc4e-d872-4bd1-8429-7082199016d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double?\",\r\n \"fullCSharpName\": \"System.Double?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 323,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"5832365f-70cb-47f9-92db-46cf7903dffc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid\",\r\n \"fullCSharpName\": \"System.Guid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 330,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ccccbe73-770a-4bc8-905f-2eec41e79736\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid?\",\r\n \"fullCSharpName\": \"System.Guid?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 331,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db4c6514-17fa-4de1-ab25-a22817844593\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short\",\r\n \"fullCSharpName\": \"System.Int16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 306,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2cca4ae1-4272-4ca4-832e-5bc22c486299\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short?\",\r\n \"fullCSharpName\": \"System.Int16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 307,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"cef0bb72-9079-471b-855c-cfb87b1dc11f\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int\",\r\n \"fullCSharpName\": \"System.Int32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 312,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2a3f9560-1645-4e60-8ca5-9713f2ef8363\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int?\",\r\n \"fullCSharpName\": \"System.Int32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 313,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29fedecb-21d0-4fa8-bf6b-2539bee71bcc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long\",\r\n \"fullCSharpName\": \"System.Int64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 316,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"14c67089-ce4d-4770-8425-a0c41788c3cd\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long?\",\r\n \"fullCSharpName\": \"System.Int64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 317,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"01b8cce9-d5e9-4f38-9f29-d5f3927d7407\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte\",\r\n \"fullCSharpName\": \"System.SByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 304,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"899a07dd-662c-4cd2-8f98-6ec34d739355\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte?\",\r\n \"fullCSharpName\": \"System.SByte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 305,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f76f7f1a-64d9-4c50-a38c-a6b2578f66d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float\",\r\n \"fullCSharpName\": \"System.Single\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 320,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"04ae7374-f270-48ba-b429-c7e07bfcde61\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float?\",\r\n \"fullCSharpName\": \"System.Single?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 321,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f8f90902-84a6-449f-96fe-6710accc0f7a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.String\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"string\",\r\n \"fullCSharpName\": \"System.String\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 329,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"313664ea-0a0b-4016-8c25-a11052d885ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort\",\r\n \"fullCSharpName\": \"System.UInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 308,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"1ee295be-df81-4f21-a17c-31205884958b\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort?\",\r\n \"fullCSharpName\": \"System.UInt16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 309,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a3228a28-dc3d-42f1-81d7-86899822af91\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint\",\r\n \"fullCSharpName\": \"System.UInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 314,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"133275dc-ec4b-4662-86ee-f6d13b0e8b7e\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint?\",\r\n \"fullCSharpName\": \"System.UInt32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 315,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7292a0b6-ff2d-4c02-b256-63993c2b270a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong\",\r\n \"fullCSharpName\": \"System.UInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 318,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"e80c1a1c-99d9-418c-9f66-097c048095bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong?\",\r\n \"fullCSharpName\": \"System.UInt64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 319,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"48cbabb8-03fc-4f00-bad6-0641a7f562c7\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#types\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlArray\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 334,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"1137ad93-d19b-4d4e-b726-011f76d4d833\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBinary\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 341,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b05e4357-12c7-461f-9559-4c39cfae1338\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBit\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 339,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"caeb6f59-f027-4348-a3ff-f064531e0ee8\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlByte\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 338,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f2583736-1f0e-4072-8a04-d83db5e08241\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDate\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 343,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29f9721a-315b-498f-a304-762e0511226d\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDecimal\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 342,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"d6d8f781-23bf-48a6-a462-8946bab23c36\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDouble\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 344,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db1bc9a7-f5da-4d64-9baa-399c9f72d6e2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlGuid\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 345,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ab6715ed-cfba-4b5a-92e9-f86520b8e711\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt16\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 335,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4ee64682-cbd4-40cc-90e9-c5de1433bbed\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt32\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 336,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"9af787e7-9fc0-4819-80ac-0339ce031ab3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt64\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 337,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"44d67b27-8bd8-4072-81ca-2d32adfdb17c\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMap\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 333,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"18cf5d12-3651-44fe-ad16-cf5068f0b112\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlMoney\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 346,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"861e13ee-e110-4dd2-b0df-f2eb9a6b5bd2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlSingle\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 347,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7037d7f1-e3d4-416f-bf81-285b630a75e4\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlString\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 340,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a15306f5-43f5-433b-b795-ce02ee911953\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlStruct\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 332,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": true,\r\n \"version\": \"f89f413d-bd5f-440a-b069-8fc345643648\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool\",\r\n \"fullCSharpName\": \"System.Boolean\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 300,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c04b91b8-2b7e-45b3-ada9-db5ede901672\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool?\",\r\n \"fullCSharpName\": \"System.Boolean?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 301,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"42f3147a-ed9b-47ae-a8ad-aa2fbc51e0ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte\",\r\n \"fullCSharpName\": \"System.Byte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 302,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"6a048add-f003-4d73-8471-3b0be963d1ac\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte?\",\r\n \"fullCSharpName\": \"System.Byte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 303,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c2623267-2a86-444a-a773-89783eae5b30\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte[]\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte[]\",\r\n \"fullCSharpName\": \"System.Byte[]\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 328,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"84506afa-d9ad-4bef-9e44-cd00f1f54ce3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char\",\r\n \"fullCSharpName\": \"System.Char\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 310,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"bb4bb082-4d9c-4ce4-aa1b-bfaea278ac92\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char?\",\r\n \"fullCSharpName\": \"System.Char?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 311,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"748c6bfa-5a8e-43d4-823b-3b3be0d8b85a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime\",\r\n \"fullCSharpName\": \"System.DateTime\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 326,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4e348b46-7218-4c30-b879-ceee5a59e7bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime?\",\r\n \"fullCSharpName\": \"System.DateTime?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 327,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"eb486159-acfa-4499-9b1a-e0ecda5d52a2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal\",\r\n \"fullCSharpName\": \"System.Decimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 324,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f29ebb5f-17e8-4448-8aec-1a6702380e75\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal?\",\r\n \"fullCSharpName\": \"System.Decimal?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 325,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b78657ef-955b-4841-805e-bec1e9d11e37\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double\",\r\n \"fullCSharpName\": \"System.Double\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 322,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f3bbcc4e-d872-4bd1-8429-7082199016d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double?\",\r\n \"fullCSharpName\": \"System.Double?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 323,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"5832365f-70cb-47f9-92db-46cf7903dffc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid\",\r\n \"fullCSharpName\": \"System.Guid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 330,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ccccbe73-770a-4bc8-905f-2eec41e79736\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid?\",\r\n \"fullCSharpName\": \"System.Guid?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 331,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db4c6514-17fa-4de1-ab25-a22817844593\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short\",\r\n \"fullCSharpName\": \"System.Int16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 306,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2cca4ae1-4272-4ca4-832e-5bc22c486299\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short?\",\r\n \"fullCSharpName\": \"System.Int16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 307,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"cef0bb72-9079-471b-855c-cfb87b1dc11f\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int\",\r\n \"fullCSharpName\": \"System.Int32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 312,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2a3f9560-1645-4e60-8ca5-9713f2ef8363\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int?\",\r\n \"fullCSharpName\": \"System.Int32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 313,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29fedecb-21d0-4fa8-bf6b-2539bee71bcc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long\",\r\n \"fullCSharpName\": \"System.Int64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 316,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"14c67089-ce4d-4770-8425-a0c41788c3cd\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long?\",\r\n \"fullCSharpName\": \"System.Int64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 317,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"01b8cce9-d5e9-4f38-9f29-d5f3927d7407\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte\",\r\n \"fullCSharpName\": \"System.SByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 304,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"899a07dd-662c-4cd2-8f98-6ec34d739355\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte?\",\r\n \"fullCSharpName\": \"System.SByte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 305,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f76f7f1a-64d9-4c50-a38c-a6b2578f66d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float\",\r\n \"fullCSharpName\": \"System.Single\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 320,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"04ae7374-f270-48ba-b429-c7e07bfcde61\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float?\",\r\n \"fullCSharpName\": \"System.Single?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 321,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f8f90902-84a6-449f-96fe-6710accc0f7a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.String\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"string\",\r\n \"fullCSharpName\": \"System.String\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 329,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"313664ea-0a0b-4016-8c25-a11052d885ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort\",\r\n \"fullCSharpName\": \"System.UInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 308,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"1ee295be-df81-4f21-a17c-31205884958b\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort?\",\r\n \"fullCSharpName\": \"System.UInt16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 309,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a3228a28-dc3d-42f1-81d7-86899822af91\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint\",\r\n \"fullCSharpName\": \"System.UInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 314,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"133275dc-ec4b-4662-86ee-f6d13b0e8b7e\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint?\",\r\n \"fullCSharpName\": \"System.UInt32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 315,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7292a0b6-ff2d-4c02-b256-63993c2b270a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong\",\r\n \"fullCSharpName\": \"System.UInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 318,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"e80c1a1c-99d9-418c-9f66-097c048095bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong?\",\r\n \"fullCSharpName\": \"System.UInt64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 319,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"48cbabb8-03fc-4f00-bad6-0641a7f562c7\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2634,13 +2488,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:38 GMT" + "Mon, 27 Mar 2017 20:03:24 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "00d80a43-0768-439d-9d16-69588cb6dd9c" + "ab63afab-29d6-463f-bf5b-f921f9062781" ], "OData-Version": [ "4.0" @@ -2655,23 +2509,22 @@ "StatusCode": 200 }, { - "RequestUri": "/catalog/usql/databases/testdb15849/schemas/dbo/types?$filter=isComplexType%20eq%20false&api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTU4NDkvc2NoZW1hcy9kYm8vdHlwZXM/JGZpbHRlcj1pc0NvbXBsZXhUeXBlJTIwZXElMjBmYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/catalog/usql/databases/testdb18438/schemas/dbo/types?$filter=isComplexType%20eq%20false&api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTg0Mzgvc2NoZW1hcy9kYm8vdHlwZXM/JGZpbHRlcj1pc0NvbXBsZXhUeXBlJTIwZXElMjBmYWxzZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a195c13f-c516-453e-86c6-0755b3364975" + "068205e8-0f6f-4033-8801-292770830de2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba25610.azuredatalakeanalytics.net/sqlip/$metadata#types\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBinary\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 341,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b05e4357-12c7-461f-9559-4c39cfae1338\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBit\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 339,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"caeb6f59-f027-4348-a3ff-f064531e0ee8\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlByte\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 338,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f2583736-1f0e-4072-8a04-d83db5e08241\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDate\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 343,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29f9721a-315b-498f-a304-762e0511226d\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDecimal\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 342,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"d6d8f781-23bf-48a6-a462-8946bab23c36\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDouble\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 344,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db1bc9a7-f5da-4d64-9baa-399c9f72d6e2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlGuid\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 345,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ab6715ed-cfba-4b5a-92e9-f86520b8e711\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt16\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 335,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4ee64682-cbd4-40cc-90e9-c5de1433bbed\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt32\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 336,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"9af787e7-9fc0-4819-80ac-0339ce031ab3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt64\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 337,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"44d67b27-8bd8-4072-81ca-2d32adfdb17c\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlMoney\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 346,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"861e13ee-e110-4dd2-b0df-f2eb9a6b5bd2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlSingle\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 347,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7037d7f1-e3d4-416f-bf81-285b630a75e4\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlString\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 340,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a15306f5-43f5-433b-b795-ce02ee911953\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool\",\r\n \"fullCSharpName\": \"System.Boolean\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 300,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c04b91b8-2b7e-45b3-ada9-db5ede901672\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool?\",\r\n \"fullCSharpName\": \"System.Boolean?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 301,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"42f3147a-ed9b-47ae-a8ad-aa2fbc51e0ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte\",\r\n \"fullCSharpName\": \"System.Byte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 302,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"6a048add-f003-4d73-8471-3b0be963d1ac\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte?\",\r\n \"fullCSharpName\": \"System.Byte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 303,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c2623267-2a86-444a-a773-89783eae5b30\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte[]\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte[]\",\r\n \"fullCSharpName\": \"System.Byte[]\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 328,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"84506afa-d9ad-4bef-9e44-cd00f1f54ce3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char\",\r\n \"fullCSharpName\": \"System.Char\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 310,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"bb4bb082-4d9c-4ce4-aa1b-bfaea278ac92\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char?\",\r\n \"fullCSharpName\": \"System.Char?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 311,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"748c6bfa-5a8e-43d4-823b-3b3be0d8b85a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime\",\r\n \"fullCSharpName\": \"System.DateTime\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 326,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4e348b46-7218-4c30-b879-ceee5a59e7bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime?\",\r\n \"fullCSharpName\": \"System.DateTime?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 327,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"eb486159-acfa-4499-9b1a-e0ecda5d52a2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal\",\r\n \"fullCSharpName\": \"System.Decimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 324,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f29ebb5f-17e8-4448-8aec-1a6702380e75\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal?\",\r\n \"fullCSharpName\": \"System.Decimal?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 325,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b78657ef-955b-4841-805e-bec1e9d11e37\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double\",\r\n \"fullCSharpName\": \"System.Double\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 322,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f3bbcc4e-d872-4bd1-8429-7082199016d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double?\",\r\n \"fullCSharpName\": \"System.Double?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 323,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"5832365f-70cb-47f9-92db-46cf7903dffc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid\",\r\n \"fullCSharpName\": \"System.Guid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 330,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ccccbe73-770a-4bc8-905f-2eec41e79736\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid?\",\r\n \"fullCSharpName\": \"System.Guid?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 331,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db4c6514-17fa-4de1-ab25-a22817844593\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short\",\r\n \"fullCSharpName\": \"System.Int16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 306,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2cca4ae1-4272-4ca4-832e-5bc22c486299\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short?\",\r\n \"fullCSharpName\": \"System.Int16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 307,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"cef0bb72-9079-471b-855c-cfb87b1dc11f\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int\",\r\n \"fullCSharpName\": \"System.Int32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 312,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2a3f9560-1645-4e60-8ca5-9713f2ef8363\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int?\",\r\n \"fullCSharpName\": \"System.Int32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 313,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29fedecb-21d0-4fa8-bf6b-2539bee71bcc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long\",\r\n \"fullCSharpName\": \"System.Int64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 316,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"14c67089-ce4d-4770-8425-a0c41788c3cd\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long?\",\r\n \"fullCSharpName\": \"System.Int64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 317,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"01b8cce9-d5e9-4f38-9f29-d5f3927d7407\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte\",\r\n \"fullCSharpName\": \"System.SByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 304,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"899a07dd-662c-4cd2-8f98-6ec34d739355\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte?\",\r\n \"fullCSharpName\": \"System.SByte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 305,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f76f7f1a-64d9-4c50-a38c-a6b2578f66d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float\",\r\n \"fullCSharpName\": \"System.Single\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 320,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"04ae7374-f270-48ba-b429-c7e07bfcde61\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float?\",\r\n \"fullCSharpName\": \"System.Single?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 321,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f8f90902-84a6-449f-96fe-6710accc0f7a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.String\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"string\",\r\n \"fullCSharpName\": \"System.String\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 329,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"313664ea-0a0b-4016-8c25-a11052d885ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort\",\r\n \"fullCSharpName\": \"System.UInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 308,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"1ee295be-df81-4f21-a17c-31205884958b\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort?\",\r\n \"fullCSharpName\": \"System.UInt16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 309,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a3228a28-dc3d-42f1-81d7-86899822af91\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint\",\r\n \"fullCSharpName\": \"System.UInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 314,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"133275dc-ec4b-4662-86ee-f6d13b0e8b7e\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint?\",\r\n \"fullCSharpName\": \"System.UInt32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 315,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7292a0b6-ff2d-4c02-b256-63993c2b270a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong\",\r\n \"fullCSharpName\": \"System.UInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 318,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"e80c1a1c-99d9-418c-9f66-097c048095bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba25610\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong?\",\r\n \"fullCSharpName\": \"System.UInt64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 319,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"48cbabb8-03fc-4f00-bad6-0641a7f562c7\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://testaba24858.azuredatalakeanalytics.net/sqlip/$metadata#types\",\r\n \"value\": [\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBinary\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBinary\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 341,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b05e4357-12c7-461f-9559-4c39cfae1338\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlBit\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlBit\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 339,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"caeb6f59-f027-4348-a3ff-f064531e0ee8\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlByte\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 338,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f2583736-1f0e-4072-8a04-d83db5e08241\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDate\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDate\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 343,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29f9721a-315b-498f-a304-762e0511226d\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDecimal\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDecimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 342,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"d6d8f781-23bf-48a6-a462-8946bab23c36\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlDouble\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlDouble\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 344,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db1bc9a7-f5da-4d64-9baa-399c9f72d6e2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlGuid\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlGuid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 345,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ab6715ed-cfba-4b5a-92e9-f86520b8e711\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt16\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 335,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4ee64682-cbd4-40cc-90e9-c5de1433bbed\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt32\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 336,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"9af787e7-9fc0-4819-80ac-0339ce031ab3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlInt64\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 337,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"44d67b27-8bd8-4072-81ca-2d32adfdb17c\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlMoney\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlMoney\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 346,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"861e13ee-e110-4dd2-b0df-f2eb9a6b5bd2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlSingle\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlSingle\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 347,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7037d7f1-e3d4-416f-bf81-285b630a75e4\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"typeFamily\": \"SQL\",\r\n \"cSharpName\": \"SqlString\",\r\n \"fullCSharpName\": \"Microsoft.Analytics.Types.Sql.SqlString\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 340,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a15306f5-43f5-433b-b795-ce02ee911953\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool\",\r\n \"fullCSharpName\": \"System.Boolean\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 300,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c04b91b8-2b7e-45b3-ada9-db5ede901672\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Boolean?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"bool?\",\r\n \"fullCSharpName\": \"System.Boolean?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 301,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"42f3147a-ed9b-47ae-a8ad-aa2fbc51e0ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte\",\r\n \"fullCSharpName\": \"System.Byte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 302,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"6a048add-f003-4d73-8471-3b0be963d1ac\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte?\",\r\n \"fullCSharpName\": \"System.Byte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 303,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"c2623267-2a86-444a-a773-89783eae5b30\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Byte[]\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"byte[]\",\r\n \"fullCSharpName\": \"System.Byte[]\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 328,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"84506afa-d9ad-4bef-9e44-cd00f1f54ce3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char\",\r\n \"fullCSharpName\": \"System.Char\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 310,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"bb4bb082-4d9c-4ce4-aa1b-bfaea278ac92\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Char?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"char?\",\r\n \"fullCSharpName\": \"System.Char?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 311,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"748c6bfa-5a8e-43d4-823b-3b3be0d8b85a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime\",\r\n \"fullCSharpName\": \"System.DateTime\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 326,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"4e348b46-7218-4c30-b879-ceee5a59e7bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.DateTime?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"DateTime?\",\r\n \"fullCSharpName\": \"System.DateTime?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 327,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"eb486159-acfa-4499-9b1a-e0ecda5d52a2\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal\",\r\n \"fullCSharpName\": \"System.Decimal\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 324,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f29ebb5f-17e8-4448-8aec-1a6702380e75\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Decimal?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"decimal?\",\r\n \"fullCSharpName\": \"System.Decimal?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 325,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"b78657ef-955b-4841-805e-bec1e9d11e37\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double\",\r\n \"fullCSharpName\": \"System.Double\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 322,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f3bbcc4e-d872-4bd1-8429-7082199016d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Double?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"double?\",\r\n \"fullCSharpName\": \"System.Double?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 323,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"5832365f-70cb-47f9-92db-46cf7903dffc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid\",\r\n \"fullCSharpName\": \"System.Guid\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 330,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"ccccbe73-770a-4bc8-905f-2eec41e79736\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Guid?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"Guid?\",\r\n \"fullCSharpName\": \"System.Guid?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 331,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"db4c6514-17fa-4de1-ab25-a22817844593\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short\",\r\n \"fullCSharpName\": \"System.Int16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 306,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2cca4ae1-4272-4ca4-832e-5bc22c486299\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"short?\",\r\n \"fullCSharpName\": \"System.Int16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 307,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"cef0bb72-9079-471b-855c-cfb87b1dc11f\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int\",\r\n \"fullCSharpName\": \"System.Int32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 312,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"2a3f9560-1645-4e60-8ca5-9713f2ef8363\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"int?\",\r\n \"fullCSharpName\": \"System.Int32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 313,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"29fedecb-21d0-4fa8-bf6b-2539bee71bcc\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long\",\r\n \"fullCSharpName\": \"System.Int64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 316,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"14c67089-ce4d-4770-8425-a0c41788c3cd\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Int64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"long?\",\r\n \"fullCSharpName\": \"System.Int64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 317,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"01b8cce9-d5e9-4f38-9f29-d5f3927d7407\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte\",\r\n \"fullCSharpName\": \"System.SByte\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 304,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"899a07dd-662c-4cd2-8f98-6ec34d739355\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.SByte?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"sbyte?\",\r\n \"fullCSharpName\": \"System.SByte?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 305,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f76f7f1a-64d9-4c50-a38c-a6b2578f66d3\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float\",\r\n \"fullCSharpName\": \"System.Single\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 320,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"04ae7374-f270-48ba-b429-c7e07bfcde61\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.Single?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"float?\",\r\n \"fullCSharpName\": \"System.Single?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 321,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"f8f90902-84a6-449f-96fe-6710accc0f7a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.String\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"string\",\r\n \"fullCSharpName\": \"System.String\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 329,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"313664ea-0a0b-4016-8c25-a11052d885ad\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort\",\r\n \"fullCSharpName\": \"System.UInt16\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 308,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"1ee295be-df81-4f21-a17c-31205884958b\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt16?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ushort?\",\r\n \"fullCSharpName\": \"System.UInt16?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 309,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"a3228a28-dc3d-42f1-81d7-86899822af91\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint\",\r\n \"fullCSharpName\": \"System.UInt32\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 314,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"133275dc-ec4b-4662-86ee-f6d13b0e8b7e\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt32?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"uint?\",\r\n \"fullCSharpName\": \"System.UInt32?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 315,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"7292a0b6-ff2d-4c02-b256-63993c2b270a\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong\",\r\n \"fullCSharpName\": \"System.UInt64\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 318,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"e80c1a1c-99d9-418c-9f66-097c048095bb\"\r\n },\r\n {\r\n \"computeAccountName\": \"testaba24858\",\r\n \"databaseName\": \"master\",\r\n \"schemaName\": \"sys\",\r\n \"typeName\": \"System.UInt64?\",\r\n \"typeFamily\": \"C#\",\r\n \"cSharpName\": \"ulong?\",\r\n \"fullCSharpName\": \"System.UInt64?\",\r\n \"systemTypeId\": 100,\r\n \"userTypeId\": 319,\r\n \"schemaId\": 0,\r\n \"principalId\": null,\r\n \"isNullable\": false,\r\n \"isUserDefined\": false,\r\n \"isAssemblyType\": false,\r\n \"isTableType\": false,\r\n \"isComplexType\": false,\r\n \"version\": \"48cbabb8-03fc-4f00-bad6-0641a7f562c7\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2683,13 +2536,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:11:38 GMT" + "Mon, 27 Mar 2017 20:03:27 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "9d4a1317-37c8-4ab0-9708-aa3a52662a07" + "03a6575a-4634-4af0-90e0-d3602222ee8b" ], "OData-Version": [ "4.0" @@ -2706,27 +2559,27 @@ ], "Names": { ".ctor": [ - "rgaba19677", - "testaba11655", - "testaba25610", - "teststorage15300", - "testdatalake12038", - "testdatalake29966", - "testazureblob11125", - "testdb15849", - "testtbl13852", - "testtvf12607", - "testproc1345", - "testview16733", - "testcred12178", - "testsecret12114", - "testsecretpwd15326" + "rgaba12062", + "testaba14276", + "testaba24858", + "teststorage16801", + "testdatalake18414", + "testdatalake26319", + "testazureblob19364", + "testdb18438", + "testtbl17545", + "testtvf12667", + "testproc19005", + "testview15912", + "testcred16578", + "testsecret1897", + "testsecretpwd19446" ], "CreateCatalog": [ - "8c8c0020-38e2-4d9f-a271-f31df03b4063" + "787acb7b-7edd-4ca7-8ba1-ea00a0c0bfb3" ], "RunJobToCompletion": [ - "testjob16387" + "testjob13068" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretAndCredentialCRUDTest.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretAndCredentialCRUDTest.json index a60cd35ed9ba..ce582eddda66 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretAndCredentialCRUDTest.json +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretAndCredentialCRUDTest.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b9d6ee7-8099-47d0-a585-d75ddde1fedf" + "36fbde0d-ce4a-46d0-893b-019543936b34" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:31 GMT" + "Mon, 27 Mar 2017 19:24:04 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-request-id": [ - "8b7b2d41-8a33-4c87-9fad-065ecda1ecff" + "4d7cc824-e237-49be-a17c-2531777e381d" ], "x-ms-correlation-request-id": [ - "8b7b2d41-8a33-4c87-9fad-065ecda1ecff" + "4d7cc824-e237-49be-a17c-2531777e381d" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213831Z:8b7b2d41-8a33-4c87-9fad-065ecda1ecff" + "WESTUS2:20170327T192404Z:4d7cc824-e237-49be-a17c-2531777e381d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f014d4a4-148b-4977-9287-b8841ecaceb1" + "8a5eb68c-ed85-4eba-818e-26e1d9736eda" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:31 GMT" + "Mon, 27 Mar 2017 19:24:04 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14988" ], "x-ms-request-id": [ - "413f1a34-e8d2-4c0a-8c24-ce3eeed86e34" + "914c8414-bda0-4f74-b804-300db8c52441" ], "x-ms-correlation-request-id": [ - "413f1a34-e8d2-4c0a-8c24-ce3eeed86e34" + "914c8414-bda0-4f74-b804-300db8c52441" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213831Z:413f1a34-e8d2-4c0a-8c24-ce3eeed86e34" + "WESTUS2:20170327T192404Z:914c8414-bda0-4f74-b804-300db8c52441" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f770fce9-2117-4c78-a859-c6262ff9a8bc" + "df85651d-bf92-4ceb-87d1-2fbde0bc7f1e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:32 GMT" + "Mon, 27 Mar 2017 19:24:05 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-request-id": [ - "4c4306e5-12d6-4fe7-8d67-db864aa678b5" + "0d1b1dc0-955c-4ed1-963b-8d11bdad9ea4" ], "x-ms-correlation-request-id": [ - "4c4306e5-12d6-4fe7-8d67-db864aa678b5" + "0d1b1dc0-955c-4ed1-963b-8d11bdad9ea4" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213832Z:4c4306e5-12d6-4fe7-8d67-db864aa678b5" + "WESTUS2:20170327T192405Z:0d1b1dc0-955c-4ed1-963b-8d11bdad9ea4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc4db4bb-cb6e-4d7b-8fb5-dd0cdda16e2b" + "b427e5a7-76db-43b2-af85-2da2426e55ff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:32 GMT" + "Mon, 27 Mar 2017 19:24:05 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14987" ], "x-ms-request-id": [ - "f4ab5cc0-f552-4efd-863c-e3982638d876" + "a773929d-c504-49d7-bbd1-255e0d9c7751" ], "x-ms-correlation-request-id": [ - "f4ab5cc0-f552-4efd-863c-e3982638d876" + "a773929d-c504-49d7-bbd1-255e0d9c7751" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213832Z:f4ab5cc0-f552-4efd-863c-e3982638d876" + "WESTUS2:20170327T192405Z:a773929d-c504-49d7-bbd1-255e0d9c7751" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,17 +229,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef2251df-6019-48c4-ae32-77cbbc14b636" + "e7c61db9-0abe-4725-8917-603d44a5cd19" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +250,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:33 GMT" + "Mon, 27 Mar 2017 19:24:06 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-request-id": [ - "551fe5ca-bdd8-4e93-be58-56f8ee79b59c" + "d3d8afac-386b-44ee-9527-85a3f9642e04" ], "x-ms-correlation-request-id": [ - "551fe5ca-bdd8-4e93-be58-56f8ee79b59c" + "d3d8afac-386b-44ee-9527-85a3f9642e04" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213833Z:551fe5ca-bdd8-4e93-be58-56f8ee79b59c" + "WESTUS2:20170327T192406Z:d3d8afac-386b-44ee-9527-85a3f9642e04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,17 +286,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14ac3e7d-d193-45c5-9c50-59de72911bc0" + "397b9c82-d946-41eb-b490-b5d1463df2b0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -304,7 +307,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:33 GMT" + "Mon, 27 Mar 2017 19:24:06 GMT" ], "Pragma": [ "no-cache" @@ -313,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14986" ], "x-ms-request-id": [ - "512f5e50-8540-44dc-b5d3-300127b7c316" + "840b7eb4-901a-46b0-874d-66d7a934a9f7" ], "x-ms-correlation-request-id": [ - "512f5e50-8540-44dc-b5d3-300127b7c316" + "840b7eb4-901a-46b0-874d-66d7a934a9f7" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213833Z:512f5e50-8540-44dc-b5d3-300127b7c316" + "WESTUS2:20170327T192406Z:840b7eb4-901a-46b0-874d-66d7a934a9f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,23 +334,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba18797?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTg3OTc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUxNDg/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28904f0f-e08b-45cb-8a73-37108658854e" + "ead8d9a1-195e-4ce0-a7b5-74296415af8a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba18797' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba15148' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "102" @@ -362,7 +364,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:33 GMT" + "Mon, 27 Mar 2017 19:24:06 GMT" ], "Pragma": [ "no-cache" @@ -371,16 +373,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14985" ], "x-ms-request-id": [ - "a1de254a-2d22-4dff-8de7-94601f9fa626" + "2bb536fb-18bb-4a7d-a2a2-28e0849e0798" ], "x-ms-correlation-request-id": [ - "a1de254a-2d22-4dff-8de7-94601f9fa626" + "2bb536fb-18bb-4a7d-a2a2-28e0849e0798" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213833Z:a1de254a-2d22-4dff-8de7-94601f9fa626" + "WESTUS2:20170327T192406Z:2bb536fb-18bb-4a7d-a2a2-28e0849e0798" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -389,23 +391,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba18797?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTg3OTc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUxNDg/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ddd86486-d53f-4a25-9505-abad4ebf93e5" + "42a2d228-b83e-4abe-b851-18e74dd2da70" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797\",\r\n \"name\": \"rgaba18797\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148\",\r\n \"name\": \"rgaba15148\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,7 +418,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:34 GMT" + "Mon, 27 Mar 2017 19:24:07 GMT" ], "Pragma": [ "no-cache" @@ -426,16 +427,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14984" ], "x-ms-request-id": [ - "a0052034-a477-4ca7-a00e-131664e8619c" + "39c982a2-f6e1-47ba-b076-b544ad49e7e8" ], "x-ms-correlation-request-id": [ - "a0052034-a477-4ca7-a00e-131664e8619c" + "39c982a2-f6e1-47ba-b076-b544ad49e7e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213834Z:a0052034-a477-4ca7-a00e-131664e8619c" + "WESTUS2:20170327T192407Z:39c982a2-f6e1-47ba-b076-b544ad49e7e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,8 +445,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba18797?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTg3OTc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTUxNDg/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -456,17 +457,16 @@ "31" ], "x-ms-client-request-id": [ - "4cd49beb-6e8b-4b4a-b0cf-8977b22f4fb1" + "b06a0492-0852-4b0f-853f-91eb4a7b4968" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797\",\r\n \"name\": \"rgaba18797\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148\",\r\n \"name\": \"rgaba15148\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "174" @@ -481,22 +481,22 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:34 GMT" + "Mon, 27 Mar 2017 19:24:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-request-id": [ - "e4b55acb-29fb-46dd-b5cd-98252532d61a" + "cf516fb3-1274-4739-86ea-692ae21f4488" ], "x-ms-correlation-request-id": [ - "e4b55acb-29fb-46dd-b5cd-98252532d61a" + "cf516fb3-1274-4739-86ea-692ae21f4488" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213834Z:e4b55acb-29fb-46dd-b5cd-98252532d61a" + "WESTUS2:20170327T192407Z:cf516fb3-1274-4739-86ea-692ae21f4488" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,23 +505,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0Nzk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d94aa8a0-7552-430b-b088-b973b3210abd" + "ffcc1107-4f6b-4db9-84a9-d6e8ba880ad7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake14794' under resource group 'rgaba18797' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake14460' under resource group 'rgaba15148' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -536,7 +535,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:38:34 GMT" + "Mon, 27 Mar 2017 19:24:07 GMT" ], "Pragma": [ "no-cache" @@ -545,13 +544,13 @@ "gateway" ], "x-ms-request-id": [ - "39cc3ec8-7ded-4f9e-83b3-1603e8901b37" + "f952a614-aa22-4d25-a2b6-60bd0a86320e" ], "x-ms-correlation-request-id": [ - "39cc3ec8-7ded-4f9e-83b3-1603e8901b37" + "f952a614-aa22-4d25-a2b6-60bd0a86320e" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213835Z:39cc3ec8-7ded-4f9e-83b3-1603e8901b37" + "WESTUS2:20170327T192407Z:f952a614-aa22-4d25-a2b6-60bd0a86320e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,17 +559,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0Nzk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14794.azuredatalakestore.net\",\r\n \"accountId\": \"e91cc439-9995-483a-bcb4-08615fd5e9be\",\r\n \"creationTime\": \"2016-11-08T21:38:40.3626257Z\",\r\n \"lastModifiedTime\": \"2016-11-08T21:38:40.3626257Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794\",\r\n \"name\": \"testdatalake14794\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14460.azuredatalakestore.net\",\r\n \"accountId\": \"da29a822-40e7-492b-8af4-6e3a35a1ba40\",\r\n \"creationTime\": \"2017-03-27T19:24:10.0245532Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:10.0245532Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460\",\r\n \"name\": \"testdatalake14460\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -585,7 +583,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:07 GMT" + "Mon, 27 Mar 2017 19:24:40 GMT" ], "Pragma": [ "no-cache" @@ -597,7 +595,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "821e0181-a6b4-411b-ac78-bb159eddfea5" + "895b77af-f69c-4d5e-bda3-928d25d16cf9" ], "X-Content-Type-Options": [ "nosniff" @@ -609,13 +607,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14990" ], "x-ms-correlation-request-id": [ - "e7236d57-57c0-4a35-a70c-c7d64e484a31" + "094a9592-0939-46b9-bcac-84c5f63248d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213908Z:e7236d57-57c0-4a35-a70c-c7d64e484a31" + "WESTUS2:20170327T192440Z:094a9592-0939-46b9-bcac-84c5f63248d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,23 +622,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0Nzk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15f0c682-5d20-4ede-8f50-4a49ade4238c" + "501023a1-62e9-428d-b4eb-8af750eb8fbd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14794.azuredatalakestore.net\",\r\n \"accountId\": \"e91cc439-9995-483a-bcb4-08615fd5e9be\",\r\n \"creationTime\": \"2016-11-08T21:38:40.3626257Z\",\r\n \"lastModifiedTime\": \"2016-11-08T21:38:40.3626257Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794\",\r\n \"name\": \"testdatalake14794\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14460.azuredatalakestore.net\",\r\n \"accountId\": \"da29a822-40e7-492b-8af4-6e3a35a1ba40\",\r\n \"creationTime\": \"2017-03-27T19:24:10.0245532Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:10.0245532Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460\",\r\n \"name\": \"testdatalake14460\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -655,7 +652,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:08 GMT" + "Mon, 27 Mar 2017 19:24:40 GMT" ], "Pragma": [ "no-cache" @@ -667,7 +664,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dce38baa-5b74-4266-91da-4c2976ab18d0" + "164bf6ff-c278-41ae-865f-8fc4de6aaefa" ], "X-Content-Type-Options": [ "nosniff" @@ -679,13 +676,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14977" ], "x-ms-correlation-request-id": [ - "cd44c4c6-f50b-4ece-bad9-50feae7b6efd" + "b3ce9436-bd7e-4be3-a774-3d5a13af5db1" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213909Z:cd44c4c6-f50b-4ece-bad9-50feae7b6efd" + "WESTUS2:20170327T192441Z:b3ce9436-bd7e-4be3-a774-3d5a13af5db1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -694,23 +691,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0Nzk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de4a08a4-a36d-4ddc-86ee-82f0d801a38e" + "e0e5b77d-ee8e-4a28-bf80-9a000a95e7e8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14794.azuredatalakestore.net\",\r\n \"accountId\": \"e91cc439-9995-483a-bcb4-08615fd5e9be\",\r\n \"creationTime\": \"2016-11-08T21:38:40.3626257Z\",\r\n \"lastModifiedTime\": \"2016-11-08T21:38:40.3626257Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794\",\r\n \"name\": \"testdatalake14794\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake14460.azuredatalakestore.net\",\r\n \"accountId\": \"da29a822-40e7-492b-8af4-6e3a35a1ba40\",\r\n \"creationTime\": \"2017-03-27T19:24:10.0245532Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:10.0245532Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460\",\r\n \"name\": \"testdatalake14460\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -725,7 +721,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:43 GMT" + "Mon, 27 Mar 2017 19:25:15 GMT" ], "Pragma": [ "no-cache" @@ -737,7 +733,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bbce6113-7576-46e3-80ab-0f8f064ff86e" + "ef492456-19dc-4b36-b0fb-24eb15d784dc" ], "X-Content-Type-Options": [ "nosniff" @@ -749,13 +745,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "c5a37807-8855-4324-a96d-ed232753c7f1" + "6b7b4cc5-f40b-49b0-8c03-02cad7dd2015" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213944Z:c5a37807-8855-4324-a96d-ed232753c7f1" + "WESTUS2:20170327T192515Z:6b7b4cc5-f40b-49b0-8c03-02cad7dd2015" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -764,8 +760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0Nzk0P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE0NDYwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -776,17 +772,16 @@ "31" ], "x-ms-client-request-id": [ - "728eb0b8-c030-43f4-ab02-5c8732d7e80f" + "132da82b-1fa1-4860-9f62-f2b6f79d2aaa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e91cc439-9995-483a-bcb4-08615fd5e9be\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794\",\r\n \"name\": \"testdatalake14794\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"da29a822-40e7-492b-8af4-6e3a35a1ba40\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460\",\r\n \"name\": \"testdatalake14460\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -804,13 +799,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:38:36 GMT" + "Mon, 27 Mar 2017 19:24:08 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake14794/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake14460/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -819,10 +814,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e91cc439-9995-483a-bcb4-08615fd5e9be0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/da29a822-40e7-492b-8af4-6e3a35a1ba400?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "c6eb7856-d6ee-45f0-b61f-e6a80a1dda43" + "98c677e9-7909-428c-864c-c6b22bdeefd3" ], "X-Content-Type-Options": [ "nosniff" @@ -834,13 +829,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-correlation-request-id": [ - "c7375725-6281-4f2c-898c-0a5a5096b47c" + "0d0325b6-6319-4d94-9ef0-cc30a7a4eb35" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213836Z:c7375725-6281-4f2c-898c-0a5a5096b47c" + "WESTUS2:20170327T192409Z:0d0325b6-6319-4d94-9ef0-cc30a7a4eb35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,14 +844,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e91cc439-9995-483a-bcb4-08615fd5e9be0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2U5MWNjNDM5LTk5OTUtNDgzYS1iY2I0LTA4NjE1ZmQ1ZTliZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/da29a822-40e7-492b-8af4-6e3a35a1ba400?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2RhMjlhODIyLTQwZTctNDkyYi04YWY0LTZlM2EzNWExYmE0MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -874,7 +868,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:07 GMT" + "Mon, 27 Mar 2017 19:24:39 GMT" ], "Pragma": [ "no-cache" @@ -886,7 +880,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "30011cb8-77c5-477f-afb3-a995358a9e9f" + "c9fbde51-5bf6-4577-85af-8e2c4b944e93" ], "X-Content-Type-Options": [ "nosniff" @@ -898,13 +892,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "028c42cc-3b2e-43dd-b2de-ab4babaa3df3" + "aca3bb6e-203f-4908-9124-518e4e307968" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213907Z:028c42cc-3b2e-43dd-b2de-ab4babaa3df3" + "WESTUS2:20170327T192440Z:aca3bb6e-203f-4908-9124-518e4e307968" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -913,26 +907,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIyMDc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6b71100-99b8-451a-a154-8d1ba6deef46" + "35cb1289-2c79-47a1-a248-d642c5d4abb0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake22079' under resource group 'rgaba18797' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake215' under resource group 'rgaba15148' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "164" + "162" ], "Content-Type": [ "application/json; charset=utf-8" @@ -944,7 +937,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 21:39:09 GMT" + "Mon, 27 Mar 2017 19:24:41 GMT" ], "Pragma": [ "no-cache" @@ -953,13 +946,13 @@ "gateway" ], "x-ms-request-id": [ - "e9366d76-518a-422a-a485-c8da5d154f62" + "5ca0f377-b842-44dd-bcbf-c30869f33bda" ], "x-ms-correlation-request-id": [ - "e9366d76-518a-422a-a485-c8da5d154f62" + "5ca0f377-b842-44dd-bcbf-c30869f33bda" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213909Z:e9366d76-518a-422a-a485-c8da5d154f62" + "WESTUS2:20170327T192441Z:5ca0f377-b842-44dd-bcbf-c30869f33bda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -968,17 +961,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIyMDc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake22079.azuredatalakestore.net\",\r\n \"accountId\": \"bd4cb07e-0a48-436e-9573-cf4e040bc0db\",\r\n \"creationTime\": \"2016-11-08T21:39:14.844121Z\",\r\n \"lastModifiedTime\": \"2016-11-08T21:39:14.844121Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079\",\r\n \"name\": \"testdatalake22079\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake215.azuredatalakestore.net\",\r\n \"accountId\": \"01e78156-ca82-4c0a-ac52-ffa718162f4f\",\r\n \"creationTime\": \"2017-03-27T19:24:43.1137438Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:43.1137438Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215\",\r\n \"name\": \"testdatalake215\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -993,7 +985,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:42 GMT" + "Mon, 27 Mar 2017 19:25:14 GMT" ], "Pragma": [ "no-cache" @@ -1005,7 +997,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e9a50218-e372-4f53-86ab-7eea81d810df" + "1d4864d7-7d93-4af0-b044-06a3994b34cc" ], "X-Content-Type-Options": [ "nosniff" @@ -1017,13 +1009,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14991" ], "x-ms-correlation-request-id": [ - "662ee437-6059-4b33-a18d-9b725c7264da" + "6964aa22-f129-4102-bbd0-ac1b1b2f08eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213943Z:662ee437-6059-4b33-a18d-9b725c7264da" + "WESTUS2:20170327T192514Z:6964aa22-f129-4102-bbd0-ac1b1b2f08eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,23 +1024,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIyMDc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06001d44-6b70-4409-8dee-d3b7f20fda03" + "0fe7806f-0ed8-42d8-b091-f59b7dfaff10" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake22079.azuredatalakestore.net\",\r\n \"accountId\": \"bd4cb07e-0a48-436e-9573-cf4e040bc0db\",\r\n \"creationTime\": \"2016-11-08T21:39:14.844121Z\",\r\n \"lastModifiedTime\": \"2016-11-08T21:39:14.844121Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079\",\r\n \"name\": \"testdatalake22079\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake215.azuredatalakestore.net\",\r\n \"accountId\": \"01e78156-ca82-4c0a-ac52-ffa718162f4f\",\r\n \"creationTime\": \"2017-03-27T19:24:43.1137438Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:24:43.1137438Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215\",\r\n \"name\": \"testdatalake215\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1063,7 +1054,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:43 GMT" + "Mon, 27 Mar 2017 19:25:14 GMT" ], "Pragma": [ "no-cache" @@ -1075,7 +1066,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "320920c8-b5d5-4bee-90ed-71af86f40b89" + "49cf646b-1ac6-489f-bb19-f226782f14b0" ], "X-Content-Type-Options": [ "nosniff" @@ -1087,13 +1078,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "7262ea1d-77ad-4099-a7af-ab22e0ca428e" + "6bab513b-edea-4b84-9445-f56b44b325be" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213943Z:7262ea1d-77ad-4099-a7af-ab22e0ca428e" + "WESTUS2:20170327T192515Z:6bab513b-edea-4b84-9445-f56b44b325be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1102,8 +1093,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIyMDc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTIxNT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1114,20 +1105,19 @@ "31" ], "x-ms-client-request-id": [ - "c7e31069-1971-4d17-a509-e60fd0f902c1" + "57abb421-bb73-4a33-bf4a-b91fa1077bae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"bd4cb07e-0a48-436e-9573-cf4e040bc0db\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079\",\r\n \"name\": \"testdatalake22079\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"01e78156-ca82-4c0a-ac52-ffa718162f4f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215\",\r\n \"name\": \"testdatalake215\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "421" + "417" ], "Content-Type": [ "application/json" @@ -1142,13 +1132,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:10 GMT" + "Mon, 27 Mar 2017 19:24:42 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba18797/providers/Microsoft.DataLakeStore/accounts/testdatalake22079/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148/providers/Microsoft.DataLakeStore/accounts/testdatalake215/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1157,10 +1147,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bd4cb07e-0a48-436e-9573-cf4e040bc0db0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/01e78156-ca82-4c0a-ac52-ffa718162f4f0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "d0809198-7367-44b0-af9b-4fba2ab233c2" + "819fae1d-e720-4b9c-84c4-93d5db56eec6" ], "X-Content-Type-Options": [ "nosniff" @@ -1172,13 +1162,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1189" ], "x-ms-correlation-request-id": [ - "0f1d69de-378d-47ea-9adf-5cbc412efc01" + "43b0ddf1-c1d4-4e77-af1d-9e029710a9d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213911Z:0f1d69de-378d-47ea-9adf-5cbc412efc01" + "WESTUS2:20170327T192443Z:43b0ddf1-c1d4-4e77-af1d-9e029710a9d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1187,14 +1177,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bd4cb07e-0a48-436e-9573-cf4e040bc0db0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2JkNGNiMDdlLTBhNDgtNDM2ZS05NTczLWNmNGUwNDBiYzBkYjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/01e78156-ca82-4c0a-ac52-ffa718162f4f0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzAxZTc4MTU2LWNhODItNGMwYS1hYzUyLWZmYTcxODE2MmY0ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.9-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1212,7 +1201,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:42 GMT" + "Mon, 27 Mar 2017 19:25:13 GMT" ], "Pragma": [ "no-cache" @@ -1224,7 +1213,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "58deb860-f856-4b6a-b5af-bd0823c33588" + "27128e17-035b-4a84-b557-ad358cbaa533" ], "X-Content-Type-Options": [ "nosniff" @@ -1236,13 +1225,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "f8d336ae-8b1f-47e8-8995-d79b4eb0466b" + "06ba2866-a3a6-4430-ac19-bdbf1c339ea1" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213942Z:f8d336ae-8b1f-47e8-8995-d79b4eb0466b" + "WESTUS2:20170327T192513Z:06ba2866-a3a6-4430-ac19-bdbf1c339ea1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1251,10 +1240,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeAnalytics/accounts/testaba28136?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjgxMzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQzMDM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14794\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"testdatalake14794\",\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14460\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14460\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1263,17 +1252,16 @@ "290" ], "x-ms-client-request-id": [ - "31914662-6eed-4f8b-9699-6a8d47d0cbc6" + "46cdf1f9-db2b-4962-93d3-b48f150e1b95" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14794\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14794\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"12e2ffa0-b31f-4d0f-a008-74dbc8f190b2\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeAnalytics/accounts/testaba28136\",\r\n \"name\": \"testaba28136\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14460\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14460\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f2543aff-5522-4f78-9784-94bf99b24175\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303\",\r\n \"name\": \"testaba24303\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "573" @@ -1291,13 +1279,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:39:45 GMT" + "Mon, 27 Mar 2017 19:25:17 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba18797/providers/Microsoft.DataLakeAnalytics/accounts/testaba28136/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1306,10 +1294,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/12e2ffa0-b31f-4d0f-a008-74dbc8f190b20?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/f2543aff-5522-4f78-9784-94bf99b241750?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "66632e24-ce48-42dd-8b37-b7a913c7824d" + "d5652489-e9fd-4eac-9486-1a61cbaa706c" ], "X-Content-Type-Options": [ "nosniff" @@ -1324,10 +1312,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "d303ce44-7cf8-4bd7-9f55-8cf5a3b8d65b" + "db609642-e890-4dce-8e70-fdb2afa398c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T213946Z:d303ce44-7cf8-4bd7-9f55-8cf5a3b8d65b" + "CENTRALUS:20170327T192517Z:db609642-e890-4dce-8e70-fdb2afa398c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1336,14 +1324,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/12e2ffa0-b31f-4d0f-a008-74dbc8f190b20?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8xMmUyZmZhMC1iMzFmLTRkMGYtYTAwOC03NGRiYzhmMTkwYjIwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/f2543aff-5522-4f78-9784-94bf99b241750?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy9mMjU0M2FmZi01NTIyLTRmNzgtOTc4NC05NGJmOTliMjQxNzUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1361,7 +1348,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:40:16 GMT" + "Mon, 27 Mar 2017 19:25:48 GMT" ], "Pragma": [ "no-cache" @@ -1373,7 +1360,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b5b996e5-6895-4aa7-8e22-3d61a25db717" + "88a3b3f9-5f67-4908-8fc3-c8e0fc069ad9" ], "X-Content-Type-Options": [ "nosniff" @@ -1388,10 +1375,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "2fce6c6d-0eec-4352-be00-97fcf32f9262" + "a2e80d44-a951-4e58-a07f-92c473ffdaba" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T214016Z:2fce6c6d-0eec-4352-be00-97fcf32f9262" + "CENTRALUS:20170327T192548Z:a2e80d44-a951-4e58-a07f-92c473ffdaba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1400,17 +1387,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeAnalytics/accounts/testaba28136?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjgxMzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQzMDM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14794\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14794\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 120,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba28136.azuredatalakeanalytics.net\",\r\n \"accountId\": \"12e2ffa0-b31f-4d0f-a008-74dbc8f190b2\",\r\n \"creationTime\": \"2016-11-08T21:39:48.6324526Z\",\r\n \"lastModifiedTime\": \"2016-11-08T21:39:48.6324526Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeAnalytics/accounts/testaba28136\",\r\n \"name\": \"testaba28136\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14460\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14460\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba24303.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f2543aff-5522-4f78-9784-94bf99b24175\",\r\n \"creationTime\": \"2017-03-27T19:25:19.1642971Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:25:19.1642971Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303\",\r\n \"name\": \"testaba24303\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1425,7 +1411,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:40:16 GMT" + "Mon, 27 Mar 2017 19:25:48 GMT" ], "Pragma": [ "no-cache" @@ -1437,7 +1423,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3011d538-c834-4562-b7a2-561e9f517357" + "5a746b82-aca7-400e-8e24-b09496455f1b" ], "X-Content-Type-Options": [ "nosniff" @@ -1449,13 +1435,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "8efde64d-7a1e-43a7-99eb-cf5b0623b775" + "ce4cc79e-c9bc-4d49-8959-e012178ea23a" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T214017Z:8efde64d-7a1e-43a7-99eb-cf5b0623b775" + "CENTRALUS:20170327T192548Z:ce4cc79e-c9bc-4d49-8959-e012178ea23a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1464,23 +1450,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeAnalytics/accounts/testaba28136?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTg3OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjgxMzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTUxNDgvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjQzMDM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73bee111-80b2-4e9c-b47b-30911f14f40e" + "8ba2a14d-4542-4661-8902-ba2935f7f40c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14794\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14794\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 120,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba28136.azuredatalakeanalytics.net\",\r\n \"accountId\": \"12e2ffa0-b31f-4d0f-a008-74dbc8f190b2\",\r\n \"creationTime\": \"2016-11-08T21:39:48.6324526Z\",\r\n \"lastModifiedTime\": \"2016-11-08T21:39:48.6324526Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba18797/providers/Microsoft.DataLakeAnalytics/accounts/testaba28136\",\r\n \"name\": \"testaba28136\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake14460\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake14460\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba24303.azuredatalakeanalytics.net\",\r\n \"accountId\": \"f2543aff-5522-4f78-9784-94bf99b24175\",\r\n \"creationTime\": \"2017-03-27T19:25:19.1642971Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:25:19.1642971Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba15148/providers/Microsoft.DataLakeAnalytics/accounts/testaba24303\",\r\n \"name\": \"testaba24303\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1495,7 +1480,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 21:40:17 GMT" + "Mon, 27 Mar 2017 19:25:49 GMT" ], "Pragma": [ "no-cache" @@ -1507,7 +1492,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e1e2ce94-7a98-454f-82dd-43bf0155f563" + "73af71d0-0b69-4da8-8fa9-32dd5652fc12" ], "X-Content-Type-Options": [ "nosniff" @@ -1519,13 +1504,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14999" ], "x-ms-correlation-request-id": [ - "bdb43424-ced4-45b9-b3ca-506cad444ee3" + "7d6bf6eb-b9ef-41f2-9f52-1439d0181a3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T214017Z:bdb43424-ced4-45b9-b3ca-506cad444ee3" + "CENTRALUS:20170327T192549Z:7d6bf6eb-b9ef-41f2-9f52-1439d0181a3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1534,10 +1519,10 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/917f8f2f-52cb-4c48-b2c5-bf51b13ed580?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvOTE3ZjhmMmYtNTJjYi00YzQ4LWIyYzUtYmY1MWIxM2VkNTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\r\\n//Create Table\\r\\nCREATE TABLE testdb11293.dbo.testtbl16337\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW testdb11293.dbo.testview16794 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb11293.dbo.testview16794 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb16550; CREATE DATABASE testdb16550; \\r\\n//Create Table\\r\\nCREATE TABLE testdb16550.dbo.testtbl17111\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb16550.dbo.testtvf14031;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb16550.dbo.testtvf14031()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW testdb16550.dbo.testview11785 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE testdb16550.dbo.testproc12120()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb16550.dbo.testview11785 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1546,247 +1531,16 @@ "2539" ], "x-ms-client-request-id": [ - "dfb146bf-8032-4de4-85f9-b0f18ac082bb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:20 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "22078097-38ac-4066-bbed-6a90259926b2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b1db4ed2-9546-44d6-b368-91d73f165114" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.1894906S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:20 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "afef82cb-5f73-4eb8-bb6d-d49732122fd7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "11a05b2f-af0b-4b2b-9146-cb608ba61ec4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.658367S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:25 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "efb12c7d-baad-4dcc-8268-3ccf2ae23439" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "61ce67b9-f199-49e7-9d38-e0680656382e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8303246S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:30 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "c00d9229-8943-4e3c-b90a-833c7a3f0dd1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9bd4fefb-304d-479b-a342-ac0a2922501f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:74a7604d-acf5-4344-a65f-b2af2f799c93\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1990382-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"74a7604d-acf5-4344-a65f-b2af2f799c93\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"yarnApplicationId\": 69036,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6563634S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:36 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "9e9f1917-37a1-4c91-9b90-ce43d8275a91" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bb1f5435-c50a-48f1-b968-5a16aabbc07a" + "28dbf331-8cde-4872-962e-5cbb67faaaba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:74a7604d-acf5-4344-a65f-b2af2f799c93\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1990382-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"74a7604d-acf5-4344-a65f-b2af2f799c93\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"yarnApplicationId\": 69036,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6563634S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"917f8f2f-52cb-4c48-b2c5-bf51b13ed580\",\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1798,13 +1552,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 21:42:41 GMT" + "Mon, 27 Mar 2017 19:27:51 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "414a29e7-e3cb-43b6-be6d-54f90e617101" + "a6815787-e67b-4f0b-8b7d-b08642e0cb72" ], "X-Content-Type-Options": [ "nosniff" @@ -1816,23 +1570,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/917f8f2f-52cb-4c48-b2c5-bf51b13ed580?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvOTE3ZjhmMmYtNTJjYi00YzQ4LWIyYzUtYmY1MWIxM2VkNTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9eed7ea-ad28-41e9-99e1-1354f243cd4f" + "8a8987f2-3dfa-4648-bf47-d9b3c7aed6bf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:74a7604d-acf5-4344-a65f-b2af2f799c93\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1990382-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"74a7604d-acf5-4344-a65f-b2af2f799c93\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"yarnApplicationId\": 69036,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6563634S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"917f8f2f-52cb-4c48-b2c5-bf51b13ed580\",\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.5391402-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16550; CREATE DATABASE testdb16550; \\n//Create Table\\nCREATE TABLE testdb16550.dbo.testtbl17111\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16550.dbo.testtvf14031;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16550.dbo.testtvf14031()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb16550.dbo.testview11785 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16550.dbo.testproc12120()\\nAS BEGIN\\n CREATE VIEW testdb16550.dbo.testview11785 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.2429148S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1844,13 +1597,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 21:42:46 GMT" + "Mon, 27 Mar 2017 19:27:51 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "ab627c35-c06e-4bad-86ef-ddc04dc35234" + "bb4f5cb3-6ac5-45e1-8be6-2abd130a0976" ], "X-Content-Type-Options": [ "nosniff" @@ -1862,23 +1615,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/917f8f2f-52cb-4c48-b2c5-bf51b13ed580?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvOTE3ZjhmMmYtNTJjYi00YzQ4LWIyYzUtYmY1MWIxM2VkNTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3901836c-f5b3-4fb7-808d-63e0aec8eb1e" + "df9c23b3-4fa1-4958-bc76-3027c9d033b8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:74a7604d-acf5-4344-a65f-b2af2f799c93\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1990382-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"74a7604d-acf5-4344-a65f-b2af2f799c93\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"yarnApplicationId\": 69036,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6563634S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"917f8f2f-52cb-4c48-b2c5-bf51b13ed580\",\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.5391402-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16550; CREATE DATABASE testdb16550; \\n//Create Table\\nCREATE TABLE testdb16550.dbo.testtbl17111\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16550.dbo.testtvf14031;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16550.dbo.testtvf14031()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb16550.dbo.testview11785 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16550.dbo.testproc12120()\\nAS BEGIN\\n CREATE VIEW testdb16550.dbo.testview11785 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.6179917S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1890,13 +1642,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 21:42:51 GMT" + "Mon, 27 Mar 2017 19:27:56 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "eaf0834e-fb35-4609-8ee2-dd3472f46fef" + "0a515089-c18a-4427-987e-1cf5a3da6980" ], "X-Content-Type-Options": [ "nosniff" @@ -1908,23 +1660,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/1e926f7a-a3d4-44c7-b602-bf6f22b11082?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMWU5MjZmN2EtYTNkNC00NGM3LWI2MDItYmY2ZjIyYjExMDgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/917f8f2f-52cb-4c48-b2c5-bf51b13ed580?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvOTE3ZjhmMmYtNTJjYi00YzQ4LWIyYzUtYmY1MWIxM2VkNTgwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4ae8ce5-d73a-4532-a1a0-ee2819a05912" + "652b2102-f487-44da-a1dd-f3b45701a723" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"1e926f7a-a3d4-44c7-b602-bf6f22b11082\",\r\n \"name\": \"testjob18083\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"startTime\": \"2016-11-08T13:42:55.5774554-08:00\",\r\n \"endTime\": \"2016-11-08T13:42:55.593051-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:42:19.7145898-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:42:20.5270843-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1834477-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:74a7604d-acf5-4344-a65f-b2af2f799c93\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:42:32.1990382-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-08T13:42:55.5774554-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-08T13:42:55.593051-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"74a7604d-acf5-4344-a65f-b2af2f799c93\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb11293; CREATE DATABASE testdb11293; \\n//Create Table\\nCREATE TABLE testdb11293.dbo.testtbl16337\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb11293.dbo.testtbl16337 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb11293.dbo.testtvf12357;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb11293.dbo.testtvf12357()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb11293.dbo.testview16794 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb11293.dbo.testproc11043()\\nAS BEGIN\\n CREATE VIEW testdb11293.dbo.testview16794 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/42/1e926f7a-a3d4-44c7-b602-bf6f22b11082/algebra.xml\",\r\n \"yarnApplicationId\": 69036,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6563634S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0.0155956S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"917f8f2f-52cb-4c48-b2c5-bf51b13ed580\",\r\n \"name\": \"testjob16405\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"endTime\": \"2017-03-27T12:28:00.0705921-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Failed\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"E_CSC_USER_DEPRECATEDBUCKETS\",\r\n \"severity\": \"Error\",\r\n \"component\": \"CSC\",\r\n \"source\": \"USER\",\r\n \"message\": \"Use of the keyword 'BUCKETS' in this syntax has been deprecated and is no longer supported.\",\r\n \"details\": \"at token 'BUCKETS', line 16\\r\\nnear the ###:\\r\\n**************\\r\\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY ### BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS t\",\r\n \"description\": \"'BUCKETS' is removed from the partitioning clause syntax.\",\r\n \"resolution\": \"Remove the keyword 'BUCKETS' from the partitioning clause. This will not affect its meaning.\",\r\n \"helpLink\": \"\",\r\n \"filePath\": \"\",\r\n \"lineNumber\": 16,\r\n \"startOffset\": 486,\r\n \"endOffset\": 493\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.2266141-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:27:51.5391402-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T12:28:00.0705921-07:00\",\r\n \"details\": \"result:CompilationFailed\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb16550; CREATE DATABASE testdb16550; \\n//Create Table\\nCREATE TABLE testdb16550.dbo.testtbl17111\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb16550.dbo.testtbl17111 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb16550.dbo.testtvf14031;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb16550.dbo.testtvf14031()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb16550.dbo.testview11785 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb16550.dbo.testproc12120()\\nAS BEGIN\\n CREATE VIEW testdb16550.dbo.testview11785 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake14460.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/27/917f8f2f-52cb-4c48-b2c5-bf51b13ed580/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT8.5314519S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1936,13 +1687,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 21:42:57 GMT" + "Mon, 27 Mar 2017 19:28:01 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "b07ca325-eb94-4066-9d1f-7544a84d6d65" + "5350c033-1915-4ae8-ac5d-36506a99a2b4" ], "X-Content-Type-Options": [ "nosniff" @@ -1952,1343 +1703,31 @@ ] }, "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets/testsecret12087?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cy90ZXN0c2VjcmV0MTIwODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"testsecretpwd16470\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "92" - ], - "x-ms-client-request-id": [ - "659d80bd-2897-496e-beb8-582935442d1a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:58 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "2178a608-5742-416b-adb4-53fcf9922652" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets/testsecret12087?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cy90ZXN0c2VjcmV0MTIwODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"testsecretpwd16470\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "92" - ], - "x-ms-client-request-id": [ - "a3a754b5-fa7a-4b4f-b19e-8cd5fc53f93f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceAlreadyExists\",\r\n \"message\": \"The resource 'mafs://accounts/testdatalake14794/fs/catalog/database/07eb3cbc-1cf8-4eb4-83e1-c7f156c989bf/credential/testsecret12087' already exists. Trace: 5202ccea-6759-41ab-9926-2ffebc609461 Time: 2016-11-08T13:42:59.4113282-08:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:58 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "5202ccea-6759-41ab-9926-2ffebc609461" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 409 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets/testsecret12087dup?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cy90ZXN0c2VjcmV0MTIwODdkdXA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"password\": \"testsecretpwd16470\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "92" - ], - "x-ms-client-request-id": [ - "262c13d7-5210-48a3-8cb5-38bcefe1ae34" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:59 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "7262af86-3b1e-48ff-8a38-f4a622499dbc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets/testsecret12087?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cy90ZXN0c2VjcmV0MTIwODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "da380fac-add7-4fd1-bc95-f02096d3cc3b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"creationTime\": \"2016-11-08T21:42:58.5582658Z\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:42:59 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "9b49cca8-922b-4019-9c21-591f98034b20" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets/testsecret12087?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cy90ZXN0c2VjcmV0MTIwODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ffa2428a-365d-46a8-af53-c9b2efac2859" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret12087' does not exist. Trace: 475e5523-99b0-437f-b17f-f8ce8d6e01da Time: 2016-11-08T13:44:17.2872188-08:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:17 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "475e5523-99b0-437f-b17f-f8ce8d6e01da" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 404 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "261" - ], - "x-ms-client-request-id": [ - "750fbbea-a0ce-4fe1-88dc-344d79cb3741" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:01 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "8dd134d5-3fc4-45b0-8904-43ddc3ad3110" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "52b7ccc0-1bbe-4257-b3af-402caf00251e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.1488034S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:02 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "f5f33ef2-8809-4ce9-8a75-13d9c5459e9e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bd4abd56-6dfd-4795-ad52-40fa2f0f550a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.6181665S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:07 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "da2dc687-67c6-4827-a378-a0702698d390" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c595fa6a-65d5-48fb-aeaf-2238469b63cc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.821352S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:12 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "5d7cfb74-7eda-477e-a34c-de596e87ac51" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2c2f21b4-978f-4242-9819-3a3bd2c9969f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5653789-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:f0114164-38db-4210-8eed-6a97aed07890\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"f0114164-38db-4210-8eed-6a97aed07890\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"yarnApplicationId\": 69049,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.5972674S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156392S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:17 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "87d501af-06f6-4847-b67b-0576025f095a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "84b0dcb8-dfad-4c28-aba4-744fb5162499" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5653789-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:f0114164-38db-4210-8eed-6a97aed07890\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"f0114164-38db-4210-8eed-6a97aed07890\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"yarnApplicationId\": 69049,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.5972674S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156392S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:23 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "0d71e4c2-eb70-415a-874a-efd8a0a34cb1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7f652ae8-f974-49f3-9476-227401c48b6a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5653789-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:f0114164-38db-4210-8eed-6a97aed07890\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"f0114164-38db-4210-8eed-6a97aed07890\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"yarnApplicationId\": 69049,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.5972674S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156392S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:28 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "a666c967-86b3-4fb4-9f4a-46255fc21202" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "956b22e1-e9b9-448d-a9be-4d899c758744" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5653789-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:f0114164-38db-4210-8eed-6a97aed07890\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"f0114164-38db-4210-8eed-6a97aed07890\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"yarnApplicationId\": 69049,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.5972674S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156392S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:33 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "a2ec8cd6-387f-46ee-8a29-9cd5814b579d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/aa6535e2-acdc-44c5-89f3-8587da065cd8?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvYWE2NTM1ZTItYWNkYy00NGM1LTg5ZjMtODU4N2RhMDY1Y2Q4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dda56ddc-a5ab-455a-abb9-6bbeca5bc0b1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"aa6535e2-acdc-44c5-89f3-8587da065cd8\",\r\n \"name\": \"testjob17273\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"startTime\": \"2016-11-08T13:43:37.0655585-08:00\",\r\n \"endTime\": \"2016-11-08T13:43:37.0811837-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.0306026-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:01.9681115-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5653789-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:f0114164-38db-4210-8eed-6a97aed07890\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:13.5810181-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-08T13:43:37.0655585-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-08T13:43:37.0811837-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"f0114164-38db-4210-8eed-6a97aed07890\",\r\n \"script\": \"USE testdb11293; CREATE CREDENTIAL testcred14052 WITH USER_NAME = \\\"scope@rkm4grspxa\\\", IDENTITY = \\\"testsecret12087\\\";\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/aa6535e2-acdc-44c5-89f3-8587da065cd8/algebra.xml\",\r\n \"yarnApplicationId\": 69049,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.5972674S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156392S\",\r\n \"totalRunningTime\": \"PT0.0156252S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:38 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "b1bff7ba-44d6-4775-b12f-2213925daa77" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/credentials?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvY3JlZGVudGlhbHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f627b7cb-240c-4f1b-adc7-5e14eaf18196" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"credentialName\": \"testcred14052\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:38 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "0b579d4e-430e-4289-90c1-716737cdeaca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/credentials/testcred14052?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvY3JlZGVudGlhbHMvdGVzdGNyZWQxNDA1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2a30f98c-3448-43d2-8bb2-c2c08ed73fc7" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"credentialName\": \"testcred14052\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:38 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "7a71fb0d-06a4-4326-aa01-19d20cc0ce55" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\"\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "189" - ], - "x-ms-client-request-id": [ - "bf2209c4-85df-44f7-9f32-16a7f4673734" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:39 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "07c088b2-0cfb-4b2f-a473-3fec751a311c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cc33706a-3e74-49c8-840d-4836f2cd9d17" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.100443S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:39 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "66f53078-e416-4913-8408-74c880771b39" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "855a559e-8402-4360-a25e-e1046dfcba4c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.2567713S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:44 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "f909cec9-5464-4d09-86ce-8407883447fb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "68f5bfa5-3f46-4b02-98cd-c65b32658779" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.4599934S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:50 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "907f2135-6c21-4564-874f-f398a16af847" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13266c3a-8613-4345-9eae-9dd0fe98290d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b4792d9e-44d5-467d-a883-d69ad2867930\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2219553-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"b4792d9e-44d5-467d-a883-d69ad2867930\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"yarnApplicationId\": 69055,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8281908S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:43:55 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "8f35c555-7cf0-429b-9fce-add559177ba6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d12bfe0-db27-4647-87b3-c1e10dc327eb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b4792d9e-44d5-467d-a883-d69ad2867930\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2219553-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"b4792d9e-44d5-467d-a883-d69ad2867930\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"yarnApplicationId\": 69055,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8281908S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:01 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "712c0cf2-f978-42ce-bb66-b118aaeb4351" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6ccd6d4a-af4d-4e61-b60c-3b2eae7c1131" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b4792d9e-44d5-467d-a883-d69ad2867930\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2219553-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"b4792d9e-44d5-467d-a883-d69ad2867930\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"yarnApplicationId\": 69055,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8281908S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:05 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "bffaee13-f365-402b-8966-acf0deb6974c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "aeead336-f524-4481-bd5d-b56ae2a89c5a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b4792d9e-44d5-467d-a883-d69ad2867930\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2219553-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"b4792d9e-44d5-467d-a883-d69ad2867930\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"yarnApplicationId\": 69055,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8281908S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:10 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "9c337e4f-7b55-4562-9206-a6c6fe26847f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/d356ff5a-456e-4f17-ae73-1e73ee30b22c?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvZDM1NmZmNWEtNDU2ZS00ZjE3LWFlNzMtMWU3M2VlMzBiMjJjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "356ad048-6d43-4468-8e3b-6aa731f52bb0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"d356ff5a-456e-4f17-ae73-1e73ee30b22c\",\r\n \"name\": \"testjob14895\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"startTime\": \"2016-11-08T13:44:12.3786522-08:00\",\r\n \"endTime\": \"2016-11-08T13:44:12.3786522-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-08T13:43:39.5812281-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-08T13:43:40.3781239-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2063147-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:b4792d9e-44d5-467d-a883-d69ad2867930\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-08T13:43:51.2219553-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-08T13:44:12.3786522-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-08T13:44:12.3786522-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"diagnosticsjson\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/diagnosticsjson\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"b4792d9e-44d5-467d-a883-d69ad2867930\",\r\n \"script\": \"USE testdb11293; DROP CREDENTIAL testcred14052;\",\r\n \"algebraFilePath\": \"adl://testdatalake14794.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/21/43/d356ff5a-456e-4f17-ae73-1e73ee30b22c/algebra.xml\",\r\n \"yarnApplicationId\": 69055,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.8281908S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "c002c6f5-de46-4229-ac0a-8fce480f6e2d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets/testsecret12087?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cy90ZXN0c2VjcmV0MTIwODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ba8a20aa-c0ba-4c6b-a3a2-80e11f450ea0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:16 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "3963cd6b-0864-4424-a73c-1952f89214d6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b86754e4-dda3-43ce-a79e-bd499e7b23a1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:17 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "1bdcb1de-d84d-4d8b-aabd-086b9fec0fbd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/catalog/usql/databases/testdb11293/secrets/testsecret12087dup?api-version=2016-11-01", - "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTEyOTMvc2VjcmV0cy90ZXN0c2VjcmV0MTIwODdkdXA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0f47df70-4f78-4f66-b31e-b09fef89eba0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret12087dup' does not exist. Trace: bd967154-5935-43ee-af7e-b74a9af2a83f Time: 2016-11-08T13:44:18.0059637-08:00\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 21:44:17 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "bd967154-5935-43ee-af7e-b74a9af2a83f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 404 } ], "Names": { ".ctor": [ - "rgaba18797", - "testaba18343", - "testaba28136", - "teststorage119", - "testdatalake14794", - "testdatalake22079", - "testazureblob18628", - "testdb11293", - "testtbl16337", - "testtvf12357", - "testproc11043", - "testview16794", - "testcred14052", - "testsecret12087", - "testsecretpwd16470" + "rgaba15148", + "testaba16750", + "testaba24303", + "teststorage15292", + "testdatalake14460", + "testdatalake215", + "testazureblob14049", + "testdb16550", + "testtbl17111", + "testtvf14031", + "testproc12120", + "testview11785", + "testcred18003", + "testsecret12851", + "testsecretpwd15911" ], "CreateCatalog": [ - "1e926f7a-a3d4-44c7-b602-bf6f22b11082" + "917f8f2f-52cb-4c48-b2c5-bf51b13ed580" ], "RunJobToCompletion": [ - "testjob18083", - "testjob17273", - "testjob14895" - ], - "SecretAndCredentialCRUDTest": [ - "aa6535e2-acdc-44c5-89f3-8587da065cd8", - "d356ff5a-456e-4f17-ae73-1e73ee30b22c" + "testjob16405" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretCRUDTest.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretCRUDTest.json new file mode 100644 index 000000000000..10ad23eb2551 --- /dev/null +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.CatalogOperationTests/SecretCRUDTest.json @@ -0,0 +1,2237 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/register?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f219ff2-b4fc-4962-a396-4544c06f8ff9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\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": [ + "Mon, 27 Mar 2017 20:03:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "6353b5d8-f82f-4e98-bc9e-6358d93316a8" + ], + "x-ms-correlation-request-id": [ + "6353b5d8-f82f-4e98-bc9e-6358d93316a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200331Z:6353b5d8-f82f-4e98-bc9e-6358d93316a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3M/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d78355e-739e-48c7-aec0-a82f47d8aaba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\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": [ + "Mon, 27 Mar 2017 20:03:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "29018091-43c3-47aa-8cbc-7c6a9c559cca" + ], + "x-ms-correlation-request-id": [ + "29018091-43c3-47aa-8cbc-7c6a9c559cca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200331Z:29018091-43c3-47aa-8cbc-7c6a9c559cca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89f22597-e854-4dda-8d7d-ecb18c7d2008" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-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": [ + "Mon, 27 Mar 2017 20:03:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "42862fdf-70c1-42d0-a5c4-48da0f6d890c" + ], + "x-ms-correlation-request-id": [ + "42862fdf-70c1-42d0-a5c4-48da0f6d890c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200332Z:42862fdf-70c1-42d0-a5c4-48da0f6d890c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e88ff763-ef32-4f12-81ca-b5dc40c0e87f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-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": [ + "Mon, 27 Mar 2017 20:03:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "e1c5baef-3cf4-45fd-b303-d069c20daef8" + ], + "x-ms-correlation-request-id": [ + "e1c5baef-3cf4-45fd-b303-d069c20daef8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200332Z:e1c5baef-3cf4-45fd-b303-d069c20daef8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6aea84de-8424-43e8-a521-b0ac666ccc8c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\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": [ + "Mon, 27 Mar 2017 20:03:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "ca55f8b0-fa8d-4a5e-b0b8-e1af89a336a8" + ], + "x-ms-correlation-request-id": [ + "ca55f8b0-fa8d-4a5e-b0b8-e1af89a336a8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200333Z:ca55f8b0-fa8d-4a5e-b0b8-e1af89a336a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a5abd88-ca57-4272-b88d-7988d9cefdb9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\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": [ + "Mon, 27 Mar 2017 20:03:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "6aad8d70-a9f2-4c03-a51c-5702c38fb70b" + ], + "x-ms-correlation-request-id": [ + "6aad8d70-a9f2-4c03-a51c-5702c38fb70b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200333Z:6aad8d70-a9f2-4c03-a51c-5702c38fb70b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13027?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTMwMjc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4540f5f8-0a17-4880-96c8-5a2b246f5cd7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba13027' could not be found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "102" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "bbd17b16-51cc-49fc-9a2d-e3df51e792d7" + ], + "x-ms-correlation-request-id": [ + "bbd17b16-51cc-49fc-9a2d-e3df51e792d7" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200333Z:bbd17b16-51cc-49fc-9a2d-e3df51e792d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13027?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTMwMjc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cac3a835-b97c-4671-b628-c5d1ca381e37" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027\",\r\n \"name\": \"rgaba13027\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14975" + ], + "x-ms-request-id": [ + "3a74e332-4130-4f43-9b54-c18708f937b0" + ], + "x-ms-correlation-request-id": [ + "3a74e332-4130-4f43-9b54-c18708f937b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200334Z:3a74e332-4130-4f43-9b54-c18708f937b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13027?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTMwMjc/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "x-ms-client-request-id": [ + "683a92b5-9c96-4e77-94d8-0193c8804c8e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027\",\r\n \"name\": \"rgaba13027\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "174" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "0d1e8320-f13a-4649-873c-7c342f53680c" + ], + "x-ms-correlation-request-id": [ + "0d1e8320-f13a-4649-873c-7c342f53680c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200334Z:0d1e8320-f13a-4649-873c-7c342f53680c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MDk4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e440589-9a74-4205-b8fb-f47a49c823d8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake18098' under resource group 'rgaba13027' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "164" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4b27aa3b-fa20-49c5-88e6-8db0de38594b" + ], + "x-ms-correlation-request-id": [ + "4b27aa3b-fa20-49c5-88e6-8db0de38594b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200335Z:4b27aa3b-fa20-49c5-88e6-8db0de38594b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MDk4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18098.azuredatalakestore.net\",\r\n \"accountId\": \"209df4c7-cf03-4720-8fc1-bd32f0ca6b02\",\r\n \"creationTime\": \"2017-03-27T20:03:37.3575578Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:03:37.3575578Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098\",\r\n \"name\": \"testdatalake18098\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8c234cf0-dedb-4694-a9d1-cba6d9091bc4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14968" + ], + "x-ms-correlation-request-id": [ + "b230ad81-0121-4877-9e05-497ad744e5a4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200407Z:b230ad81-0121-4877-9e05-497ad744e5a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MDk4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "888c87ef-4e18-49f4-b6d7-fd962107f658" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18098.azuredatalakestore.net\",\r\n \"accountId\": \"209df4c7-cf03-4720-8fc1-bd32f0ca6b02\",\r\n \"creationTime\": \"2017-03-27T20:03:37.3575578Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:03:37.3575578Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098\",\r\n \"name\": \"testdatalake18098\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ff35e5cc-deeb-4058-a0b6-e0d6dce95f63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14974" + ], + "x-ms-correlation-request-id": [ + "6a9dbded-9ca1-421e-81fd-e2af60755a69" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200408Z:6a9dbded-9ca1-421e-81fd-e2af60755a69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MDk4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f61f6c38-2d12-4487-b873-f9e09dea89d8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18098.azuredatalakestore.net\",\r\n \"accountId\": \"209df4c7-cf03-4720-8fc1-bd32f0ca6b02\",\r\n \"creationTime\": \"2017-03-27T20:03:37.3575578Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:03:37.3575578Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098\",\r\n \"name\": \"testdatalake18098\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "04df4c29-78e1-45dc-802e-7a7684ef9bd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "d2d92020-0410-4b96-94ec-d90e043f355f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200443Z:d2d92020-0410-4b96-94ec-d90e043f355f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MDk4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "x-ms-client-request-id": [ + "5a9fce4e-16d1-4498-9dc6-e7e6297f4981" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"209df4c7-cf03-4720-8fc1-bd32f0ca6b02\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098\",\r\n \"name\": \"testdatalake18098\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "421" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:03:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake18098/operationresults/0?api-version=2016-11-01" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/209df4c7-cf03-4720-8fc1-bd32f0ca6b020?api-version=2016-11-01&expanded=true" + ], + "x-ms-request-id": [ + "326b4c5f-eacc-43e4-869f-cca44b8c7a22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-correlation-request-id": [ + "dc80b723-eb58-47c8-99bb-7604cb0977b4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200336Z:dc80b723-eb58-47c8-99bb-7604cb0977b4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/209df4c7-cf03-4720-8fc1-bd32f0ca6b020?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzIwOWRmNGM3LWNmMDMtNDcyMC04ZmMxLWJkMzJmMGNhNmIwMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "46aa21a1-d79c-4a40-96fa-15bb07cd36a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-correlation-request-id": [ + "dc297da0-cc11-4b8f-a9a8-c602f0917fa8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200407Z:dc297da0-cc11-4b8f-a9a8-c602f0917fa8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a122ca50-5f41-44ca-9a02-4ece8404cd06" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake28879' under resource group 'rgaba13027' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "164" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "6d731b82-3cc3-47a3-bda4-5cff9e32537c" + ], + "x-ms-correlation-request-id": [ + "6d731b82-3cc3-47a3-bda4-5cff9e32537c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200409Z:6d731b82-3cc3-47a3-bda4-5cff9e32537c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake28879.azuredatalakestore.net\",\r\n \"accountId\": \"8746dcb0-d9b5-4e6e-b8e9-67a6703aa6b2\",\r\n \"creationTime\": \"2017-03-27T20:04:10.1220661Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:04:10.1220661Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879\",\r\n \"name\": \"testdatalake28879\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "85e9964a-5b26-4610-9e0d-dbbc63e1c802" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14973" + ], + "x-ms-correlation-request-id": [ + "d6d5000f-9ccb-4c0d-ae82-a52d27d7cf94" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200441Z:d6d5000f-9ccb-4c0d-ae82-a52d27d7cf94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96e2d4a0-1641-4313-9b06-e4dc16038c0b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake28879.azuredatalakestore.net\",\r\n \"accountId\": \"8746dcb0-d9b5-4e6e-b8e9-67a6703aa6b2\",\r\n \"creationTime\": \"2017-03-27T20:04:10.1220661Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:04:10.1220661Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879\",\r\n \"name\": \"testdatalake28879\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8ebd94c5-ae4b-4511-a4c7-8e5ade723b48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14960" + ], + "x-ms-correlation-request-id": [ + "b06d1d51-5cd3-4514-9acc-4faa5800e0c5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200442Z:b06d1d51-5cd3-4514-9acc-4faa5800e0c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI4ODc5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "x-ms-client-request-id": [ + "f7ed0931-7262-42ca-ba56-975b3f372a96" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"8746dcb0-d9b5-4e6e-b8e9-67a6703aa6b2\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879\",\r\n \"name\": \"testdatalake28879\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "421" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13027/providers/Microsoft.DataLakeStore/accounts/testdatalake28879/operationresults/0?api-version=2016-11-01" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8746dcb0-d9b5-4e6e-b8e9-67a6703aa6b20?api-version=2016-11-01&expanded=true" + ], + "x-ms-request-id": [ + "f5498c26-8904-4e66-9fdf-bccd1b811fc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "1d1acc2c-8175-45d7-895e-1faf38ee39c4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200410Z:1d1acc2c-8175-45d7-895e-1faf38ee39c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8746dcb0-d9b5-4e6e-b8e9-67a6703aa6b20?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzg3NDZkY2IwLWQ5YjUtNGU2ZS1iOGU5LTY3YTY3MDNhYTZiMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "3ff95ba5-8d37-44bb-85fd-b67466bdfe37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14967" + ], + "x-ms-correlation-request-id": [ + "144e6b03-7d3d-49dc-a7c6-f132b488fe57" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200441Z:144e6b03-7d3d-49dc-a7c6-f132b488fe57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeAnalytics/accounts/testaba21244?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjEyNDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18098\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18098\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "290" + ], + "x-ms-client-request-id": [ + "1f7593b3-01ac-4bbe-b071-c5334e196fad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18098\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18098\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"408a1485-b009-4417-8f92-1421c8398651\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeAnalytics/accounts/testaba21244\",\r\n \"name\": \"testaba21244\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "573" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:04:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba13027/providers/Microsoft.DataLakeAnalytics/accounts/testaba21244/operationresults/0?api-version=2016-11-01" + ], + "Retry-After": [ + "10" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/408a1485-b009-4417-8f92-1421c83986510?api-version=2016-11-01&expanded=true" + ], + "x-ms-request-id": [ + "c04f33c4-1e17-45c9-8687-8868619df657" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "c6648017-137e-40fe-9a3a-6aea87f806a2" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200444Z:c6648017-137e-40fe-9a3a-6aea87f806a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/408a1485-b009-4417-8f92-1421c83986510?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy80MDhhMTQ4NS1iMDA5LTQ0MTctOGY5Mi0xNDIxYzgzOTg2NTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e2fcc958-a575-4f85-8ce2-644466e1ef8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14965" + ], + "x-ms-correlation-request-id": [ + "5aa02ba2-af4f-4634-a305-2002c16e431a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200515Z:5aa02ba2-af4f-4634-a305-2002c16e431a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeAnalytics/accounts/testaba21244?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjEyNDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18098\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18098\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba21244.azuredatalakeanalytics.net\",\r\n \"accountId\": \"408a1485-b009-4417-8f92-1421c8398651\",\r\n \"creationTime\": \"2017-03-27T20:04:46.875496Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:04:46.875496Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeAnalytics/accounts/testaba21244\",\r\n \"name\": \"testaba21244\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "34a349cb-12ce-4779-acd8-4a451b18da8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "08a83ba8-ea62-4d7a-b23e-027dc4588333" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200516Z:08a83ba8-ea62-4d7a-b23e-027dc4588333" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeAnalytics/accounts/testaba21244?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTMwMjcvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjEyNDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d15f8bb6-6e90-40f6-9bbf-524ae8ffe310" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18098\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18098\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba21244.azuredatalakeanalytics.net\",\r\n \"accountId\": \"408a1485-b009-4417-8f92-1421c8398651\",\r\n \"creationTime\": \"2017-03-27T20:04:46.875496Z\",\r\n \"lastModifiedTime\": \"2017-03-27T20:04:46.875496Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba13027/providers/Microsoft.DataLakeAnalytics/accounts/testaba21244\",\r\n \"name\": \"testaba21244\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "63f74d8d-92c9-4ba5-86ce-88ce385c5a5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "a3489cfe-a275-40d4-91ec-9f3591841e8b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T200516Z:a3489cfe-a275-40d4-91ec-9f3591841e8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Jobs/3a63c3ad-f81b-448f-9d66-5a37466303f8?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvM2E2M2MzYWQtZjgxYi00NDhmLTlkNjYtNWEzNzQ2NjMwM2Y4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"\\r\\nDROP DATABASE IF EXISTS testdb13068; CREATE DATABASE testdb13068; \\r\\n//Create Table\\r\\nCREATE TABLE testdb13068.dbo.testtbl14154\\r\\n(\\r\\n //Define schema of table\\r\\n UserId int, \\r\\n Start DateTime, \\r\\n Region string, \\r\\n Query string, \\r\\n Duration int, \\r\\n Urls string, \\r\\n ClickedUrls string,\\r\\n INDEX idx1 //Name of index\\r\\n CLUSTERED (Region ASC) //Column to cluster by\\r\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\r\\n);\\r\\n\\r\\nALTER TABLE testdb13068.dbo.testtbl14154 ADD IF NOT EXISTS PARTITION (1);\\r\\n\\r\\nDROP FUNCTION IF EXISTS testdb13068.dbo.testtvf18946;\\r\\n\\r\\n//create table weblogs on space-delimited website log data\\r\\nCREATE FUNCTION testdb13068.dbo.testtvf18946()\\r\\nRETURNS @result TABLE\\r\\n(\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string, \\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string, \\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string, \\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int, \\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n)\\r\\nAS\\r\\nBEGIN\\r\\n\\r\\n @result = EXTRACT\\r\\n s_date DateTime,\\r\\n s_time string,\\r\\n s_sitename string,\\r\\n cs_method string,\\r\\n cs_uristem string,\\r\\n cs_uriquery string,\\r\\n s_port int,\\r\\n cs_username string,\\r\\n c_ip string,\\r\\n cs_useragent string,\\r\\n cs_cookie string,\\r\\n cs_referer string,\\r\\n cs_host string,\\r\\n sc_status int,\\r\\n sc_substatus int,\\r\\n sc_win32status int,\\r\\n sc_bytes int,\\r\\n cs_bytes int,\\r\\n s_timetaken int\\r\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\r\\n USING Extractors.Text(delimiter:' ');\\r\\n\\r\\nRETURN;\\r\\nEND;\\r\\nCREATE VIEW testdb13068.dbo.testview18488 \\r\\nAS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\nAS \\r\\nT(a, b);\\r\\nCREATE PROCEDURE testdb13068.dbo.testproc18224()\\r\\nAS BEGIN\\r\\n CREATE VIEW testdb13068.dbo.testview18488 \\r\\n AS \\r\\n SELECT * FROM \\r\\n (\\r\\n VALUES(1,2),(2,4)\\r\\n ) \\r\\n AS \\r\\n T(a, b);\\r\\nEND;\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2531" + ], + "x-ms-client-request-id": [ + "b1d3d46b-217c-4be3-b92c-3205f02fe7ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"jobId\": \"3a63c3ad-f81b-448f-9d66-5a37466303f8\",\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:05:17.7371172-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:05:17.7527289-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:17 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "66220cf5-96bf-48c3-b40f-9f7d91c99f54" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Jobs/3a63c3ad-f81b-448f-9d66-5a37466303f8?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvM2E2M2MzYWQtZjgxYi00NDhmLTlkNjYtNWEzNzQ2NjMwM2Y4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e289b09-57e0-4cd7-ab4b-d0bbd1d3bf3f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"jobId\": \"3a63c3ad-f81b-448f-9d66-5a37466303f8\",\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:05:17.7371172-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:05:17.7527289-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:05:18.0808589-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13068; CREATE DATABASE testdb13068; \\n//Create Table\\nCREATE TABLE testdb13068.dbo.testtbl14154\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13068.dbo.testtbl14154 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13068.dbo.testtvf18946;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13068.dbo.testtvf18946()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13068.dbo.testview18488 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13068.dbo.testproc18224()\\nAS BEGIN\\n CREATE VIEW testdb13068.dbo.testview18488 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.2182195S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:17 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "ed7cf276-07e0-4a85-bc2c-48dab84b2897" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Jobs/3a63c3ad-f81b-448f-9d66-5a37466303f8?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvM2E2M2MzYWQtZjgxYi00NDhmLTlkNjYtNWEzNzQ2NjMwM2Y4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a599acf9-d146-408d-833e-921b7dde7403" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"jobId\": \"3a63c3ad-f81b-448f-9d66-5a37466303f8\",\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:05:17.7371172-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:05:17.7527289-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:05:18.0808589-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13068; CREATE DATABASE testdb13068; \\n//Create Table\\nCREATE TABLE testdb13068.dbo.testtbl14154\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13068.dbo.testtbl14154 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13068.dbo.testtvf18946;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13068.dbo.testtvf18946()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13068.dbo.testview18488 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13068.dbo.testproc18224()\\nAS BEGIN\\n CREATE VIEW testdb13068.dbo.testview18488 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.5949365S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:22 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "6cfca24b-a846-4194-bab7-749e9556de87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Jobs/3a63c3ad-f81b-448f-9d66-5a37466303f8?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvM2E2M2MzYWQtZjgxYi00NDhmLTlkNjYtNWEzNzQ2NjMwM2Y4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1240ddca-a4f0-4fdd-af8e-2efbcc7c9736" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"jobId\": \"3a63c3ad-f81b-448f-9d66-5a37466303f8\",\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:05:17.7371172-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:05:17.7527289-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:05:18.0808589-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13068; CREATE DATABASE testdb13068; \\n//Create Table\\nCREATE TABLE testdb13068.dbo.testtbl14154\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13068.dbo.testtbl14154 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13068.dbo.testtvf18946;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13068.dbo.testtvf18946()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13068.dbo.testview18488 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13068.dbo.testproc18224()\\nAS BEGIN\\n CREATE VIEW testdb13068.dbo.testview18488 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.7824895S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:28 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "cb463a63-0971-4698-912e-15697c19bbc1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Jobs/3a63c3ad-f81b-448f-9d66-5a37466303f8?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvM2E2M2MzYWQtZjgxYi00NDhmLTlkNjYtNWEzNzQ2NjMwM2Y4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c369ff6-ab4a-46ed-b7a8-9cd4733fef98" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"jobId\": \"3a63c3ad-f81b-448f-9d66-5a37466303f8\",\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:05:17.7371172-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:05:17.7527289-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:05:18.0808589-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0186218-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0342463-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:e15ff793-7854-443e-9455-f9401d599aa6\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0342463-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"e15ff793-7854-443e-9455-f9401d599aa6\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13068; CREATE DATABASE testdb13068; \\n//Create Table\\nCREATE TABLE testdb13068.dbo.testtbl14154\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13068.dbo.testtbl14154 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13068.dbo.testtvf18946;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13068.dbo.testtvf18946()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13068.dbo.testview18488 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13068.dbo.testproc18224()\\nAS BEGIN\\n CREATE VIEW testdb13068.dbo.testview18488 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/algebra.xml\",\r\n \"yarnApplicationId\": 90682,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.9377629S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156245S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:33 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "a6b99229-6bed-4902-b5c4-e840d2a27475" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Jobs/3a63c3ad-f81b-448f-9d66-5a37466303f8?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvM2E2M2MzYWQtZjgxYi00NDhmLTlkNjYtNWEzNzQ2NjMwM2Y4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06288669-18ae-438a-9bd9-c1b5eeadea3e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"jobId\": \"3a63c3ad-f81b-448f-9d66-5a37466303f8\",\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:05:17.7371172-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:05:17.7527289-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:05:18.0808589-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0186218-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0342463-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:e15ff793-7854-443e-9455-f9401d599aa6\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0342463-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"e15ff793-7854-443e-9455-f9401d599aa6\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13068; CREATE DATABASE testdb13068; \\n//Create Table\\nCREATE TABLE testdb13068.dbo.testtbl14154\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13068.dbo.testtbl14154 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13068.dbo.testtvf18946;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13068.dbo.testtvf18946()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13068.dbo.testview18488 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13068.dbo.testproc18224()\\nAS BEGIN\\n CREATE VIEW testdb13068.dbo.testview18488 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/algebra.xml\",\r\n \"yarnApplicationId\": 90682,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.9377629S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156245S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:39 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "1e2c62ba-d2ba-4550-934c-9b52b36952dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/Jobs/3a63c3ad-f81b-448f-9d66-5a37466303f8?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvM2E2M2MzYWQtZjgxYi00NDhmLTlkNjYtNWEzNzQ2NjMwM2Y4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1eb123e-2737-41ed-886a-6cf3d73342ea" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"jobId\": \"3a63c3ad-f81b-448f-9d66-5a37466303f8\",\r\n \"name\": \"testjob19980\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T13:05:17.7371172-07:00\",\r\n \"startTime\": \"2017-03-27T13:05:44.8001707-07:00\",\r\n \"endTime\": \"2017-03-27T13:05:44.8158162-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T13:05:17.7527289-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T13:05:18.0808589-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0186218-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0342463-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:e15ff793-7854-443e-9455-f9401d599aa6\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T13:05:31.0342463-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-03-27T13:05:44.8001707-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T13:05:44.8158162-07:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"e15ff793-7854-443e-9455-f9401d599aa6\",\r\n \"script\": \"\\nDROP DATABASE IF EXISTS testdb13068; CREATE DATABASE testdb13068; \\n//Create Table\\nCREATE TABLE testdb13068.dbo.testtbl14154\\n(\\n //Define schema of table\\n UserId int, \\n Start DateTime, \\n Region string, \\n Query string, \\n Duration int, \\n Urls string, \\n ClickedUrls string,\\n INDEX idx1 //Name of index\\n CLUSTERED (Region ASC) //Column to cluster by\\n PARTITIONED BY (UserId) HASH (Region) //Column to partition by\\n);\\n\\nALTER TABLE testdb13068.dbo.testtbl14154 ADD IF NOT EXISTS PARTITION (1);\\n\\nDROP FUNCTION IF EXISTS testdb13068.dbo.testtvf18946;\\n\\n//create table weblogs on space-delimited website log data\\nCREATE FUNCTION testdb13068.dbo.testtvf18946()\\nRETURNS @result TABLE\\n(\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string, \\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string, \\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string, \\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int, \\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n)\\nAS\\nBEGIN\\n\\n @result = EXTRACT\\n s_date DateTime,\\n s_time string,\\n s_sitename string,\\n cs_method string,\\n cs_uristem string,\\n cs_uriquery string,\\n s_port int,\\n cs_username string,\\n c_ip string,\\n cs_useragent string,\\n cs_cookie string,\\n cs_referer string,\\n cs_host string,\\n sc_status int,\\n sc_substatus int,\\n sc_win32status int,\\n sc_bytes int,\\n cs_bytes int,\\n s_timetaken int\\n FROM @\\\"/Samples/Data/WebLog.log\\\"\\n USING Extractors.Text(delimiter:' ');\\n\\nRETURN;\\nEND;\\nCREATE VIEW testdb13068.dbo.testview18488 \\nAS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\nAS \\nT(a, b);\\nCREATE PROCEDURE testdb13068.dbo.testproc18224()\\nAS BEGIN\\n CREATE VIEW testdb13068.dbo.testview18488 \\n AS \\n SELECT * FROM \\n (\\n VALUES(1,2),(2,4)\\n ) \\n AS \\n T(a, b);\\nEND;\",\r\n \"algebraFilePath\": \"adl://testdatalake18098.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/20/05/3a63c3ad-f81b-448f-9d66-5a37466303f8/algebra.xml\",\r\n \"yarnApplicationId\": 90682,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT12.9377629S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156245S\",\r\n \"totalRunningTime\": \"PT0.0156455S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:44 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "d6155809-9ded-4a58-961e-45327c2ea8f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets/testsecret14009?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cy90ZXN0c2VjcmV0MTQwMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"password\": \"testsecretpwd14555\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "92" + ], + "x-ms-client-request-id": [ + "bb17f3bc-b1c1-4708-9a71-5e783abf745d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:46 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "c8b1115e-12a8-4bf7-9503-12270f57a8d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets/testsecret14009?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cy90ZXN0c2VjcmV0MTQwMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"password\": \"testsecretpwd14555\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "92" + ], + "x-ms-client-request-id": [ + "38202c10-378d-4e6e-a442-1fc7996e603d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceAlreadyExists\",\r\n \"message\": \"The resource 'mafs://accounts/testdatalake18098/fs/catalog/database/8b5f7f82-600d-402a-a791-8bde67ba08a6/credential/testsecret14009' already exists. Trace: 6c31ce3f-de3c-4a32-a46e-adbbbb718b7b Time: 2017-03-27T13:05:47.8974362-07:00\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:47 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "6c31ce3f-de3c-4a32-a46e-adbbbb718b7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets/testsecret14009dup?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cy90ZXN0c2VjcmV0MTQwMDlkdXA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"password\": \"testsecretpwd14555\",\r\n \"uri\": \"https://adlasecrettest.contoso.com:443\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "92" + ], + "x-ms-client-request-id": [ + "2cff032f-2ec0-4411-b16d-db8c2a2cc2b4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:48 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "001ada49-d29b-40ab-b318-a111597a9382" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets/testsecret14009?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cy90ZXN0c2VjcmV0MTQwMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fca2be46-6c04-4522-a85e-978c6ba54fa7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"creationTime\": \"2017-03-27T20:05:46.6512964Z\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:48 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "627f69a2-adba-4799-92f1-5d00b5fdf064" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets/testsecret14009?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cy90ZXN0c2VjcmV0MTQwMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25f715e9-d363-4b85-95c5-62a3ba95f759" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret14009' does not exist. Trace: 6908ac01-000a-4330-9b1e-3f29d0aa2489 Time: 2017-03-27T13:05:49.6317955-07:00\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:48 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "6908ac01-000a-4330-9b1e-3f29d0aa2489" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets/testsecret14009?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cy90ZXN0c2VjcmV0MTQwMDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c566b09-6155-470a-bc4f-defaa7c50bb2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:48 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "265fb287-19e8-4da4-a9f3-6e5659f64428" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3041f580-d26a-4810-b258-019edeb60025" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:49 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "57e83b55-8c16-4504-b857-057e7136f721" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/catalog/usql/databases/testdb13068/secrets/testsecret14009dup?api-version=2016-11-01", + "EncodedRequestUri": "L2NhdGFsb2cvdXNxbC9kYXRhYmFzZXMvdGVzdGRiMTMwNjgvc2VjcmV0cy90ZXN0c2VjcmV0MTQwMDlkdXA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9441e119-56a5-4818-8d72-418971bc0b9e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsCatalogManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The resource 'testsecret14009dup' does not exist. Trace: b64dfc8a-7848-4635-afb5-180e147fb233 Time: 2017-03-27T13:05:50.6786826-07:00\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-store, no-cache, max-age=0, private" + ], + "Date": [ + "Mon, 27 Mar 2017 20:05:49 GMT" + ], + "Transfer-Encoding": [ + "chunked" + ], + "x-ms-request-id": [ + "b64dfc8a-7848-4635-afb5-180e147fb233" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 404 + } + ], + "Names": { + ".ctor": [ + "rgaba13027", + "testaba11429", + "testaba21244", + "teststorage1191", + "testdatalake18098", + "testdatalake28879", + "testazureblob11378", + "testdb13068", + "testtbl14154", + "testtvf18946", + "testproc18224", + "testview18488", + "testcred12886", + "testsecret14009", + "testsecretpwd14555" + ], + "CreateCatalog": [ + "3a63c3ad-f81b-448f-9d66-5a37466303f8" + ], + "RunJobToCompletion": [ + "testjob19980" + ] + }, + "Variables": { + "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/SubmitGetListCancelTest.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/SubmitGetListCancelTest.json index 508e9eb33c11..b1f4fa61926e 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/SubmitGetListCancelTest.json +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/SessionRecords/DataLakeAnalytics.Tests.JobOperationTests/SubmitGetListCancelTest.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "029ad4c0-b54e-4e3d-9c4e-85e581491330" + "266ce0b5-dd01-47f7-b3de-6632b804daa9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:55 GMT" + "Mon, 27 Mar 2017 19:51:53 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1187" ], "x-ms-request-id": [ - "7f77791d-c52a-4abc-b52d-cb6f4c34f15a" + "4c9fcb63-6dfb-4936-8964-6a24b4320884" ], "x-ms-correlation-request-id": [ - "7f77791d-c52a-4abc-b52d-cb6f4c34f15a" + "4c9fcb63-6dfb-4936-8964-6a24b4320884" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041156Z:7f77791d-c52a-4abc-b52d-cb6f4c34f15a" + "WESTUS2:20170327T195154Z:4c9fcb63-6dfb-4936-8964-6a24b4320884" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46d9b8a5-e989-4898-bf29-1f3be672be7c" + "1634d2a5-cbf4-4b55-a3f5-28812f20b603" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:55 GMT" + "Mon, 27 Mar 2017 19:51:53 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14973" ], "x-ms-request-id": [ - "72fd71b0-3280-493a-b9b9-00184f29a00d" + "3f098674-4929-4af9-bc43-0ef2de0f2e36" ], "x-ms-correlation-request-id": [ - "72fd71b0-3280-493a-b9b9-00184f29a00d" + "3f098674-4929-4af9-bc43-0ef2de0f2e36" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041156Z:72fd71b0-3280-493a-b9b9-00184f29a00d" + "WESTUS2:20170327T195154Z:3f098674-4929-4af9-bc43-0ef2de0f2e36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8fcd81a-687d-4dca-8eb6-c2aea09601ea" + "17a78fff-758b-43a6-90ed-f44f084942a1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:57 GMT" + "Mon, 27 Mar 2017 19:51:54 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1186" ], "x-ms-request-id": [ - "189225a6-68ca-4612-8e97-3e2a9b0ea71c" + "adeb3ad9-49a1-420c-aae0-cb92c78bf17d" ], "x-ms-correlation-request-id": [ - "189225a6-68ca-4612-8e97-3e2a9b0ea71c" + "adeb3ad9-49a1-420c-aae0-cb92c78bf17d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041157Z:189225a6-68ca-4612-8e97-3e2a9b0ea71c" + "WESTUS2:20170327T195155Z:adeb3ad9-49a1-420c-aae0-cb92c78bf17d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df06f305-1749-4984-8b8b-9e1c446be4ee" + "2c47c0c1-6ef5-492d-8a7d-0ec03021b29d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:57 GMT" + "Mon, 27 Mar 2017 19:51:54 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14972" ], "x-ms-request-id": [ - "6dfa2f25-11af-4b59-93d0-9b998d3c7284" + "e58d35a8-4198-46e1-9905-9af03ea2ed1f" ], "x-ms-correlation-request-id": [ - "6dfa2f25-11af-4b59-93d0-9b998d3c7284" + "e58d35a8-4198-46e1-9905-9af03ea2ed1f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041157Z:6dfa2f25-11af-4b59-93d0-9b998d3c7284" + "WESTUS2:20170327T195155Z:e58d35a8-4198-46e1-9905-9af03ea2ed1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,17 +229,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45e35fa6-e4eb-4b7f-a2aa-443f128a66d2" + "35d14249-b81d-4429-a4f4-ecce0cfbddff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +250,28 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:58 GMT" + "Mon, 27 Mar 2017 19:51:55 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1185" ], "x-ms-request-id": [ - "fb1a34e1-00c0-4d72-b870-5be3514b9e4f" + "fa213cf6-2c0b-49e2-8a09-68f21b4a09cf" ], "x-ms-correlation-request-id": [ - "fb1a34e1-00c0-4d72-b870-5be3514b9e4f" + "fa213cf6-2c0b-49e2-8a09-68f21b4a09cf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041158Z:fb1a34e1-00c0-4d72-b870-5be3514b9e4f" + "WESTUS2:20170327T195156Z:fa213cf6-2c0b-49e2-8a09-68f21b4a09cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,17 +286,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45638aeb-b1a4-43d6-9926-ddc46254b50c" + "b553b15f-1010-4b54-9fb6-7eb6add9773c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -304,7 +307,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:58 GMT" + "Mon, 27 Mar 2017 19:51:55 GMT" ], "Pragma": [ "no-cache" @@ -313,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14971" ], "x-ms-request-id": [ - "cef9448d-392a-4635-995f-cc54cd697d75" + "9b677e6f-89e1-4dea-9a59-236636e22a3d" ], "x-ms-correlation-request-id": [ - "cef9448d-392a-4635-995f-cc54cd697d75" + "9b677e6f-89e1-4dea-9a59-236636e22a3d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041158Z:cef9448d-392a-4635-995f-cc54cd697d75" + "WESTUS2:20170327T195156Z:9b677e6f-89e1-4dea-9a59-236636e22a3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,23 +334,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19289?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTkyODk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba16203?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTYyMDM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8bc0c3e8-255d-45d9-911a-39c82ddcfc94" + "91292f77-5a4f-42f3-8fad-af5be00fd003" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba19289' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'rgaba16203' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "102" @@ -362,7 +364,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:58 GMT" + "Mon, 27 Mar 2017 19:51:55 GMT" ], "Pragma": [ "no-cache" @@ -371,16 +373,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14970" ], "x-ms-request-id": [ - "3a766510-d60e-49bc-8c19-3998cb18e56e" + "3da2fbbd-321f-49b3-b78e-b29d58a44735" ], "x-ms-correlation-request-id": [ - "3a766510-d60e-49bc-8c19-3998cb18e56e" + "3da2fbbd-321f-49b3-b78e-b29d58a44735" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041158Z:3a766510-d60e-49bc-8c19-3998cb18e56e" + "WESTUS2:20170327T195156Z:3da2fbbd-321f-49b3-b78e-b29d58a44735" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -389,23 +391,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19289?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTkyODk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba16203?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTYyMDM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c379b1f8-cd9e-4619-a3b7-09617b1f20a9" + "cf6d9001-9518-41e9-a5a2-bb3578ce7a46" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289\",\r\n \"name\": \"rgaba19289\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203\",\r\n \"name\": \"rgaba16203\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -417,7 +418,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:58 GMT" + "Mon, 27 Mar 2017 19:51:56 GMT" ], "Pragma": [ "no-cache" @@ -426,16 +427,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14969" ], "x-ms-request-id": [ - "e269f6ff-8367-40cc-94dc-5ba88ac840a6" + "3176103a-ebda-4c3b-a8da-4d136ff395da" ], "x-ms-correlation-request-id": [ - "e269f6ff-8367-40cc-94dc-5ba88ac840a6" + "3176103a-ebda-4c3b-a8da-4d136ff395da" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041159Z:e269f6ff-8367-40cc-94dc-5ba88ac840a6" + "WESTUS2:20170327T195157Z:3176103a-ebda-4c3b-a8da-4d136ff395da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,8 +445,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19289?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTkyODk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba16203?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL3JnYWJhMTYyMDM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -456,17 +457,16 @@ "31" ], "x-ms-client-request-id": [ - "075277ad-7e7e-4d77-a9f3-e9dd6dda4924" + "787e6f10-2029-4922-9abb-5cbe61e81b38" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289\",\r\n \"name\": \"rgaba19289\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203\",\r\n \"name\": \"rgaba16203\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "174" @@ -481,22 +481,22 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:58 GMT" + "Mon, 27 Mar 2017 19:51:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1184" ], "x-ms-request-id": [ - "5dde2593-e8ce-431f-a8d0-8846c1dcfd57" + "be779b97-e074-4745-8536-b9c1b8ac7e36" ], "x-ms-correlation-request-id": [ - "5dde2593-e8ce-431f-a8d0-8846c1dcfd57" + "be779b97-e074-4745-8536-b9c1b8ac7e36" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041159Z:5dde2593-e8ce-431f-a8d0-8846c1dcfd57" + "WESTUS2:20170327T195157Z:be779b97-e074-4745-8536-b9c1b8ac7e36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,23 +505,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMTA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0f5c564-125d-42fd-99ab-3021e7b97498" + "81e62dc2-e7e9-4f9c-9ac0-ac0d03ab3cdb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake12107' under resource group 'rgaba19289' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake18307' under resource group 'rgaba16203' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -536,7 +535,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:11:59 GMT" + "Mon, 27 Mar 2017 19:51:58 GMT" ], "Pragma": [ "no-cache" @@ -545,13 +544,13 @@ "gateway" ], "x-ms-request-id": [ - "14ed97e7-4daa-4c4a-b6ca-f6d208a9b892" + "ce23a170-5759-4ba3-bcfd-a2b5c57286fd" ], "x-ms-correlation-request-id": [ - "14ed97e7-4daa-4c4a-b6ca-f6d208a9b892" + "ce23a170-5759-4ba3-bcfd-a2b5c57286fd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041159Z:14ed97e7-4daa-4c4a-b6ca-f6d208a9b892" + "WESTUS2:20170327T195158Z:ce23a170-5759-4ba3-bcfd-a2b5c57286fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,17 +559,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMTA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12107.azuredatalakestore.net\",\r\n \"accountId\": \"a729befa-d374-40c3-9d39-44bffa991eae\",\r\n \"creationTime\": \"2016-11-08T04:11:59.9135144Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:11:59.9135144Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107\",\r\n \"name\": \"testdatalake12107\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18307.azuredatalakestore.net\",\r\n \"accountId\": \"5d6e203a-a88e-4646-99fa-f3f24d84664d\",\r\n \"creationTime\": \"2017-03-27T19:51:59.525181Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:51:59.525181Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307\",\r\n \"name\": \"testdatalake18307\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -585,7 +583,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:12:31 GMT" + "Mon, 27 Mar 2017 19:52:30 GMT" ], "Pragma": [ "no-cache" @@ -597,7 +595,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2e6e0496-9397-4fe3-9b0a-4df87a78275f" + "0dd97c7d-0e2f-4081-8492-3eebef3aee47" ], "X-Content-Type-Options": [ "nosniff" @@ -609,13 +607,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14980" ], "x-ms-correlation-request-id": [ - "0650c4e9-1336-4c15-8ee2-5fccf336e149" + "3e2b8516-0aef-4f0f-96cf-28f5f7622f6e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041231Z:0650c4e9-1336-4c15-8ee2-5fccf336e149" + "WESTUS2:20170327T195230Z:3e2b8516-0aef-4f0f-96cf-28f5f7622f6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -624,23 +622,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMTA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbe8a043-8998-4fd9-b08a-de7acceb8ad2" + "69eda080-c21b-4c8b-88b6-cc9e94320d7c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12107.azuredatalakestore.net\",\r\n \"accountId\": \"a729befa-d374-40c3-9d39-44bffa991eae\",\r\n \"creationTime\": \"2016-11-08T04:11:59.9135144Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:11:59.9135144Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107\",\r\n \"name\": \"testdatalake12107\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18307.azuredatalakestore.net\",\r\n \"accountId\": \"5d6e203a-a88e-4646-99fa-f3f24d84664d\",\r\n \"creationTime\": \"2017-03-27T19:51:59.525181Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:51:59.525181Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307\",\r\n \"name\": \"testdatalake18307\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -655,7 +652,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:12:31 GMT" + "Mon, 27 Mar 2017 19:52:31 GMT" ], "Pragma": [ "no-cache" @@ -667,7 +664,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "36b7df4d-028a-4a92-afe4-b191d10154b4" + "29318cc9-050f-4f2a-b0e3-6ba757ef2a5e" ], "X-Content-Type-Options": [ "nosniff" @@ -679,13 +676,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14984" ], "x-ms-correlation-request-id": [ - "674b8152-da87-4a0d-99bb-4fa43fc1c0fa" + "0073e21a-67eb-4ae3-8a8a-663f86d3c979" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041232Z:674b8152-da87-4a0d-99bb-4fa43fc1c0fa" + "WESTUS2:20170327T195231Z:0073e21a-67eb-4ae3-8a8a-663f86d3c979" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -694,23 +691,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMTA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1f1a3d3-6e1e-49b5-af40-319f8d20e9cf" + "32a0fb5b-aca3-4ec5-9b81-83c0739bc199" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake12107.azuredatalakestore.net\",\r\n \"accountId\": \"a729befa-d374-40c3-9d39-44bffa991eae\",\r\n \"creationTime\": \"2016-11-08T04:11:59.9135144Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:11:59.9135144Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107\",\r\n \"name\": \"testdatalake12107\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake18307.azuredatalakestore.net\",\r\n \"accountId\": \"5d6e203a-a88e-4646-99fa-f3f24d84664d\",\r\n \"creationTime\": \"2017-03-27T19:51:59.525181Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:51:59.525181Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307\",\r\n \"name\": \"testdatalake18307\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -725,7 +721,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:13:05 GMT" + "Mon, 27 Mar 2017 19:53:05 GMT" ], "Pragma": [ "no-cache" @@ -737,7 +733,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9cd7b9f3-ec5e-4909-bf79-5e84c019bf83" + "d1bdf60e-3bcc-4ab7-9874-fef2a254e4f9" ], "X-Content-Type-Options": [ "nosniff" @@ -749,13 +745,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14983" ], "x-ms-correlation-request-id": [ - "52c57127-c69a-48d1-b16f-cf7cd98347c6" + "3aff9cd2-1a19-417a-a1f3-99ea2746bc40" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041305Z:52c57127-c69a-48d1-b16f-cf7cd98347c6" + "WESTUS2:20170327T195306Z:3aff9cd2-1a19-417a-a1f3-99ea2746bc40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -764,8 +760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTEyMTA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTE4MzA3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -776,17 +772,16 @@ "31" ], "x-ms-client-request-id": [ - "13038e0d-08fd-4011-8ca1-9ef2cde5ce26" + "1a28dafe-f4ec-4458-98c7-4eff598a16db" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"a729befa-d374-40c3-9d39-44bffa991eae\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107\",\r\n \"name\": \"testdatalake12107\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"5d6e203a-a88e-4646-99fa-f3f24d84664d\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307\",\r\n \"name\": \"testdatalake18307\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -804,13 +799,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:12:00 GMT" + "Mon, 27 Mar 2017 19:51:59 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake12107/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake18307/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -819,10 +814,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a729befa-d374-40c3-9d39-44bffa991eae0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5d6e203a-a88e-4646-99fa-f3f24d84664d0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "8d884a0f-53c3-47ba-9d96-57df1cc63793" + "1b8c9577-fe3d-4b04-a9ae-cb5cd33c4dc9" ], "X-Content-Type-Options": [ "nosniff" @@ -834,13 +829,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1196" ], "x-ms-correlation-request-id": [ - "95e58855-42da-48e8-b792-02f1b9753562" + "a5980c2c-1d7f-4bb3-b2c0-0a0d13041aec" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041200Z:95e58855-42da-48e8-b792-02f1b9753562" + "WESTUS2:20170327T195159Z:a5980c2c-1d7f-4bb3-b2c0-0a0d13041aec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -849,14 +844,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a729befa-d374-40c3-9d39-44bffa991eae0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2E3MjliZWZhLWQzNzQtNDBjMy05ZDM5LTQ0YmZmYTk5MWVhZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5d6e203a-a88e-4646-99fa-f3f24d84664d0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzVkNmUyMDNhLWE4OGUtNDY0Ni05OWZhLWYzZjI0ZDg0NjY0ZDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -874,7 +868,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:12:30 GMT" + "Mon, 27 Mar 2017 19:52:30 GMT" ], "Pragma": [ "no-cache" @@ -886,7 +880,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "feb46185-101c-43f2-bb38-4f5d742099d8" + "1ebcffdb-ab1c-4628-9464-694603431cad" ], "X-Content-Type-Options": [ "nosniff" @@ -898,13 +892,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14982" ], "x-ms-correlation-request-id": [ - "ec193abe-975b-400c-8479-ecef5a7ce610" + "ef775664-159f-4f16-ac7c-2c26bf833a53" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041231Z:ec193abe-975b-400c-8479-ecef5a7ce610" + "WESTUS2:20170327T195230Z:ef775664-159f-4f16-ac7c-2c26bf833a53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -913,23 +907,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0Mzk5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI3NDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b108141-e0e8-4669-95c4-d896e6e62047" + "9aa892e7-7660-4906-80ce-7e276df3a767" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake24399' under resource group 'rgaba19289' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake27438' under resource group 'rgaba16203' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "164" @@ -944,7 +937,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 04:12:32 GMT" + "Mon, 27 Mar 2017 19:52:30 GMT" ], "Pragma": [ "no-cache" @@ -953,13 +946,13 @@ "gateway" ], "x-ms-request-id": [ - "3cca7f3d-ebd8-4e30-9ccd-7676db58ad2e" + "45ff69c3-1740-40e0-9c60-171b4c545bdf" ], "x-ms-correlation-request-id": [ - "3cca7f3d-ebd8-4e30-9ccd-7676db58ad2e" + "45ff69c3-1740-40e0-9c60-171b4c545bdf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041232Z:3cca7f3d-ebd8-4e30-9ccd-7676db58ad2e" + "WESTUS2:20170327T195231Z:45ff69c3-1740-40e0-9c60-171b4c545bdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -968,17 +961,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0Mzk5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI3NDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake24399.azuredatalakestore.net\",\r\n \"accountId\": \"34d3d24a-dac3-493b-8f3d-858e522c3a01\",\r\n \"creationTime\": \"2016-11-08T04:12:33.7206402Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:12:33.7206402Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399\",\r\n \"name\": \"testdatalake24399\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake27438.azuredatalakestore.net\",\r\n \"accountId\": \"7faddefa-32c1-43c3-b338-b47f88ce97d3\",\r\n \"creationTime\": \"2017-03-27T19:52:33.5927375Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:52:33.5927375Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438\",\r\n \"name\": \"testdatalake27438\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -993,7 +985,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:13:04 GMT" + "Mon, 27 Mar 2017 19:53:04 GMT" ], "Pragma": [ "no-cache" @@ -1005,7 +997,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7c5c7b65-8401-4036-8126-d497868cb5b3" + "50681371-d99d-4332-8242-d5a56da2eeab" ], "X-Content-Type-Options": [ "nosniff" @@ -1017,13 +1009,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14981" ], "x-ms-correlation-request-id": [ - "4928ec71-a080-4569-9870-ad2fe0f738ed" + "e7e969f3-fcf1-47c5-8cde-318cc3036da4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041304Z:4928ec71-a080-4569-9870-ad2fe0f738ed" + "WESTUS2:20170327T195304Z:e7e969f3-fcf1-47c5-8cde-318cc3036da4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,23 +1024,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0Mzk5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI3NDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69759e65-90a2-4b7e-b8a8-7e8d1076e921" + "cde4ceec-df51-4522-8f76-1ba33c6a3c92" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionConfig\": {},\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake24399.azuredatalakestore.net\",\r\n \"accountId\": \"34d3d24a-dac3-493b-8f3d-858e522c3a01\",\r\n \"creationTime\": \"2016-11-08T04:12:33.7206402Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:12:33.7206402Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399\",\r\n \"name\": \"testdatalake24399\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake27438.azuredatalakestore.net\",\r\n \"accountId\": \"7faddefa-32c1-43c3-b338-b47f88ce97d3\",\r\n \"creationTime\": \"2017-03-27T19:52:33.5927375Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:52:33.5927375Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438\",\r\n \"name\": \"testdatalake27438\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1063,7 +1054,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:13:05 GMT" + "Mon, 27 Mar 2017 19:53:04 GMT" ], "Pragma": [ "no-cache" @@ -1075,7 +1066,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "76607f89-e5bc-47b1-9939-e2bbac40b7f9" + "0b4e8c15-921e-4a73-99ec-0b2f56bf465e" ], "X-Content-Type-Options": [ "nosniff" @@ -1087,13 +1078,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14979" ], "x-ms-correlation-request-id": [ - "4f6e3c19-40b8-4c9f-a875-200733b0bd47" + "a3a1e22f-5818-44f8-93be-30a3364f57e5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041305Z:4f6e3c19-40b8-4c9f-a875-200733b0bd47" + "WESTUS2:20170327T195305Z:a3a1e22f-5818-44f8-93be-30a3364f57e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1102,8 +1093,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI0Mzk5P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZVN0b3JlL2FjY291bnRzL3Rlc3RkYXRhbGFrZTI3NDM4P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1114,17 +1105,16 @@ "31" ], "x-ms-client-request-id": [ - "8e2db15c-5a3c-42f8-9789-cc6718c2e25b" + "2d63968c-435c-4416-845b-c2df715189b1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"34d3d24a-dac3-493b-8f3d-858e522c3a01\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399\",\r\n \"name\": \"testdatalake24399\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"7faddefa-32c1-43c3-b338-b47f88ce97d3\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438\",\r\n \"name\": \"testdatalake27438\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "421" @@ -1142,13 +1132,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:12:33 GMT" + "Mon, 27 Mar 2017 19:52:32 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19289/providers/Microsoft.DataLakeStore/accounts/testdatalake24399/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba16203/providers/Microsoft.DataLakeStore/accounts/testdatalake27438/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1157,10 +1147,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/34d3d24a-dac3-493b-8f3d-858e522c3a010?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7faddefa-32c1-43c3-b338-b47f88ce97d30?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "445d7847-811a-4c09-9f41-cb8985f43619" + "9cfcf927-2b84-4c9e-8feb-9a6325c0c439" ], "X-Content-Type-Options": [ "nosniff" @@ -1172,13 +1162,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1188" ], "x-ms-correlation-request-id": [ - "02dc192d-e560-454b-ab6c-800a3b088655" + "8f8ba41e-7e6a-4365-b9ae-a6469e8cb9eb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041233Z:02dc192d-e560-454b-ab6c-800a3b088655" + "WESTUS2:20170327T195233Z:8f8ba41e-7e6a-4365-b9ae-a6469e8cb9eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1187,14 +1177,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/34d3d24a-dac3-493b-8f3d-858e522c3a010?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzM0ZDNkMjRhLWRhYzMtNDkzYi04ZjNkLTg1OGU1MjJjM2EwMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/7faddefa-32c1-43c3-b338-b47f88ce97d30?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzdmYWRkZWZhLTMyYzEtNDNjMy1iMzM4LWI0N2Y4OGNlOTdkMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/0.12.8-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1212,7 +1201,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:13:04 GMT" + "Mon, 27 Mar 2017 19:53:04 GMT" ], "Pragma": [ "no-cache" @@ -1224,7 +1213,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "32c11088-7510-4f4a-8c3f-cb5325a0ba23" + "b5ae03a6-daa3-4994-83ce-2c2d6f61f583" ], "X-Content-Type-Options": [ "nosniff" @@ -1236,13 +1225,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14987" ], "x-ms-correlation-request-id": [ - "070f56e5-a7b1-4df4-adc9-7e44e25fbb89" + "7359612d-f2a4-43c9-a079-2bac7c4ac064" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161108T041304Z:070f56e5-a7b1-4df4-adc9-7e44e25fbb89" + "WESTUS2:20170327T195304Z:7359612d-f2a4-43c9-a079-2bac7c4ac064" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1251,10 +1240,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeAnalytics/accounts/testaba21528?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjE1Mjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeAnalytics/accounts/testaba22110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjIxMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12107\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"name\": \"testdatalake12107\",\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18307\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18307\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1263,17 +1252,16 @@ "290" ], "x-ms-client-request-id": [ - "cfbf31d5-a3dc-43ab-83c0-4db29bada22e" + "01048ac9-c340-44d5-9e79-931b4401a3c3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12107\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12107\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"0eeecbcd-8a7f-44ba-8a01-b1f4fda9b883\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeAnalytics/accounts/testaba21528\",\r\n \"name\": \"testaba21528\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18307\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18307\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"12ac0e35-730c-46bd-80c3-ea98c6d216d5\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeAnalytics/accounts/testaba22110\",\r\n \"name\": \"testaba22110\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "573" @@ -1291,13 +1279,13 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:13:07 GMT" + "Mon, 27 Mar 2017 19:53:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba19289/providers/Microsoft.DataLakeAnalytics/accounts/testaba21528/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/rgaba16203/providers/Microsoft.DataLakeAnalytics/accounts/testaba22110/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1306,10 +1294,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/0eeecbcd-8a7f-44ba-8a01-b1f4fda9b8830?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/12ac0e35-730c-46bd-80c3-ea98c6d216d50?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "4a5c0941-277c-4095-8d2c-dce813fac012" + "e12e3224-908f-4a04-9dbe-3576c4085d0e" ], "X-Content-Type-Options": [ "nosniff" @@ -1321,13 +1309,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1187" ], "x-ms-correlation-request-id": [ - "68aea938-affc-4ca2-941d-29d35f8cc87e" + "c785e1d7-9545-47c6-87fc-e966a971983d" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T041307Z:68aea938-affc-4ca2-941d-29d35f8cc87e" + "WESTUS2:20170327T195307Z:c785e1d7-9545-47c6-87fc-e966a971983d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1336,78 +1324,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/0eeecbcd-8a7f-44ba-8a01-b1f4fda9b8830?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wZWVlY2JjZC04YTdmLTQ0YmEtOGEwMS1iMWY0ZmRhOWI4ODMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Tue, 08 Nov 2016 04:13:37 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "f35e0cd2-c940-4979-853c-3059adabca5f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-correlation-request-id": [ - "001be4b2-1465-4a21-a8af-20f3858149d7" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20161108T041338Z:001be4b2-1465-4a21-a8af-20f3858149d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/0eeecbcd-8a7f-44ba-8a01-b1f4fda9b8830?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8wZWVlY2JjZC04YTdmLTQ0YmEtOGEwMS1iMWY0ZmRhOWI4ODMwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeAnalytics/locations/EastUS2/operationResults/12ac0e35-730c-46bd-80c3-ea98c6d216d50?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VBbmFseXRpY3MvbG9jYXRpb25zL0Vhc3RVUzIvb3BlcmF0aW9uUmVzdWx0cy8xMmFjMGUzNS03MzBjLTQ2YmQtODBjMy1lYTk4YzZkMjE2ZDUwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDEmZXhwYW5kZWQ9dHJ1ZQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1425,7 +1348,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:14:08 GMT" + "Mon, 27 Mar 2017 19:53:37 GMT" ], "Pragma": [ "no-cache" @@ -1437,7 +1360,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "57002a2d-1ffd-48ae-b399-cee89ab7eee4" + "c9499822-7251-467e-aa4f-d380b6fdda8d" ], "X-Content-Type-Options": [ "nosniff" @@ -1449,13 +1372,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14978" ], "x-ms-correlation-request-id": [ - "1a732f67-dd4b-4e83-9f49-8c4832467688" + "9c4c0b47-8507-4c82-9e45-26e528c545c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T041409Z:1a732f67-dd4b-4e83-9f49-8c4832467688" + "WESTUS2:20170327T195337Z:9c4c0b47-8507-4c82-9e45-26e528c545c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1464,17 +1387,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeAnalytics/accounts/testaba21528?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjE1Mjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeAnalytics/accounts/testaba22110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjIxMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12107\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12107\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 120,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba21528.azuredatalakeanalytics.net\",\r\n \"accountId\": \"0eeecbcd-8a7f-44ba-8a01-b1f4fda9b883\",\r\n \"creationTime\": \"2016-11-08T04:13:09.2007488Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:13:09.2007488Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeAnalytics/accounts/testaba21528\",\r\n \"name\": \"testaba21528\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18307\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18307\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22110.azuredatalakeanalytics.net\",\r\n \"accountId\": \"12ac0e35-730c-46bd-80c3-ea98c6d216d5\",\r\n \"creationTime\": \"2017-03-27T19:53:11.0931491Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:53:11.0931491Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeAnalytics/accounts/testaba22110\",\r\n \"name\": \"testaba22110\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1489,7 +1411,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:14:10 GMT" + "Mon, 27 Mar 2017 19:53:37 GMT" ], "Pragma": [ "no-cache" @@ -1501,7 +1423,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bff4ec6e-dcf0-4901-bed5-94c060bee782" + "02d6afa5-00c7-4380-a043-44e0f7155ce5" ], "X-Content-Type-Options": [ "nosniff" @@ -1513,13 +1435,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14982" ], "x-ms-correlation-request-id": [ - "ee377b7b-ecae-40b9-b595-ab72c0197be6" + "b071d097-607b-48a4-b965-310c1ec7d85f" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T041410Z:ee377b7b-ecae-40b9-b595-ab72c0197be6" + "WESTUS2:20170327T195338Z:b071d097-607b-48a4-b965-310c1ec7d85f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1528,23 +1450,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeAnalytics/accounts/testaba21528?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTkyODkvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjE1Mjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeAnalytics/accounts/testaba22110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL3JnYWJhMTYyMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhTGFrZUFuYWx5dGljcy9hY2NvdW50cy90ZXN0YWJhMjIxMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83acf470-c0f1-408a-8abf-76d552ca79e6" + "ad8c8d1a-9679-466f-947e-76331b7d27d8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStoreAccount\": \"testdatalake12107\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake12107\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 120,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 120,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba21528.azuredatalakeanalytics.net\",\r\n \"accountId\": \"0eeecbcd-8a7f-44ba-8a01-b1f4fda9b883\",\r\n \"creationTime\": \"2016-11-08T04:13:09.2007488Z\",\r\n \"lastModifiedTime\": \"2016-11-08T04:13:09.2007488Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba19289/providers/Microsoft.DataLakeAnalytics/accounts/testaba21528\",\r\n \"name\": \"testaba21528\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"defaultDataLakeStoreAccount\": \"testdatalake18307\",\r\n \"dataLakeStoreAccounts\": [\r\n {\r\n \"properties\": {\r\n \"suffix\": \"azuredatalakestore.net\"\r\n },\r\n \"name\": \"testdatalake18307\"\r\n }\r\n ],\r\n \"storageAccounts\": [],\r\n \"maxDegreeOfParallelism\": 250,\r\n \"maxJobCount\": 10,\r\n \"systemMaxDegreeOfParallelism\": 250,\r\n \"systemMaxJobCount\": 20,\r\n \"queryStoreRetention\": 30,\r\n \"hiveMetastores\": [],\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testaba22110.azuredatalakeanalytics.net\",\r\n \"accountId\": \"12ac0e35-730c-46bd-80c3-ea98c6d216d5\",\r\n \"creationTime\": \"2017-03-27T19:53:11.0931491Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:53:11.0931491Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/rgaba16203/providers/Microsoft.DataLakeAnalytics/accounts/testaba22110\",\r\n \"name\": \"testaba22110\",\r\n \"type\": \"Microsoft.DataLakeAnalytics/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1559,7 +1480,7 @@ "close" ], "Date": [ - "Tue, 08 Nov 2016 04:14:09 GMT" + "Mon, 27 Mar 2017 19:53:38 GMT" ], "Pragma": [ "no-cache" @@ -1571,7 +1492,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2bd91e46-e487-4193-940f-8d84f9d43a2d" + "d6eb79e6-3dbb-493a-910b-488ca97ae4e7" ], "X-Content-Type-Options": [ "nosniff" @@ -1583,13 +1504,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14978" ], "x-ms-correlation-request-id": [ - "48695be5-2fe3-46d5-9c3d-e7f59ece992c" + "e2552897-3bd6-45f2-a1aa-c7d161d0c9b1" ], "x-ms-routing-request-id": [ - "WESTUS2:20161108T041410Z:48695be5-2fe3-46d5-9c3d-e7f59ece992c" + "WESTUS2:20170327T195338Z:e2552897-3bd6-45f2-a1aa-c7d161d0c9b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1598,23 +1519,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/294a6ffb-de4e-4c91-9f0b-c80b7c499817?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMjk0YTZmZmItZGU0ZS00YzkxLTlmMGItYzgwYjdjNDk5ODE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvZWM0MjQyZWYtNjlmNy00MGJkLWI1ZDEtYzY2NjJiODlkYmRiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "573b5e35-991e-425c-941f-ad534499e1b2" + "97e78d4e-dcbb-47d7-a9f5-ae58435bd3f9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"JobNotFound\",\r\n \"message\": \"Cannot find the job with id 294a6ffb-de4e-4c91-9f0b-c80b7c499817. Trace: cab54f0b-4f9f-42c2-87b7-995f5bb272b7 Time: 2016-11-07T20:16:12.5918233-08:00\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"JobNotFound\",\r\n \"message\": \"Cannot find the job with id ec4242ef-69f7-40bd-b5d1-c6662b89dbdb. Trace: ed3da3f0-739a-40ed-a113-3be22e0f46e0 Time: 2017-03-27T12:53:41.0858385-07:00\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1626,13 +1546,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:11 GMT" + "Mon, 27 Mar 2017 19:53:40 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "cab54f0b-4f9f-42c2-87b7-995f5bb272b7" + "ed3da3f0-739a-40ed-a113-3be22e0f46e0" ], "X-Content-Type-Options": [ "nosniff" @@ -1644,23 +1564,22 @@ "StatusCode": 404 }, { - "RequestUri": "/Jobs/294a6ffb-de4e-4c91-9f0b-c80b7c499817?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMjk0YTZmZmItZGU0ZS00YzkxLTlmMGItYzgwYjdjNDk5ODE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvZWM0MjQyZWYtNjlmNy00MGJkLWI1ZDEtYzY2NjJiODlkYmRiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58ebc168-0f7c-47f0-a395-6477e478e9b9" + "391d814a-8592-40ec-9094-51f263092901" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"294a6ffb-de4e-4c91-9f0b-c80b7c499817\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:12.7326732-08:00\",\r\n \"endTime\": \"2016-11-07T20:16:13.2795709-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by adlsvc01@benwgoldoutlook.onmicrosoft.com.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:12.7326732-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.107694-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.2795709-08:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/294a6ffb-de4e-4c91-9f0b-c80b7c499817/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/294a6ffb-de4e-4c91-9f0b-c80b7c499817/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/294a6ffb-de4e-4c91-9f0b-c80b7c499817/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT0.1718769S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"ec4242ef-69f7-40bd-b5d1-c6662b89dbdb\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:41.2401944-07:00\",\r\n \"endTime\": \"2017-03-27T12:53:41.7870968-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by adlsvc01app@SPI.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:41.2401944-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:41.5683181-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T12:53:41.7870968-07:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT0.2187787S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1672,13 +1591,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:13 GMT" + "Mon, 27 Mar 2017 19:53:41 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "61af5d5d-38e4-47ef-a248-f184b2b6b3f7" + "c273bb48-fa1c-4f32-acbb-2db532436533" ], "X-Content-Type-Options": [ "nosniff" @@ -1690,23 +1609,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/294a6ffb-de4e-4c91-9f0b-c80b7c499817?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMjk0YTZmZmItZGU0ZS00YzkxLTlmMGItYzgwYjdjNDk5ODE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvZWM0MjQyZWYtNjlmNy00MGJkLWI1ZDEtYzY2NjJiODlkYmRiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43fc97be-5842-4cec-9eb1-9d9c7ab343c6" + "a4a87f35-eb72-45a9-943c-1eb99315d29c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"294a6ffb-de4e-4c91-9f0b-c80b7c499817\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:12.7326732-08:00\",\r\n \"endTime\": \"2016-11-07T20:16:13.2795709-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by adlsvc01@benwgoldoutlook.onmicrosoft.com.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:12.7326732-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.107694-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.2795709-08:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/294a6ffb-de4e-4c91-9f0b-c80b7c499817/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/294a6ffb-de4e-4c91-9f0b-c80b7c499817/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/294a6ffb-de4e-4c91-9f0b-c80b7c499817/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT0.1718769S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"ec4242ef-69f7-40bd-b5d1-c6662b89dbdb\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:41.2401944-07:00\",\r\n \"endTime\": \"2017-03-27T12:53:41.7870968-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\",\r\n \"errorMessage\": [\r\n {\r\n \"errorId\": \"I_USER_CJS_CANCELEDBYUSER\",\r\n \"name\": \"CANCELED_BY_USER\",\r\n \"severity\": \"Info\",\r\n \"source\": \"User\",\r\n \"component\": \"CJS\",\r\n \"message\": \"Job was cancelled.\",\r\n \"details\": \"\",\r\n \"description\": \"Job was cancelled by adlsvc01app@SPI.\",\r\n \"resolution\": \"\",\r\n \"helpLink\": \"\",\r\n \"innerError\": null\r\n }\r\n ],\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:41.2401944-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:41.5683181-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T12:53:41.7870968-07:00\",\r\n \"details\": \"result:CanceledByUser\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"UserError\",\r\n \"totalCompilationTime\": \"PT0.2187787S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1718,13 +1636,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:13 GMT" + "Mon, 27 Mar 2017 19:53:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "4611d4e2-8b0d-405d-ae85-7a94d50574dd" + "859b51bd-bbac-430f-8708-f9bf6bc2a614" ], "X-Content-Type-Options": [ "nosniff" @@ -1736,8 +1654,8 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/294a6ffb-de4e-4c91-9f0b-c80b7c499817?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMjk0YTZmZmItZGU0ZS00YzkxLTlmMGItYzgwYjdjNDk5ODE3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvZWM0MjQyZWYtNjlmNy00MGJkLWI1ZDEtYzY2NjJiODlkYmRiP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\"\r\n }\r\n}", "RequestHeaders": { @@ -1748,17 +1666,16 @@ "218" ], "x-ms-client-request-id": [ - "89a6c7f5-4626-4306-ace9-a94d09966402" + "54026ffd-09bf-4df4-9655-feaf29f8c582" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"294a6ffb-de4e-4c91-9f0b-c80b7c499817\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:12.7326732-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:12.7326732-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/294a6ffb-de4e-4c91-9f0b-c80b7c499817/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"ec4242ef-69f7-40bd-b5d1-c6662b89dbdb\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:41.2401944-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:41.2401944-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1770,13 +1687,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:12 GMT" + "Mon, 27 Mar 2017 19:53:41 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "2a686926-80c9-4092-8dc5-af37405b9bd8" + "dd35ebf1-00e0-4910-869a-b3a85b5749ca" ], "X-Content-Type-Options": [ "nosniff" @@ -1788,20 +1705,19 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/294a6ffb-de4e-4c91-9f0b-c80b7c499817/CancelJob?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMjk0YTZmZmItZGU0ZS00YzkxLTlmMGItYzgwYjdjNDk5ODE3L0NhbmNlbEpvYj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/Jobs/ec4242ef-69f7-40bd-b5d1-c6662b89dbdb/CancelJob?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvZWM0MjQyZWYtNjlmNy00MGJkLWI1ZDEtYzY2NjJiODlkYmRiL0NhbmNlbEpvYj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38ad6c43-e26d-4368-880a-ad1b06990636" + "6ffea376-e674-47f2-9e57-ec8abc2ce18e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1813,13 +1729,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:12 GMT" + "Mon, 27 Mar 2017 19:53:41 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "c33b9a61-351c-4b06-993d-f60069c4c30a" + "e4ae0d73-b8c9-401e-8452-42cb74f8c315" ], "X-Content-Type-Options": [ "nosniff" @@ -1831,8 +1747,8 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"degreeOfParallelism\": 2,\r\n \"properties\": {\r\n \"type\": \"USql\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\"\r\n }\r\n}", "RequestHeaders": { @@ -1843,63 +1759,16 @@ "218" ], "x-ms-client-request-id": [ - "c1d89d9d-ee56-472e-88f2-ead0e0bb2989" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" - ] - }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-store, no-cache, max-age=0, private" - ], - "Date": [ - "Tue, 08 Nov 2016 04:16:13 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], - "x-ms-request-id": [ - "f80f5178-5307-4df8-b937-2bc64279a840" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3757f18a-e639-4b12-ac99-6b03e99ff7dd" + "ea4aba3d-02be-475f-83f6-4327d05717ac" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.1369778S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00Z\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1911,13 +1780,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:13 GMT" + "Mon, 27 Mar 2017 19:53:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "66cd9ce5-4553-473f-8838-792345bc9422" + "867d4838-0776-4bf7-9a0f-df3c1ad981fe" ], "X-Content-Type-Options": [ "nosniff" @@ -1929,23 +1798,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c387ab5-a4b8-431b-ab91-7641790b7221" + "d3f0f350-2f7f-48fe-b75d-5585508df369" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.3102357S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:43.05274-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0.1268492S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1957,13 +1825,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:18 GMT" + "Mon, 27 Mar 2017 19:53:42 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "948b2c02-7882-476c-a615-7a99103fc22a" + "03454f92-10f5-4d04-bce6-83107f40fa16" ], "X-Content-Type-Options": [ "nosniff" @@ -1975,23 +1843,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d69625c4-da9c-400f-8183-49c1e00a7319" + "12e30c12-4f20-4afb-abfe-86a50897ef47" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.4687571S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:43.05274-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT5.3457193S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2003,13 +1870,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:24 GMT" + "Mon, 27 Mar 2017 19:53:47 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "870bd8c7-1b15-4ea5-8aa0-5a900c092032" + "24d9c79f-f591-4347-b2fb-991629755d2e" ], "X-Content-Type-Options": [ "nosniff" @@ -2021,23 +1888,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13d66d70-f683-47b4-bb20-9c483c01d9c3" + "876598d9-c407-4a14-9ca6-3b9a1101113b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.8890794-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:cc079c6c-d389-427a-a5d8-b86b77fbbcad\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"cc079c6c-d389-427a-a5d8-b86b77fbbcad\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"yarnApplicationId\": 57768,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407511S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156054S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"state\": \"Compiling\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:43.05274-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"default\",\r\n \"rootProcessNodeId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT10.5176605S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2049,13 +1915,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:29 GMT" + "Mon, 27 Mar 2017 19:53:52 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "3f659c6b-6f1a-4159-9dfb-daf6ced2dfac" + "04d7c465-2cb2-4c53-9315-aaa77c05fe3e" ], "X-Content-Type-Options": [ "nosniff" @@ -2067,23 +1933,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfc5fcee-90fa-4117-a144-80ab251da1e9" + "6eadc05d-112f-4f54-8a92-50a42acb8233" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.8890794-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:cc079c6c-d389-427a-a5d8-b86b77fbbcad\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"cc079c6c-d389-427a-a5d8-b86b77fbbcad\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"yarnApplicationId\": 57768,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407511S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156054S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:43.05274-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9280606-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9436791-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:88098519-5d6b-41ec-94b6-e93cc3c93803\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9592663-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"88098519-5d6b-41ec-94b6-e93cc3c93803\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"yarnApplicationId\": 90529,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.8753206S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156185S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2095,13 +1960,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:34 GMT" + "Mon, 27 Mar 2017 19:53:58 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "38322d6b-80c1-4ea9-9817-94aa5c6c31c4" + "f6aef97f-79c3-4c4c-a7b5-f28d3c5a4e2f" ], "X-Content-Type-Options": [ "nosniff" @@ -2113,23 +1978,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17834336-2ee5-49b3-b138-cbbc832afa7d" + "0164ae9c-d72f-494b-9f4d-add73065fec1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.8890794-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:cc079c6c-d389-427a-a5d8-b86b77fbbcad\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"cc079c6c-d389-427a-a5d8-b86b77fbbcad\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"yarnApplicationId\": 57768,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407511S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156054S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:43.05274-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9280606-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9436791-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:88098519-5d6b-41ec-94b6-e93cc3c93803\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9592663-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"88098519-5d6b-41ec-94b6-e93cc3c93803\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"yarnApplicationId\": 90529,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.8753206S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156185S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2141,13 +2005,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:39 GMT" + "Mon, 27 Mar 2017 19:54:03 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "672138ae-1eeb-4f98-a2f5-6d253fa47de2" + "02ef6738-d8be-473c-984c-caa114bc68ec" ], "X-Content-Type-Options": [ "nosniff" @@ -2159,23 +2023,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ebd17af-4f49-4334-8b4d-fb242df94a7c" + "90ce1a4d-0058-4434-a389-06ceb00269fd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"startTime\": \"2016-11-07T20:16:40.8110739-08:00\",\r\n \"state\": \"Running\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.8890794-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:cc079c6c-d389-427a-a5d8-b86b77fbbcad\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-07T20:16:40.8110739-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"cc079c6c-d389-427a-a5d8-b86b77fbbcad\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"yarnApplicationId\": 57768,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407511S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156054S\",\r\n \"totalRunningTime\": \"PT4.7691335S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"state\": \"Starting\",\r\n \"result\": \"None\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:43.05274-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9280606-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9436791-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:88098519-5d6b-41ec-94b6-e93cc3c93803\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9592663-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"88098519-5d6b-41ec-94b6-e93cc3c93803\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"yarnApplicationId\": 90529,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.8753206S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156185S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2187,13 +2050,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:45 GMT" + "Mon, 27 Mar 2017 19:54:09 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "5b5300cc-eff6-4689-8315-12f5db2ba909" + "2efc1b9f-236c-4993-a3d3-f0a6fb6ab50b" ], "X-Content-Type-Options": [ "nosniff" @@ -2205,23 +2068,22 @@ "StatusCode": 200 }, { - "RequestUri": "/Jobs/32d3a192-9c60-437c-b487-d972d5180290?api-version=2016-11-01", - "EncodedRequestUri": "L0pvYnMvMzJkM2ExOTItOWM2MC00MzdjLWI0ODctZDk3MmQ1MTgwMjkwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/Jobs/371f23e2-058e-455b-8800-68017be3d15c?api-version=2016-11-01", + "EncodedRequestUri": "L0pvYnMvMzcxZjIzZTItMDU4ZS00NTViLTg4MDAtNjgwMTdiZTNkMTVjP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38a74c2c-721e-41b6-ac85-47726ed827f6" + "1a7d890b-89e1-4c36-9ebe-9ed989b56ee5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"startTime\": \"2016-11-07T20:16:40.8110739-08:00\",\r\n \"endTime\": \"2016-11-07T20:16:46.2329705-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2016-11-07T20:16:14.2483283-08:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.8890794-08:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:cc079c6c-d389-427a-a5d8-b86b77fbbcad\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2016-11-07T20:16:25.9046848-08:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5177484\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2016-11-07T20:16:40.8110739-08:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2016-11-07T20:16:46.2329705-08:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__Ast__.bin\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__Ast__.bin\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"rootProcessNodeId\": \"cc079c6c-d389-427a-a5d8-b86b77fbbcad\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake12107.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/11/08/04/16/32d3a192-9c60-437c-b487-d972d5180290/algebra.xml\",\r\n \"yarnApplicationId\": 57768,\r\n \"yarnApplicationTimeStamp\": 1478149020043,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT11.6407511S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156054S\",\r\n \"totalRunningTime\": \"PT5.4218966S\",\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"startTime\": \"2017-03-27T12:54:11.6002414-07:00\",\r\n \"endTime\": \"2017-03-27T12:54:11.6158424-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"stateAuditRecords\": [\r\n {\r\n \"newState\": \"New\",\r\n \"timeStamp\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"details\": \"userName:;submitMachine:N/A\"\r\n },\r\n {\r\n \"newState\": \"Compiling\",\r\n \"timeStamp\": \"2017-03-27T12:53:43.05274-07:00\",\r\n \"details\": \"CcsAttempts:1;Status:Dispatched\"\r\n },\r\n {\r\n \"newState\": \"Queued\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9280606-07:00\"\r\n },\r\n {\r\n \"newState\": \"Scheduling\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9436791-07:00\",\r\n \"details\": \"Detail:Dispatching job to cluster.;rootProcessId:88098519-5d6b-41ec-94b6-e93cc3c93803\"\r\n },\r\n {\r\n \"newState\": \"Starting\",\r\n \"timeStamp\": \"2017-03-27T12:53:56.9592663-07:00\",\r\n \"details\": \"runtimeVersion:kobo_vnext_signed_5291470\"\r\n },\r\n {\r\n \"newState\": \"Running\",\r\n \"timeStamp\": \"2017-03-27T12:54:11.6002414-07:00\",\r\n \"details\": \"runAttempt:1\"\r\n },\r\n {\r\n \"newState\": \"Ended\",\r\n \"timeStamp\": \"2017-03-27T12:54:11.6158424-07:00\",\r\n \"details\": \"result:Succeeded\"\r\n }\r\n ],\r\n \"properties\": {\r\n \"owner\": \"adlsvc01app@SPI\",\r\n \"resources\": [\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.pdb\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.pdb\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"ScopeVertexDef.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/ScopeVertexDef.xml\",\r\n \"type\": \"VertexResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGen__.dll.cs\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGen__.dll.cs\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.dll.cpp\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.dll.cpp\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOutput__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOutput__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenCompileOptions__.txt\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenCompileOptions__.txt\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeCodeGenEngine__.cppresources\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeCodeGenEngine__.cppresources\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerTrace.log\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerTrace.log\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__SystemInternalInfo__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__SystemInternalInfo__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__CompilerPlan.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__CompilerPlan.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__AST.json\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__AST.json\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"query.abr\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/query.abr\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"Profile\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/profile\",\r\n \"type\": \"StatisticsResource\"\r\n },\r\n {\r\n \"name\": \"__ScopeRuntimeStatistics__.xml\",\r\n \"resourcePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/__ScopeRuntimeStatistics__.xml\",\r\n \"type\": \"StatisticsResource\"\r\n }\r\n ],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"rootProcessNodeId\": \"88098519-5d6b-41ec-94b6-e93cc3c93803\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"adl://testdatalake18307.azuredatalakestore.net/system/jobservice/jobs/Usql/2017/03/27/19/53/371f23e2-058e-455b-8800-68017be3d15c/algebra.xml\",\r\n \"yarnApplicationId\": 90529,\r\n \"yarnApplicationTimeStamp\": 1490324134829,\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT13.8753206S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0.0156185S\",\r\n \"totalRunningTime\": \"PT0.015601S\",\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2233,13 +2095,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:50 GMT" + "Mon, 27 Mar 2017 19:54:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "f227eba0-0bf2-4791-b0a6-2155cad7ab26" + "25fb0648-7c73-457f-a6ac-ef1a8739cdfa" ], "X-Content-Type-Options": [ "nosniff" @@ -2257,17 +2119,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25437c6b-5081-4fe2-bddf-92337649c8d4" + "3daf4182-74ca-49db-b567-9d2f561fcf29" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"294a6ffb-de4e-4c91-9f0b-c80b7c499817\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:12.7326732-08:00\",\r\n \"endTime\": \"2016-11-07T20:16:13.2795709-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\"\r\n },\r\n {\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2016-11-07T20:16:13.9670584-08:00\",\r\n \"startTime\": \"2016-11-07T20:16:40.8110739-08:00\",\r\n \"endTime\": \"2016-11-07T20:16:46.2329705-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:42.755844-07:00\",\r\n \"startTime\": \"2017-03-27T12:54:11.6002414-07:00\",\r\n \"endTime\": \"2017-03-27T12:54:11.6158424-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\"\r\n },\r\n {\r\n \"jobId\": \"ec4242ef-69f7-40bd-b5d1-c6662b89dbdb\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 2,\r\n \"priority\": 1000,\r\n \"submitTime\": \"2017-03-27T12:53:41.2401944-07:00\",\r\n \"endTime\": \"2017-03-27T12:53:41.7870968-07:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Cancelled\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2279,13 +2140,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:50 GMT" + "Mon, 27 Mar 2017 19:54:14 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "d357023f-62a1-4f91-ad7e-d24b109d259f" + "6dc62fb1-0851-40d4-9c13-71aaff4bb123" ], "X-Content-Type-Options": [ "nosniff" @@ -2309,17 +2170,16 @@ "218" ], "x-ms-client-request-id": [ - "834b79be-b560-4881-81b4-57cbbde1310d" + "61d70c0b-3e31-4ce9-939f-5b46d6b2a3e2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"f9d64a74-f687-4227-bfb6-8552cd27d4d3\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 0,\r\n \"priority\": 0,\r\n \"submitTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"properties\": {\r\n \"resources\": [],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5177484\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"mafs://accounts/testdatalake12107/fs/system/compilationService/jobs/USql/f9d64a74-f687-4227-bfb6-8552cd27d4d3/2016/11/08/04/16/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"diagnostics\": [],\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"aa9e8426-ad9b-4fb2-8ef4-57b9c0d9f8c8\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 0,\r\n \"priority\": 0,\r\n \"submitTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Succeeded\",\r\n \"properties\": {\r\n \"resources\": [],\r\n \"runtimeVersion\": \"kobo_vnext_signed_5291470\",\r\n \"script\": \"DROP DATABASE IF EXISTS testdb; CREATE DATABASE testdb;\",\r\n \"algebraFilePath\": \"mafs://accounts/testdatalake18307/fs/system/compilationService/jobs/USql/aa9e8426-ad9b-4fb2-8ef4-57b9c0d9f8c8/2017/03/27/19/54/algebra.xml\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"diagnostics\": [],\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2331,13 +2191,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:16:58 GMT" + "Mon, 27 Mar 2017 19:54:23 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "e08b52b7-58c9-48ba-92ea-39b51e4b3dfb" + "dad73eae-161f-4d0a-8342-829d2599cdd4" ], "X-Content-Type-Options": [ "nosniff" @@ -2361,17 +2221,16 @@ "211" ], "x-ms-client-request-id": [ - "494567b0-9d8c-4695-a44d-95f029b975a5" + "7be56560-e537-4198-87bb-7709bf269981" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"jobId\": \"ec118e58-4f2f-43e1-a447-51607ef60932\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01@benwgoldoutlook.onmicrosoft.com\",\r\n \"degreeOfParallelism\": 0,\r\n \"priority\": 0,\r\n \"submitTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Failed\",\r\n \"properties\": {\r\n \"resources\": [],\r\n \"runtimeVersion\": \"\",\r\n \"script\": \"DROP DATABASE IF EXIST FOO; CREATE DATABASE FOO;\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"diagnostics\": [\r\n {\r\n \"severity\": \"Error\",\r\n \"lineNumber\": 1,\r\n \"columnNumber\": 18,\r\n \"start\": 17,\r\n \"end\": 22,\r\n \"message\": \"E_CSC_USER_SYNTAXERROR: syntax error. Expected one of: EXISTS\"\r\n }\r\n ],\r\n \"type\": \"USql\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"jobId\": \"9750d74f-b07b-4a38-8ddf-33b0dd2f0084\",\r\n \"name\": \"azure sdk data lake analytics job\",\r\n \"type\": \"USql\",\r\n \"submitter\": \"adlsvc01app@SPI\",\r\n \"degreeOfParallelism\": 0,\r\n \"priority\": 0,\r\n \"submitTime\": \"0001-01-01T00:00:00-08:00\",\r\n \"state\": \"Ended\",\r\n \"result\": \"Failed\",\r\n \"properties\": {\r\n \"resources\": [],\r\n \"runtimeVersion\": \"\",\r\n \"script\": \"DROP DATABASE IF EXIST FOO; CREATE DATABASE FOO;\",\r\n \"compileMode\": \"Semantic\",\r\n \"errorSource\": \"Unknown\",\r\n \"totalCompilationTime\": \"PT0S\",\r\n \"totalPausedTime\": \"PT0S\",\r\n \"totalQueuedTime\": \"PT0S\",\r\n \"totalRunningTime\": \"PT0S\",\r\n \"diagnostics\": [\r\n {\r\n \"severity\": \"Error\",\r\n \"lineNumber\": 1,\r\n \"columnNumber\": 18,\r\n \"start\": 17,\r\n \"end\": 22,\r\n \"message\": \"E_CSC_USER_SYNTAXERROR: syntax error. Expected one of: EXISTS\"\r\n }\r\n ],\r\n \"expirationTimeUtc\": \"0001-01-01T00:00:00\",\r\n \"type\": \"USql\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2383,13 +2242,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:17:05 GMT" + "Mon, 27 Mar 2017 19:54:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "c46965d4-a6fb-4d77-b7b5-b7d55707d741" + "0fb10a5d-c1d4-4df5-b627-b30d9a0cfc6a" ], "X-Content-Type-Options": [ "nosniff" @@ -2407,17 +2266,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd3d79d0-6d25-4b52-952a-f8c64c9bd213" + "cc9f5707-1f66-4411-8617-d2a648af5da1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/0.12.6-preview" + "Microsoft.Azure.Management.DataLake.Analytics.DataLakeAnalyticsJobManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"294a6ffb-de4e-4c91-9f0b-c80b7c499817\"\r\n },\r\n {\r\n \"jobId\": \"32d3a192-9c60-437c-b487-d972d5180290\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"jobId\": \"371f23e2-058e-455b-8800-68017be3d15c\"\r\n },\r\n {\r\n \"jobId\": \"ec4242ef-69f7-40bd-b5d1-c6662b89dbdb\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -2429,13 +2287,13 @@ "no-store, no-cache, max-age=0, private" ], "Date": [ - "Tue, 08 Nov 2016 04:17:05 GMT" + "Mon, 27 Mar 2017 19:54:31 GMT" ], "Transfer-Encoding": [ "chunked" ], "x-ms-request-id": [ - "d975717a-a4fc-4fd5-b93f-a137a1e9af09" + "dced3b1d-b308-40d9-a392-3a1ed7c25222" ], "X-Content-Type-Options": [ "nosniff" @@ -2449,25 +2307,25 @@ ], "Names": { ".ctor": [ - "rgaba19289", - "testaba1165", - "testaba21528", - "teststorage17543", - "testdatalake12107", - "testdatalake24399", - "testazureblob14043", - "testdb19603", - "testtbl19119", - "testtvf14950", - "testproc15116", - "testview11278", - "testcred16326", - "testsecret14348", - "testsecretpwd14407" + "rgaba16203", + "testaba14827", + "testaba22110", + "teststorage19894", + "testdatalake18307", + "testdatalake27438", + "testazureblob1336", + "testdb14807", + "testtbl14382", + "testtvf11476", + "testproc16272", + "testview12268", + "testcred17413", + "testsecret11551", + "testsecretpwd14698" ], "SubmitGetListCancelTest": [ - "294a6ffb-de4e-4c91-9f0b-c80b7c499817", - "32d3a192-9c60-437c-b487-d972d5180290" + "ec4242ef-69f7-40bd-b5d1-c6662b89dbdb", + "371f23e2-058e-455b-8800-68017be3d15c" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs index 5c01b89f7e4b..3fd7ee4da93b 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/TestHelpers/DataLakeAnalyticsManagementHelper.cs @@ -234,7 +234,7 @@ CREATE TABLE {0}.dbo.{1} ClickedUrls string, INDEX idx1 //Name of index CLUSTERED (Region ASC) //Column to cluster by - PARTITIONED BY BUCKETS (UserId) HASH (Region) //Column to partition by + PARTITIONED BY (UserId) HASH (Region) //Column to partition by ); ALTER TABLE {0}.dbo.{1} ADD IF NOT EXISTS PARTITION (1); diff --git a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/project.json b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/project.json index fe6bb6f7f41a..401498e7621f 100644 --- a/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/project.json +++ b/src/ResourceManagement/DataLake.Analytics/DataLakeAnalytics.Tests/project.json @@ -32,8 +32,8 @@ "type": "platform", "version": "1.0.0" }, - "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", + "Microsoft.Azure.Test.HttpRecorder": "[1.7.0, 2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.6.0, 2.0.0)", "Microsoft.Rest.ClientRuntime.Azure": "[3.3.2,4.0.0)", "Microsoft.Rest.ClientRuntime": "[2.3.2,3.0)" , "Microsoft.Azure.Management.Storage": "[5.0.2-preview]", diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs index d8e61fb5cebe..f8583402f625 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Customizations/DataLakeAnalyticsCustomizationHelper.cs @@ -14,7 +14,7 @@ internal static class DataLakeAnalyticsCustomizationHelper /// This constant is used as the default package version to place in the user agent. /// It should mirror the package version in the project.json file. /// - internal const string PackageVersion = "2.0.1-preview"; + internal const string PackageVersion = "2.1.1-preview"; internal const string DefaultAdlaDnsSuffix = "azuredatalakeanalytics.net"; diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperations.cs index a4551d3bd929..63284a5e2e56 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperations.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -155,9 +152,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -172,6 +169,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -219,7 +218,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -256,7 +255,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -363,9 +362,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -380,6 +379,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -427,7 +428,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -464,7 +465,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -558,9 +559,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -575,6 +576,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -622,7 +625,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -659,7 +662,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -829,9 +832,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + 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) @@ -846,6 +849,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -883,11 +888,19 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1011,9 +1024,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -1028,6 +1041,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1045,7 +1060,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -1081,7 +1096,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1118,7 +1133,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1136,7 +1151,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1235,9 +1250,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1252,6 +1267,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1269,7 +1286,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -1305,7 +1322,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1342,7 +1359,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1360,7 +1377,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1431,9 +1448,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1448,6 +1465,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1495,7 +1514,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1532,7 +1551,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1603,9 +1622,9 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1620,6 +1639,8 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1667,7 +1688,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1704,7 +1725,7 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1723,6 +1744,3 @@ internal AccountOperations(DataLakeAnalyticsAccountManagementClient client) } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs index 8f0eee776898..c728e55fb878 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/AccountOperationsExtensions.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Threading; using System.Threading.Tasks; @@ -222,7 +219,7 @@ public static void Delete(this IAccountOperations operations, string resourceGro /// public static async Task DeleteAsync(this IAccountOperations operations, string resourceGroupName, string accountName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -363,7 +360,7 @@ public static void BeginDelete(this IAccountOperations operations, string resour /// public static async Task BeginDeleteAsync(this IAccountOperations operations, string resourceGroupName, string accountName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -540,6 +537,3 @@ public static IPage ListNext(this IAccountOperations o } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperations.cs index b34994d811ec..677cedbdba83 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperations.cs @@ -2,18 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; using System.Collections; @@ -150,9 +150,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -167,6 +167,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -184,7 +186,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -210,11 +212,19 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -342,9 +352,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -359,6 +369,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -376,7 +388,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -402,11 +414,19 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -527,9 +547,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -544,6 +564,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -591,7 +613,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -628,7 +650,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -731,9 +753,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + 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) @@ -748,6 +770,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -785,11 +809,19 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -899,9 +931,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + 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) @@ -916,6 +948,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -953,11 +987,19 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1087,9 +1129,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -1104,6 +1146,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1121,7 +1165,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -1147,11 +1191,19 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1277,9 +1329,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1294,6 +1346,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1311,7 +1365,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -1337,11 +1391,19 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1461,9 +1523,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1478,6 +1540,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1525,7 +1589,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1562,7 +1626,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1677,9 +1741,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -1694,6 +1758,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1711,7 +1777,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -1737,11 +1803,19 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1883,9 +1957,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1900,6 +1974,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1947,7 +2023,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1984,7 +2060,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2088,9 +2164,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -2105,6 +2181,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2152,7 +2230,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2189,7 +2267,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2315,9 +2393,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -2332,6 +2410,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2379,7 +2459,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2416,7 +2496,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2528,9 +2608,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -2545,6 +2625,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2592,7 +2674,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2629,7 +2711,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2763,9 +2845,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -2780,6 +2862,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2827,7 +2911,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2864,7 +2948,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2976,9 +3060,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -2993,6 +3077,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3040,7 +3126,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3077,7 +3163,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3211,9 +3297,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -3228,6 +3314,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3275,7 +3363,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3312,7 +3400,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3424,9 +3512,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -3441,6 +3529,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3488,7 +3578,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3525,7 +3615,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3659,9 +3749,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -3676,6 +3766,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3723,7 +3815,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3760,7 +3852,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3872,9 +3964,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -3889,6 +3981,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3936,7 +4030,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3973,7 +4067,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -4107,9 +4201,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -4124,6 +4218,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4171,7 +4267,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4208,7 +4304,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -4330,9 +4426,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -4347,6 +4443,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4394,7 +4492,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4431,7 +4529,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -4575,9 +4673,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -4592,6 +4690,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4639,7 +4739,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4676,7 +4776,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -4798,9 +4898,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -4815,6 +4915,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4862,7 +4964,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4899,7 +5001,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -5043,9 +5145,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -5060,6 +5162,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -5107,7 +5211,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -5144,7 +5248,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -5279,9 +5383,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -5296,6 +5400,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -5343,7 +5449,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -5380,7 +5486,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -5493,9 +5599,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -5510,6 +5616,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -5557,7 +5665,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -5594,7 +5702,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -5729,9 +5837,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -5746,6 +5854,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -5793,7 +5903,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -5830,7 +5940,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -5933,9 +6043,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -5950,6 +6060,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -5997,7 +6109,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -6034,7 +6146,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -6159,9 +6271,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -6176,6 +6288,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -6223,7 +6337,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -6260,7 +6374,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -6363,9 +6477,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -6380,6 +6494,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -6427,7 +6543,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -6464,7 +6580,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -6589,9 +6705,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -6606,6 +6722,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -6653,7 +6771,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -6690,7 +6808,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -6784,9 +6902,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -6801,6 +6919,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -6848,7 +6968,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -6885,7 +7005,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -7001,9 +7121,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -7018,6 +7138,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -7065,7 +7187,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -7102,7 +7224,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -7172,9 +7294,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -7189,6 +7311,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -7236,7 +7360,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -7273,7 +7397,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -7344,9 +7468,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -7361,6 +7485,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -7408,7 +7534,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -7445,7 +7571,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -7515,9 +7641,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -7532,6 +7658,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -7579,7 +7707,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -7616,7 +7744,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -7686,9 +7814,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -7703,6 +7831,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -7750,7 +7880,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -7787,7 +7917,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -7857,9 +7987,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -7874,6 +8004,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -7921,7 +8053,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -7958,7 +8090,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -8028,9 +8160,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -8045,6 +8177,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -8092,7 +8226,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -8129,7 +8263,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -8200,9 +8334,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -8217,6 +8351,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -8264,7 +8400,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -8301,7 +8437,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -8372,9 +8508,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -8389,6 +8525,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -8436,7 +8574,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -8473,7 +8611,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -8544,9 +8682,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -8561,6 +8699,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -8608,7 +8748,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -8645,7 +8785,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -8716,9 +8856,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -8733,6 +8873,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -8780,7 +8922,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -8817,7 +8959,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -8887,9 +9029,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -8904,6 +9046,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -8951,7 +9095,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -8988,7 +9132,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -9058,9 +9202,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -9075,6 +9219,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -9122,7 +9268,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -9159,7 +9305,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -9229,9 +9375,9 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -9246,6 +9392,8 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -9293,7 +9441,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -9330,7 +9478,7 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -9349,4 +9497,3 @@ internal CatalogOperations(DataLakeAnalyticsCatalogManagementClient client) } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs index 8260316e989b..3b602e880c42 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/CatalogOperationsExtensions.cs @@ -2,18 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using System.Threading; using System.Threading.Tasks; @@ -77,7 +77,7 @@ public static void CreateSecret(this ICatalogOperations operations, string accou [System.Obsolete()] public static async Task CreateSecretAsync(this ICatalogOperations operations, string accountName, string databaseName, string secretName, DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.CreateSecretWithHttpMessagesAsync(accountName, databaseName, secretName, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.CreateSecretWithHttpMessagesAsync(accountName, databaseName, secretName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -134,7 +134,7 @@ public static void UpdateSecret(this ICatalogOperations operations, string accou [System.Obsolete()] public static async Task UpdateSecretAsync(this ICatalogOperations operations, string accountName, string databaseName, string secretName, DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.UpdateSecretWithHttpMessagesAsync(accountName, databaseName, secretName, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.UpdateSecretWithHttpMessagesAsync(accountName, databaseName, secretName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -235,7 +235,7 @@ public static void DeleteSecret(this ICatalogOperations operations, string accou [System.Obsolete()] public static async Task DeleteSecretAsync(this ICatalogOperations operations, string accountName, string databaseName, string secretName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteSecretWithHttpMessagesAsync(accountName, databaseName, secretName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteSecretWithHttpMessagesAsync(accountName, databaseName, secretName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -278,7 +278,7 @@ public static void DeleteAllSecrets(this ICatalogOperations operations, string a /// public static async Task DeleteAllSecretsAsync(this ICatalogOperations operations, string accountName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteAllSecretsWithHttpMessagesAsync(accountName, databaseName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteAllSecretsWithHttpMessagesAsync(accountName, databaseName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -331,7 +331,7 @@ public static void CreateCredential(this ICatalogOperations operations, string a /// public static async Task CreateCredentialAsync(this ICatalogOperations operations, string accountName, string databaseName, string credentialName, DataLakeAnalyticsCatalogCredentialCreateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.CreateCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.CreateCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -384,7 +384,7 @@ public static void UpdateCredential(this ICatalogOperations operations, string a /// public static async Task UpdateCredentialAsync(this ICatalogOperations operations, string accountName, string databaseName, string credentialName, DataLakeAnalyticsCatalogCredentialUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.UpdateCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.UpdateCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -495,7 +495,7 @@ public static USqlCredential GetCredential(this ICatalogOperations operations, s /// public static async Task DeleteCredentialAsync(this ICatalogOperations operations, string accountName, string databaseName, string credentialName, DataLakeAnalyticsCatalogCredentialDeleteParameters parameters = default(DataLakeAnalyticsCatalogCredentialDeleteParameters), bool? cascade = false, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, parameters, cascade, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteCredentialWithHttpMessagesAsync(accountName, databaseName, credentialName, parameters, cascade, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -2458,4 +2458,3 @@ public static IPage ListDatabasesNext(this ICatalogOperations oper } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs index f27277140b6d..8773e5fb1edc 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsAccountManagementClient.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Serialization; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -38,12 +35,12 @@ public partial class DataLakeAnalyticsAccountManagementClient : ServiceClient /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. @@ -105,7 +102,7 @@ public partial class DataLakeAnalyticsAccountManagementClient : ServiceClient /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeAnalyticsAccountManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected DataLakeAnalyticsAccountManagementClient(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } @@ -119,7 +116,7 @@ protected DataLakeAnalyticsAccountManagementClient(params System.Net.Http.Delega /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeAnalyticsAccountManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected DataLakeAnalyticsAccountManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } @@ -136,7 +133,7 @@ protected DataLakeAnalyticsAccountManagementClient(System.Net.Http.HttpClientHan /// /// Thrown when a required parameter is null /// - protected DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + protected DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -160,7 +157,7 @@ protected DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, params Sy /// /// Thrown when a required parameter is null /// - protected DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + protected DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -181,7 +178,7 @@ protected DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, System.Ne /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsAccountManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + internal DataLakeAnalyticsAccountManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -209,7 +206,7 @@ internal DataLakeAnalyticsAccountManagementClient(ServiceClientCredentials crede /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsAccountManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + internal DataLakeAnalyticsAccountManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { @@ -237,7 +234,7 @@ internal DataLakeAnalyticsAccountManagementClient(ServiceClientCredentials crede /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + internal DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -273,7 +270,7 @@ internal DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, ServiceCli /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + internal DataLakeAnalyticsAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -309,7 +306,7 @@ private void Initialize() AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, @@ -317,20 +314,20 @@ private void Initialize() NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } }; SerializationSettings.Converters.Add(new TransformationJsonConverter()); - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } @@ -341,6 +338,3 @@ private void Initialize() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs index 7de97d9d7f4d..d69bd8ea87be 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsCatalogManagementClient.cs @@ -2,18 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; using Models; using Newtonsoft.Json; using System.Collections; @@ -35,12 +35,12 @@ public partial class DataLakeAnalyticsCatalogManagementClient : ServiceClient /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. @@ -86,7 +86,7 @@ public partial class DataLakeAnalyticsCatalogManagementClient : ServiceClient /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeAnalyticsCatalogManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected DataLakeAnalyticsCatalogManagementClient(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } @@ -100,7 +100,7 @@ protected DataLakeAnalyticsCatalogManagementClient(params System.Net.Http.Delega /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeAnalyticsCatalogManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected DataLakeAnalyticsCatalogManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } @@ -117,7 +117,7 @@ protected DataLakeAnalyticsCatalogManagementClient(System.Net.Http.HttpClientHan /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsCatalogManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + internal DataLakeAnalyticsCatalogManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -145,7 +145,7 @@ internal DataLakeAnalyticsCatalogManagementClient(ServiceClientCredentials crede /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsCatalogManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + internal DataLakeAnalyticsCatalogManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { @@ -174,7 +174,7 @@ private void Initialize() AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, @@ -182,19 +182,19 @@ private void Initialize() NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } }; - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } @@ -204,4 +204,3 @@ private void Initialize() } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs index d42d28038ecb..f66acba7e9db 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeAnalyticsJobManagementClient.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Serialization; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -38,12 +35,12 @@ public partial class DataLakeAnalyticsJobManagementClient : ServiceClient /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. @@ -89,7 +86,7 @@ public partial class DataLakeAnalyticsJobManagementClient : ServiceClient /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeAnalyticsJobManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected DataLakeAnalyticsJobManagementClient(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } @@ -103,7 +100,7 @@ protected DataLakeAnalyticsJobManagementClient(params System.Net.Http.Delegating /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeAnalyticsJobManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected DataLakeAnalyticsJobManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } @@ -120,7 +117,7 @@ protected DataLakeAnalyticsJobManagementClient(System.Net.Http.HttpClientHandler /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsJobManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + internal DataLakeAnalyticsJobManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -148,7 +145,7 @@ internal DataLakeAnalyticsJobManagementClient(ServiceClientCredentials credentia /// /// Thrown when a required parameter is null /// - internal DataLakeAnalyticsJobManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + internal DataLakeAnalyticsJobManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { @@ -177,7 +174,7 @@ private void Initialize() AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, @@ -185,19 +182,19 @@ private void Initialize() NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } }; - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } @@ -209,5 +206,3 @@ private void Initialize() } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs index 25df6441102e..2eaa2829b9df 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperations.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -143,9 +140,9 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -160,6 +157,8 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -207,7 +206,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -244,7 +243,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -346,9 +345,9 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + 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) @@ -363,6 +362,8 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -400,11 +401,19 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -527,9 +536,9 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -544,6 +553,8 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -561,7 +572,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -587,11 +598,19 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -736,9 +755,9 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -753,6 +772,8 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -800,7 +821,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -837,7 +858,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -909,9 +930,9 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -926,6 +947,8 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -973,7 +996,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1010,7 +1033,7 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1029,6 +1052,3 @@ internal DataLakeStoreAccountsOperations(DataLakeAnalyticsAccountManagementClien } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs index 1aaa1f8da76b..83156f1b062e 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/DataLakeStoreAccountsOperationsExtensions.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Threading; using System.Threading.Tasks; @@ -124,7 +121,7 @@ public static void Delete(this IDataLakeStoreAccountsOperations operations, stri /// public static async Task DeleteAsync(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -179,7 +176,7 @@ public static void Delete(this IDataLakeStoreAccountsOperations operations, stri /// public static async Task AddAsync(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, string dataLakeStoreAccountName, AddDataLakeStoreParameters parameters = default(AddDataLakeStoreParameters), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.AddWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.AddWithHttpMessagesAsync(resourceGroupName, accountName, dataLakeStoreAccountName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -212,7 +209,7 @@ public static void Delete(this IDataLakeStoreAccountsOperations operations, stri /// public static IPage ListByAccount(this IDataLakeStoreAccountsOperations operations, string resourceGroupName, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?)) { - return operations.ListByAccountAsync(resourceGroupName, accountName, odataQuery, select, count).GetAwaiter().GetResult(); + return ((IDataLakeStoreAccountsOperations)operations).ListByAccountAsync(resourceGroupName, accountName, odataQuery, select, count).GetAwaiter().GetResult(); } /// @@ -294,6 +291,3 @@ public static IPage ListByAccountNext(this IDataLakeSt } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs index ce14355f1c84..4f2f130c7a58 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -154,9 +151,9 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -171,6 +168,8 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -188,7 +187,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -224,7 +223,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -261,7 +260,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -369,9 +368,9 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -386,6 +385,8 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -403,7 +404,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -439,7 +440,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -476,7 +477,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -578,9 +579,9 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + 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) @@ -595,6 +596,8 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -632,11 +635,19 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -757,9 +768,9 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -774,6 +785,8 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -821,7 +834,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -858,7 +871,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -954,9 +967,9 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -971,6 +984,8 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1018,7 +1033,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1055,7 +1070,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1126,9 +1141,9 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1143,6 +1158,8 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1190,7 +1207,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1227,7 +1244,7 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1246,6 +1263,3 @@ internal FirewallRulesOperations(DataLakeAnalyticsAccountManagementClient client } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs index 21f166c3e70f..f43adfeb0e4d 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/FirewallRulesOperationsExtensions.cs @@ -2,21 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; - using Rest; - using Rest.Azure; using System.Threading; using System.Threading.Tasks; @@ -185,7 +182,7 @@ public static void Delete(this IFirewallRulesOperations operations, string resou /// public static async Task DeleteAsync(this IFirewallRulesOperations operations, string resourceGroupName, string accountName, string firewallRuleName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, firewallRuleName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, firewallRuleName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -322,6 +319,3 @@ public static IPage ListByAccountNext(this IFirewallRulesOperation } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IAccountOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IAccountOperations.cs index 26395c62b139..fc83d812da14 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IAccountOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IAccountOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -56,13 +53,13 @@ public partial interface IAccountOperations /// /// 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -90,13 +87,13 @@ public partial interface IAccountOperations /// /// 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(ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -116,13 +113,13 @@ public partial interface IAccountOperations /// /// 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 accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -143,10 +140,10 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -172,13 +169,13 @@ public partial interface IAccountOperations /// /// 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> CreateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccount parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -203,13 +200,13 @@ public partial interface IAccountOperations /// /// 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccountUpdateParameters parameters = default(DataLakeAnalyticsAccountUpdateParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -230,10 +227,10 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -259,13 +256,13 @@ public partial interface IAccountOperations /// /// 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> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccount parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -290,13 +287,13 @@ public partial interface IAccountOperations /// /// 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> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, DataLakeAnalyticsAccountUpdateParameters parameters = default(DataLakeAnalyticsAccountUpdateParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -314,13 +311,13 @@ public partial interface IAccountOperations /// /// 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>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -338,18 +335,15 @@ public partial interface IAccountOperations /// /// 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/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/ICatalogOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/ICatalogOperations.cs index 086ad62cc6ab..d3b2f07595e0 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/ICatalogOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/ICatalogOperations.cs @@ -2,18 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using System.Collections; using System.Collections.Generic; @@ -1496,4 +1496,3 @@ public partial interface ICatalogOperations Task>> ListDatabasesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs index 3d55380de7cf..511926912856 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsAccountManagementClient.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; /// /// Creates an Azure Data Lake Analytics account management client. @@ -32,12 +29,12 @@ public partial interface IDataLakeAnalyticsAccountManagementClient : System.IDis /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. @@ -96,6 +93,3 @@ public partial interface IDataLakeAnalyticsAccountManagementClient : System.IDis } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs index 2f0bd7fe635c..1bb7693fb546 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsCatalogManagementClient.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; @@ -28,12 +28,12 @@ public partial interface IDataLakeAnalyticsCatalogManagementClient : System.IDis /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. @@ -76,4 +76,3 @@ public partial interface IDataLakeAnalyticsCatalogManagementClient : System.IDis } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs index 69743683444d..e51007158989 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeAnalyticsJobManagementClient.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; /// /// Creates an Azure Data Lake Analytics job client. @@ -31,12 +28,12 @@ public partial interface IDataLakeAnalyticsJobManagementClient : System.IDisposa /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. @@ -79,5 +76,3 @@ public partial interface IDataLakeAnalyticsJobManagementClient : System.IDisposa } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs index 9ba698847fa7..b62c5ec92c10 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IDataLakeStoreAccountsOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -49,13 +46,13 @@ public partial interface IDataLakeStoreAccountsOperations /// /// 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 accountName, string dataLakeStoreAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -80,10 +77,10 @@ public partial interface IDataLakeStoreAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string dataLakeStoreAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -111,10 +108,10 @@ public partial interface IDataLakeStoreAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task AddWithHttpMessagesAsync(string resourceGroupName, string accountName, string dataLakeStoreAccountName, AddDataLakeStoreParameters parameters = default(AddDataLakeStoreParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -150,13 +147,13 @@ public partial interface IDataLakeStoreAccountsOperations /// /// 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>> ListByAccountWithHttpMessagesAsync(string resourceGroupName, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -174,18 +171,15 @@ public partial interface IDataLakeStoreAccountsOperations /// /// 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>> ListByAccountNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs index 2b9cbbecde7f..116f90aef508 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IFirewallRulesOperations.cs @@ -2,21 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; - using Rest; - using Rest.Azure; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -52,13 +49,13 @@ public partial interface IFirewallRulesOperations /// /// 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 accountName, string firewallRuleName, FirewallRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -85,13 +82,13 @@ public partial interface IFirewallRulesOperations /// /// 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string firewallRuleName, UpdateFirewallRuleParameters parameters = default(UpdateFirewallRuleParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -116,10 +113,10 @@ public partial interface IFirewallRulesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -143,13 +140,13 @@ public partial interface IFirewallRulesOperations /// /// 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 accountName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -171,13 +168,13 @@ public partial interface IFirewallRulesOperations /// /// 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>> ListByAccountWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -194,18 +191,15 @@ public partial interface IFirewallRulesOperations /// /// 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>> ListByAccountNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IJobOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IJobOperations.cs index 462cc45fc070..003ddd59634e 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IJobOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IJobOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -43,13 +40,13 @@ public partial interface IJobOperations /// /// 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> GetStatisticsWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -68,13 +65,13 @@ public partial interface IJobOperations /// /// 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> GetDebugDataPathWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -94,13 +91,13 @@ public partial interface IJobOperations /// /// 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> BuildWithHttpMessagesAsync(string accountName, JobInformation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -119,10 +116,10 @@ public partial interface IJobOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task CancelWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -141,13 +138,13 @@ public partial interface IJobOperations /// /// 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 accountName, System.Guid jobIdentity, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -169,13 +166,13 @@ public partial interface IJobOperations /// /// 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> CreateWithHttpMessagesAsync(string accountName, System.Guid jobIdentity, JobInformation parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -206,13 +203,13 @@ public partial interface IJobOperations /// /// 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 accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -230,17 +227,15 @@ public partial interface IJobOperations /// /// 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/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs index 9a4459c48957..3ea331e90d32 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/IStorageAccountsOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -50,13 +47,13 @@ public partial interface IStorageAccountsOperations /// /// 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 accountName, string storageAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -81,10 +78,10 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -113,10 +110,10 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, UpdateStorageAccountParameters parameters = default(UpdateStorageAccountParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -145,10 +142,10 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task AddWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, AddStorageAccountParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -177,13 +174,13 @@ public partial interface IStorageAccountsOperations /// /// 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> GetStorageContainerWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, string containerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -211,13 +208,13 @@ public partial interface IStorageAccountsOperations /// /// 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>> ListStorageContainersWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -247,13 +244,13 @@ public partial interface IStorageAccountsOperations /// /// 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>> ListSasTokensWithHttpMessagesAsync(string resourceGroupName, string accountName, string storageAccountName, string containerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -289,13 +286,13 @@ public partial interface IStorageAccountsOperations /// /// 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>> ListByAccountWithHttpMessagesAsync(string resourceGroupName, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -314,13 +311,13 @@ public partial interface IStorageAccountsOperations /// /// 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>> ListStorageContainersNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -337,13 +334,13 @@ public partial interface IStorageAccountsOperations /// /// 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>> ListSasTokensNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -361,18 +358,15 @@ public partial interface IStorageAccountsOperations /// /// 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>> ListByAccountNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperations.cs index 4a168f68cb4a..1a44ad802321 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperations.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -127,9 +124,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -144,6 +141,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -191,7 +190,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -228,7 +227,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -317,9 +316,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -334,6 +333,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -381,7 +382,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -418,7 +419,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -515,9 +516,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -532,6 +533,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -549,7 +552,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -585,7 +588,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -622,7 +625,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -708,9 +711,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -725,6 +728,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -762,11 +767,19 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -872,9 +885,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -889,6 +902,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -936,7 +951,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -973,7 +988,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1074,9 +1089,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -1091,6 +1106,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1108,7 +1125,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -1144,7 +1161,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1181,7 +1198,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1297,9 +1314,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1314,6 +1331,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1361,7 +1380,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1398,7 +1417,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1469,9 +1488,9 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1486,6 +1505,8 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1533,7 +1554,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1570,7 +1591,7 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1589,5 +1610,3 @@ internal JobOperations(DataLakeAnalyticsJobManagementClient client) } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs index 7c197c5078df..909535cf9709 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/JobOperationsExtensions.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Threading; using System.Threading.Tasks; @@ -182,7 +179,7 @@ public static void Cancel(this IJobOperations operations, string accountName, Sy /// public static async Task CancelAsync(this IJobOperations operations, string accountName, System.Guid jobIdentity, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.CancelWithHttpMessagesAsync(accountName, jobIdentity, null, cancellationToken).ConfigureAwait(false); + (await operations.CancelWithHttpMessagesAsync(accountName, jobIdentity, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -369,5 +366,3 @@ public static IPage ListNext(this IJobOperations operations, str } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs index 5901d0dcff88..688ceef795f1 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddDataLakeStoreParameters.cs @@ -2,35 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Additional Data Lake Store parameters. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class AddDataLakeStoreParameters { /// /// Initializes a new instance of the AddDataLakeStoreParameters class. /// - public AddDataLakeStoreParameters() { } + public AddDataLakeStoreParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the AddDataLakeStoreParameters class. @@ -40,8 +39,14 @@ public AddDataLakeStoreParameters() { } public AddDataLakeStoreParameters(string suffix = default(string)) { Suffix = suffix; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the optional suffix for the Data Lake Store account. /// @@ -50,6 +55,3 @@ public AddDataLakeStoreParameters() { } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs index 3572cd18864b..902e809df05a 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/AddStorageAccountParameters.cs @@ -2,37 +2,36 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Storage account parameters for a storage account being added to a Data /// Lake Analytics account. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class AddStorageAccountParameters { /// /// Initializes a new instance of the AddStorageAccountParameters /// class. /// - public AddStorageAccountParameters() { } + public AddStorageAccountParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the AddStorageAccountParameters @@ -46,8 +45,14 @@ public AddStorageAccountParameters() { } { AccessKey = accessKey; Suffix = suffix; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the access key associated with this Azure Storage /// account that will be used to connect to it. @@ -76,6 +81,3 @@ public virtual void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItem.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItem.cs index 458b95c4239d..233914f2d829 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItem.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItem.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class CatalogItem /// /// Initializes a new instance of the CatalogItem class. /// - public CatalogItem() { } + public CatalogItem() + { + CustomInit(); + } /// /// Initializes a new instance of the CatalogItem class. @@ -35,8 +38,14 @@ public CatalogItem() { } { ComputeAccountName = computeAccountName; Version = version; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the Data Lake Analytics account. /// @@ -51,4 +60,3 @@ public CatalogItem() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs index a3ac3e6d20fe..9ff334ce8f79 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CatalogItemList.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class CatalogItemList /// /// Initializes a new instance of the CatalogItemList class. /// - public CatalogItemList() { } + public CatalogItemList() + { + CustomInit(); + } /// /// Initializes a new instance of the CatalogItemList class. @@ -33,8 +36,14 @@ public CatalogItemList() { } public CatalogItemList(string nextLink = default(string)) { NextLink = nextLink; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the link to the next page of results. /// @@ -43,4 +52,3 @@ public CatalogItemList() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CompileMode.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CompileMode.cs index 04fdd7b31dbb..bc1b5eee3aa9 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CompileMode.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/CompileMode.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for CompileMode. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum CompileMode { [EnumMember(Value = "Semantic")] @@ -35,5 +31,3 @@ public enum CompileMode SingleBox } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs index 5890e8ac881e..3bd785d74ac3 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccount.cs @@ -2,23 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -27,13 +23,16 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// A Data Lake Analytics account object, containing all information /// associated with the named Data Lake Analytics account. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class DataLakeAnalyticsAccount : Resource { /// /// Initializes a new instance of the DataLakeAnalyticsAccount class. /// - public DataLakeAnalyticsAccount() { } + public DataLakeAnalyticsAccount() + { + CustomInit(); + } /// /// Initializes a new instance of the DataLakeAnalyticsAccount class. @@ -117,8 +116,14 @@ public DataLakeAnalyticsAccount() { } FirewallState = firewallState; FirewallAllowAzureIps = firewallAllowAzureIps; FirewallRules = firewallRules; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the provisioning status of the Data Lake Analytics account. /// Possible values include: 'Failed', 'Creating', 'Running', @@ -126,14 +131,14 @@ public DataLakeAnalyticsAccount() { } /// 'Deleted' /// [JsonProperty(PropertyName = "properties.provisioningState")] - public DataLakeAnalyticsAccountStatus? ProvisioningState { get; protected set; } + public DataLakeAnalyticsAccountStatus? ProvisioningState { get; private set; } /// /// Gets the state of the Data Lake Analytics account. Possible values /// include: 'Active', 'Suspended' /// [JsonProperty(PropertyName = "properties.state")] - public DataLakeAnalyticsAccountState? State { get; protected set; } + public DataLakeAnalyticsAccountState? State { get; private set; } /// /// Gets or sets the default data lake storage account associated with @@ -168,7 +173,7 @@ public DataLakeAnalyticsAccount() { } /// user can set for the account.. /// [JsonProperty(PropertyName = "properties.systemMaxDegreeOfParallelism")] - public int? SystemMaxDegreeOfParallelism { get; protected set; } + public int? SystemMaxDegreeOfParallelism { get; private set; } /// /// Gets the system defined maximum supported jobs running under the @@ -176,7 +181,7 @@ public DataLakeAnalyticsAccount() { } /// running jobs the user can set for the account. /// [JsonProperty(PropertyName = "properties.systemMaxJobCount")] - public int? SystemMaxJobCount { get; protected set; } + public int? SystemMaxJobCount { get; private set; } /// /// Gets or sets the list of Data Lake storage accounts associated with @@ -196,19 +201,19 @@ public DataLakeAnalyticsAccount() { } /// Gets the account creation time. /// [JsonProperty(PropertyName = "properties.creationTime")] - public System.DateTime? CreationTime { get; protected set; } + public System.DateTime? CreationTime { get; private set; } /// /// Gets the account last modified time. /// [JsonProperty(PropertyName = "properties.lastModifiedTime")] - public System.DateTime? LastModifiedTime { get; protected set; } + public System.DateTime? LastModifiedTime { get; private set; } /// /// Gets the full CName endpoint for this account. /// [JsonProperty(PropertyName = "properties.endpoint")] - public string Endpoint { get; protected set; } + public string Endpoint { get; private set; } /// /// Gets or sets the commitment tier for the next month. Possible @@ -230,7 +235,7 @@ public DataLakeAnalyticsAccount() { } /// 'Commitment_500000AUHours' /// [JsonProperty(PropertyName = "properties.currentTier")] - public TierType? CurrentTier { get; protected set; } + public TierType? CurrentTier { get; private set; } /// /// Gets or sets the current state of the IP address firewall for this @@ -322,6 +327,3 @@ public override void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs index f8bc356dca1d..a3889982d786 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountState.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for DataLakeAnalyticsAccountState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum DataLakeAnalyticsAccountState { [EnumMember(Value = "Active")] @@ -33,6 +29,3 @@ public enum DataLakeAnalyticsAccountState Suspended } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs index 60750fcbbb72..8fd88911c0e8 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountStatus.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for DataLakeAnalyticsAccountStatus. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum DataLakeAnalyticsAccountStatus { [EnumMember(Value = "Failed")] @@ -47,6 +43,3 @@ public enum DataLakeAnalyticsAccountStatus Deleted } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs index 4f7143e51bef..a861ec105b91 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsAccountUpdateParameters.cs @@ -2,23 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -27,14 +23,17 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// The parameters that can be used to update an existing Data Lake /// Analytics account. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class DataLakeAnalyticsAccountUpdateParameters { /// /// Initializes a new instance of the /// DataLakeAnalyticsAccountUpdateParameters class. /// - public DataLakeAnalyticsAccountUpdateParameters() { } + public DataLakeAnalyticsAccountUpdateParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the @@ -72,8 +71,14 @@ public DataLakeAnalyticsAccountUpdateParameters() { } FirewallState = firewallState; FirewallAllowAzureIps = firewallAllowAzureIps; FirewallRules = firewallRules; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets resource tags /// @@ -172,6 +177,3 @@ public virtual void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs index b53f65bc84be..51e783cae90b 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialCreateParameters.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; - using Rest; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -25,7 +25,10 @@ public partial class DataLakeAnalyticsCatalogCredentialCreateParameters /// Initializes a new instance of the /// DataLakeAnalyticsCatalogCredentialCreateParameters class. /// - public DataLakeAnalyticsCatalogCredentialCreateParameters() { } + public DataLakeAnalyticsCatalogCredentialCreateParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the @@ -43,8 +46,14 @@ public DataLakeAnalyticsCatalogCredentialCreateParameters(string password, strin Password = password; Uri = uri; UserId = userId; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the password for the credential and user with access /// to the data source. @@ -90,4 +99,3 @@ public virtual void Validate() } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs index 4f89bd9a1407..71cb935e370e 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialDeleteParameters.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -24,7 +24,10 @@ public partial class DataLakeAnalyticsCatalogCredentialDeleteParameters /// Initializes a new instance of the /// DataLakeAnalyticsCatalogCredentialDeleteParameters class. /// - public DataLakeAnalyticsCatalogCredentialDeleteParameters() { } + public DataLakeAnalyticsCatalogCredentialDeleteParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the @@ -36,8 +39,14 @@ public DataLakeAnalyticsCatalogCredentialDeleteParameters() { } public DataLakeAnalyticsCatalogCredentialDeleteParameters(string password = default(string)) { Password = password; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the current password for the credential and user with /// access to the data source. This is required if the requester is not @@ -48,4 +57,3 @@ public DataLakeAnalyticsCatalogCredentialDeleteParameters() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs index 27250fefe820..666f7b4c17fa 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogCredentialUpdateParameters.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -24,7 +24,10 @@ public partial class DataLakeAnalyticsCatalogCredentialUpdateParameters /// Initializes a new instance of the /// DataLakeAnalyticsCatalogCredentialUpdateParameters class. /// - public DataLakeAnalyticsCatalogCredentialUpdateParameters() { } + public DataLakeAnalyticsCatalogCredentialUpdateParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the @@ -46,8 +49,14 @@ public DataLakeAnalyticsCatalogCredentialUpdateParameters() { } NewPassword = newPassword; Uri = uri; UserId = userId; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the current password for the credential and user with /// access to the data source. This is required if the requester is not @@ -80,4 +89,3 @@ public DataLakeAnalyticsCatalogCredentialUpdateParameters() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs index be56e43ddbe0..88629c04498f 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; - using Rest; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -27,7 +27,10 @@ public partial class DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters /// Initializes a new instance of the /// DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters class. /// - public DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters() { } + public DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the @@ -41,8 +44,14 @@ public DataLakeAnalyticsCatalogSecretCreateOrUpdateParameters() { } { Password = password; Uri = uri; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the password for the secret to pass in /// @@ -71,4 +80,3 @@ public virtual void Validate() } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs index 5627154d2dd5..f2097c6b1f09 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DataLakeStoreAccountInfo.cs @@ -2,35 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Data Lake Store account information. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class DataLakeStoreAccountInfo : SubResource { /// /// Initializes a new instance of the DataLakeStoreAccountInfo class. /// - public DataLakeStoreAccountInfo() { } + public DataLakeStoreAccountInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the DataLakeStoreAccountInfo class. @@ -44,8 +43,14 @@ public DataLakeStoreAccountInfo() { } : base(name, id, type) { Suffix = suffix; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the optional suffix for the Data Lake Store account. /// @@ -64,6 +69,3 @@ public override void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DdlName.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DdlName.cs index 2e69c1cdf93f..3cd385889f3f 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DdlName.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/DdlName.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class DdlName /// /// Initializes a new instance of the DdlName class. /// - public DdlName() { } + public DdlName() + { + CustomInit(); + } /// /// Initializes a new instance of the DdlName class. @@ -42,8 +45,14 @@ public DdlName() { } SecondPart = secondPart; ThirdPart = thirdPart; Server = server; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the table associated with this database /// and schema. @@ -74,4 +83,3 @@ public DdlName() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Diagnostics.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Diagnostics.cs index 0dae255675ab..cd600731e578 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Diagnostics.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Diagnostics.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -27,7 +23,10 @@ public partial class Diagnostics /// /// Initializes a new instance of the Diagnostics class. /// - public Diagnostics() { } + public Diagnostics() + { + CustomInit(); + } /// /// Initializes a new instance of the Diagnostics class. @@ -50,46 +49,50 @@ public Diagnostics() { } Message = message; Severity = severity; Start = start; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the column where the error occured. /// [JsonProperty(PropertyName = "columnNumber")] - public int? ColumnNumber { get; protected set; } + public int? ColumnNumber { get; private set; } /// /// Gets the ending index of the error. /// [JsonProperty(PropertyName = "end")] - public int? End { get; protected set; } + public int? End { get; private set; } /// /// Gets the line number the error occured on. /// [JsonProperty(PropertyName = "lineNumber")] - public int? LineNumber { get; protected set; } + public int? LineNumber { get; private set; } /// /// Gets the error message. /// [JsonProperty(PropertyName = "message")] - public string Message { get; protected set; } + public string Message { get; private set; } /// /// Gets the severity of the error. Possible values include: 'Warning', /// 'Error', 'Info', 'SevereWarning', 'Deprecated', 'UserWarning' /// [JsonProperty(PropertyName = "severity")] - public SeverityTypes? Severity { get; protected set; } + public SeverityTypes? Severity { get; private set; } /// /// Gets the starting index of the error. /// [JsonProperty(PropertyName = "start")] - public int? Start { get; protected set; } + public int? Start { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/EntityId.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/EntityId.cs index 56f18374a941..6cfe92808471 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/EntityId.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/EntityId.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class EntityId /// /// Initializes a new instance of the EntityId class. /// - public EntityId() { } + public EntityId() + { + CustomInit(); + } /// /// Initializes a new instance of the EntityId class. @@ -36,8 +39,14 @@ public EntityId() { } { Name = name; Version = version; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the external table associated with this /// database, schema and table. @@ -53,4 +62,3 @@ public EntityId() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/ExternalTable.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/ExternalTable.cs index d6657a785671..d67b7a663d5b 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/ExternalTable.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/ExternalTable.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class ExternalTable /// /// Initializes a new instance of the ExternalTable class. /// - public ExternalTable() { } + public ExternalTable() + { + CustomInit(); + } /// /// Initializes a new instance of the ExternalTable class. @@ -36,8 +39,14 @@ public ExternalTable() { } { TableName = tableName; DataSource = dataSource; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the table associated with this database /// and schema. @@ -53,4 +62,3 @@ public ExternalTable() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FileType.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FileType.cs index 11b532a74b9d..d00f3103f593 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FileType.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FileType.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for FileType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum FileType { [EnumMember(Value = "Assembly")] @@ -29,4 +29,3 @@ public enum FileType Resource } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs index 19c15f61ad03..5d03d937de5c 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallAllowAzureIpsState.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for FirewallAllowAzureIpsState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum FirewallAllowAzureIpsState { [EnumMember(Value = "Enabled")] @@ -33,6 +29,3 @@ public enum FirewallAllowAzureIpsState Disabled } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallRule.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallRule.cs index e8e1ed9ff7e2..3e35507c0915 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallRule.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallRule.cs @@ -2,35 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Data Lake Analytics firewall rule information /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class FirewallRule : OptionalSubResource { /// /// Initializes a new instance of the FirewallRule class. /// - public FirewallRule() { } + public FirewallRule() + { + CustomInit(); + } /// /// Initializes a new instance of the FirewallRule class. @@ -49,8 +48,14 @@ public FirewallRule() { } { StartIpAddress = startIpAddress; EndIpAddress = endIpAddress; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the start IP address for the firewall rule. This can /// be either ipv4 or ipv6. Start and End should be in the same @@ -85,6 +90,3 @@ public virtual void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallState.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallState.cs index 12abb87855ac..e24c81709511 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallState.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/FirewallState.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for FirewallState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum FirewallState { [EnumMember(Value = "Enabled")] @@ -33,6 +29,3 @@ public enum FirewallState Disabled } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs index 90950d81dfd4..ece625ace857 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/HiveJobProperties.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -28,7 +24,10 @@ public partial class HiveJobProperties : JobProperties /// /// Initializes a new instance of the HiveJobProperties class. /// - public HiveJobProperties() { } + public HiveJobProperties() + { + CustomInit(); + } /// /// Initializes a new instance of the HiveJobProperties class. @@ -51,33 +50,39 @@ public HiveJobProperties() { } OutputLocation = outputLocation; StatementCount = statementCount; ExecutedStatementCount = executedStatementCount; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the Hive logs location /// [JsonProperty(PropertyName = "logsLocation")] - public string LogsLocation { get; protected set; } + public string LogsLocation { get; private set; } /// /// Gets the location of Hive job output files (both execution output /// and results) /// [JsonProperty(PropertyName = "outputLocation")] - public string OutputLocation { get; protected set; } + public string OutputLocation { get; private set; } /// /// Gets the number of statements that will be run based on the script /// [JsonProperty(PropertyName = "statementCount")] - public int? StatementCount { get; protected set; } + public int? StatementCount { get; private set; } /// /// Gets the number of statements that have been run based on the /// script /// [JsonProperty(PropertyName = "executedStatementCount")] - public int? ExecutedStatementCount { get; protected set; } + public int? ExecutedStatementCount { get; private set; } /// /// Validate the object. @@ -91,5 +96,3 @@ public override void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobDataPath.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobDataPath.cs index b939b2de691f..d64e1093344a 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobDataPath.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobDataPath.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -29,7 +25,10 @@ public partial class JobDataPath /// /// Initializes a new instance of the JobDataPath class. /// - public JobDataPath() { } + public JobDataPath() + { + CustomInit(); + } /// /// Initializes a new instance of the JobDataPath class. @@ -44,27 +43,31 @@ public JobDataPath() { } JobId = jobId; Command = command; Paths = paths; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the id of the job this data is for. /// [JsonProperty(PropertyName = "jobId")] - public System.Guid? JobId { get; protected set; } + public System.Guid? JobId { get; private set; } /// /// Gets the command that this job data relates to. /// [JsonProperty(PropertyName = "command")] - public string Command { get; protected set; } + public string Command { get; private set; } /// /// Gets the list of paths to all of the job data. /// [JsonProperty(PropertyName = "paths")] - public IList Paths { get; protected set; } + public IList Paths { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs index 8dae3f4cd723..0a542c78b849 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobErrorDetails.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -27,7 +23,10 @@ public partial class JobErrorDetails /// /// Initializes a new instance of the JobErrorDetails class. /// - public JobErrorDetails() { } + public JobErrorDetails() + { + CustomInit(); + } /// /// Initializes a new instance of the JobErrorDetails class. @@ -77,44 +76,50 @@ public JobErrorDetails() { } Severity = severity; Source = source; StartOffset = startOffset; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the error message description /// [JsonProperty(PropertyName = "description")] - public string Description { get; protected set; } + public string Description { get; private set; } /// /// Gets the details of the error message. /// [JsonProperty(PropertyName = "details")] - public string Details { get; protected set; } + public string Details { get; private set; } /// /// Gets the end offset in the job where the error was found. /// [JsonProperty(PropertyName = "endOffset")] - public int? EndOffset { get; protected set; } + public int? EndOffset { get; private set; } /// /// Gets the specific identifier for the type of error encountered in /// the job. /// [JsonProperty(PropertyName = "errorId")] - public string ErrorId { get; protected set; } + public string ErrorId { get; private set; } /// /// Gets the path to any supplemental error files, if any. /// [JsonProperty(PropertyName = "filePath")] - public string FilePath { get; protected set; } + public string FilePath { get; private set; } /// /// Gets the link to MSDN or Azure help for this type of error, if any. /// [JsonProperty(PropertyName = "helpLink")] - public string HelpLink { get; protected set; } + public string HelpLink { get; private set; } /// /// Gets the internal diagnostic stack trace if the user requesting the @@ -122,31 +127,31 @@ public JobErrorDetails() { } /// otherwise it will be empty. /// [JsonProperty(PropertyName = "internalDiagnostics")] - public string InternalDiagnostics { get; protected set; } + public string InternalDiagnostics { get; private set; } /// /// Gets the specific line number in the job where the error occured. /// [JsonProperty(PropertyName = "lineNumber")] - public int? LineNumber { get; protected set; } + public int? LineNumber { get; private set; } /// /// Gets the user friendly error message for the failure. /// [JsonProperty(PropertyName = "message")] - public string Message { get; protected set; } + public string Message { get; private set; } /// /// Gets the recommended resolution for the failure, if any. /// [JsonProperty(PropertyName = "resolution")] - public string Resolution { get; protected set; } + public string Resolution { get; private set; } /// /// Gets the inner error of this specific job error message, if any. /// [JsonProperty(PropertyName = "innerError")] - public JobInnerError InnerError { get; protected set; } + public JobInnerError InnerError { get; private set; } /// /// Gets the severity level of the failure. Possible values include: @@ -154,22 +159,20 @@ public JobErrorDetails() { } /// 'UserWarning' /// [JsonProperty(PropertyName = "severity")] - public SeverityTypes? Severity { get; protected set; } + public SeverityTypes? Severity { get; private set; } /// /// Gets the ultimate source of the failure (usually either SYSTEM or /// USER). /// [JsonProperty(PropertyName = "source")] - public string Source { get; protected set; } + public string Source { get; private set; } /// /// Gets the start offset in the job where the error was found /// [JsonProperty(PropertyName = "startOffset")] - public int? StartOffset { get; protected set; } + public int? StartOffset { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInformation.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInformation.cs index 655c1e13dc7e..2b48704e3803 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInformation.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInformation.cs @@ -2,22 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; using Newtonsoft.Json; - using Rest; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -30,7 +26,10 @@ public partial class JobInformation /// /// Initializes a new instance of the JobInformation class. /// - public JobInformation() { } + public JobInformation() + { + CustomInit(); + } /// /// Initializes a new instance of the JobInformation class. @@ -89,13 +88,19 @@ public JobInformation() { } LogFilePatterns = logFilePatterns; StateAuditRecords = stateAuditRecords; Properties = properties; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the job's unique identifier (a GUID). /// [JsonProperty(PropertyName = "jobId")] - public System.Guid? JobId { get; protected set; } + public System.Guid? JobId { get; private set; } /// /// Gets or sets the friendly name of the job. @@ -114,13 +119,13 @@ public JobInformation() { } /// Gets the user or account that submitted the job. /// [JsonProperty(PropertyName = "submitter")] - public string Submitter { get; protected set; } + public string Submitter { get; private set; } /// /// Gets the error message details for the job, if the job failed. /// [JsonProperty(PropertyName = "errorMessage")] - public IList ErrorMessage { get; protected set; } + public IList ErrorMessage { get; private set; } /// /// Gets or sets the degree of parallelism used for this job. This must @@ -141,19 +146,19 @@ public JobInformation() { } /// Gets the time the job was submitted to the service. /// [JsonProperty(PropertyName = "submitTime")] - public System.DateTimeOffset? SubmitTime { get; protected set; } + public System.DateTimeOffset? SubmitTime { get; private set; } /// /// Gets the start time of the job. /// [JsonProperty(PropertyName = "startTime")] - public System.DateTimeOffset? StartTime { get; protected set; } + public System.DateTimeOffset? StartTime { get; private set; } /// /// Gets the completion time of the job. /// [JsonProperty(PropertyName = "endTime")] - public System.DateTimeOffset? EndTime { get; protected set; } + public System.DateTimeOffset? EndTime { get; private set; } /// /// Gets the job state. When the job is in the Ended state, refer to @@ -162,7 +167,7 @@ public JobInformation() { } /// 'Scheduling', 'Starting', 'Paused', 'WaitingForCapacity' /// [JsonProperty(PropertyName = "state")] - public JobState? State { get; protected set; } + public JobState? State { get; private set; } /// /// Gets the result of job execution or the current result of the @@ -170,14 +175,14 @@ public JobInformation() { } /// 'Cancelled', 'Failed' /// [JsonProperty(PropertyName = "result")] - public JobResult? Result { get; protected set; } + public JobResult? Result { get; private set; } /// /// Gets the log folder path to use in the following format: /// adl://&lt;accountName&gt;.azuredatalakestore.net/system/jobservice/jobs/Usql/2016/03/13/17/18/5fe51957-93bc-4de0-8ddc-c5a4753b068b/logs/. /// [JsonProperty(PropertyName = "logFolder")] - public string LogFolder { get; protected set; } + public string LogFolder { get; private set; } /// /// Gets or sets the list of log file name patterns to find in the @@ -192,7 +197,7 @@ public JobInformation() { } /// operations have been performed on this job. /// [JsonProperty(PropertyName = "stateAuditRecords")] - public IList StateAuditRecords { get; protected set; } + public IList StateAuditRecords { get; private set; } /// /// Gets or sets the job specific properties. @@ -223,5 +228,3 @@ public virtual void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInnerError.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInnerError.cs index 380f51306c99..045706d5b74a 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInnerError.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobInnerError.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -27,7 +23,10 @@ public partial class JobInnerError /// /// Initializes a new instance of the JobInnerError class. /// - public JobInnerError() { } + public JobInnerError() + { + CustomInit(); + } /// /// Initializes a new instance of the JobInnerError class. @@ -66,13 +65,19 @@ public JobInnerError() { } Resolution = resolution; Source = source; Description = description; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the diagnostic error code. /// [JsonProperty(PropertyName = "diagnosticCode")] - public int? DiagnosticCode { get; protected set; } + public int? DiagnosticCode { get; private set; } /// /// Gets the severity level of the failure. Possible values include: @@ -80,32 +85,32 @@ public JobInnerError() { } /// 'UserWarning' /// [JsonProperty(PropertyName = "severity")] - public SeverityTypes? Severity { get; protected set; } + public SeverityTypes? Severity { get; private set; } /// /// Gets the details of the error message. /// [JsonProperty(PropertyName = "details")] - public string Details { get; protected set; } + public string Details { get; private set; } /// /// Gets the component that failed. /// [JsonProperty(PropertyName = "component")] - public string Component { get; protected set; } + public string Component { get; private set; } /// /// Gets the specific identifier for the type of error encountered in /// the job. /// [JsonProperty(PropertyName = "errorId")] - public string ErrorId { get; protected set; } + public string ErrorId { get; private set; } /// /// Gets the link to MSDN or Azure help for this type of error, if any. /// [JsonProperty(PropertyName = "helpLink")] - public string HelpLink { get; protected set; } + public string HelpLink { get; private set; } /// /// Gets the internal diagnostic stack trace if the user requesting the @@ -113,34 +118,32 @@ public JobInnerError() { } /// otherwise it will be empty. /// [JsonProperty(PropertyName = "internalDiagnostics")] - public string InternalDiagnostics { get; protected set; } + public string InternalDiagnostics { get; private set; } /// /// Gets the user friendly error message for the failure. /// [JsonProperty(PropertyName = "message")] - public string Message { get; protected set; } + public string Message { get; private set; } /// /// Gets the recommended resolution for the failure, if any. /// [JsonProperty(PropertyName = "resolution")] - public string Resolution { get; protected set; } + public string Resolution { get; private set; } /// /// Gets the ultimate source of the failure (usually either SYSTEM or /// USER). /// [JsonProperty(PropertyName = "source")] - public string Source { get; protected set; } + public string Source { get; private set; } /// /// Gets the error message description /// [JsonProperty(PropertyName = "description")] - public string Description { get; protected set; } + public string Description { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobProperties.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobProperties.cs index a5f4c0614ffd..98f79d0c4c83 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobProperties.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobProperties.cs @@ -2,22 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; using Newtonsoft.Json; - using Rest; using System.Linq; /// @@ -28,7 +24,10 @@ public partial class JobProperties /// /// Initializes a new instance of the JobProperties class. /// - public JobProperties() { } + public JobProperties() + { + CustomInit(); + } /// /// Initializes a new instance of the JobProperties class. @@ -41,8 +40,14 @@ public JobProperties() { } { RuntimeVersion = runtimeVersion; Script = script; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the runtime version of the Data Lake Analytics engine /// to use for the specific type of job being run. @@ -71,5 +76,3 @@ public virtual void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResource.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResource.cs index 110f3a03c74c..487358c00bb8 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResource.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResource.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -27,7 +23,10 @@ public partial class JobResource /// /// Initializes a new instance of the JobResource class. /// - public JobResource() { } + public JobResource() + { + CustomInit(); + } /// /// Initializes a new instance of the JobResource class. @@ -43,8 +42,14 @@ public JobResource() { } Name = name; ResourcePath = resourcePath; Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the resource. /// @@ -68,5 +73,3 @@ public JobResource() { } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResourceType.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResourceType.cs index 89b7d028f2f5..589f1d1fcd3f 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResourceType.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResourceType.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for JobResourceType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum JobResourceType { [EnumMember(Value = "VertexResource")] @@ -41,5 +37,3 @@ public enum JobResourceType StatisticsResourceInUserFolder } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResult.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResult.cs index b9d442d556a2..7b5daeda1b49 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResult.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobResult.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for JobResult. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum JobResult { [EnumMember(Value = "None")] @@ -37,5 +33,3 @@ public enum JobResult Failed } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobState.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobState.cs index cecaaf44fe2b..9780372889b6 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobState.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobState.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for JobState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum JobState { [EnumMember(Value = "Accepted")] @@ -49,5 +45,3 @@ public enum JobState WaitingForCapacity } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs index 81be3703ff33..b5581b241405 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStateAuditRecord.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -28,7 +24,10 @@ public partial class JobStateAuditRecord /// /// Initializes a new instance of the JobStateAuditRecord class. /// - public JobStateAuditRecord() { } + public JobStateAuditRecord() + { + CustomInit(); + } /// /// Initializes a new instance of the JobStateAuditRecord class. @@ -45,33 +44,37 @@ public JobStateAuditRecord() { } TimeStamp = timeStamp; RequestedByUser = requestedByUser; Details = details; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the new state the job is in. /// [JsonProperty(PropertyName = "newState")] - public string NewState { get; protected set; } + public string NewState { get; private set; } /// /// Gets the time stamp that the state change took place. /// [JsonProperty(PropertyName = "timeStamp")] - public System.DateTimeOffset? TimeStamp { get; protected set; } + public System.DateTimeOffset? TimeStamp { get; private set; } /// /// Gets the user who requests the change. /// [JsonProperty(PropertyName = "requestedByUser")] - public string RequestedByUser { get; protected set; } + public string RequestedByUser { get; private set; } /// /// Gets the details of the audit log. /// [JsonProperty(PropertyName = "details")] - public string Details { get; protected set; } + public string Details { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatistics.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatistics.cs index e02e1a2450e1..c83476534325 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatistics.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatistics.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -29,7 +25,10 @@ public partial class JobStatistics /// /// Initializes a new instance of the JobStatistics class. /// - public JobStatistics() { } + public JobStatistics() + { + CustomInit(); + } /// /// Initializes a new instance of the JobStatistics class. @@ -44,27 +43,31 @@ public JobStatistics() { } LastUpdateTimeUtc = lastUpdateTimeUtc; FinalizingTimeUtc = finalizingTimeUtc; Stages = stages; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the last update time for the statistics. /// [JsonProperty(PropertyName = "lastUpdateTimeUtc")] - public System.DateTimeOffset? LastUpdateTimeUtc { get; protected set; } + public System.DateTimeOffset? LastUpdateTimeUtc { get; private set; } /// /// Gets the job finalizing start time. /// [JsonProperty(PropertyName = "finalizingTimeUtc")] - public System.DateTimeOffset? FinalizingTimeUtc { get; protected set; } + public System.DateTimeOffset? FinalizingTimeUtc { get; private set; } /// /// Gets the list of stages for the job. /// [JsonProperty(PropertyName = "stages")] - public IList Stages { get; protected set; } + public IList Stages { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs index c35dbe637c91..873a82036883 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobStatisticsVertexStage.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -27,7 +23,10 @@ public partial class JobStatisticsVertexStage /// /// Initializes a new instance of the JobStatisticsVertexStage class. /// - public JobStatisticsVertexStage() { } + public JobStatisticsVertexStage() + { + CustomInit(); + } /// /// Initializes a new instance of the JobStatisticsVertexStage class. @@ -93,129 +92,133 @@ public JobStatisticsVertexStage() { } TotalFailedTime = totalFailedTime; TotalProgress = totalProgress; TotalSucceededTime = totalSucceededTime; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the amount of data read, in bytes. /// [JsonProperty(PropertyName = "dataRead")] - public long? DataRead { get; protected set; } + public long? DataRead { get; private set; } /// /// Gets the amount of data read across multiple pods, in bytes. /// [JsonProperty(PropertyName = "dataReadCrossPod")] - public long? DataReadCrossPod { get; protected set; } + public long? DataReadCrossPod { get; private set; } /// /// Gets the amount of data read in one pod, in bytes. /// [JsonProperty(PropertyName = "dataReadIntraPod")] - public long? DataReadIntraPod { get; protected set; } + public long? DataReadIntraPod { get; private set; } /// /// Gets the amount of data remaining to be read, in bytes. /// [JsonProperty(PropertyName = "dataToRead")] - public long? DataToRead { get; protected set; } + public long? DataToRead { get; private set; } /// /// Gets the amount of data written, in bytes. /// [JsonProperty(PropertyName = "dataWritten")] - public long? DataWritten { get; protected set; } + public long? DataWritten { get; private set; } /// /// Gets the number of duplicates that were discarded. /// [JsonProperty(PropertyName = "duplicateDiscardCount")] - public int? DuplicateDiscardCount { get; protected set; } + public int? DuplicateDiscardCount { get; private set; } /// /// Gets the number of failures that occured in this stage. /// [JsonProperty(PropertyName = "failedCount")] - public int? FailedCount { get; protected set; } + public int? FailedCount { get; private set; } /// /// Gets the maximum amount of data read in a single vertex, in bytes. /// [JsonProperty(PropertyName = "maxVertexDataRead")] - public long? MaxVertexDataRead { get; protected set; } + public long? MaxVertexDataRead { get; private set; } /// /// Gets the minimum amount of data read in a single vertex, in bytes. /// [JsonProperty(PropertyName = "minVertexDataRead")] - public long? MinVertexDataRead { get; protected set; } + public long? MinVertexDataRead { get; private set; } /// /// Gets the number of read failures in this stage. /// [JsonProperty(PropertyName = "readFailureCount")] - public int? ReadFailureCount { get; protected set; } + public int? ReadFailureCount { get; private set; } /// /// Gets the number of vertices that were revoked during this stage. /// [JsonProperty(PropertyName = "revocationCount")] - public int? RevocationCount { get; protected set; } + public int? RevocationCount { get; private set; } /// /// Gets the number of currently running vertices in this stage. /// [JsonProperty(PropertyName = "runningCount")] - public int? RunningCount { get; protected set; } + public int? RunningCount { get; private set; } /// /// Gets the number of currently scheduled vertices in this stage /// [JsonProperty(PropertyName = "scheduledCount")] - public int? ScheduledCount { get; protected set; } + public int? ScheduledCount { get; private set; } /// /// Gets the name of this stage in job execution. /// [JsonProperty(PropertyName = "stageName")] - public string StageName { get; protected set; } + public string StageName { get; private set; } /// /// Gets the number of vertices that succeeded in this stage. /// [JsonProperty(PropertyName = "succeededCount")] - public int? SucceededCount { get; protected set; } + public int? SucceededCount { get; private set; } /// /// Gets the amount of temporary data written, in bytes. /// [JsonProperty(PropertyName = "tempDataWritten")] - public long? TempDataWritten { get; protected set; } + public long? TempDataWritten { get; private set; } /// /// Gets the total vertex count for this stage. /// [JsonProperty(PropertyName = "totalCount")] - public int? TotalCount { get; protected set; } + public int? TotalCount { get; private set; } /// /// Gets the amount of time that failed vertices took up in this stage. /// [JsonProperty(PropertyName = "totalFailedTime")] - public System.TimeSpan? TotalFailedTime { get; protected set; } + public System.TimeSpan? TotalFailedTime { get; private set; } /// /// Gets the current progress of this stage, as a percentage. /// [JsonProperty(PropertyName = "totalProgress")] - public int? TotalProgress { get; protected set; } + public int? TotalProgress { get; private set; } /// /// Gets the amount of time all successful vertices took in this stage. /// [JsonProperty(PropertyName = "totalSucceededTime")] - public System.TimeSpan? TotalSucceededTime { get; protected set; } + public System.TimeSpan? TotalSucceededTime { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobType.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobType.cs index 0dfa757a66a6..3b9360a6f335 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobType.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/JobType.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for JobType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum JobType { [EnumMember(Value = "USql")] @@ -33,5 +29,3 @@ public enum JobType Hive } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs index e2db0e4217e2..8ad090ad2eb5 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/OptionalSubResource.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -28,7 +24,10 @@ public partial class OptionalSubResource /// /// Initializes a new instance of the OptionalSubResource class. /// - public OptionalSubResource() { } + public OptionalSubResource() + { + CustomInit(); + } /// /// Initializes a new instance of the OptionalSubResource class. @@ -41,13 +40,19 @@ public OptionalSubResource() { } Id = id; Name = name; Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets resource Id /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } + public string Id { get; private set; } /// /// Gets or sets resource name @@ -59,10 +64,7 @@ public OptionalSubResource() { } /// Gets resource type /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Page.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Page.cs index 5c30018559d3..f98b1be0f534 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Page.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Page.cs @@ -2,18 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -53,4 +53,3 @@ IEnumerator IEnumerable.GetEnumerator() } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Resource.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Resource.cs index e153e3d244cc..e340c212af5a 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Resource.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/Resource.cs @@ -2,23 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Newtonsoft.Json; - using Rest; - using Rest.Azure; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -31,7 +27,10 @@ public partial class Resource : IResource /// /// Initializes a new instance of the Resource class. /// - public Resource() { } + public Resource() + { + CustomInit(); + } /// /// Initializes a new instance of the Resource class. @@ -48,25 +47,31 @@ public Resource() { } Type = type; Location = location; Tags = tags; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets resource Id /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } + public string Id { get; private set; } /// /// Gets resource name /// [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } + public string Name { get; private set; } /// /// Gets resource type /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } /// /// Gets or sets resource location @@ -95,6 +100,3 @@ public virtual void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs index c4a0a2168102..8ecd5a7370cf 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SasTokenInfo.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -27,7 +23,10 @@ public partial class SasTokenInfo /// /// Initializes a new instance of the SasTokenInfo class. /// - public SasTokenInfo() { } + public SasTokenInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the SasTokenInfo class. @@ -37,16 +36,19 @@ public SasTokenInfo() { } public SasTokenInfo(string accessToken = default(string)) { AccessToken = accessToken; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the access token for the associated Azure Storage Container. /// [JsonProperty(PropertyName = "accessToken")] - public string AccessToken { get; protected set; } + public string AccessToken { get; private set; } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs index a2b61ffced3f..f3d919b0de86 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SeverityTypes.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for SeverityTypes. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum SeverityTypes { [EnumMember(Value = "Warning")] @@ -41,5 +37,3 @@ public enum SeverityTypes UserWarning } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs index e4e8343b95e9..9b48d78d7cfb 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageAccountInfo.cs @@ -2,35 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Azure Storage account information. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class StorageAccountInfo : SubResource { /// /// Initializes a new instance of the StorageAccountInfo class. /// - public StorageAccountInfo() { } + public StorageAccountInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the StorageAccountInfo class. @@ -47,8 +46,14 @@ public StorageAccountInfo() { } { AccessKey = accessKey; Suffix = suffix; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the access key associated with this Azure Storage /// account that will be used to connect to it. @@ -78,6 +83,3 @@ public override void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageContainer.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageContainer.cs index 172d13404637..f706f9cfd92d 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageContainer.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/StorageContainer.cs @@ -2,35 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Azure Storage blob container information. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class StorageContainer { /// /// Initializes a new instance of the StorageContainer class. /// - public StorageContainer() { } + public StorageContainer() + { + CustomInit(); + } /// /// Initializes a new instance of the StorageContainer class. @@ -47,34 +46,37 @@ public StorageContainer() { } Id = id; Type = type; LastModifiedTime = lastModifiedTime; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the name of the blob container. /// [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } + public string Name { get; private set; } /// /// Gets the unique identifier of the blob container. /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } + public string Id { get; private set; } /// /// Gets the type of the blob container. /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } /// /// Gets the last modified time of the blob container. /// [JsonProperty(PropertyName = "properties.lastModifiedTime")] - public System.DateTime? LastModifiedTime { get; protected set; } + public System.DateTime? LastModifiedTime { get; private set; } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SubResource.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SubResource.cs index 3d4e6e092257..804b51494329 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SubResource.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/SubResource.cs @@ -2,22 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; using Newtonsoft.Json; - using Rest; using System.Linq; /// @@ -28,7 +24,10 @@ public partial class SubResource /// /// Initializes a new instance of the SubResource class. /// - public SubResource() { } + public SubResource() + { + CustomInit(); + } /// /// Initializes a new instance of the SubResource class. @@ -41,13 +40,19 @@ public SubResource() { } Id = id; Name = name; Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets resource Id /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } + public string Id { get; private set; } /// /// Gets or sets resource name @@ -59,7 +64,7 @@ public SubResource() { } /// Gets resource type /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } /// /// Validate the object. @@ -76,6 +81,3 @@ public virtual void Validate() } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TierType.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TierType.cs index af8eba74dd92..4357bbe2f597 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TierType.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TierType.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -24,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Analytics.Models /// /// Defines values for TierType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum TierType { [EnumMember(Value = "Consumption")] @@ -47,6 +43,3 @@ public enum TierType Commitment500000AUHours } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs index 0c1a9d6eb0dd..83bc8eaf3a5a 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/TypeFieldInfo.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class TypeFieldInfo /// /// Initializes a new instance of the TypeFieldInfo class. /// - public TypeFieldInfo() { } + public TypeFieldInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the TypeFieldInfo class. @@ -35,8 +38,14 @@ public TypeFieldInfo() { } { Name = name; Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the field associated with this type. /// @@ -51,4 +60,3 @@ public TypeFieldInfo() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs index f3fd66d1c700..b9a912108c70 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssembly.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlAssembly : CatalogItem /// /// Initializes a new instance of the USqlAssembly class. /// - public USqlAssembly() { } + public USqlAssembly() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlAssembly class. @@ -54,8 +57,14 @@ public USqlAssembly() { } IsUserDefined = isUserDefined; Files = files; Dependencies = dependencies; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -102,4 +111,3 @@ public USqlAssembly() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs index fb55f0825685..c8fd133f8c2a 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyClr.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlAssemblyClr : CatalogItem /// /// Initializes a new instance of the USqlAssemblyClr class. /// - public USqlAssemblyClr() { } + public USqlAssemblyClr() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlAssemblyClr class. @@ -40,8 +43,14 @@ public USqlAssemblyClr() { } DatabaseName = databaseName; Name = name; ClrName = clrName; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -62,4 +71,3 @@ public USqlAssemblyClr() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs index 1db9044e51ea..f76df04dafa3 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyDependencyInfo.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlAssemblyDependencyInfo /// /// Initializes a new instance of the USqlAssemblyDependencyInfo class. /// - public USqlAssemblyDependencyInfo() { } + public USqlAssemblyDependencyInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlAssemblyDependencyInfo class. @@ -32,8 +35,14 @@ public USqlAssemblyDependencyInfo() { } public USqlAssemblyDependencyInfo(EntityId entityId = default(EntityId)) { EntityId = entityId; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the EntityId of the dependency. /// @@ -42,4 +51,3 @@ public USqlAssemblyDependencyInfo() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs index fdc25eb1718b..1717ad06b1dc 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlAssemblyFileInfo.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlAssemblyFileInfo /// /// Initializes a new instance of the USqlAssemblyFileInfo class. /// - public USqlAssemblyFileInfo() { } + public USqlAssemblyFileInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlAssemblyFileInfo class. @@ -39,8 +42,14 @@ public USqlAssemblyFileInfo() { } Type = type; OriginalPath = originalPath; ContentPath = contentPath; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the assembly file type. Possible values include: /// 'Assembly', 'Resource' @@ -62,4 +71,3 @@ public USqlAssemblyFileInfo() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlCredential.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlCredential.cs index 94ce076cea7c..17257c891398 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlCredential.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlCredential.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlCredential : CatalogItem /// /// Initializes a new instance of the USqlCredential class. /// - public USqlCredential() { } + public USqlCredential() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlCredential class. @@ -36,8 +39,14 @@ public USqlCredential() { } : base(computeAccountName, version) { Name = name; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the credential. /// @@ -46,4 +55,3 @@ public USqlCredential() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs index 5ebad403fe5e..db03865c0fad 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDatabase.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlDatabase : CatalogItem /// /// Initializes a new instance of the USqlDatabase class. /// - public USqlDatabase() { } + public USqlDatabase() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlDatabase class. @@ -36,8 +39,14 @@ public USqlDatabase() { } : base(computeAccountName, version) { Name = name; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -46,4 +55,3 @@ public USqlDatabase() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs index b62c5e9e89c4..163407cad26d 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDirectedColumn.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlDirectedColumn /// /// Initializes a new instance of the USqlDirectedColumn class. /// - public USqlDirectedColumn() { } + public USqlDirectedColumn() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlDirectedColumn class. @@ -35,8 +38,14 @@ public USqlDirectedColumn() { } { Name = name; Descending = descending; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the index in the table. /// @@ -52,4 +61,3 @@ public USqlDirectedColumn() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs index b6a91daa02d7..9f618ebc2ab9 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlDistributionInfo.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlDistributionInfo /// /// Initializes a new instance of the USqlDistributionInfo class. /// - public USqlDistributionInfo() { } + public USqlDistributionInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlDistributionInfo class. @@ -43,8 +46,14 @@ public USqlDistributionInfo() { } Keys = keys; Count = count; DynamicCount = dynamicCount; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the type of this distribution. /// @@ -71,4 +80,3 @@ public USqlDistributionInfo() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs index f27dd7ade491..812822914932 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlExternalDataSource.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlExternalDataSource : CatalogItem /// /// Initializes a new instance of the USqlExternalDataSource class. /// - public USqlExternalDataSource() { } + public USqlExternalDataSource() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlExternalDataSource class. @@ -49,8 +52,14 @@ public USqlExternalDataSource() { } Provider = provider; ProviderString = providerString; PushdownTypes = pushdownTypes; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -85,4 +94,3 @@ public USqlExternalDataSource() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlIndex.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlIndex.cs index 500776179476..22e0e7fdc987 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlIndex.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlIndex.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlIndex /// /// Initializes a new instance of the USqlIndex class. /// - public USqlIndex() { } + public USqlIndex() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlIndex class. @@ -60,8 +63,14 @@ public USqlIndex() { } IsColumnstore = isColumnstore; IndexId = indexId; IsUnique = isUnique; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the index in the table. /// @@ -126,4 +135,3 @@ public USqlIndex() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs index fe209c0de8ef..88a13fe2cc9c 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlJobProperties.cs @@ -2,20 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -30,7 +26,10 @@ public partial class USqlJobProperties : JobProperties /// /// Initializes a new instance of the USqlJobProperties class. /// - public USqlJobProperties() { } + public USqlJobProperties() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlJobProperties class. @@ -89,8 +88,14 @@ public USqlJobProperties() { } YarnApplicationId = yarnApplicationId; YarnApplicationTimeStamp = yarnApplicationTimeStamp; CompileMode = compileMode; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the list of resources that are required by the job /// @@ -119,35 +124,35 @@ public USqlJobProperties() { } /// Gets the algebra file path after the job has completed /// [JsonProperty(PropertyName = "algebraFilePath")] - public string AlgebraFilePath { get; protected set; } + public string AlgebraFilePath { get; private set; } /// /// Gets the total time this job spent compiling. This value should not /// be set by the user and will be ignored if it is. /// [JsonProperty(PropertyName = "totalCompilationTime")] - public System.TimeSpan? TotalCompilationTime { get; protected set; } + public System.TimeSpan? TotalCompilationTime { get; private set; } /// /// Gets the total time this job spent paused. This value should not be /// set by the user and will be ignored if it is. /// [JsonProperty(PropertyName = "totalPauseTime")] - public System.TimeSpan? TotalPauseTime { get; protected set; } + public System.TimeSpan? TotalPauseTime { get; private set; } /// /// Gets the total time this job spent queued. This value should not be /// set by the user and will be ignored if it is. /// [JsonProperty(PropertyName = "totalQueuedTime")] - public System.TimeSpan? TotalQueuedTime { get; protected set; } + public System.TimeSpan? TotalQueuedTime { get; private set; } /// /// Gets the total time this job spent executing. This value should not /// be set by the user and will be ignored if it is. /// [JsonProperty(PropertyName = "totalRunningTime")] - public System.TimeSpan? TotalRunningTime { get; protected set; } + public System.TimeSpan? TotalRunningTime { get; private set; } /// /// Gets the ID used to identify the job manager coordinating job @@ -155,7 +160,7 @@ public USqlJobProperties() { } /// ignored if it is. /// [JsonProperty(PropertyName = "rootProcessNodeId")] - public string RootProcessNodeId { get; protected set; } + public string RootProcessNodeId { get; private set; } /// /// Gets the ID used to identify the yarn application executing the @@ -163,7 +168,7 @@ public USqlJobProperties() { } /// if it is. /// [JsonProperty(PropertyName = "yarnApplicationId")] - public string YarnApplicationId { get; protected set; } + public string YarnApplicationId { get; private set; } /// /// Gets the timestamp (in ticks) for the yarn application executing @@ -171,7 +176,7 @@ public USqlJobProperties() { } /// ignored if it is. /// [JsonProperty(PropertyName = "yarnApplicationTimeStamp")] - public long? YarnApplicationTimeStamp { get; protected set; } + public long? YarnApplicationTimeStamp { get; private set; } /// /// Gets or sets optionally enforces a specific compilation mode for @@ -194,5 +199,3 @@ public override void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs index 6fff898fb7a5..95da5f0fced7 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlProcedure.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlProcedure : CatalogItem /// /// Initializes a new instance of the USqlProcedure class. /// - public USqlProcedure() { } + public USqlProcedure() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlProcedure class. @@ -44,8 +47,14 @@ public USqlProcedure() { } SchemaName = schemaName; Name = name; Definition = definition; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -73,4 +82,3 @@ public USqlProcedure() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSchema.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSchema.cs index 735f78850778..b016dcafaa48 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSchema.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSchema.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlSchema : CatalogItem /// /// Initializes a new instance of the USqlSchema class. /// - public USqlSchema() { } + public USqlSchema() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlSchema class. @@ -38,8 +41,14 @@ public USqlSchema() { } { DatabaseName = databaseName; Name = name; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -54,4 +63,3 @@ public USqlSchema() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSecret.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSecret.cs index 6a4936c7a5de..a0886ccff47d 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSecret.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlSecret.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlSecret : CatalogItem /// /// Initializes a new instance of the USqlSecret class. /// - public USqlSecret() { } + public USqlSecret() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlSecret class. @@ -48,8 +51,14 @@ public USqlSecret() { } CreationTime = creationTime; Uri = uri; Password = password; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -84,4 +93,3 @@ public USqlSecret() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTable.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTable.cs index 163bba24e0a9..8d0e600f1394 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTable.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTable.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlTable : CatalogItem /// /// Initializes a new instance of the USqlTable class. /// - public USqlTable() { } + public USqlTable() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlTable class. @@ -56,8 +59,14 @@ public USqlTable() { } PartitionKeyList = partitionKeyList; ExternalTable = externalTable; DistributionInfo = distributionInfo; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -109,4 +118,3 @@ public USqlTable() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs index 2278919bcc67..cd413e301eed 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableColumn.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlTableColumn /// /// Initializes a new instance of the USqlTableColumn class. /// - public USqlTableColumn() { } + public USqlTableColumn() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlTableColumn class. @@ -35,8 +38,14 @@ public USqlTableColumn() { } { Name = name; Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the column in the table. /// @@ -52,4 +61,3 @@ public USqlTableColumn() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs index 32cc4fc4fe1f..8f46302e177e 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTablePartition.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlTablePartition : CatalogItem /// /// Initializes a new instance of the USqlTablePartition class. /// - public USqlTablePartition() { } + public USqlTablePartition() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlTablePartition class. @@ -53,8 +56,14 @@ public USqlTablePartition() { } IndexId = indexId; Label = label; CreateDate = createDate; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -100,4 +109,3 @@ public USqlTablePartition() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs index 6f63c8206d35..5134e1dbc8fe 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableStatistics.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlTableStatistics : CatalogItem /// /// Initializes a new instance of the USqlTableStatistics class. /// - public USqlTableStatistics() { } + public USqlTableStatistics() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlTableStatistics class. @@ -70,8 +73,14 @@ public USqlTableStatistics() { } HasFilter = hasFilter; FilterDefinition = filterDefinition; ColNames = colNames; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -157,4 +166,3 @@ public USqlTableStatistics() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableType.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableType.cs index e69cce834cb6..f1fb6ad1a4c6 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableType.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableType.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class USqlTableType : USqlType /// /// Initializes a new instance of the USqlTableType class. /// - public USqlTableType() { } + public USqlTableType() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlTableType class. @@ -62,14 +65,19 @@ public USqlTableType() { } : base(computeAccountName, version, databaseName, schemaName, name, typeFamily, cSharpName, fullCSharpName, systemTypeId, userTypeId, schemaId, principalId, isNullable, isUserDefined, isAssemblyType, isTableType, isComplexType) { Columns = columns; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the type field information associated with this table type. /// [JsonProperty(PropertyName = "columns")] - public IList Columns { get; protected set; } + public IList Columns { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs index c21450a0a619..027687b5c5ae 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlTableValuedFunction.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlTableValuedFunction : CatalogItem /// /// Initializes a new instance of the USqlTableValuedFunction class. /// - public USqlTableValuedFunction() { } + public USqlTableValuedFunction() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlTableValuedFunction class. @@ -44,8 +47,14 @@ public USqlTableValuedFunction() { } SchemaName = schemaName; Name = name; Definition = definition; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -72,4 +81,3 @@ public USqlTableValuedFunction() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlType.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlType.cs index bd5457dc19da..2870a1c8ffd3 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlType.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlType.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlType : CatalogItem /// /// Initializes a new instance of the USqlType class. /// - public USqlType() { } + public USqlType() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlType class. @@ -72,8 +75,14 @@ public USqlType() { } IsAssemblyType = isAssemblyType; IsTableType = isTableType; IsComplexType = isComplexType; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -171,4 +180,3 @@ public USqlType() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlView.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlView.cs index 212efe8bdd3a..f4ab1ed2ac2c 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlView.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/USqlView.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class USqlView : CatalogItem /// /// Initializes a new instance of the USqlView class. /// - public USqlView() { } + public USqlView() + { + CustomInit(); + } /// /// Initializes a new instance of the USqlView class. @@ -43,8 +46,14 @@ public USqlView() { } SchemaName = schemaName; Name = name; Definition = definition; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of the database. /// @@ -72,4 +81,3 @@ public USqlView() { } } } - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs index 06ca7b3f0c25..e536976ef0f6 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateFirewallRuleParameters.cs @@ -2,36 +2,35 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Data Lake Analytics firewall rule update parameters /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class UpdateFirewallRuleParameters { /// /// Initializes a new instance of the UpdateFirewallRuleParameters /// class. /// - public UpdateFirewallRuleParameters() { } + public UpdateFirewallRuleParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the UpdateFirewallRuleParameters @@ -47,8 +46,14 @@ public UpdateFirewallRuleParameters() { } { StartIpAddress = startIpAddress; EndIpAddress = endIpAddress; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the start IP address for the firewall rule. This can /// be either ipv4 or ipv6. Start and End should be in the same @@ -66,6 +71,3 @@ public UpdateFirewallRuleParameters() { } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs index 1da419c17630..189afc56b628 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/Models/UpdateStorageAccountParameters.cs @@ -2,37 +2,36 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics.Models { - using Analytics; - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Analytics; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Analytics; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; using System.Linq; /// /// Storage account parameters for a storage account being updated in a /// Data Lake Analytics account. /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class UpdateStorageAccountParameters { /// /// Initializes a new instance of the UpdateStorageAccountParameters /// class. /// - public UpdateStorageAccountParameters() { } + public UpdateStorageAccountParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the UpdateStorageAccountParameters @@ -46,8 +45,14 @@ public UpdateStorageAccountParameters() { } { AccessKey = accessKey; Suffix = suffix; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the updated access key associated with this Azure /// Storage account that will be used to connect to it. @@ -63,6 +68,3 @@ public UpdateStorageAccountParameters() { } } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs index 13854435e61e..35d1c698ff7f 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperations.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -143,9 +140,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -160,6 +157,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -207,7 +206,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -244,7 +243,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -346,9 +345,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + 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) @@ -363,6 +362,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -400,11 +401,19 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -527,9 +536,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -544,6 +553,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -561,7 +572,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -587,11 +598,19 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -723,9 +742,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -740,6 +759,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -757,7 +778,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -783,11 +804,19 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -919,9 +948,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -936,6 +965,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -983,7 +1014,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1020,7 +1051,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1126,9 +1157,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1143,6 +1174,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1190,7 +1223,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1227,7 +1260,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1343,9 +1376,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -1360,6 +1393,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1407,7 +1442,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1444,7 +1479,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1572,9 +1607,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1589,6 +1624,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1636,7 +1673,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1673,7 +1710,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1745,9 +1782,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1762,6 +1799,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1809,7 +1848,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1846,7 +1885,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1917,9 +1956,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -1934,6 +1973,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1981,7 +2022,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2018,7 +2059,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2090,9 +2131,9 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -2107,6 +2148,8 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2154,7 +2197,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2191,7 +2234,7 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -2210,6 +2253,3 @@ internal StorageAccountsOperations(DataLakeAnalyticsAccountManagementClient clie } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs index f11e7147b021..0a5487f4c8c3 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Generated/StorageAccountsOperationsExtensions.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Analytics { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Threading; using System.Threading.Tasks; @@ -124,7 +121,7 @@ public static void Delete(this IStorageAccountsOperations operations, string res /// public static async Task DeleteAsync(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -179,7 +176,7 @@ public static void Delete(this IStorageAccountsOperations operations, string res /// public static async Task UpdateAsync(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, UpdateStorageAccountParameters parameters = default(UpdateStorageAccountParameters), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.UpdateWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -236,7 +233,7 @@ public static void Add(this IStorageAccountsOperations operations, string resour /// public static async Task AddAsync(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, string storageAccountName, AddStorageAccountParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.AddWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, parameters, null, cancellationToken).ConfigureAwait(false); + (await operations.AddWithHttpMessagesAsync(resourceGroupName, accountName, storageAccountName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -445,7 +442,7 @@ public static IPage ListSasTokens(this IStorageAccountsOperations /// public static IPage ListByAccount(this IStorageAccountsOperations operations, string resourceGroupName, string accountName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?)) { - return operations.ListByAccountAsync(resourceGroupName, accountName, odataQuery, select, count).GetAwaiter().GetResult(); + return ((IStorageAccountsOperations)operations).ListByAccountAsync(resourceGroupName, accountName, odataQuery, select, count).GetAwaiter().GetResult(); } /// @@ -601,6 +598,3 @@ public static IPage ListByAccountNext(this IStorageAccountsO } } - - - diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Properties/AssemblyInfo.cs b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Properties/AssemblyInfo.cs index 3f0ac6c2def7..915f8ff75d15 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure Data Lake Analytics management operations including account, catalog and job management.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.1.0.0")] +[assembly: AssemblyFileVersion("2.1.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/generate.cmd b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/generate.cmd index 18d90ebf23b3..b8ff9298672b 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/generate.cmd +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/generate.cmd @@ -5,20 +5,18 @@ @echo off setlocal -set autoRestVersion=1.0.0-Nightly20170104 -set source=-Source https://www.myget.org/F/autorest/api/v2 -set accountSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ae749b979d3a333de9eb76f726dad06223f455f/arm-datalake-analytics/account/2016-11-01/swagger/account.json" -set jobSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ae749b979d3a333de9eb76f726dad06223f455f/arm-datalake-analytics/job/2016-11-01/swagger/job.json" -set catalogSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ae749b979d3a333de9eb76f726dad06223f455f/arm-datalake-analytics/catalog/2016-11-01/swagger/catalog.json" +set accountSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ade6547eff89bab427eb400ebc5da870f2c5bd0/arm-datalake-analytics/account/2016-11-01/swagger/account.json" +set jobSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ade6547eff89bab427eb400ebc5da870f2c5bd0/arm-datalake-analytics/job/2016-11-01/swagger/job.json" +set catalogSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ade6547eff89bab427eb400ebc5da870f2c5bd0/arm-datalake-analytics/catalog/2016-11-01/swagger/catalog.json" set repoRoot=%~dp0..\..\..\.. set generateFolder=%~dp0Generated if exist %generateFolder% rd /S /Q %generateFolder% -call "%repoRoot%\tools\autorest.gen.cmd" %accountSpecFile% Microsoft.Azure.Management.DataLake.Analytics %autoRestVersion% %generateFolder% -call "%repoRoot%\tools\autorest.gen.cmd" %jobSpecFile% Microsoft.Azure.Management.DataLake.Analytics %autoRestVersion% %generateFolder% -call "%repoRoot%\tools\autorest.gen.cmd" %catalogSpecFile% Microsoft.Azure.Management.DataLake.Analytics %autoRestVersion% %generateFolder% +call autorest --latest -CodeGenerator Azure.CSharp -Input %accountSpecFile% -Namespace Microsoft.Azure.Management.DataLake.Analytics -outputDirectory %generateFolder% -Header MICROSOFT_MIT +call autorest --latest -CodeGenerator Azure.CSharp -Input %jobSpecFile% -Namespace Microsoft.Azure.Management.DataLake.Analytics -outputDirectory %generateFolder% -Header MICROSOFT_MIT +call autorest --latest -CodeGenerator Azure.CSharp -Input %catalogSpecFile% -Namespace Microsoft.Azure.Management.DataLake.Analytics -outputDirectory %generateFolder% -Header MICROSOFT_MIT endlocal \ No newline at end of file diff --git a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json index 4f2aa50bd7f2..700a7ec2886c 100644 --- a/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json +++ b/src/ResourceManagement/DataLake.Analytics/Microsoft.Azure.Management.DataLake.Analytics/project.json @@ -1,5 +1,5 @@ { - "version": "2.1.0-preview", + "version": "2.1.1-preview", "description": "Provides Data Lake Analytics account, job and catalog management capabilities for Microsoft Azure.", "authors": [ "Microsoft" ], diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/AccountOperationTests.cs b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/AccountOperationTests.cs index d115088a75e4..32673308078c 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/AccountOperationTests.cs +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/AccountOperationTests.cs @@ -208,7 +208,9 @@ public void FirewallAndTrustedProviderTest() Assert.Equal(firewallStart, responseGet.FirewallRules[0].StartIpAddress); Assert.Equal(firewallEnd, responseGet.FirewallRules[0].EndIpAddress); Assert.Equal(firewallRuleName1, responseGet.FirewallRules[0].Name); - Assert.Equal(FirewallAllowAzureIpsState.Enabled, responseGet.FirewallAllowAzureIps); + + // TODO: re-enable this once we support this in the server again. + // Assert.Equal(FirewallAllowAzureIpsState.Enabled, responseGet.FirewallAllowAzureIps); // validate trusted identity provider state Assert.Equal(TrustedIdProviderState.Enabled, responseGet.TrustedIdProviderState); diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/FileSystemOperationTests.cs b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/FileSystemOperationTests.cs index 2b9fefd28f26..f3a21769048d 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/FileSystemOperationTests.cs +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/ScenarioTests/FileSystemOperationTests.cs @@ -754,8 +754,8 @@ public void DataLakeStoreFileSystemGetAndSetAcl() using ( commonData.DataLakeStoreFileSystemClient = commonData.GetDataLakeStoreFileSystemManagementClient(context)) { - var currentAcl = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( - commonData.DataLakeStoreFileSystemAccountName, "/"); + var currentAcl = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + commonData.DataLakeStoreFileSystemAccountName, "/")); var originalPermission = currentAcl.AclStatus.Permission; var aclToReplaceWith = new List(currentAcl.AclStatus.Entries); var originalOther = string.Empty; @@ -778,9 +778,9 @@ public void DataLakeStoreFileSystemGetAndSetAcl() "/", string.Join(",", aclToReplaceWith)); - var newAcl = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( - commonData.DataLakeStoreFileSystemAccountName, "/"); - + var newAcl = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + commonData.DataLakeStoreFileSystemAccountName, "/")); + // verify the ACL actually changed // Check the access first and assert that it returns OK (note: this is currently only for the user making the request, so it is not testing "other") commonData.DataLakeStoreFileSystemClient.FileSystem.CheckAccess( @@ -803,8 +803,8 @@ public void DataLakeStoreFileSystemGetAndSetAcl() originalOther); // Now confirm that it equals the original ACL - var finalAclStatus = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( - commonData.DataLakeStoreFileSystemAccountName, "/") + var finalAclStatus = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + commonData.DataLakeStoreFileSystemAccountName, "/")) .AclStatus; var finalEntries = finalAclStatus.Entries; foreach (var entry in finalEntries) @@ -893,8 +893,8 @@ public void DataLakeStoreFileSystemGetAcl() commonData = new CommonTestFixture(context); using (commonData.DataLakeStoreFileSystemClient = commonData.GetDataLakeStoreFileSystemManagementClient(context)) { - var aclGetResponse = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( - commonData.DataLakeStoreFileSystemAccountName, "/"); + var aclGetResponse = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + commonData.DataLakeStoreFileSystemAccountName, "/")); Assert.NotNull(aclGetResponse.AclStatus); Assert.NotEmpty(aclGetResponse.AclStatus.Entries); @@ -912,9 +912,9 @@ public void DataLakeStoreFileSystemSetAcl() commonData = new CommonTestFixture(context); using (commonData.DataLakeStoreFileSystemClient = commonData.GetDataLakeStoreFileSystemManagementClient(context)) { - var aclGetResponse = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + var aclGetResponse = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( commonData.DataLakeStoreFileSystemAccountName, - "/"); + "/")); Assert.NotNull(aclGetResponse.AclStatus); Assert.NotEmpty(aclGetResponse.AclStatus.Entries); @@ -930,13 +930,13 @@ public void DataLakeStoreFileSystemSetAcl() newAcls); // retrieve the ACL again and confirm the new entry is present - aclGetResponse = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( - commonData.DataLakeStoreFileSystemAccountName, "/"); + aclGetResponse = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + commonData.DataLakeStoreFileSystemAccountName, "/")); Assert.NotNull(aclGetResponse.AclStatus); Assert.NotEmpty(aclGetResponse.AclStatus.Entries); - // this is plus two because we do not have a mask until we add a specific user. Adding the specific user also adds the mask. - Assert.Equal(currentCount + 2, aclGetResponse.AclStatus.Entries.Count); + + Assert.Equal(currentCount + 1, aclGetResponse.AclStatus.Entries.Count); Assert.True(aclGetResponse.AclStatus.Entries.Any(entry => entry.Contains(commonData.AclUserId))); } } @@ -950,9 +950,9 @@ public void DataLakeStoreFileSystemSetDeleteAclEntry() commonData = new CommonTestFixture(context); using (commonData.DataLakeStoreFileSystemClient = commonData.GetDataLakeStoreFileSystemManagementClient(context)) { - var aclGetResponse = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + var aclGetResponse = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( commonData.DataLakeStoreFileSystemAccountName, - "/"); + "/")); Assert.NotNull(aclGetResponse.AclStatus); Assert.NotEmpty(aclGetResponse.AclStatus.Entries); @@ -967,15 +967,14 @@ public void DataLakeStoreFileSystemSetDeleteAclEntry() newAce); // retrieve the ACL again and confirm the new entry is present - aclGetResponse = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + aclGetResponse = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( commonData.DataLakeStoreFileSystemAccountName, - "/"); + "/")); Assert.NotNull(aclGetResponse.AclStatus); Assert.NotEmpty(aclGetResponse.AclStatus.Entries); - // Mask gets created as part of adding the user. - Assert.Equal(currentCount + 2, aclGetResponse.AclStatus.Entries.Count); + Assert.Equal(currentCount + 1, aclGetResponse.AclStatus.Entries.Count); Assert.True(aclGetResponse.AclStatus.Entries.Any(entry => entry.Contains(commonData.AclUserId))); // now remove the entry @@ -985,16 +984,15 @@ public void DataLakeStoreFileSystemSetDeleteAclEntry() "/", aceToRemove); - // retrieve the ACL again and confirm the new entry is present - aclGetResponse = commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( + // retrieve the ACL again and confirm the new entry is gone + aclGetResponse = GetFullAcl(commonData.DataLakeStoreFileSystemClient.FileSystem.GetAclStatus( commonData.DataLakeStoreFileSystemAccountName, - "/"); + "/")); Assert.NotNull(aclGetResponse.AclStatus); Assert.NotEmpty(aclGetResponse.AclStatus.Entries); - // Mask does not get removed when the user is removed. - Assert.Equal(currentCount + 1, aclGetResponse.AclStatus.Entries.Count); + Assert.Equal(currentCount, aclGetResponse.AclStatus.Entries.Count); Assert.False(aclGetResponse.AclStatus.Entries.Any(entry => entry.Contains(commonData.AclUserId))); } } @@ -1079,6 +1077,40 @@ public void DataLakeStoreDownloadUploadFileAndFolder() #endregion #region helpers + internal AclStatusResult GetFullAcl(AclStatusResult acl) + { + if(acl.AclStatus.Entries != null && acl.AclStatus.Permission.HasValue && acl.AclStatus.Permission.Value.ToString().Length >= 3) + { + var permissionString = acl.AclStatus.Permission.Value.ToString(); + var permissionLength = permissionString.Length; + var ownerOctal = permissionString.ElementAt(permissionLength - 3).ToString(); + var groupOctal = permissionString.ElementAt(permissionLength - 2).ToString(); + var otherOctal = permissionString.ElementAt(permissionLength - 1).ToString(); + + acl.AclStatus.Entries.Add(string.Format("user::{0}", octalToPermission(int.Parse(ownerOctal)))); + acl.AclStatus.Entries.Add(string.Format("other::{0}", octalToPermission(int.Parse(otherOctal)))); + + if (!string.IsNullOrEmpty(acl.AclStatus.Entries.First(e => e.StartsWith("group::")))) + { + acl.AclStatus.Entries.Add(string.Format("mask::{0}", octalToPermission(int.Parse(groupOctal)))); + } + else + { + acl.AclStatus.Entries.Add(string.Format("group::{0}", octalToPermission(int.Parse(groupOctal)))); + } + } + + return acl; + } + + private string octalToPermission(int octal) + { + return string.Format("{0}{1}{2}", + (octal & 4) > 0 ? "r" : "-", + (octal & 2) > 0 ? "w" : "-", + (octal & 1) > 0 ? "x" : "-"); + } + internal string CreateFolder(DataLakeStoreFileSystemManagementClient dataLakeStoreFileSystemClient, string caboAccountName, bool randomName = false) { // Create a folder diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json index 8b6abf7e1531..5a42e9818a61 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/CreateGetUpdateDeleteTest.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d978108-b97a-42d4-94c7-d281d9712cd9" + "d2841bf1-d3bd-4954-afbb-77a77d204388" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,11 +28,14 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:35 GMT" + "Mon, 27 Mar 2017 18:00:58 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -41,13 +43,13 @@ "1199" ], "x-ms-request-id": [ - "f1ca3e36-4f66-4c26-9c7e-4bedc6c50522" + "5790755b-8cac-48c4-b0e3-8b1faf2db3c5" ], "x-ms-correlation-request-id": [ - "f1ca3e36-4f66-4c26-9c7e-4bedc6c50522" + "5790755b-8cac-48c4-b0e3-8b1faf2db3c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193036Z:f1ca3e36-4f66-4c26-9c7e-4bedc6c50522" + "WESTUS2:20170327T180059Z:5790755b-8cac-48c4-b0e3-8b1faf2db3c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d5d16d18-29f0-4778-bcef-a976d43e8910" + "9f407e5e-4363-45ce-80e5-c390c02881b1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:35 GMT" + "Mon, 27 Mar 2017 18:00:58 GMT" ], "Pragma": [ "no-cache" @@ -96,13 +97,13 @@ "14999" ], "x-ms-request-id": [ - "aed67705-bf79-4af1-acc7-a166aff45a82" + "de491c4f-2bfb-4f78-9900-8c9adf259da1" ], "x-ms-correlation-request-id": [ - "aed67705-bf79-4af1-acc7-a166aff45a82" + "de491c4f-2bfb-4f78-9900-8c9adf259da1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193036Z:aed67705-bf79-4af1-acc7-a166aff45a82" + "WESTUS2:20170327T180059Z:de491c4f-2bfb-4f78-9900-8c9adf259da1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "445d6aef-8de6-48ad-9cae-5b5b6f31651b" + "e1e04682-bb40-4754-b5ac-5363b608a02f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,11 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:36 GMT" + "Mon, 27 Mar 2017 18:00:59 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -151,13 +154,13 @@ "1198" ], "x-ms-request-id": [ - "f48e47b5-a250-4bcc-ab29-ed3a89fef063" + "a996e81e-cbbd-4563-9d6c-af99e8cb8df0" ], "x-ms-correlation-request-id": [ - "f48e47b5-a250-4bcc-ab29-ed3a89fef063" + "a996e81e-cbbd-4563-9d6c-af99e8cb8df0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193037Z:f48e47b5-a250-4bcc-ab29-ed3a89fef063" + "WESTUS2:20170327T180059Z:a996e81e-cbbd-4563-9d6c-af99e8cb8df0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12754544-ac08-49a1-998a-bc3827c5dfdb" + "b3499f82-eed4-4397-bae6-7a32f57537b1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:36 GMT" + "Mon, 27 Mar 2017 18:00:59 GMT" ], "Pragma": [ "no-cache" @@ -206,13 +208,13 @@ "14998" ], "x-ms-request-id": [ - "ed869635-7b32-4742-87a4-7cd01f4bd2d6" + "f1dac4ba-a39e-4bd3-87b3-0b547274d862" ], "x-ms-correlation-request-id": [ - "ed869635-7b32-4742-87a4-7cd01f4bd2d6" + "f1dac4ba-a39e-4bd3-87b3-0b547274d862" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193037Z:ed869635-7b32-4742-87a4-7cd01f4bd2d6" + "WESTUS2:20170327T180059Z:f1dac4ba-a39e-4bd3-87b3-0b547274d862" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14884?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYxOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "485cdc8d-6daa-4ddb-b487-518fc99a6149" + "da9f46bc-f166-48f9-8d60-e57bb2413b8f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14884' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17619' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:36 GMT" + "Mon, 27 Mar 2017 18:00:59 GMT" ], "Pragma": [ "no-cache" @@ -264,13 +265,13 @@ "14997" ], "x-ms-request-id": [ - "e25001fa-efc1-4edf-afba-865b9a2bfcd0" + "52a6e7c6-dbb5-4703-a051-1997d7bbda26" ], "x-ms-correlation-request-id": [ - "e25001fa-efc1-4edf-afba-865b9a2bfcd0" + "52a6e7c6-dbb5-4703-a051-1997d7bbda26" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193037Z:e25001fa-efc1-4edf-afba-865b9a2bfcd0" + "WESTUS2:20170327T180059Z:52a6e7c6-dbb5-4703-a051-1997d7bbda26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14884?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYxOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "534a9101-5f79-4d78-8be2-9df238128233" + "2a88839b-cf45-48be-a9e8-f10373b300d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884\",\r\n \"name\": \"datalakerg14884\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619\",\r\n \"name\": \"datalakerg17619\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:38 GMT" + "Mon, 27 Mar 2017 18:01:00 GMT" ], "Pragma": [ "no-cache" @@ -319,13 +319,13 @@ "14996" ], "x-ms-request-id": [ - "85d80d76-563f-4cb5-84cf-d19e8988eccc" + "7750e254-e571-4755-8b08-e52a7872118f" ], "x-ms-correlation-request-id": [ - "85d80d76-563f-4cb5-84cf-d19e8988eccc" + "7750e254-e571-4755-8b08-e52a7872118f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193038Z:85d80d76-563f-4cb5-84cf-d19e8988eccc" + "WESTUS2:20170327T180101Z:7750e254-e571-4755-8b08-e52a7872118f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14884?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYxOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "ab38462f-be55-4795-b528-9af0ec30dd63" + "89f779e4-b4a8-49c4-b243-e8876049ec38" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884\",\r\n \"name\": \"datalakerg14884\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619\",\r\n \"name\": \"datalakerg17619\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,7 +370,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:38 GMT" + "Mon, 27 Mar 2017 18:01:00 GMT" ], "Pragma": [ "no-cache" @@ -380,13 +379,13 @@ "1197" ], "x-ms-request-id": [ - "ce7a6836-3505-45f5-aba7-8ec63be85607" + "5ad73921-40ad-4df2-8674-f5c278413b08" ], "x-ms-correlation-request-id": [ - "ce7a6836-3505-45f5-aba7-8ec63be85607" + "5ad73921-40ad-4df2-8674-f5c278413b08" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193038Z:ce7a6836-3505-45f5-aba7-8ec63be85607" + "WESTUS2:20170327T180101Z:5ad73921-40ad-4df2-8674-f5c278413b08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgxMTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7745a697-8336-4ce8-9712-85eb5a502883" + "4f4ee931-0136-4ced-9044-ed9a80f4d4bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18112' under resource group 'datalakerg14884' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13480' under resource group 'datalakerg17619' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:30:38 GMT" + "Mon, 27 Mar 2017 18:01:00 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "02022dc5-558a-4e09-809b-140a3f96a38b" + "fa9f5b97-933f-43f5-8237-cede9d3feaa8" ], "x-ms-correlation-request-id": [ - "02022dc5-558a-4e09-809b-140a3f96a38b" + "fa9f5b97-933f-43f5-8237-cede9d3feaa8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193039Z:02022dc5-558a-4e09-809b-140a3f96a38b" + "WESTUS2:20170327T180101Z:fa9f5b97-933f-43f5-8237-cede9d3feaa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgxMTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18112.azuredatalakestore.net\",\r\n \"accountId\": \"e4494184-ec85-4dcb-abe6-cfd91bbfce4c\",\r\n \"creationTime\": \"2017-01-05T19:30:41.9389286Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:30:41.9389286Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112\",\r\n \"name\": \"testadlfs18112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13480.azuredatalakestore.net\",\r\n \"accountId\": \"392675f4-5e09-47cf-a608-ac2950e14098\",\r\n \"creationTime\": \"2017-03-27T18:01:04.4120409Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:01:04.4120409Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480\",\r\n \"name\": \"testadlfs13480\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:11 GMT" + "Mon, 27 Mar 2017 18:01:34 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c1c65191-98ad-485a-92af-005d0bea82f8" + "1cb3e6ef-82cf-431d-a4bf-105492d16f76" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "38ff44bb-0132-46f6-8eac-66a05c266f7b" + "0294e10d-fe5e-4dae-bb1a-2cce8d10f3fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193112Z:38ff44bb-0132-46f6-8eac-66a05c266f7b" + "WESTUS2:20170327T180134Z:0294e10d-fe5e-4dae-bb1a-2cce8d10f3fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgxMTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c7a0d75-3ffe-4721-80e6-a32ef292a21c" + "8c0ab110-739c-4a22-ad6d-d4240f9ff9e2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18112.azuredatalakestore.net\",\r\n \"accountId\": \"e4494184-ec85-4dcb-abe6-cfd91bbfce4c\",\r\n \"creationTime\": \"2017-01-05T19:30:41.9389286Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:30:41.9389286Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112\",\r\n \"name\": \"testadlfs18112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13480.azuredatalakestore.net\",\r\n \"accountId\": \"392675f4-5e09-47cf-a608-ac2950e14098\",\r\n \"creationTime\": \"2017-03-27T18:01:04.4120409Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:01:04.4120409Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480\",\r\n \"name\": \"testadlfs13480\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:12 GMT" + "Mon, 27 Mar 2017 18:01:35 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2e30cdc2-7909-489e-942b-431369a4bef6" + "6ef52bfc-5305-4016-9f49-a04369cd0f48" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "df6918c6-32a0-42dd-8f91-641cc8bac2b9" + "2a61c508-02d8-4938-b833-e26f2fe9d57c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193112Z:df6918c6-32a0-42dd-8f91-641cc8bac2b9" + "WESTUS2:20170327T180135Z:2a61c508-02d8-4938-b833-e26f2fe9d57c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgxMTI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM0ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "c2f502d6-8732-47d6-bf19-a0bf69d7392b" + "f45db8dd-4441-449e-831f-ffd32897e079" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e4494184-ec85-4dcb-abe6-cfd91bbfce4c\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112\",\r\n \"name\": \"testadlfs18112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"392675f4-5e09-47cf-a608-ac2950e14098\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480\",\r\n \"name\": \"testadlfs13480\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:30:40 GMT" + "Mon, 27 Mar 2017 18:01:02 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e4494184-ec85-4dcb-abe6-cfd91bbfce4c0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/392675f4-5e09-47cf-a608-ac2950e140980?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "455b8166-b54b-4a4b-bb9c-3f8c9ee2f19a" + "6ab89eb4-d5f9-4cca-bacf-dcca5c44a0ce" ], "X-Content-Type-Options": [ "nosniff" @@ -657,10 +652,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "10b59677-9923-4585-bcf7-e7a30af3e372" + "3e84f7c2-4edb-4fb2-abe0-404f7e4906ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193041Z:10b59677-9923-4585-bcf7-e7a30af3e372" + "WESTUS2:20170327T180103Z:3e84f7c2-4edb-4fb2-abe0-404f7e4906ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e4494184-ec85-4dcb-abe6-cfd91bbfce4c0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2U0NDk0MTg0LWVjODUtNGRjYi1hYmU2LWNmZDkxYmJmY2U0YzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/392675f4-5e09-47cf-a608-ac2950e140980?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzM5MjY3NWY0LTVlMDktNDdjZi1hNjA4LWFjMjk1MGUxNDA5ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:11 GMT" + "Mon, 27 Mar 2017 18:01:33 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "298bb52f-c7ae-4cec-85eb-873a15557d0f" + "ce16d64f-0f17-42b9-a367-43d12b776507" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "d369e05d-8b3e-44d1-9bfe-234e6cfe809d" + "19383664-4487-457d-9c79-86d8087924a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193111Z:d369e05d-8b3e-44d1-9bfe-234e6cfe809d" + "WESTUS2:20170327T180134Z:19383664-4487-457d-9c79-86d8087924a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"newTier\": \"Commitment_1TB\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n }\r\n}", "RequestHeaders": { @@ -745,17 +739,16 @@ "291" ], "x-ms-client-request-id": [ - "41ec21ef-46da-4580-9ae6-54271b889d38" + "200bb8e3-6add-4d63-a77c-daa70620b895" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"newTier\": \"Commitment_1TB\",\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"newTier\": \"Commitment_1TB\",\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "685" @@ -773,13 +766,13 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:17 GMT" + "Mon, 27 Mar 2017 18:01:40 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -788,10 +781,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f9aa9643-9847-4383-923d-38fa3e06adfb0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bf663b75-34bb-449a-b8dc-e09fd59361fe0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "e20c7303-b601-480a-9194-269cb8adc053" + "3517bd9a-5d7a-4178-9ca6-9cb6bf914141" ], "X-Content-Type-Options": [ "nosniff" @@ -803,13 +796,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "861a9e81-a030-4d60-9905-111c1697850d" + "52dbb320-3308-4e45-b461-e689b0c6a0aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193117Z:861a9e81-a030-4d60-9905-111c1697850d" + "WESTUS2:20170327T180140Z:52dbb320-3308-4e45-b461-e689b0c6a0aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -818,14 +811,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f9aa9643-9847-4383-923d-38fa3e06adfb0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2Y5YWE5NjQzLTk4NDctNDM4My05MjNkLTM4ZmEzZTA2YWRmYjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/bf663b75-34bb-449a-b8dc-e09fd59361fe0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2JmNjYzYjc1LTM0YmItNDQ5YS1iOGRjLWUwOWZkNTkzNjFmZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -843,7 +835,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:48 GMT" + "Mon, 27 Mar 2017 18:02:10 GMT" ], "Pragma": [ "no-cache" @@ -855,7 +847,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "254999d6-99e5-48c6-ac28-4ffbadece799" + "b8b5f004-14ac-4767-b505-d3b8fe9592ca" ], "X-Content-Type-Options": [ "nosniff" @@ -867,13 +859,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "794a1fd7-c0b6-4212-badd-32868b1faa00" + "b1e3b269-ab21-40b8-8f5c-66ca2f0966d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193148Z:794a1fd7-c0b6-4212-badd-32868b1faa00" + "WESTUS2:20170327T180211Z:b1e3b269-ab21-40b8-8f5c-66ca2f0966d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -882,17 +874,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Commitment_1TB\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517.azuredatalakestore.net\",\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": \"2017-01-05T19:31:18.1798824Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:18.1798824Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"42d11224-35d4-4315-ae7f-fb36184f38ed\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Commitment_1TB\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299.azuredatalakestore.net\",\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": \"2017-03-27T18:01:39.8583284Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:01:39.8583284Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a2addbc3-cbdf-4918-9ec8-68140c572e27\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -907,7 +898,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:48 GMT" + "Mon, 27 Mar 2017 18:02:11 GMT" ], "Pragma": [ "no-cache" @@ -919,7 +910,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ed6ef16d-808d-492f-970e-b8e164ef3c77" + "3ee00e2f-a6b8-4999-8243-5580e504e8ce" ], "X-Content-Type-Options": [ "nosniff" @@ -931,13 +922,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "245fe985-9bb3-4f19-ad2d-fc207ab0f0f5" + "6f537ebc-ac13-46c7-913e-9ee580712d30" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193149Z:245fe985-9bb3-4f19-ad2d-fc207ab0f0f5" + "WESTUS2:20170327T180211Z:6f537ebc-ac13-46c7-913e-9ee580712d30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -946,23 +937,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fb9bf63-9b70-4d30-a2a9-665842cc45e9" + "ba861eab-6dde-4b9b-950b-ddf84b9eef06" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Commitment_1TB\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517.azuredatalakestore.net\",\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": \"2017-01-05T19:31:18.1798824Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:18.1798824Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"42d11224-35d4-4315-ae7f-fb36184f38ed\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Commitment_1TB\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299.azuredatalakestore.net\",\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": \"2017-03-27T18:01:39.8583284Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:01:39.8583284Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a2addbc3-cbdf-4918-9ec8-68140c572e27\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -977,7 +967,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:48 GMT" + "Mon, 27 Mar 2017 18:02:12 GMT" ], "Pragma": [ "no-cache" @@ -989,7 +979,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d1f63af6-776e-4e87-b47f-7b06d08f7e9d" + "bc3370d6-91bb-49ec-a4a2-3506b2f96864" ], "X-Content-Type-Options": [ "nosniff" @@ -1001,13 +991,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "6f6a65de-922a-411e-a16c-90b8e94133ca" + "73438196-65ef-49cd-8444-b2f4eb034449" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193149Z:6f6a65de-922a-411e-a16c-90b8e94133ca" + "WESTUS2:20170327T180212Z:73438196-65ef-49cd-8444-b2f4eb034449" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1016,23 +1006,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c0aa19a-6d71-40c5-8066-d469f5835e79" + "8ee32f38-b5be-4ed4-bd8a-75d99efd92fe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517.azuredatalakestore.net\",\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": \"2017-01-05T19:31:18.1798824Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:51.2911201Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"42d11224-35d4-4315-ae7f-fb36184f38ed\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299.azuredatalakestore.net\",\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": \"2017-03-27T18:01:39.8583284Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:12.8308975Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a2addbc3-cbdf-4918-9ec8-68140c572e27\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1047,7 +1036,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:52 GMT" + "Mon, 27 Mar 2017 18:02:14 GMT" ], "Pragma": [ "no-cache" @@ -1059,7 +1048,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f1725739-4d8b-4bcb-b180-1e1dcca944f3" + "760945ba-80b7-410b-a9c5-75360af9f0fa" ], "X-Content-Type-Options": [ "nosniff" @@ -1071,13 +1060,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14997" ], "x-ms-correlation-request-id": [ - "17495d17-b12e-4035-b3ac-419f463b81ee" + "bed32dd6-3a7b-488f-aad2-20bc1205d6bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193152Z:17495d17-b12e-4035-b3ac-419f463b81ee" + "WESTUS2:20170327T180214Z:bed32dd6-3a7b-488f-aad2-20bc1205d6bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,23 +1075,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab5a110c-4e27-455d-8754-e95df4a9a16d" + "d1cd5fbb-0ff1-47ef-8bdf-bdf35b2b366b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517.azuredatalakestore.net\",\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": \"2017-01-05T19:31:18.1798824Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:51.2911201Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"42d11224-35d4-4315-ae7f-fb36184f38ed\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299.azuredatalakestore.net\",\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": \"2017-03-27T18:01:39.8583284Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:12.8308975Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a2addbc3-cbdf-4918-9ec8-68140c572e27\",\r\n \"tenantId\": \"6e606ece-3a5a-4674-a654-d6b02bc5a51b\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1117,7 +1105,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:32:27 GMT" + "Mon, 27 Mar 2017 18:02:49 GMT" ], "Pragma": [ "no-cache" @@ -1129,7 +1117,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c60acba9-71fe-456b-967a-5752fbd619dd" + "2a0b8f76-3d1d-4f31-99eb-304149182d93" ], "X-Content-Type-Options": [ "nosniff" @@ -1141,13 +1129,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "68882c7f-1219-4c6f-89f5-45c258b72c5b" + "67a48e5f-1c2d-4bad-bfa7-971a25559edc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193227Z:68882c7f-1219-4c6f-89f5-45c258b72c5b" + "WESTUS2:20170327T180249Z:67a48e5f-1c2d-4bad-bfa7-971a25559edc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1156,23 +1144,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d3dd031-0839-4416-b8a2-190f2cd608dc" + "9f953422-0108-4610-9139-f4c3f3362adb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake11517' under resource group 'datalakerg14884' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testdatalake13299' under resource group 'datalakerg17619' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "169" @@ -1187,7 +1174,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:32:31 GMT" + "Mon, 27 Mar 2017 18:02:51 GMT" ], "Pragma": [ "no-cache" @@ -1196,13 +1183,13 @@ "gateway" ], "x-ms-request-id": [ - "e421d0d9-662b-4938-825e-05a1d3cc7b00" + "4d27529b-a808-4d7b-a393-0e06baf142b6" ], "x-ms-correlation-request-id": [ - "e421d0d9-662b-4938-825e-05a1d3cc7b00" + "4d27529b-a808-4d7b-a393-0e06baf142b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193232Z:e421d0d9-662b-4938-825e-05a1d3cc7b00" + "WESTUS2:20170327T180252Z:4d27529b-a808-4d7b-a393-0e06baf142b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1211,8 +1198,8 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"properties\": {\r\n \"newTier\": \"Consumption\"\r\n }\r\n}", "RequestHeaders": { @@ -1223,17 +1210,16 @@ "111" ], "x-ms-client-request-id": [ - "3086dc98-b3d9-4981-84ea-f65c1e333ee8" + "85caa632-96a6-43eb-b823-e589e19d9a14" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517.azuredatalakestore.net\",\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": \"2017-01-05T19:31:18.1798824Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:51.2911201Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Commitment_1TB\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299.azuredatalakestore.net\",\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": \"2017-03-27T18:01:39.8583284Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:12.8308975Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1248,7 +1234,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:51 GMT" + "Mon, 27 Mar 2017 18:02:13 GMT" ], "Pragma": [ "no-cache" @@ -1260,7 +1246,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c6598309-2786-4723-ae3d-9dcf64a4e272" + "b48c2a3b-356d-4c60-8b4f-0d151948fba8" ], "X-Content-Type-Options": [ "nosniff" @@ -1275,10 +1261,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "7e18c564-5d83-4776-9934-c7a94bc1c2bd" + "d8a4996e-6a3f-4f59-8069-6e78310d512c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193152Z:7e18c564-5d83-4776-9934-c7a94bc1c2bd" + "WESTUS2:20170327T180214Z:d8a4996e-6a3f-4f59-8069-6e78310d512c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1287,8 +1273,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517acct2?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTdhY2N0Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTlhY2N0Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -1299,17 +1285,16 @@ "31" ], "x-ms-client-request-id": [ - "bfd8fb4f-9e57-45c8-9555-1b9d6b79182f" + "1e344f38-e3c5-4868-8407-502d2ad69d6f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3043c789-bee0-4d90-b7ca-916ec523f602\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517acct2\",\r\n \"name\": \"testdatalake11517acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"04fff4d9-69f7-42ae-9813-250e8d5732d4\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2\",\r\n \"name\": \"testdatalake13299acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "436" @@ -1327,13 +1312,13 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:31:53 GMT" + "Mon, 27 Mar 2017 18:02:16 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517acct2/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -1342,10 +1327,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3043c789-bee0-4d90-b7ca-916ec523f6020?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/04fff4d9-69f7-42ae-9813-250e8d5732d40?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "3d7f9974-55e9-486e-a2a2-f760cb48d249" + "dd30c4ac-e2d9-4e8d-b6e2-e0503edf8822" ], "X-Content-Type-Options": [ "nosniff" @@ -1357,13 +1342,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "1a146718-b3fe-4d64-ae41-752c37d0f7fd" + "6349af4d-3342-43cb-85d0-a2c9120c5248" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193154Z:1a146718-b3fe-4d64-ae41-752c37d0f7fd" + "WESTUS2:20170327T180216Z:6349af4d-3342-43cb-85d0-a2c9120c5248" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1372,14 +1357,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3043c789-bee0-4d90-b7ca-916ec523f6020?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzMwNDNjNzg5LWJlZTAtNGQ5MC1iN2NhLTkxNmVjNTIzZjYwMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/04fff4d9-69f7-42ae-9813-250e8d5732d40?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzA0ZmZmNGQ5LTY5ZjctNDJhZS05ODEzLTI1MGU4ZDU3MzJkNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -1397,7 +1381,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:32:25 GMT" + "Mon, 27 Mar 2017 18:02:47 GMT" ], "Pragma": [ "no-cache" @@ -1409,7 +1393,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "227d6fad-202d-4ecc-8955-a685b2ab05fe" + "e9b9d55c-43f9-4049-a924-4b319e890ed4" ], "X-Content-Type-Options": [ "nosniff" @@ -1421,13 +1405,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "64b07177-272a-4f9c-8ace-b3e61bcd077e" + "e8a11f24-3017-4a8f-8a29-6bc93d311051" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193225Z:64b07177-272a-4f9c-8ace-b3e61bcd077e" + "WESTUS2:20170327T180247Z:e8a11f24-3017-4a8f-8a29-6bc93d311051" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1436,17 +1420,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517acct2?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTdhY2N0Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTlhY2N0Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517acct2.azuredatalakestore.net\",\r\n \"accountId\": \"3043c789-bee0-4d90-b7ca-916ec523f602\",\r\n \"creationTime\": \"2017-01-05T19:31:55.8333057Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:55.8333057Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517acct2\",\r\n \"name\": \"testdatalake11517acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299acct2.azuredatalakestore.net\",\r\n \"accountId\": \"04fff4d9-69f7-42ae-9813-250e8d5732d4\",\r\n \"creationTime\": \"2017-03-27T18:02:17.437143Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:17.437143Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2\",\r\n \"name\": \"testdatalake13299acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1461,7 +1444,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:32:25 GMT" + "Mon, 27 Mar 2017 18:02:47 GMT" ], "Pragma": [ "no-cache" @@ -1473,7 +1456,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c39a275d-a3df-4a7c-afda-024c875addeb" + "607e3d6d-b69b-4087-8ace-91068676321b" ], "X-Content-Type-Options": [ "nosniff" @@ -1485,13 +1468,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-correlation-request-id": [ - "bb72f596-0551-4f2f-9b5f-7314d3636fdf" + "509f6b00-7c28-4d58-9f53-8983ef873ef4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193226Z:bb72f596-0551-4f2f-9b5f-7314d3636fdf" + "WESTUS2:20170327T180247Z:509f6b00-7c28-4d58-9f53-8983ef873ef4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1506,17 +1489,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45b85d6e-5649-4dd8-9b97-2497f4c775f3" + "049128ae-a475-41f5-88d1-c65a47d0d553" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlspysample01.azuredatalakestore.net\",\r\n \"accountId\": \"f7a5c302-324f-4e8c-949a-9d9bd37d0560\",\r\n \"creationTime\": \"2016-09-07T18:13:56.9504562Z\",\r\n \"lastModifiedTime\": \"2016-09-07T18:13:56.9504562Z\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/adlpysamplerg01/providers/Microsoft.DataLakeStore/accounts/adlspysample01\",\r\n \"name\": \"adlspysample01\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlstestencr01.azuredatalakestore.net\",\r\n \"accountId\": \"45bded0c-5881-42e9-9445-63d13ab0d82c\",\r\n \"creationTime\": \"2016-12-12T19:42:53.3419304Z\",\r\n \"lastModifiedTime\": \"2016-12-12T19:42:53.3419304Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/adlpysamplerg01/providers/Microsoft.DataLakeStore/accounts/adlstestencr01\",\r\n \"name\": \"adlstestencr01\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlstestencr02.azuredatalakestore.net\",\r\n \"accountId\": \"8a71155f-8b78-48c7-a8c3-b0599f86ef2c\",\r\n \"creationTime\": \"2016-12-12T19:47:45.2039421Z\",\r\n \"lastModifiedTime\": \"2016-12-12T19:47:45.2039421Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/adlpysamplerg01/providers/Microsoft.DataLakeStore/accounts/adlstestencr02\",\r\n \"name\": \"adlstestencr02\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18112.azuredatalakestore.net\",\r\n \"accountId\": \"e4494184-ec85-4dcb-abe6-cfd91bbfce4c\",\r\n \"creationTime\": \"2017-01-05T19:30:41.9389286Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:30:41.9389286Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112\",\r\n \"name\": \"testadlfs18112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517.azuredatalakestore.net\",\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": \"2017-01-05T19:31:18.1798824Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:51.2911201Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517acct2.azuredatalakestore.net\",\r\n \"accountId\": \"3043c789-bee0-4d90-b7ca-916ec523f602\",\r\n \"creationTime\": \"2017-01-05T19:31:55.8333057Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:55.8333057Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517acct2\",\r\n \"name\": \"testdatalake11517acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk630.azuredatalakestore.net\",\r\n \"accountId\": \"d95d0d83-cfa8-4d87-b766-13681c2db546\",\r\n \"creationTime\": \"2016-12-06T23:39:15.0079088Z\",\r\n \"lastModifiedTime\": \"2016-12-06T23:39:15.0079088Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk1306/providers/Microsoft.DataLakeStore/accounts/onesdk630\",\r\n \"name\": \"onesdk630\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"onesdk5713.azuredatalakestore.net\",\r\n \"accountId\": \"fb99a4a6-2fa3-4a27-8217-a0922858076f\",\r\n \"creationTime\": \"2016-12-05T19:17:18.1599516Z\",\r\n \"lastModifiedTime\": \"2016-12-05T19:17:18.1599516Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/onesdk2693/providers/Microsoft.DataLakeStore/accounts/onesdk5713\",\r\n \"name\": \"onesdk5713\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"pyarmadlscd761330.azuredatalakestore.net\",\r\n \"accountId\": \"7b92abde-b1fe-4b5b-9f46-fae5adfc2e4d\",\r\n \"creationTime\": \"2016-11-10T21:44:51.2057522Z\",\r\n \"lastModifiedTime\": \"2016-11-10T21:44:51.2057522Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/test_mgmt_datalake_analytics_test_adla_accountscd761330/providers/Microsoft.DataLakeStore/accounts/pyarmadlscd761330\",\r\n \"name\": \"pyarmadlscd761330\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"pyarmadls5e621603.azuredatalakestore.net\",\r\n \"accountId\": \"e7bbd84b-76dc-4ca7-b24e-88fbe4ce36ad\",\r\n \"creationTime\": \"2016-11-10T19:31:45.3226661Z\",\r\n \"lastModifiedTime\": \"2016-11-10T19:31:45.3226661Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/test_mgmt_datalake_analytics_test_adla_catalog_secrets5e621603/providers/Microsoft.DataLakeStore/accounts/pyarmadls5e621603\",\r\n \"name\": \"pyarmadls5e621603\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlspytest01.azuredatalakestore.net\",\r\n \"accountId\": \"b898aca7-703c-401c-a082-e4d642d1ab13\",\r\n \"creationTime\": \"2017-03-20T23:56:40.4922183Z\",\r\n \"lastModifiedTime\": \"2017-03-20T23:56:40.4922183Z\"\r\n },\r\n \"location\": \"east us2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/adlspytestrg01/providers/Microsoft.DataLakeStore/accounts/adlspytest01\",\r\n \"name\": \"adlspytest01\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13480.azuredatalakestore.net\",\r\n \"accountId\": \"392675f4-5e09-47cf-a608-ac2950e14098\",\r\n \"creationTime\": \"2017-03-27T18:01:04.4120409Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:01:04.4120409Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480\",\r\n \"name\": \"testadlfs13480\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299.azuredatalakestore.net\",\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": \"2017-03-27T18:01:39.8583284Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:12.8308975Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299acct2.azuredatalakestore.net\",\r\n \"accountId\": \"04fff4d9-69f7-42ae-9813-250e8d5732d4\",\r\n \"creationTime\": \"2017-03-27T18:02:17.437143Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:17.437143Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2\",\r\n \"name\": \"testdatalake13299acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlspyperf01.azuredatalakestore.net\",\r\n \"accountId\": \"e41d9d8b-9c52-4522-8df1-fd51a7658405\",\r\n \"creationTime\": \"2017-03-20T19:10:49.7339872Z\",\r\n \"lastModifiedTime\": \"2017-03-20T19:10:49.7339872Z\"\r\n },\r\n \"location\": \"east us2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/pytest01/providers/Microsoft.DataLakeStore/accounts/adlspyperf01\",\r\n \"name\": \"adlspyperf01\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1531,7 +1513,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:32:26 GMT" + "Mon, 27 Mar 2017 18:02:48 GMT" ], "Pragma": [ "no-cache" @@ -1543,7 +1525,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "cec7faba-c2b0-4d1b-8acb-6dd3e644d7b2" + "ff48ca25-3f8e-4c32-8d8e-3ab40e25bf8e" ], "X-Content-Type-Options": [ "nosniff" @@ -1555,13 +1537,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14997" ], "x-ms-correlation-request-id": [ - "8033a988-063d-4010-b26c-3e601bf8cf7a" + "1b432143-5e72-4eeb-96c0-dbb495d93601" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193226Z:8033a988-063d-4010-b26c-3e601bf8cf7a" + "WESTUS2:20170327T180248Z:1b432143-5e72-4eeb-96c0-dbb495d93601" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1570,23 +1552,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9d6a807-1efc-4225-b5b7-d286878fac07" + "e4d9ca1e-fe18-4f86-9517-6a172b3eb77f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18112.azuredatalakestore.net\",\r\n \"accountId\": \"e4494184-ec85-4dcb-abe6-cfd91bbfce4c\",\r\n \"creationTime\": \"2017-01-05T19:30:41.9389286Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:30:41.9389286Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testadlfs18112\",\r\n \"name\": \"testadlfs18112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517.azuredatalakestore.net\",\r\n \"accountId\": \"f9aa9643-9847-4383-923d-38fa3e06adfb\",\r\n \"creationTime\": \"2017-01-05T19:31:18.1798824Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:51.2911201Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517\",\r\n \"name\": \"testdatalake11517\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake11517acct2.azuredatalakestore.net\",\r\n \"accountId\": \"3043c789-bee0-4d90-b7ca-916ec523f602\",\r\n \"creationTime\": \"2017-01-05T19:31:55.8333057Z\",\r\n \"lastModifiedTime\": \"2017-01-05T19:31:55.8333057Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517acct2\",\r\n \"name\": \"testdatalake11517acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13480.azuredatalakestore.net\",\r\n \"accountId\": \"392675f4-5e09-47cf-a608-ac2950e14098\",\r\n \"creationTime\": \"2017-03-27T18:01:04.4120409Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:01:04.4120409Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testadlfs13480\",\r\n \"name\": \"testadlfs13480\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299.azuredatalakestore.net\",\r\n \"accountId\": \"bf663b75-34bb-449a-b8dc-e09fd59361fe\",\r\n \"creationTime\": \"2017-03-27T18:01:39.8583284Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:12.8308975Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"updatedKey\": \"updatedValue\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299\",\r\n \"name\": \"testdatalake13299\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testdatalake13299acct2.azuredatalakestore.net\",\r\n \"accountId\": \"04fff4d9-69f7-42ae-9813-250e8d5732d4\",\r\n \"creationTime\": \"2017-03-27T18:02:17.437143Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:02:17.437143Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299acct2\",\r\n \"name\": \"testdatalake13299acct2\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1601,7 +1582,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:32:27 GMT" + "Mon, 27 Mar 2017 18:02:48 GMT" ], "Pragma": [ "no-cache" @@ -1613,7 +1594,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f0023b7b-9510-468f-a786-32bdae879dca" + "c104fa84-d831-453f-8fcd-938c958a71f4" ], "X-Content-Type-Options": [ "nosniff" @@ -1625,13 +1606,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14995" ], "x-ms-correlation-request-id": [ - "740466ef-afa7-4baf-81e0-8e9b18fdb9a9" + "d789f7cc-a846-4a32-9dfe-a4aea3dbbfc0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193227Z:740466ef-afa7-4baf-81e0-8e9b18fdb9a9" + "WESTUS2:20170327T180249Z:d789f7cc-a846-4a32-9dfe-a4aea3dbbfc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1640,20 +1621,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d211c9f-9c8f-445c-8e33-d513803c72d4" + "6a5f9fc5-b175-406b-99be-a34c50a2ce8e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1671,7 +1651,7 @@ "close" ], "Date": [ - "Thu, 05 Jan 2017 19:32:31 GMT" + "Mon, 27 Mar 2017 18:02:51 GMT" ], "Pragma": [ "no-cache" @@ -1680,7 +1660,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "ee083abb-15f6-4ddc-9e89-9242c6c17121" + "b47649b8-c078-4252-b970-146429b09aea" ], "X-AspNet-Version": [ "4.0.30319" @@ -1689,13 +1669,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "bd9241f9-5275-4b5c-beab-8881c00d5b69" + "edb87d6e-4f04-49b1-8803-13822b7510ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193231Z:bd9241f9-5275-4b5c-beab-8881c00d5b69" + "WESTUS2:20170327T180251Z:edb87d6e-4f04-49b1-8803-13822b7510ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1704,20 +1684,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25f204d0-4a61-409f-affd-deabe59e393f" + "b10171a5-9338-4a01-9e32-7f39d2afdffe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1729,22 +1708,22 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:32:31 GMT" + "Mon, 27 Mar 2017 18:02:51 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "7f8753bd-c637-4d2d-89cf-a36fb364a63c" + "1c39b39a-99d1-42a5-9dd8-8d7569b8e732" ], "x-ms-correlation-request-id": [ - "7f8753bd-c637-4d2d-89cf-a36fb364a63c" + "1c39b39a-99d1-42a5-9dd8-8d7569b8e732" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193232Z:7f8753bd-c637-4d2d-89cf-a36fb364a63c" + "WESTUS2:20170327T180252Z:1c39b39a-99d1-42a5-9dd8-8d7569b8e732" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1753,20 +1732,19 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14884/providers/Microsoft.DataLakeStore/accounts/testdatalake11517?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTE1MTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17619/providers/Microsoft.DataLakeStore/accounts/testdatalake13299?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYxOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGRhdGFsYWtlMTMyOTk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15399a94-0c00-4c3a-b557-982f7655d796" + "ec605638-aed7-45e9-86aa-74117f058aaf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1778,22 +1756,22 @@ "no-cache" ], "Date": [ - "Thu, 05 Jan 2017 19:32:31 GMT" + "Mon, 27 Mar 2017 18:02:51 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-request-id": [ - "e0a0162f-d368-427a-b326-144d01cbc3c8" + "c8beafcb-9a3e-4a0e-85d1-48b56e81106a" ], "x-ms-correlation-request-id": [ - "e0a0162f-d368-427a-b326-144d01cbc3c8" + "c8beafcb-9a3e-4a0e-85d1-48b56e81106a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170105T193232Z:e0a0162f-d368-427a-b326-144d01cbc3c8" + "WESTUS2:20170327T180252Z:c8beafcb-9a3e-4a0e-85d1-48b56e81106a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1804,9 +1782,9 @@ ], "Names": { ".ctor": [ - "datalakerg14884", - "testdatalake11517", - "testadlfs18112" + "datalakerg17619", + "testdatalake13299", + "testadlfs13480" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/FirewallAndTrustedProviderTest.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/FirewallAndTrustedProviderTest.json index 84088422e61d..18fb1a6caac0 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/FirewallAndTrustedProviderTest.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.AccountOperationTests/FirewallAndTrustedProviderTest.json @@ -1,23 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0185d2ea-d226-4137-9176-362c0cd85625" + "a8e40d24-a397-4bf5-9380-3b125e8ace49" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"41c47f4b-8b45-4522-a73a-d20b16f0f1ec\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +28,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:29 GMT" + "Mon, 27 Mar 2017 18:27:54 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +40,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1196" ], "x-ms-request-id": [ - "6b2c90a1-c5f1-4f8f-9089-aac3ddae331f" + "6b21d90e-6e97-4c98-b4a6-912efda49fe4" ], "x-ms-correlation-request-id": [ - "6b2c90a1-c5f1-4f8f-9089-aac3ddae331f" + "6b21d90e-6e97-4c98-b4a6-912efda49fe4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004829Z:6b2c90a1-c5f1-4f8f-9089-aac3ddae331f" + "WESTUS2:20170327T182755Z:6b21d90e-6e97-4c98-b4a6-912efda49fe4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -59,23 +58,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21eb4948-e4fb-47b0-b930-96e1c01a5da2" + "61e63ce8-234f-4786-82ea-ee5aa11d7012" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"41c47f4b-8b45-4522-a73a-d20b16f0f1ec\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -87,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:29 GMT" + "Mon, 27 Mar 2017 18:27:54 GMT" ], "Pragma": [ "no-cache" @@ -96,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14992" ], "x-ms-request-id": [ - "33cd6425-f7bd-4833-838e-e7a573ca1483" + "07b3ba63-4776-4abc-b588-f030f03c7e6f" ], "x-ms-correlation-request-id": [ - "33cd6425-f7bd-4833-838e-e7a573ca1483" + "07b3ba63-4776-4abc-b588-f030f03c7e6f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004829Z:33cd6425-f7bd-4833-838e-e7a573ca1483" + "WESTUS2:20170327T182755Z:07b3ba63-4776-4abc-b588-f030f03c7e6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,23 +112,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage/register?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage/register?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9yZWdpc3Rlcj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2102a5c0-667e-4db3-aed6-906a9b5fbbbf" + "354a933f-239d-4c13-8f7c-4085f8608f72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"cd0cad5c-ac96-4c4c-99cd-cfafc285ba36\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/customKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listReadOnlyKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/generateSasCredentials\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -142,7 +139,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:29 GMT" + "Mon, 27 Mar 2017 18:27:55 GMT" ], "Pragma": [ "no-cache" @@ -154,16 +151,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1178" + "1195" ], "x-ms-request-id": [ - "0ff21777-066c-4c59-ba9f-3b369858bd3e" + "d2912a3b-650e-4a4a-8331-3c62fb58285b" ], "x-ms-correlation-request-id": [ - "0ff21777-066c-4c59-ba9f-3b369858bd3e" + "d2912a3b-650e-4a4a-8331-3c62fb58285b" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004829Z:0ff21777-066c-4c59-ba9f-3b369858bd3e" + "WESTUS2:20170327T182756Z:d2912a3b-650e-4a4a-8331-3c62fb58285b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,23 +169,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6085bebe-2d1d-4a34-91e4-66af72901b9e" + "4801a0be-db84-45ab-8644-2484c08766d9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"cd0cad5c-ac96-4c4c-99cd-cfafc285ba36\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/customKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listReadOnlyKeys\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/generateSasCredentials\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -200,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:29 GMT" + "Mon, 27 Mar 2017 18:27:56 GMT" ], "Pragma": [ "no-cache" @@ -209,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14991" ], "x-ms-request-id": [ - "e789236a-9af1-4b72-be4f-29770ab38a53" + "18cf8909-36b2-4b95-a34d-d176efeb3e49" ], "x-ms-correlation-request-id": [ - "e789236a-9af1-4b72-be4f-29770ab38a53" + "18cf8909-36b2-4b95-a34d-d176efeb3e49" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004830Z:e789236a-9af1-4b72-be4f-29770ab38a53" + "WESTUS2:20170327T182756Z:18cf8909-36b2-4b95-a34d-d176efeb3e49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/datalakerg18961?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODk2MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62745887-939a-4e9e-ba66-955a0054d7ed" + "d7b23bed-5931-4b12-bb86-1fe27fa34c65" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg18961' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13455' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -258,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:29 GMT" + "Mon, 27 Mar 2017 18:27:56 GMT" ], "Pragma": [ "no-cache" @@ -267,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "14990" ], "x-ms-request-id": [ - "f6cd421f-a8d4-4c83-a9b2-8410b3383143" + "83b8f8b9-0202-4813-906d-340181de92f5" ], "x-ms-correlation-request-id": [ - "f6cd421f-a8d4-4c83-a9b2-8410b3383143" + "83b8f8b9-0202-4813-906d-340181de92f5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004830Z:f6cd421f-a8d4-4c83-a9b2-8410b3383143" + "WESTUS2:20170327T182756Z:83b8f8b9-0202-4813-906d-340181de92f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -285,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/datalakerg18961?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODk2MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14a800e9-e842-4e42-b0b1-af1f0c75d91a" + "83a5dbc5-9f5b-4a24-8e06-acf22fd98e23" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961\",\r\n \"name\": \"datalakerg18961\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455\",\r\n \"name\": \"datalakerg13455\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -313,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:30 GMT" + "Mon, 27 Mar 2017 18:27:57 GMT" ], "Pragma": [ "no-cache" @@ -322,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" + "14989" ], "x-ms-request-id": [ - "3d46ed7e-5575-46b8-bc30-6b442327bdd2" + "9623a54a-4cc2-4c96-b424-79077d0503f9" ], "x-ms-correlation-request-id": [ - "3d46ed7e-5575-46b8-bc30-6b442327bdd2" + "9623a54a-4cc2-4c96-b424-79077d0503f9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004830Z:3d46ed7e-5575-46b8-bc30-6b442327bdd2" + "WESTUS2:20170327T182758Z:9623a54a-4cc2-4c96-b424-79077d0503f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/datalakerg18961?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODk2MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -352,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "70127dac-9c92-4c43-91f0-55806b78c74b" + "bec18699-6b0e-4335-9fef-bc52004c77d1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961\",\r\n \"name\": \"datalakerg18961\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455\",\r\n \"name\": \"datalakerg13455\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -377,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:29 GMT" + "Mon, 27 Mar 2017 18:27:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1177" + "1194" ], "x-ms-request-id": [ - "15414486-2cec-41e0-9b9f-7c8e45e62607" + "2d930518-93aa-4cbf-b663-aa4f84fac7dc" ], "x-ms-correlation-request-id": [ - "15414486-2cec-41e0-9b9f-7c8e45e62607" + "2d930518-93aa-4cbf-b663-aa4f84fac7dc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004830Z:15414486-2cec-41e0-9b9f-7c8e45e62607" + "WESTUS2:20170327T182758Z:2d930518-93aa-4cbf-b663-aa4f84fac7dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -401,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU2ODM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc2MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0862c62d-1416-4a99-9ff9-a522bdda5806" + "ce268e2d-be35-4631-9601-d0984d7d8453" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15683' under resource group 'datalakerg18961' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17607' under resource group 'datalakerg13455' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -432,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 09 Feb 2017 00:48:30 GMT" + "Mon, 27 Mar 2017 18:27:57 GMT" ], "Pragma": [ "no-cache" @@ -441,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "16a6ce0c-af9d-460b-bdb0-31c41ef35047" + "457df470-58b5-4aa8-a78a-1f317aa04cb7" ], "x-ms-correlation-request-id": [ - "16a6ce0c-af9d-460b-bdb0-31c41ef35047" + "457df470-58b5-4aa8-a78a-1f317aa04cb7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004830Z:16a6ce0c-af9d-460b-bdb0-31c41ef35047" + "WESTUS2:20170327T182758Z:457df470-58b5-4aa8-a78a-1f317aa04cb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU2ODM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc2MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15683.caboaccountdogfood.net\",\r\n \"accountId\": \"04a2d152-41eb-4e2c-a5b4-386ecbc2bc5a\",\r\n \"creationTime\": \"2017-02-09T00:48:34.4585418Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:48:34.4585418Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683\",\r\n \"name\": \"testadlfs15683\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17607.azuredatalakestore.net\",\r\n \"accountId\": \"72578512-56ca-49f8-ac18-ea6e05e30456\",\r\n \"creationTime\": \"2017-03-27T18:28:00.3493744Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:28:00.3493744Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607\",\r\n \"name\": \"testadlfs17607\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -481,7 +472,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:01 GMT" + "Mon, 27 Mar 2017 18:28:31 GMT" ], "Pragma": [ "no-cache" @@ -493,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e6802e05-8da3-41d0-92dd-bb48daf7e721" + "00ea498c-3a76-4b0f-be66-f7cc93d7f681" ], "X-Content-Type-Options": [ "nosniff" @@ -505,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14731" + "14980" ], "x-ms-correlation-request-id": [ - "9b132531-39ab-49cc-b696-b3c772e296ad" + "f941cf98-25dc-4dd2-b251-e42d690dfad3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004902Z:9b132531-39ab-49cc-b696-b3c772e296ad" + "WESTUS2:20170327T182831Z:f941cf98-25dc-4dd2-b251-e42d690dfad3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -520,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU2ODM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc2MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f692e2af-66bc-428c-bd4b-abf868cb6ba1" + "654d2565-e5cd-472f-ba67-4353ecbc161f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallAllowAzureIps\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15683.caboaccountdogfood.net\",\r\n \"accountId\": \"04a2d152-41eb-4e2c-a5b4-386ecbc2bc5a\",\r\n \"creationTime\": \"2017-02-09T00:48:34.4585418Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:48:34.4585418Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683\",\r\n \"name\": \"testadlfs15683\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17607.azuredatalakestore.net\",\r\n \"accountId\": \"72578512-56ca-49f8-ac18-ea6e05e30456\",\r\n \"creationTime\": \"2017-03-27T18:28:00.3493744Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:28:00.3493744Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607\",\r\n \"name\": \"testadlfs17607\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -551,7 +541,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:02 GMT" + "Mon, 27 Mar 2017 18:28:32 GMT" ], "Pragma": [ "no-cache" @@ -563,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "47f47d89-6990-4019-b83a-70c64240e38d" + "be834e95-3b22-4472-86a3-6b2c252cb494" ], "X-Content-Type-Options": [ "nosniff" @@ -575,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14690" + "14981" ], "x-ms-correlation-request-id": [ - "7a2da7c8-f71c-4d2a-83af-e626d5271684" + "3a0493b9-d0f3-4dc8-8152-4c12157df1af" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004902Z:7a2da7c8-f71c-4d2a-83af-e626d5271684" + "WESTUS2:20170327T182832Z:3a0493b9-d0f3-4dc8-8152-4c12157df1af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU2ODM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc2MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -602,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "22d0e651-7a71-4116-83e3-35d6090b709d" + "05e4ee45-5f7b-43dc-b4d2-8deaf396dd83" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"04a2d152-41eb-4e2c-a5b4-386ecbc2bc5a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683\",\r\n \"name\": \"testadlfs15683\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"72578512-56ca-49f8-ac18-ea6e05e30456\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607\",\r\n \"name\": \"testadlfs17607\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -630,13 +619,13 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:48:31 GMT" + "Mon, 27 Mar 2017 18:27:59 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/testadlfs15683/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/testadlfs17607/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -645,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/04a2d152-41eb-4e2c-a5b4-386ecbc2bc5a0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/72578512-56ca-49f8-ac18-ea6e05e304560?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "18648907-64c7-4607-b181-9e3d48d7843f" + "ff27fa7d-c3a0-44c3-9be0-acf14ca68bac" ], "X-Content-Type-Options": [ "nosniff" @@ -660,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1091" + "1189" ], "x-ms-correlation-request-id": [ - "f7541246-37c3-496c-9ed3-cde30483eb38" + "651b3430-5c42-49ea-a109-09367abdd40c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004831Z:f7541246-37c3-496c-9ed3-cde30483eb38" + "WESTUS2:20170327T182800Z:651b3430-5c42-49ea-a109-09367abdd40c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -675,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/04a2d152-41eb-4e2c-a5b4-386ecbc2bc5a0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzA0YTJkMTUyLTQxZWItNGUyYy1hNWI0LTM4NmVjYmMyYmM1YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/72578512-56ca-49f8-ac18-ea6e05e304560?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzcyNTc4NTEyLTU2Y2EtNDlmOC1hYzE4LWVhNmUwNWUzMDQ1NjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -700,7 +688,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:01 GMT" + "Mon, 27 Mar 2017 18:28:30 GMT" ], "Pragma": [ "no-cache" @@ -712,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2984de8e-de45-4c12-b916-5057459f1f4c" + "f2d9b877-039c-42be-b820-79de77eab8e5" ], "X-Content-Type-Options": [ "nosniff" @@ -724,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14698" + "14985" ], "x-ms-correlation-request-id": [ - "f7ffd755-e30f-41d2-9952-7bab00b919ac" + "f5a30cc6-ee31-4ab8-bd5d-673eb0fa9c0e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004901Z:f7ffd755-e30f-41d2-9952-7bab00b919ac" + "WESTUS2:20170327T182831Z:f5a30cc6-ee31-4ab8-bd5d-673eb0fa9c0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -739,10 +727,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule12867\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/2d61d1dd-1ec3-4eb7-aa72-4da87b273bee\"\r\n },\r\n \"name\": \"trustedrule13996\"\r\n }\r\n ]\r\n },\r\n \"location\": \"East US 2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule17352\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n },\r\n \"name\": \"trustedrule17110\"\r\n }\r\n ],\r\n \"firewallAllowAzureIps\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -751,17 +739,16 @@ "588" ], "x-ms-client-request-id": [ - "e812337c-b9c2-4285-8b2c-da2473e39d67" + "a7a92e2e-628b-4d26-a66f-1387af408de0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule12867\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/2d61d1dd-1ec3-4eb7-aa72-4da87b273bee\"\r\n },\r\n \"name\": \"trustedrule13996\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"c3d38ff7-81f7-4991-83b9-d3ed6d45efcc\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847\",\r\n \"name\": \"adlsacct6847\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule17352\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n },\r\n \"name\": \"trustedrule17110\"\r\n }\r\n ],\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"a16bdc6c-aa23-4548-82b1-fd048e330f9e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386\",\r\n \"name\": \"adlsacct7386\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "767" @@ -779,13 +766,13 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:09 GMT" + "Mon, 27 Mar 2017 18:28:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourcegroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -794,10 +781,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://api-dogfood.resources.windows-int.net/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c3d38ff7-81f7-4991-83b9-d3ed6d45efcc0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a16bdc6c-aa23-4548-82b1-fd048e330f9e0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "53fde7d7-33c4-434e-a5bc-38e437f62b96" + "07a12dc2-f886-4834-aa79-db60139187b2" ], "X-Content-Type-Options": [ "nosniff" @@ -809,13 +796,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1090" + "1189" ], "x-ms-correlation-request-id": [ - "568226e9-b748-46ff-ba65-9f70e5b9d77b" + "5a34b7f5-8c64-49e4-b322-931d37370c3e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004909Z:568226e9-b748-46ff-ba65-9f70e5b9d77b" + "WESTUS2:20170327T182835Z:5a34b7f5-8c64-49e4-b322-931d37370c3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -824,14 +811,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c3d38ff7-81f7-4991-83b9-d3ed6d45efcc0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2MzZDM4ZmY3LTgxZjctNDk5MS04M2I5LWQzZWQ2ZDQ1ZWZjYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a16bdc6c-aa23-4548-82b1-fd048e330f9e0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2ExNmJkYzZjLWFhMjMtNDU0OC04MmIxLWZkMDQ4ZTMzMGY5ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -849,7 +835,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:38 GMT" + "Mon, 27 Mar 2017 18:29:05 GMT" ], "Pragma": [ "no-cache" @@ -861,7 +847,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b4e2ad9f-2b49-4eaf-af1c-ed45ea3168f0" + "76b1bfd0-fc66-4b39-8093-e71afb2c3113" ], "X-Content-Type-Options": [ "nosniff" @@ -873,13 +859,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14979" ], "x-ms-correlation-request-id": [ - "dd399280-ea0c-4392-b7bc-fb3dfcfd8732" + "3efaa844-64d9-4c74-98d1-c7fe8253eec3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004939Z:dd399280-ea0c-4392-b7bc-fb3dfcfd8732" + "WESTUS2:20170327T182906Z:3efaa844-64d9-4c74-98d1-c7fe8253eec3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -888,17 +874,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule12867\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/2d61d1dd-1ec3-4eb7-aa72-4da87b273bee\"\r\n },\r\n \"name\": \"trustedrule13996\"\r\n }\r\n ],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlsacct6847.caboaccountdogfood.net\",\r\n \"accountId\": \"c3d38ff7-81f7-4991-83b9-d3ed6d45efcc\",\r\n \"creationTime\": \"2017-02-09T00:49:10.663371Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:49:10.663371Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847\",\r\n \"name\": \"adlsacct6847\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule17352\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n },\r\n \"name\": \"trustedrule17110\"\r\n }\r\n ],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlsacct7386.azuredatalakestore.net\",\r\n \"accountId\": \"a16bdc6c-aa23-4548-82b1-fd048e330f9e\",\r\n \"creationTime\": \"2017-03-27T18:28:35.1422939Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:28:35.1422939Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386\",\r\n \"name\": \"adlsacct7386\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -913,7 +898,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:39 GMT" + "Mon, 27 Mar 2017 18:29:06 GMT" ], "Pragma": [ "no-cache" @@ -925,7 +910,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7ad10c9c-d48c-4b54-88a4-45d6f6c53156" + "ff92568b-ccba-422b-bd0d-f37a8b3c7aab" ], "X-Content-Type-Options": [ "nosniff" @@ -937,13 +922,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14697" + "14988" ], "x-ms-correlation-request-id": [ - "e1b40202-3125-4215-8d6f-c6a58681a623" + "40b01319-37ef-49bf-953f-c6ca4e8659fc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004939Z:e1b40202-3125-4215-8d6f-c6a58681a623" + "WESTUS2:20170327T182906Z:40b01319-37ef-49bf-953f-c6ca4e8659fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -952,23 +937,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa90192c-ef22-4895-b15f-527ae24d2c14" + "15abfb97-6dcd-4490-8bbe-4234d6f5824c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallAllowAzureIps\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule12867\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/2d61d1dd-1ec3-4eb7-aa72-4da87b273bee\"\r\n },\r\n \"name\": \"trustedrule13996\"\r\n }\r\n ],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlsacct6847.caboaccountdogfood.net\",\r\n \"accountId\": \"c3d38ff7-81f7-4991-83b9-d3ed6d45efcc\",\r\n \"creationTime\": \"2017-02-09T00:49:10.663371Z\",\r\n \"lastModifiedTime\": \"2017-02-09T00:49:10.663371Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847\",\r\n \"name\": \"adlsacct6847\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Enabled\",\r\n \"firewallRules\": [\r\n {\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"name\": \"firerule17352\"\r\n }\r\n ],\r\n \"trustedIdProviderState\": \"Enabled\",\r\n \"trustedIdProviders\": [\r\n {\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n },\r\n \"name\": \"trustedrule17110\"\r\n }\r\n ],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"adlsacct7386.azuredatalakestore.net\",\r\n \"accountId\": \"a16bdc6c-aa23-4548-82b1-fd048e330f9e\",\r\n \"creationTime\": \"2017-03-27T18:28:35.1422939Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:28:35.1422939Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386\",\r\n \"name\": \"adlsacct7386\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -983,7 +967,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:40 GMT" + "Mon, 27 Mar 2017 18:29:06 GMT" ], "Pragma": [ "no-cache" @@ -995,7 +979,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1fa873ff-1ab8-4e3c-a1d3-6f18579b7f7c" + "8ad12c96-5f01-43c2-82ba-bd41b081b283" ], "X-Content-Type-Options": [ "nosniff" @@ -1007,13 +991,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" + "14985" ], "x-ms-correlation-request-id": [ - "3bd15637-8b2a-4e59-aa4d-80a3fd9ed3bd" + "e68a8724-6b94-4794-ae49-4544fa732a53" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004940Z:3bd15637-8b2a-4e59-aa4d-80a3fd9ed3bd" + "WESTUS2:20170327T182907Z:e68a8724-6b94-4794-ae49-4544fa732a53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1022,23 +1006,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMjg2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "973f0a20-632d-4a85-b870-9120315f6845" + "688bec39-4215-43db-9839-c6288ef43ae6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867\",\r\n \"name\": \"firerule12867\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"127.0.0.2\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352\",\r\n \"name\": \"firerule17352\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1053,7 +1036,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:39 GMT" + "Mon, 27 Mar 2017 18:29:06 GMT" ], "Pragma": [ "no-cache" @@ -1065,7 +1048,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e860b1d8-52ea-41e4-a347-1150aee724e7" + "8723d68e-b00d-43e1-b0d2-fd05f80e16a4" ], "X-Content-Type-Options": [ "nosniff" @@ -1077,13 +1060,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14688" + "14980" ], "x-ms-correlation-request-id": [ - "2d0a53fd-1e60-4524-bbfb-76d9094453fd" + "670c24fe-81ec-445f-9db7-cada085fdf42" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004940Z:2d0a53fd-1e60-4524-bbfb-76d9094453fd" + "WESTUS2:20170327T182907Z:670c24fe-81ec-445f-9db7-cada085fdf42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1092,20 +1075,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMjg2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "add7e366-31de-45a9-9a3d-e6ffc7c3dd86" + "2b1f7e3d-e05f-465b-93a3-2c2f7ae8e87d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Firewall Rule does not exist.\"\r\n }\r\n}", @@ -1126,7 +1108,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:42 GMT" + "Mon, 27 Mar 2017 18:29:10 GMT" ], "Pragma": [ "no-cache" @@ -1135,7 +1117,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "94402756-b994-450c-92b5-fb220fc56828" + "75955d29-9ad6-40a8-9c72-76d4673c28fd" ], "X-Content-Type-Options": [ "nosniff" @@ -1147,13 +1129,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" + "14987" ], "x-ms-correlation-request-id": [ - "d84db1f6-020a-4534-b891-69e0b053578d" + "605f5ad4-ca06-41fd-9ab8-b8bcbd520a11" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004943Z:d84db1f6-020a-4534-b891-69e0b053578d" + "WESTUS2:20170327T182910Z:605f5ad4-ca06-41fd-9ab8-b8bcbd520a11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1162,29 +1144,28 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMjg2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867\",\r\n \"name\": \"firerule12867\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"name\": \"firerule17352\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "369" + "129" ], "x-ms-client-request-id": [ - "ff29784f-6440-477a-9bc0-4d2946ae694a" + "1160a73a-405c-44b5-a60c-7496304a0bc5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867\",\r\n \"name\": \"firerule12867\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"192.168.0.0\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352\",\r\n \"name\": \"firerule17352\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1199,7 +1180,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:41 GMT" + "Mon, 27 Mar 2017 18:29:08 GMT" ], "Pragma": [ "no-cache" @@ -1211,7 +1192,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e4cffe19-9345-4405-9756-d885b95b5724" + "e2041550-1d1a-40db-a8a9-41e3f58d1722" ], "X-Content-Type-Options": [ "nosniff" @@ -1223,13 +1204,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1089" + "1195" ], "x-ms-correlation-request-id": [ - "12a3cc7a-91fd-49d8-bd34-6e28499eaddb" + "7c103cdb-8785-4b61-874c-b2ea66ec9997" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004941Z:12a3cc7a-91fd-49d8-bd34-6e28499eaddb" + "WESTUS2:20170327T182908Z:7c103cdb-8785-4b61-874c-b2ea66ec9997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1238,8 +1219,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMjg2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\"\r\n }\r\n}", "RequestHeaders": { @@ -1250,17 +1231,16 @@ "63" ], "x-ms-client-request-id": [ - "1fed6b07-d1a3-44f4-bccf-375f71288eb9" + "b5e856c0-6b69-4ab7-adb5-1896b09075ae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867\",\r\n \"name\": \"firerule12867\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"startIpAddress\": \"127.0.0.1\",\r\n \"endIpAddress\": \"192.168.0.1\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352\",\r\n \"name\": \"firerule17352\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/firewallRules\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1275,7 +1255,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:42 GMT" + "Mon, 27 Mar 2017 18:29:08 GMT" ], "Pragma": [ "no-cache" @@ -1287,7 +1267,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6c716fd7-721a-4cc1-8197-a5ec4ed817eb" + "b05483ee-074d-4b40-b97a-0ecc7eead03c" ], "X-Content-Type-Options": [ "nosniff" @@ -1299,13 +1279,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1118" + "1189" ], "x-ms-correlation-request-id": [ - "e0110c8d-b784-4d24-a37d-684ae425340b" + "d451945a-15aa-4fb3-ad98-94d7d3a0554d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004942Z:e0110c8d-b784-4d24-a37d-684ae425340b" + "WESTUS2:20170327T182909Z:d451945a-15aa-4fb3-ad98-94d7d3a0554d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1314,20 +1294,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/firewallRules/firerule12867?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxMjg2Nz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/firewallRules/firerule17352?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L2ZpcmV3YWxsUnVsZXMvZmlyZXJ1bGUxNzM1Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22d027c4-a25f-454e-81a4-9a66871a139b" + "45e63743-1c41-4851-95c7-aae6b3b39118" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1345,7 +1324,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:42 GMT" + "Mon, 27 Mar 2017 18:29:09 GMT" ], "Pragma": [ "no-cache" @@ -1354,7 +1333,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "3c83623b-e186-45ad-89d3-e507dcf6472c" + "6a450578-f3a4-4f4a-91bb-d991b59afae6" ], "X-AspNet-Version": [ "4.0.30319" @@ -1363,13 +1342,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1110" + "1187" ], "x-ms-correlation-request-id": [ - "e3f35d8c-e481-403f-a189-ed911c6ab2a8" + "e2c68f6e-d108-4168-8032-2fc87b284203" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004942Z:e3f35d8c-e481-403f-a189-ed911c6ab2a8" + "WESTUS2:20170327T182910Z:e2c68f6e-d108-4168-8032-2fc87b284203" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1378,23 +1357,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTEzOTk2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c15570b1-db68-4f92-a19a-b39f1d77d9fc" + "99556d6e-5ee1-4a1e-ab93-302e010c98f3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/2d61d1dd-1ec3-4eb7-aa72-4da87b273bee\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996\",\r\n \"name\": \"trustedrule13996\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110\",\r\n \"name\": \"trustedrule17110\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1409,7 +1387,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:43 GMT" + "Mon, 27 Mar 2017 18:29:10 GMT" ], "Pragma": [ "no-cache" @@ -1421,7 +1399,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ddd6f901-07a0-4c0d-bf06-21ae9d5f591e" + "2b0dad22-6a17-496d-8cef-8a1c5bb11e26" ], "X-Content-Type-Options": [ "nosniff" @@ -1433,13 +1411,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14687" + "14984" ], "x-ms-correlation-request-id": [ - "473ea458-c350-4fce-b707-4e0d9a01f56d" + "a0103ed0-7a7b-4272-ab96-7985bab89c35" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004943Z:473ea458-c350-4fce-b707-4e0d9a01f56d" + "WESTUS2:20170327T182911Z:a0103ed0-7a7b-4272-ab96-7985bab89c35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1448,20 +1426,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTEzOTk2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4aa5f4ed-227b-4697-a414-d3f02ae5c159" + "777a104e-d4af-4cd6-b2c4-28d59c3bd4cb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Trusted IdProvider does not exist.\"\r\n }\r\n}", @@ -1482,7 +1459,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:45 GMT" + "Mon, 27 Mar 2017 18:29:14 GMT" ], "Pragma": [ "no-cache" @@ -1491,7 +1468,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "36595345-6780-434f-adf4-761e9a831460" + "93844d62-0748-41eb-9edb-4b702b2a9780" ], "X-Content-Type-Options": [ "nosniff" @@ -1503,13 +1480,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14696" + "14979" ], "x-ms-correlation-request-id": [ - "7c847bb1-4ec3-484c-af1f-c6e0ebb78fd3" + "8e224c7b-b4a7-4e34-bd6d-d3a963e2cb90" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004945Z:7c847bb1-4ec3-484c-af1f-c6e0ebb78fd3" + "WESTUS2:20170327T182914Z:8e224c7b-b4a7-4e34-bd6d-d3a963e2cb90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1518,29 +1495,28 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTEzOTk2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/b1545bb1-802e-4360-9799-4679ef18401d\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996\",\r\n \"name\": \"trustedrule13996\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/d78ea359-c98e-4993-b1b0-40f7e09b0770\"\r\n },\r\n \"name\": \"trustedrule17110\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "394" + "141" ], "x-ms-client-request-id": [ - "7e1b35cf-66eb-4a7f-a9a4-327dbaa3c528" + "37496ce6-c9ee-4e16-bb0f-4d497089c329" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/b1545bb1-802e-4360-9799-4679ef18401d\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996\",\r\n \"name\": \"trustedrule13996\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/d78ea359-c98e-4993-b1b0-40f7e09b0770\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110\",\r\n \"name\": \"trustedrule17110\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1555,7 +1531,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:44 GMT" + "Mon, 27 Mar 2017 18:29:11 GMT" ], "Pragma": [ "no-cache" @@ -1567,7 +1543,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c74e4164-db4d-4a54-8e3f-3f3301ebc148" + "8e862a0f-16d9-47c6-b1c4-3e7445b1cd3e" ], "X-Content-Type-Options": [ "nosniff" @@ -1579,13 +1555,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1175" + "1195" ], "x-ms-correlation-request-id": [ - "27972cf8-bcc5-424c-a62e-88d126172173" + "f0ea1dc7-0a2d-4c41-bbe1-08ccfff69392" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004944Z:27972cf8-bcc5-424c-a62e-88d126172173" + "WESTUS2:20170327T182912Z:f0ea1dc7-0a2d-4c41-bbe1-08ccfff69392" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1594,10 +1570,10 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTEzOTk2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/2d61d1dd-1ec3-4eb7-aa72-4da87b273bee\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1606,17 +1582,16 @@ "110" ], "x-ms-client-request-id": [ - "1cd92196-0e7e-41e6-ab6c-7dba1a0c3fc0" + "0eeeeec6-9ea8-49a4-8b6b-ee9465a67aba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/2d61d1dd-1ec3-4eb7-aa72-4da87b273bee\"\r\n },\r\n \"id\": \"/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996\",\r\n \"name\": \"trustedrule13996\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"idProvider\": \"https://sts.windows.net/ea9ec534-a3e3-4e45-ad36-3afc5bb291c1\"\r\n },\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110\",\r\n \"name\": \"trustedrule17110\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts/trustedIdProviders\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -1631,7 +1606,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:44 GMT" + "Mon, 27 Mar 2017 18:29:12 GMT" ], "Pragma": [ "no-cache" @@ -1643,7 +1618,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9a891fbe-12cd-46ae-ba26-283ce837f1de" + "6509d260-d65b-4386-bc38-6ab2fabfae04" ], "X-Content-Type-Options": [ "nosniff" @@ -1655,13 +1630,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1088" + "1188" ], "x-ms-correlation-request-id": [ - "537561cf-4177-4512-af38-95d6345e78e0" + "7d70df1f-50d6-40a9-99c9-332c14557e7d" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004944Z:537561cf-4177-4512-af38-95d6345e78e0" + "WESTUS2:20170327T182912Z:7d70df1f-50d6-40a9-99c9-332c14557e7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1670,20 +1645,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/90585f39-ab85-4921-bb37-0468f7efd1dd/resourceGroups/datalakerg18961/providers/Microsoft.DataLakeStore/accounts/adlsacct6847/trustedIdProviders/trustedrule13996?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTA1ODVmMzktYWI4NS00OTIxLWJiMzctMDQ2OGY3ZWZkMWRkL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODk2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q2ODQ3L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTEzOTk2P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13455/providers/Microsoft.DataLakeStore/accounts/adlsacct7386/trustedIdProviders/trustedrule17110?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvYWRsc2FjY3Q3Mzg2L3RydXN0ZWRJZFByb3ZpZGVycy90cnVzdGVkcnVsZTE3MTEwP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa30d9c5-b950-4497-882d-e2282c6a289d" + "a2e739da-e437-43aa-a1dd-f6fe7e8b97c3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1701,7 +1675,7 @@ "close" ], "Date": [ - "Thu, 09 Feb 2017 00:49:45 GMT" + "Mon, 27 Mar 2017 18:29:13 GMT" ], "Pragma": [ "no-cache" @@ -1710,7 +1684,7 @@ "Microsoft-IIS/8.5" ], "x-ms-request-id": [ - "1cc947c7-e9a5-4025-bb33-73bfa8eda59e" + "237d1484-93d1-40bc-bef1-6e401a80474c" ], "X-AspNet-Version": [ "4.0.30319" @@ -1719,13 +1693,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1117" + "1185" ], "x-ms-correlation-request-id": [ - "cf291945-11af-4ca6-89de-97169dd0a2df" + "86759272-9035-4536-ac5c-a48e59c1f88a" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170209T004945Z:cf291945-11af-4ca6-89de-97169dd0a2df" + "WESTUS2:20170327T182913Z:86759272-9035-4536-ac5c-a48e59c1f88a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1736,19 +1710,19 @@ ], "Names": { ".ctor": [ - "datalakerg18961", - "testdatalake18673", - "testadlfs15683" + "datalakerg13455", + "testdatalake1124", + "testadlfs17607" ], "FirewallAndTrustedProviderTest": [ - "firerule12867", - "2d61d1dd-1ec3-4eb7-aa72-4da87b273bee", - "trustedrule13996", - "adlsacct6847", - "b1545bb1-802e-4360-9799-4679ef18401d" + "firerule17352", + "ea9ec534-a3e3-4e45-ad36-3afc5bb291c1", + "trustedrule17110", + "adlsacct7386", + "d78ea359-c98e-4993-b1b0-40f7e09b0770" ] }, "Variables": { - "SubscriptionId": "90585f39-ab85-4921-bb37-0468f7efd1dd" + "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f" } } \ No newline at end of file diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreDownloadUploadFileAndFolder.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreDownloadUploadFileAndFolder.json index 771b2cdaafb5..603813460de8 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreDownloadUploadFileAndFolder.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreDownloadUploadFileAndFolder.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5affba57-53b9-45c2-b280-f39bb635a908" + "e9d175ed-975d-43da-9554-97318ed3cc07" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +28,7 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:16 GMT" + "Mon, 27 Mar 2017 21:33:53 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +40,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "67df0480-f46c-45a5-8060-b455865f7523" + "5ab4aff4-aa3b-4e3a-93a7-79f4e1ab8714" ], "x-ms-correlation-request-id": [ - "67df0480-f46c-45a5-8060-b455865f7523" + "5ab4aff4-aa3b-4e3a-93a7-79f4e1ab8714" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033516Z:67df0480-f46c-45a5-8060-b455865f7523" + "CENTRALUS:20170327T213353Z:5ab4aff4-aa3b-4e3a-93a7-79f4e1ab8714" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -65,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "403813e5-aa3e-447b-85e2-14d309bee096" + "490d41c9-ee65-47e8-b8c8-deaf9ae48919" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -87,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:16 GMT" + "Mon, 27 Mar 2017 21:33:53 GMT" ], "Pragma": [ "no-cache" @@ -96,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14999" ], "x-ms-request-id": [ - "4a2f60f8-c432-4a67-b58a-6eae0b23cac3" + "7baac7bf-ba3d-4859-95a5-d4612785af57" ], "x-ms-correlation-request-id": [ - "4a2f60f8-c432-4a67-b58a-6eae0b23cac3" + "7baac7bf-ba3d-4859-95a5-d4612785af57" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033516Z:4a2f60f8-c432-4a67-b58a-6eae0b23cac3" + "CENTRALUS:20170327T213353Z:7baac7bf-ba3d-4859-95a5-d4612785af57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e5ab733-dbec-47f1-bab9-9582fd8877d1" + "e598ab57-35f7-4c8c-8d49-0275bc6467d9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -142,7 +139,7 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:16 GMT" + "Mon, 27 Mar 2017 21:33:54 GMT" ], "Pragma": [ "no-cache" @@ -154,16 +151,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "71a6a493-6164-4c57-8238-2fd88cfe44d1" + "96d40078-c535-4217-b743-3a1c3d176ff7" ], "x-ms-correlation-request-id": [ - "71a6a493-6164-4c57-8238-2fd88cfe44d1" + "96d40078-c535-4217-b743-3a1c3d176ff7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033517Z:71a6a493-6164-4c57-8238-2fd88cfe44d1" + "CENTRALUS:20170327T213354Z:96d40078-c535-4217-b743-3a1c3d176ff7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -178,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7bcc356a-8bcf-433d-ba99-70eac8848832" + "65e4c623-9d6c-4868-9987-3422df4bd26a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -200,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:16 GMT" + "Mon, 27 Mar 2017 21:33:54 GMT" ], "Pragma": [ "no-cache" @@ -209,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14998" ], "x-ms-request-id": [ - "10a0c2b6-ffda-4c2e-a043-8fddd9b6822b" + "91c8875d-85be-4d7e-a144-a7efb8c49542" ], "x-ms-correlation-request-id": [ - "10a0c2b6-ffda-4c2e-a043-8fddd9b6822b" + "91c8875d-85be-4d7e-a144-a7efb8c49542" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033517Z:10a0c2b6-ffda-4c2e-a043-8fddd9b6822b" + "CENTRALUS:20170327T213354Z:91c8875d-85be-4d7e-a144-a7efb8c49542" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13689?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY4OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12554?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjU1ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39452815-e789-44c2-bd38-ab1a6742dcb1" + "60d4f0ba-075f-42e2-afc7-f86dbb9a160d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13689' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg12554' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -258,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:17 GMT" + "Mon, 27 Mar 2017 21:33:54 GMT" ], "Pragma": [ "no-cache" @@ -267,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14997" ], "x-ms-request-id": [ - "4c21f891-4e2c-41ea-8af0-2ee8e634b06b" + "89d70e4f-7206-4038-b991-4b95cfeb6757" ], "x-ms-correlation-request-id": [ - "4c21f891-4e2c-41ea-8af0-2ee8e634b06b" + "89d70e4f-7206-4038-b991-4b95cfeb6757" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033517Z:4c21f891-4e2c-41ea-8af0-2ee8e634b06b" + "CENTRALUS:20170327T213354Z:89d70e4f-7206-4038-b991-4b95cfeb6757" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -285,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13689?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY4OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12554?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjU1ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a41e5ed-2059-4b56-91d3-ef40620faa91" + "80451311-5f93-4e72-9b6f-d1f3325a3a7b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689\",\r\n \"name\": \"datalakerg13689\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554\",\r\n \"name\": \"datalakerg12554\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -313,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:17 GMT" + "Mon, 27 Mar 2017 21:33:55 GMT" ], "Pragma": [ "no-cache" @@ -322,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14996" ], "x-ms-request-id": [ - "ef6ec86e-35ea-4a9a-bff7-c5936700078c" + "81af64b7-7a55-447c-a237-43fe0c925cf1" ], "x-ms-correlation-request-id": [ - "ef6ec86e-35ea-4a9a-bff7-c5936700078c" + "81af64b7-7a55-447c-a237-43fe0c925cf1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033518Z:ef6ec86e-35ea-4a9a-bff7-c5936700078c" + "CENTRALUS:20170327T213355Z:81af64b7-7a55-447c-a237-43fe0c925cf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13689?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY4OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12554?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjU1ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -352,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "28d6dee4-f620-4257-a713-0af79236a2d4" + "85006c7b-dc13-495c-bc29-53c98ca096d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689\",\r\n \"name\": \"datalakerg13689\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554\",\r\n \"name\": \"datalakerg12554\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -377,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:17 GMT" + "Mon, 27 Mar 2017 21:33:55 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-request-id": [ - "549a04fa-f79a-4f2b-9a67-bd4e088bf057" + "3720961a-b104-4252-9e1f-506782064e4f" ], "x-ms-correlation-request-id": [ - "549a04fa-f79a-4f2b-9a67-bd4e088bf057" + "3720961a-b104-4252-9e1f-506782064e4f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033518Z:549a04fa-f79a-4f2b-9a67-bd4e088bf057" + "CENTRALUS:20170327T213355Z:3720961a-b104-4252-9e1f-506782064e4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -401,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1MzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9cfb923-7d80-493d-963b-106e18e832a0" + "0e9a394b-aa40-41ea-bc93-ea2f33ce0a99" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs16946' under resource group 'datalakerg13689' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11532' under resource group 'datalakerg12554' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -432,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 26 Jan 2017 03:35:17 GMT" + "Mon, 27 Mar 2017 21:33:55 GMT" ], "Pragma": [ "no-cache" @@ -441,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "7fe817cb-254f-4e26-b7e5-de636bac3583" + "e09b5c55-ba87-4778-be3d-ce874f8ebe93" ], "x-ms-correlation-request-id": [ - "7fe817cb-254f-4e26-b7e5-de636bac3583" + "e09b5c55-ba87-4778-be3d-ce874f8ebe93" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033518Z:7fe817cb-254f-4e26-b7e5-de636bac3583" + "CENTRALUS:20170327T213355Z:e09b5c55-ba87-4778-be3d-ce874f8ebe93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1MzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16946.azuredatalakestore.net\",\r\n \"accountId\": \"a7d9b3a8-e037-4a17-8af2-87381b5e87e3\",\r\n \"creationTime\": \"2017-01-26T03:35:22.1676313Z\",\r\n \"lastModifiedTime\": \"2017-01-26T03:35:22.1676313Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946\",\r\n \"name\": \"testadlfs16946\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11532.azuredatalakestore.net\",\r\n \"accountId\": \"fa21e3dd-15b0-4063-b2b2-b1e9cb38278a\",\r\n \"creationTime\": \"2017-03-27T21:33:57.2098624Z\",\r\n \"lastModifiedTime\": \"2017-03-27T21:33:57.2098624Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532\",\r\n \"name\": \"testadlfs11532\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -481,7 +472,7 @@ "close" ], "Date": [ - "Thu, 26 Jan 2017 03:35:50 GMT" + "Mon, 27 Mar 2017 21:34:27 GMT" ], "Pragma": [ "no-cache" @@ -493,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "03475bf3-287c-4836-a77c-44a26bf4fbff" + "ecfb7220-4b29-4b16-9119-45b9a24badfa" ], "X-Content-Type-Options": [ "nosniff" @@ -505,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "3255c743-a5ac-4f39-9937-e6f356c0ece4" + "44b28cc7-0ec9-4751-a7e0-c0b65e9fec73" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033551Z:3255c743-a5ac-4f39-9937-e6f356c0ece4" + "CENTRALUS:20170327T213428Z:44b28cc7-0ec9-4751-a7e0-c0b65e9fec73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -520,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1MzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e7d70a8-06e3-4865-b5bf-82e3bc97d4e6" + "ef167cac-1328-442f-9400-1e20e6325040" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16946.azuredatalakestore.net\",\r\n \"accountId\": \"a7d9b3a8-e037-4a17-8af2-87381b5e87e3\",\r\n \"creationTime\": \"2017-01-26T03:35:22.1676313Z\",\r\n \"lastModifiedTime\": \"2017-01-26T03:35:22.1676313Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946\",\r\n \"name\": \"testadlfs16946\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11532.azuredatalakestore.net\",\r\n \"accountId\": \"fa21e3dd-15b0-4063-b2b2-b1e9cb38278a\",\r\n \"creationTime\": \"2017-03-27T21:33:57.2098624Z\",\r\n \"lastModifiedTime\": \"2017-03-27T21:33:57.2098624Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532\",\r\n \"name\": \"testadlfs11532\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -551,7 +541,7 @@ "close" ], "Date": [ - "Thu, 26 Jan 2017 03:35:50 GMT" + "Mon, 27 Mar 2017 21:34:27 GMT" ], "Pragma": [ "no-cache" @@ -563,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d2a8be09-01d7-4859-9fca-9d6ef252ff64" + "34770705-3667-42fe-aaec-c949faa3ffdd" ], "X-Content-Type-Options": [ "nosniff" @@ -575,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14999" ], "x-ms-correlation-request-id": [ - "970b7b55-a0a9-4973-9358-efb5375bb156" + "0646f512-e98d-4ea8-af4f-fd66fc5bb73c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033551Z:970b7b55-a0a9-4973-9358-efb5375bb156" + "CENTRALUS:20170327T213428Z:0646f512-e98d-4ea8-af4f-fd66fc5bb73c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjU1NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1MzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -602,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "9ed27a9e-5b60-4a08-879c-1045a70e8fa6" + "00e4e684-ece0-468f-a619-0f777e47e2d3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"a7d9b3a8-e037-4a17-8af2-87381b5e87e3\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946\",\r\n \"name\": \"testadlfs16946\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"fa21e3dd-15b0-4063-b2b2-b1e9cb38278a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532\",\r\n \"name\": \"testadlfs11532\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -630,13 +619,13 @@ "close" ], "Date": [ - "Thu, 26 Jan 2017 03:35:19 GMT" + "Mon, 27 Mar 2017 21:33:56 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13689/providers/Microsoft.DataLakeStore/accounts/testadlfs16946/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12554/providers/Microsoft.DataLakeStore/accounts/testadlfs11532/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -645,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a7d9b3a8-e037-4a17-8af2-87381b5e87e30?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fa21e3dd-15b0-4063-b2b2-b1e9cb38278a0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "53b89a45-5f1c-4996-a6cd-98bcdbc43dfe" + "12695c27-0d2b-4145-a5c9-104b11e7d92e" ], "X-Content-Type-Options": [ "nosniff" @@ -660,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "e61077fb-6351-4fd6-b37f-010c63f2a585" + "099c15a4-cdbb-489f-aec2-f6d7998d6eac" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033520Z:e61077fb-6351-4fd6-b37f-010c63f2a585" + "CENTRALUS:20170327T213356Z:099c15a4-cdbb-489f-aec2-f6d7998d6eac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -675,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a7d9b3a8-e037-4a17-8af2-87381b5e87e30?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2E3ZDliM2E4LWUwMzctNGExNy04YWYyLTg3MzgxYjVlODdlMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fa21e3dd-15b0-4063-b2b2-b1e9cb38278a0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2ZhMjFlM2RkLTE1YjAtNDA2My1iMmIyLWIxZTljYjM4Mjc4YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -700,7 +688,7 @@ "close" ], "Date": [ - "Thu, 26 Jan 2017 03:35:49 GMT" + "Mon, 27 Mar 2017 21:34:26 GMT" ], "Pragma": [ "no-cache" @@ -712,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "97ea4853-d248-402a-b00e-05e250870c2e" + "541745cb-6c5d-4cf2-ab54-059c9c0c62f6" ], "X-Content-Type-Options": [ "nosniff" @@ -724,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14999" ], "x-ms-correlation-request-id": [ - "20e4e215-fcbe-4f35-9001-e14cab2dc17b" + "0f0a7e16-6a3c-4ed0-a121-20336f7df300" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170126T033550Z:20e4e215-fcbe-4f35-9001-e14cab2dc17b" + "CENTRALUS:20170327T213427Z:0f0a7e16-6a3c-4ed0-a121-20336f7df300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -739,20 +727,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2Nj9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8b92692-636a-4920-9c5a-5c449a967025" + "bf3e2c58-14b3-4846-8299-78b74ef69f8c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -770,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:53 GMT" + "Mon, 27 Mar 2017 21:34:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a73a4ff5-b43f-45b9-bd78-52bed774bc1b" + "9318b3c3-a185-4e71-adc8-72e676569e2c" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -794,8 +781,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -806,14 +793,13 @@ "42" ], "x-ms-client-request-id": [ - "99078921-6743-4e1a-b95a-c42d9a2eb418" + "6c886b7e-4194-460e-af35-8700fa07542a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -828,22 +814,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:53 GMT" + "Mon, 27 Mar 2017 21:34:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/SDKTestFile01.txt534?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/SDKTestFile01.txt5159?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "d3a642db-7970-4e0a-999a-9a29a641b821" + "7143d0b1-0d69-46c0-b106-4a86af73d9d9" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -858,8 +844,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt7694?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NzY5ND9vcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt6454?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -870,14 +856,13 @@ "42" ], "x-ms-client-request-id": [ - "a0ae508c-1e5e-4d7c-90dd-cbce1b8f7592" + "dc6e563d-da9c-48d4-98f7-cfe66d0db559" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -892,22 +877,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:54 GMT" + "Mon, 27 Mar 2017 21:34:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/SDKTestFile01.txt7694?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/SDKTestFile01.txt6454?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "e2ab4aa0-aaca-4fba-8d4b-255e82453576" + "ba8e0b97-1f51-4ece-9a1e-361343b6e274" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -922,23 +907,22 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2Nj9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ab8dfed-f482-4f2d-b862-408963d3c9b3" + "af27f606-7b2b-44cd-a55d-16ac3b153019" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1485401753678,\r\n \"modificationTime\": 1485401754183,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1490650471494,\r\n \"modificationTime\": 1490650472004,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "280" @@ -953,16 +937,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:54 GMT" + "Mon, 27 Mar 2017 21:34:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "54ec1c8d-a1ed-4c70-9ac4-927ee79df4a2" + "3219e1fa-5c5d-49ab-a1ae-4554dcb226bf" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -977,23 +961,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2Nj9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a2c6229-3859-4361-bbb1-517411a6d75d" + "d309092e-25b1-4d37-ae2f-205b322197b2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1485401753678,\r\n \"modificationTime\": 1485401754183,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1490650471494,\r\n \"modificationTime\": 1490650472004,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "280" @@ -1008,16 +991,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:54 GMT" + "Mon, 27 Mar 2017 21:34:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a8ec376e-04a9-42ab-aac8-8acaaf3430a8" + "c977868c-0bfd-4cb1-bfd2-8ce5677cada8" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1032,23 +1015,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2Nj9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "264f9de7-ee94-4606-b7c3-c16fd0713dec" + "549aaaf0-8109-42d4-ba6f-4353419799ed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1485401753678,\r\n \"modificationTime\": 1485401754183,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1490650471494,\r\n \"modificationTime\": 1490650472004,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "280" @@ -1063,16 +1045,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:54 GMT" + "Mon, 27 Mar 2017 21:34:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c00393f4-c775-4d25-a6c3-276bb9e8f379" + "c6c443e2-8f04-494e-9eef-07418c8d0149" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1087,26 +1069,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166?op=MSLISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2Nj9vcD1NU0xJU1RTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1MSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50abbb26-dfc9-408c-a18f-abea08565373" + "44631b71-403a-434f-b896-e2fb2c5c9b88" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt534\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401753786,\r\n \"modificationTime\": 1485401753859,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt7694\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401754164,\r\n \"modificationTime\": 1485401754437,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt5159\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471606,\r\n \"modificationTime\": 1490650471689,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt6454\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471983,\r\n \"modificationTime\": 1490650472053,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "657" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1118,16 +1099,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:54 GMT" + "Mon, 27 Mar 2017 21:34:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6b53e97c-9ef4-47de-82ee-bd2fdf35ae0d" + "8a1e5712-13cc-41a4-85e0-dad978cbe908" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1142,26 +1123,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166?op=MSLISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2Nj9vcD1NU0xJU1RTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOT9vcD1MSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9a88091-fbd8-42c6-98ad-cf3daf8fa69a" + "054544b2-e64d-4337-8216-37945aa66294" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt534\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401753786,\r\n \"modificationTime\": 1485401753859,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt7694\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401754164,\r\n \"modificationTime\": 1485401754437,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt5159\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471606,\r\n \"modificationTime\": 1490650471689,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt6454\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471983,\r\n \"modificationTime\": 1490650472053,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "694" + "657" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1173,16 +1153,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:54 GMT" + "Mon, 27 Mar 2017 21:34:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "af7927c0-d209-4961-8ab7-9acc44dd841b" + "9763792f-16c2-45f5-b988-5fb9b8532335" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1197,26 +1177,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt6454?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e6e2ebb-ac86-45c2-bc3d-921f1cdc0f46" + "04f5f7df-4ba4-4e87-9136-29053201aaa8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401753786,\r\n \"modificationTime\": 1485401753859,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471983,\r\n \"modificationTime\": 1490650472053,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1228,16 +1207,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:54 GMT" + "Mon, 27 Mar 2017 21:34:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f175275d-864f-4e4c-9da9-f4aa0a9a657b" + "30e24bc4-fb6a-4367-9bc7-9a7ec69e48c9" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1252,29 +1231,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt6454?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9sZW5ndGg9NDImb2Zmc2V0PTAmb3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78da3eb5-91fb-4b81-ad7a-8e58c3aeafc6" + "73a7908f-e09e-4c44-91e1-aa883014d8e1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401753786,\r\n \"modificationTime\": 1485401753859,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "These are some random test contents 1234!@", "ResponseHeaders": { - "Content-Length": [ - "324" - ], "Content-Type": [ - "application/json; charset=utf-8" + "application/octet-stream" ], "Expires": [ "-1" @@ -1283,16 +1258,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:32 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "x-ms-request-id": [ - "59cde4ed-f60e-4455-98ba-63ee6dbb9910" + "292b6983-c5d4-4d11-b51f-73cfaa079997" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1307,26 +1285,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0335be83-3aa8-4375-b874-76667dd2c534" + "18ad8d01-f249-4b27-a32e-44cb21466024" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401753786,\r\n \"modificationTime\": 1485401753859,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471606,\r\n \"modificationTime\": 1490650471689,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1338,16 +1315,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "31e53dd2-39a1-4778-b33f-e1ee46dcf53d" + "28b197ce-7448-4282-b246-b4968ec4a19b" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1362,26 +1339,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57cbfff2-7e14-4e04-95fc-deb94db92db6" + "169e7033-3f20-45f4-91ac-d7f70db1e99a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401753786,\r\n \"modificationTime\": 1485401753859,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471606,\r\n \"modificationTime\": 1490650471689,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1393,16 +1369,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "725eb0dc-0f64-49ce-9024-7973be97b565" + "c4042c1d-cc62-4ab7-8b79-f952a9d0e406" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1417,26 +1393,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adf77018-4e11-4b3f-b78f-dc3bde29cb9b" + "3661bb3a-acb3-4186-81f6-4d0cff7d1441" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401753786,\r\n \"modificationTime\": 1485401753859,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471606,\r\n \"modificationTime\": 1490650471689,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1448,16 +1423,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d8127e4f-63a6-465c-a712-3623e03227a6" + "b633aa1c-c375-4ad9-8333-61e7b1639603" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1472,26 +1447,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt7694?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NzY5ND9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4018be4f-0758-487a-bc9f-6458063d3f2f" + "0548b3d3-4fc5-4b97-b44c-6d3c1f8d5597" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401754164,\r\n \"modificationTime\": 1485401754437,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471606,\r\n \"modificationTime\": 1490650471689,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1503,16 +1477,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5950c16c-e093-4a02-8db5-31172ead57c9" + "f0144177-5e3e-4bba-b543-af0d0184725d" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1527,26 +1501,28 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P2xlbmd0aD00MiZvZmZzZXQ9MCZvcD1PUEVOJnJlYWQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1bbad77-aa96-4634-8c36-6a4fe38e8dc9" + "4dba1519-1870-4bca-b7df-6c32fbb32832" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "These are some random test contents 1234!@", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650471606,\r\n \"modificationTime\": 1490650471689,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { + "Content-Length": [ + "305" + ], "Content-Type": [ - "application/octet-stream" + "application/json; charset=utf-8" ], "Expires": [ "-1" @@ -1555,19 +1531,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:32 GMT" ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], "x-ms-request-id": [ - "062cd787-ef94-4455-a417-bc5355f24a9f" + "c64555df-1653-4813-8b73-692743295062" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1582,20 +1555,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt534?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P2xlbmd0aD00MiZvZmZzZXQ9MCZvcD1PUEVOJnJlYWQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9sZW5ndGg9NDImb2Zmc2V0PTAmb3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf2283ca-beed-4ce1-991c-cbbcc93e2b3a" + "d718a1c4-324d-46ba-b38f-347f23162194" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -1610,7 +1582,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:32 GMT" ], "Pragma": [ "no-cache" @@ -1619,10 +1591,10 @@ "chunked" ], "x-ms-request-id": [ - "a39f2a67-5e89-4fd9-8cf6-99c6f7fa83bf" + "be34b7e2-51f5-4b7e-a640-2613ac9f873a" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1637,20 +1609,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2FSDKTestFile01.txt7694?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRlNES1Rlc3RGaWxlMDEudHh0NzY5ND9sZW5ndGg9NDImb2Zmc2V0PTAmb3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2FSDKTestFile01.txt5159?length=42&offset=0&op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9sZW5ndGg9NDImb2Zmc2V0PTAmb3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ba214fd-8126-4364-852e-2a838eedeaf3" + "5178446a-e467-4922-b98b-1e0ae6cb4cdb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -1665,7 +1636,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:33 GMT" ], "Pragma": [ "no-cache" @@ -1674,10 +1645,10 @@ "chunked" ], "x-ms-request-id": [ - "bd523e85-b7d9-44bf-8ecd-fcaa6edbb604" + "08dc8af2-0ba7-48b9-a445-a872788bf304" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1692,26 +1663,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt534?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "599ee994-9247-4e43-aaaf-1f8c76132a46" + "207a50b7-3c6e-42fc-8d23-2cee947ef156" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder019166/upload/SDKTestFile01.txt534 [625cbb6a-08fb-4610-abaa-f279d5938a24][2017-01-25T19:35:56.2878777-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder017119/upload/SDKTestFile01.txt5159 [f76383fa-6761-49d0-b885-63ce86294ccd][2017-03-27T14:34:33.9794750-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "268" + "269" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1723,16 +1693,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:56 GMT" + "Mon, 27 Mar 2017 21:34:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "625cbb6a-08fb-4610-abaa-f279d5938a24" + "f76383fa-6761-49d0-b885-63ce86294ccd" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1747,26 +1717,25 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt534?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt5159?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20c8748c-c547-460b-88bb-45e25fe59932" + "c70ced86-4ace-4988-81ff-aede32bc3c9a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401757759,\r\n \"modificationTime\": 1485401757810,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650474736,\r\n \"modificationTime\": 1490650474784,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1778,16 +1747,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cca83879-8121-4ead-8e3c-0872616b568e" + "67799e8e-fc26-4127-a227-1d55f7448022" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1802,26 +1771,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt6454?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58792e02-f640-4346-8204-e97c81827390" + "b27b70de-e4d4-4694-a177-284829da6b41" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder019166/upload/specificFileDownload.out [6439f71b-588f-482f-8799-25b0f7277098][2017-01-25T19:35:56.2953836-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder017119/upload/SDKTestFile01.txt6454 [cef3a82f-0ecc-40fc-9ab5-eb184d2f09e6][2017-03-27T14:34:33.9812232-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "272" + "269" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1833,16 +1801,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:55 GMT" + "Mon, 27 Mar 2017 21:34:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6439f71b-588f-482f-8799-25b0f7277098" + "cef3a82f-0ecc-40fc-9ab5-eb184d2f09e6" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1857,26 +1825,25 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt6454?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c3723b7-592e-44ef-9980-decca8480f67" + "9ab013b7-9d75-4599-b67e-91c2017e782d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401757681,\r\n \"modificationTime\": 1485401757742,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650474823,\r\n \"modificationTime\": 1490650474893,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1888,16 +1855,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b49cd215-1d6e-46a0-b026-44d78d0fac26" + "a527f4fb-e8a5-4b25-81ff-26c7a162f6a8" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1912,26 +1879,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt7694?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NzY5ND9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6898deb-8c7c-4f02-ba98-c98756769f59" + "0d44eafa-20fd-4273-88c0-314cca4219a2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder019166/upload/SDKTestFile01.txt7694 [261a08f4-9464-4c84-8a07-987b62bcd851][2017-01-25T19:35:57.0718268-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder017119/upload/specificFileDownload.out [9aff10d6-392e-437e-844a-bb196d192a5d][2017-03-27T14:34:34.4017821-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "269" + "272" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1943,16 +1909,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:56 GMT" + "Mon, 27 Mar 2017 21:34:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "261a08f4-9464-4c84-8a07-987b62bcd851" + "9aff10d6-392e-437e-844a-bb196d192a5d" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1967,26 +1933,25 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt7694?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NzY5ND9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2e8290d-731b-4e27-9769-4495fef66340" + "54a33515-e234-447f-95fb-2a1cecaae848" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401757455,\r\n \"modificationTime\": 1485401757527,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650474764,\r\n \"modificationTime\": 1490650474814,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1998,16 +1963,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c3bb30c0-420b-4f54-9aa8-985f6c853ddb" + "ea8f5eb9-3323-4577-a8ef-a14e41719abc" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2022,8 +1987,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt7694?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NzY5ND9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt5159?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -2034,14 +1999,13 @@ "0" ], "x-ms-client-request-id": [ - "7f685e59-223f-40aa-9214-34b55eb1ab29" + "f86aac02-959f-4316-9063-d563acaab837" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2056,22 +2020,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:56 GMT" + "Mon, 27 Mar 2017 21:34:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/SDKTestFile01.txt7694?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/SDKTestFile01.txt5159?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "2624da0d-4bb7-4bcf-b308-9698b56cdc2b" + "120e3514-add5-4bcd-9c5d-b570cc61ffed" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2086,8 +2050,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt7694?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NzY5ND9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt5159?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTE1OT9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -2098,14 +2062,13 @@ "42" ], "x-ms-client-request-id": [ - "492b15fa-b78d-4f86-8f3d-e2d234930869" + "8c04e18d-161d-45f6-903f-e5ab5526ad3e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2120,22 +2083,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/SDKTestFile01.txt7694?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/SDKTestFile01.txt5159?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "b3a966c5-f807-4a8e-8cae-9916883d9e09" + "15d7a218-563b-4293-bcb0-f203f69d7883" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2150,8 +2113,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -2162,14 +2125,13 @@ "0" ], "x-ms-client-request-id": [ - "c8a37deb-b585-4bdf-947d-d09585d42af2" + "dbe5c95c-c31a-4a9d-8f23-1137d8535cae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2184,22 +2146,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/specificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/specificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "abd1b4a3-6902-4b4f-8ae8-8d0197a9d0e0" + "fa9eee88-59d2-401c-9ec5-26853d312dc7" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2214,8 +2176,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dD9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -2226,14 +2188,13 @@ "42" ], "x-ms-client-request-id": [ - "a56173ea-44b1-4a6e-b216-a744d57507ca" + "8d8a5fed-e57f-434e-b556-66a1e1fff587" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2248,22 +2209,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/specificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/specificFileDownload.out?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "34826bf2-41e8-4a49-acff-a2bf724ec08a" + "8146a790-cfeb-4e85-95cb-d72247b66db9" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2278,8 +2239,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt534?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P292ZXJ3cml0ZT10cnVlJm9wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt6454?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -2290,14 +2251,13 @@ "0" ], "x-ms-client-request-id": [ - "988dfb28-b3e3-40fc-a7dd-147316220884" + "968a5640-6909-45fb-88eb-1d7efaad6d88" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2312,22 +2272,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/SDKTestFile01.txt534?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/SDKTestFile01.txt6454?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "725716d1-55b8-423e-ae0d-22a34c9beb16" + "644f80c2-60cf-4dd4-b2cb-71ef5fbbc643" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2342,8 +2302,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FSDKTestFile01.txt534?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NTM0P292ZXJ3cml0ZT10cnVlJm9wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FSDKTestFile01.txt6454?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRlNES1Rlc3RGaWxlMDEudHh0NjQ1ND9vdmVyd3JpdGU9dHJ1ZSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -2354,14 +2314,13 @@ "42" ], "x-ms-client-request-id": [ - "f9fbc307-6903-46cd-bf3d-1f89754c95eb" + "c43cfb3a-c143-47b4-a26b-5f12b5ff2ffa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2376,22 +2335,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/SDKTestFile01.txt534?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/SDKTestFile01.txt6454?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "77d730dc-4095-4b03-8051-9b3732de7394" + "bb020960-08c1-4d06-bb63-232b350bc35e" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2406,26 +2365,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload?op=MSLISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZD9vcD1NU0xJU1RTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZD9vcD1MSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0e24071-2236-489e-bc39-06d8a8f5a2cf" + "28bcc84a-07f5-41e9-a7b0-5072d9b50893" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt534\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401757759,\r\n \"modificationTime\": 1485401757810,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt7694\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401757455,\r\n \"modificationTime\": 1485401757527,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"specificFileDownload.out\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401757681,\r\n \"modificationTime\": 1485401757742,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt5159\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650474736,\r\n \"modificationTime\": 1490650474784,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestFile01.txt6454\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650474823,\r\n \"modificationTime\": 1490650474893,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n },\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"specificFileDownload.out\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650474764,\r\n \"modificationTime\": 1490650474814,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1028" + "972" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2437,16 +2395,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2ce7954e-e41d-42a8-8a99-93c79ce3420a" + "a618169b-dda5-4c12-99f1-77f3fff03893" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2461,23 +2419,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out.new?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91bc64e2-06c0-4e01-b6ab-ad938a7b255a" + "89cbd046-b10b-4b0f-8435-e8c7537a7aa0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder019166/upload/specificFileDownload.out.new [5b439524-5763-4684-96db-3a92cfec0df8][2017-01-25T19:35:58.2328734-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder017119/upload/specificFileDownload.out.new [6cc90c34-96d3-4be0-a0a1-2ec3eaa9a1cf][2017-03-27T14:34:35.3718571-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "276" @@ -2492,16 +2449,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5b439524-5763-4684-96db-3a92cfec0df8" + "6cc90c34-96d3-4be0-a0a1-2ec3eaa9a1cf" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -2516,26 +2473,25 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out.new?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28ac639a-9dc3-4b87-9a9c-bd2abf7ad816" + "7f25c316-0ef9-449b-aece-166d4d228b6a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401758614,\r\n \"modificationTime\": 1485401758690,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650475647,\r\n \"modificationTime\": 1490650475718,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2547,16 +2503,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:58 GMT" + "Mon, 27 Mar 2017 21:34:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2d771ee7-c24c-4d51-80af-daa24a3b1357" + "4409b85b-4917-45c8-aa96-3a5f5d76d09e" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2571,26 +2527,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out.new?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65f1987c-4417-4d45-8c66-6d21329ce5e8" + "5e675a1b-f212-498f-809a-c366bfe49367" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485401758614,\r\n \"modificationTime\": 1485401758690,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490650475647,\r\n \"modificationTime\": 1490650475718,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2602,16 +2557,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:58 GMT" + "Mon, 27 Mar 2017 21:34:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9818a754-f905-483d-aeaf-59c39d54e137" + "5bc0f0f6-4e8f-4d56-b63d-2b78586b954e" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2626,8 +2581,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3ZlcndyaXRlPXRydWUmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3ZlcndyaXRlPXRydWUmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -2638,14 +2593,13 @@ "0" ], "x-ms-client-request-id": [ - "b64e6bf2-63fa-46be-b4b4-30603d161a62" + "191d56ad-07e3-467e-bbc7-22ab90153387" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2660,22 +2614,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:57 GMT" + "Mon, 27 Mar 2017 21:34:34 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/specificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/specificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "fe5b510d-03d3-4245-959c-07bc70f1687f" + "cdb52b67-b9d5-4768-9c5b-e1ac82f66d9c" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2690,8 +2644,8 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3ZlcndyaXRlPXRydWUmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3ZlcndyaXRlPXRydWUmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -2702,14 +2656,13 @@ "42" ], "x-ms-client-request-id": [ - "294fc715-8075-4317-81ff-5abfe3d3b145" + "26b0ed19-4e68-4c4f-adbf-88aee2bd2e1b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -2724,22 +2677,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:58 GMT" + "Mon, 27 Mar 2017 21:34:35 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019166/upload/specificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11532.azuredatalakestore.net/webhdfs/v1/SDKTestFolder017119/upload/specificFileDownload.out.new?overwrite=true&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "ac140255-9681-4889-a355-355d95dc6ff4" + "e9b481ac-ce1d-4b5d-93f7-cf19416aa8a0" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2754,20 +2707,19 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder019166%2Fupload%2FspecificFileDownload.out.new?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTE2NiUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder017119%2Fupload%2FspecificFileDownload.out.new?op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzExOSUyRnVwbG9hZCUyRnNwZWNpZmljRmlsZURvd25sb2FkLm91dC5uZXc/b3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a70d7b1-ffb9-4e1e-92f6-abcc2e007b78" + "82b07fcf-769a-4b52-8d19-1e452369a2d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.3" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -2782,7 +2734,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 26 Jan 2017 03:35:58 GMT" + "Mon, 27 Mar 2017 21:34:35 GMT" ], "Pragma": [ "no-cache" @@ -2791,10 +2743,10 @@ "chunked" ], "x-ms-request-id": [ - "b3e97e97-30af-4ba6-a171-cdb7f7a92126" + "60017931-0731-4be2-b5a5-2a29ec760eef" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -2811,16 +2763,16 @@ ], "Names": { ".ctor": [ - "datalakerg13689", - "testdatalake19593", - "testadlfs16946" + "datalakerg12554", + "testdatalake15141", + "testadlfs11532" ], "CreateFolder": [ - "SDKTestFolder019166" + "SDKTestFolder017119" ], "CreateFile": [ - "SDKTestFolder019166/SDKTestFile01.txt534", - "SDKTestFolder019166/SDKTestFile01.txt7694" + "SDKTestFolder017119/SDKTestFile01.txt5159", + "SDKTestFolder017119/SDKTestFile01.txt6454" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFile.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFile.json index 4fd5f7f34244..0c1673b97ab7 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFile.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFile.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a2d994f-a578-4e52-bcbe-34c3faf73ccb" + "98902518-b82e-4416-8809-4fe982956c38" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,11 +28,14 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:25 GMT" + "Mon, 27 Mar 2017 18:02:55 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -41,13 +43,13 @@ "1199" ], "x-ms-request-id": [ - "7116c70d-cc75-4ca5-8824-a16015f8e1b6" + "f2c96b4e-35dd-45f3-a5a8-6995c71381cd" ], "x-ms-correlation-request-id": [ - "7116c70d-cc75-4ca5-8824-a16015f8e1b6" + "f2c96b4e-35dd-45f3-a5a8-6995c71381cd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223526Z:7116c70d-cc75-4ca5-8824-a16015f8e1b6" + "WESTUS2:20170327T180256Z:f2c96b4e-35dd-45f3-a5a8-6995c71381cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7741896e-103a-462d-8435-e317f019e4e8" + "8531a6e4-95a7-4b19-bb56-ac0b2d4d6aec" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:25 GMT" + "Mon, 27 Mar 2017 18:02:55 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-request-id": [ - "d715d733-bde5-4b31-aa8f-2a7556826d7e" + "d9b2c58b-a5d3-4e0a-b003-21b3a36d262e" ], "x-ms-correlation-request-id": [ - "d715d733-bde5-4b31-aa8f-2a7556826d7e" + "d9b2c58b-a5d3-4e0a-b003-21b3a36d262e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223526Z:d715d733-bde5-4b31-aa8f-2a7556826d7e" + "WESTUS2:20170327T180256Z:d9b2c58b-a5d3-4e0a-b003-21b3a36d262e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f732b5c9-78f5-41f0-bd01-76762073cdc3" + "644cdb5c-ca7a-4e37-9bbb-615e9c772a93" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,11 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:26 GMT" + "Mon, 27 Mar 2017 18:02:56 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -151,13 +154,13 @@ "1198" ], "x-ms-request-id": [ - "c67940b7-0059-4f9b-895f-48c4aa766a0a" + "077db7ee-26e2-439e-a785-279421f8cb4f" ], "x-ms-correlation-request-id": [ - "c67940b7-0059-4f9b-895f-48c4aa766a0a" + "077db7ee-26e2-439e-a785-279421f8cb4f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223526Z:c67940b7-0059-4f9b-895f-48c4aa766a0a" + "WESTUS2:20170327T180257Z:077db7ee-26e2-439e-a785-279421f8cb4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9fc0b5f-1e61-4d94-a7ba-0acaf4c327e3" + "3d0d0389-5b1f-48ee-a014-9597b48475ef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:26 GMT" + "Mon, 27 Mar 2017 18:02:56 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14997" ], "x-ms-request-id": [ - "8111dade-6053-4924-ac50-da77251d730c" + "e83fc951-8001-46b8-9be5-ff96ed3b24b0" ], "x-ms-correlation-request-id": [ - "8111dade-6053-4924-ac50-da77251d730c" + "e83fc951-8001-46b8-9be5-ff96ed3b24b0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223527Z:8111dade-6053-4924-ac50-da77251d730c" + "WESTUS2:20170327T180257Z:e83fc951-8001-46b8-9be5-ff96ed3b24b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19467?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTQ2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14595?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDU5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97ef1a4c-61be-4964-8980-a0b83f833717" + "3d21e408-9a0a-46a1-8630-94528feb70b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19467' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14595' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:26 GMT" + "Mon, 27 Mar 2017 18:02:56 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14996" ], "x-ms-request-id": [ - "a5363b63-a918-43b1-9a48-dd5e61674a8d" + "18d8fa05-4b92-4d0a-b550-012e38912697" ], "x-ms-correlation-request-id": [ - "a5363b63-a918-43b1-9a48-dd5e61674a8d" + "18d8fa05-4b92-4d0a-b550-012e38912697" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223527Z:a5363b63-a918-43b1-9a48-dd5e61674a8d" + "WESTUS2:20170327T180257Z:18d8fa05-4b92-4d0a-b550-012e38912697" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19467?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTQ2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14595?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDU5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9976ad93-bd4b-430b-a1a0-4fbc65038eed" + "d930058f-c8d2-440b-a820-6c42e331576d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467\",\r\n \"name\": \"datalakerg19467\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595\",\r\n \"name\": \"datalakerg14595\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:26 GMT" + "Mon, 27 Mar 2017 18:02:58 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14995" ], "x-ms-request-id": [ - "5f29e929-a16a-4237-ad0a-ffc51ac57638" + "0f1f825a-14b6-491c-bf57-ceeae9b021ac" ], "x-ms-correlation-request-id": [ - "5f29e929-a16a-4237-ad0a-ffc51ac57638" + "0f1f825a-14b6-491c-bf57-ceeae9b021ac" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223527Z:5f29e929-a16a-4237-ad0a-ffc51ac57638" + "WESTUS2:20170327T180258Z:0f1f825a-14b6-491c-bf57-ceeae9b021ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19467?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTQ2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14595?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDU5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "e0524d45-2353-4832-9957-cd9c2da7eb78" + "d686df6b-0d55-40a3-9f00-f59df5fe6f62" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467\",\r\n \"name\": \"datalakerg19467\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595\",\r\n \"name\": \"datalakerg14595\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,7 +370,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:26 GMT" + "Mon, 27 Mar 2017 18:02:58 GMT" ], "Pragma": [ "no-cache" @@ -380,13 +379,13 @@ "1197" ], "x-ms-request-id": [ - "9ad23e4d-1e62-4f97-8f1c-9c440b910d12" + "6ae9aa02-cbb2-4d84-94e9-a9234fd48d60" ], "x-ms-correlation-request-id": [ - "9ad23e4d-1e62-4f97-8f1c-9c440b910d12" + "6ae9aa02-cbb2-4d84-94e9-a9234fd48d60" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223527Z:9ad23e4d-1e62-4f97-8f1c-9c440b910d12" + "WESTUS2:20170327T180258Z:6ae9aa02-cbb2-4d84-94e9-a9234fd48d60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTQ2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDU5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcxMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "581d3e97-5a63-47bb-bffd-f19e4e9d1551" + "59f0cee3-90f2-4a8f-9fdd-fe60f5a278b4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs145' under resource group 'datalakerg19467' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17137' under resource group 'datalakerg14595' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "164" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:35:27 GMT" + "Mon, 27 Mar 2017 18:02:58 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "98c112f8-db9f-432d-b5bc-f0403d403563" + "e2b47dbf-5538-4d7a-983b-d42703064b32" ], "x-ms-correlation-request-id": [ - "98c112f8-db9f-432d-b5bc-f0403d403563" + "e2b47dbf-5538-4d7a-983b-d42703064b32" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223528Z:98c112f8-db9f-432d-b5bc-f0403d403563" + "WESTUS2:20170327T180259Z:e2b47dbf-5538-4d7a-983b-d42703064b32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTQ2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDU5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcxMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs145.azuredatalakestore.net\",\r\n \"accountId\": \"2b1b1107-3051-4dad-805f-58f1b1dc23f6\",\r\n \"creationTime\": \"2016-11-10T22:35:33.905645Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:35:33.905645Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145\",\r\n \"name\": \"testadlfs145\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17137.azuredatalakestore.net\",\r\n \"accountId\": \"57ac2cbe-92ba-41d8-be29-b0ef22c71d6a\",\r\n \"creationTime\": \"2017-03-27T18:03:00.8370475Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:03:00.8370475Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137\",\r\n \"name\": \"testadlfs17137\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:35:59 GMT" + "Mon, 27 Mar 2017 18:03:31 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4348d11f-3b34-4ab5-b462-859a05185dd0" + "282fc88b-4007-4f20-a3ea-634b0f2fbb51" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "5aea2eba-67b2-48e2-a084-ead27c7ae0b8" + "ed4517a1-92ad-4c39-bc18-65a4d0fe5202" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223600Z:5aea2eba-67b2-48e2-a084-ead27c7ae0b8" + "WESTUS2:20170327T180332Z:ed4517a1-92ad-4c39-bc18-65a4d0fe5202" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTQ2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDU5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcxMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21a19866-2418-44b5-a688-80e1a849c734" + "4dbf01e0-62a3-41a0-8e79-cf3084af9c57" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs145.azuredatalakestore.net\",\r\n \"accountId\": \"2b1b1107-3051-4dad-805f-58f1b1dc23f6\",\r\n \"creationTime\": \"2016-11-10T22:35:33.905645Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:35:33.905645Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145\",\r\n \"name\": \"testadlfs145\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17137.azuredatalakestore.net\",\r\n \"accountId\": \"57ac2cbe-92ba-41d8-be29-b0ef22c71d6a\",\r\n \"creationTime\": \"2017-03-27T18:03:00.8370475Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:03:00.8370475Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137\",\r\n \"name\": \"testadlfs17137\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:36:00 GMT" + "Mon, 27 Mar 2017 18:03:32 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "58d96b10-9b11-49fd-aae2-dbf5d405ab41" + "03eb4b62-8c98-48bf-b91d-d64b179a50f4" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "670793fa-f12d-402c-8db4-1f24ee04850b" + "8a93df8a-ae6d-429e-99be-159160298d52" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223601Z:670793fa-f12d-402c-8db4-1f24ee04850b" + "WESTUS2:20170327T180332Z:8a93df8a-ae6d-429e-99be-159160298d52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTQ2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDU5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcxMzc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "f95e1cb1-6964-41ad-86fb-ee6d233fea19" + "df073ed6-910d-4655-9cb6-9ac857475034" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"2b1b1107-3051-4dad-805f-58f1b1dc23f6\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145\",\r\n \"name\": \"testadlfs145\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"57ac2cbe-92ba-41d8-be29-b0ef22c71d6a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137\",\r\n \"name\": \"testadlfs17137\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "416" + "420" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:35:28 GMT" + "Mon, 27 Mar 2017 18:03:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19467/providers/Microsoft.DataLakeStore/accounts/testadlfs145/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14595/providers/Microsoft.DataLakeStore/accounts/testadlfs17137/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2b1b1107-3051-4dad-805f-58f1b1dc23f60?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/57ac2cbe-92ba-41d8-be29-b0ef22c71d6a0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "6f35c568-c421-410a-be71-79018ab860e7" + "4912151c-49a2-4304-a258-2e9da3ecba90" ], "X-Content-Type-Options": [ "nosniff" @@ -657,10 +652,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "dc71c638-667a-4f5d-a0c4-14326da3275b" + "47fe5334-f856-466b-94db-98d47d86c98b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223528Z:dc71c638-667a-4f5d-a0c4-14326da3275b" + "WESTUS2:20170327T180301Z:47fe5334-f856-466b-94db-98d47d86c98b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2b1b1107-3051-4dad-805f-58f1b1dc23f60?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzJiMWIxMTA3LTMwNTEtNGRhZC04MDVmLTU4ZjFiMWRjMjNmNjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/57ac2cbe-92ba-41d8-be29-b0ef22c71d6a0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzU3YWMyY2JlLTkyYmEtNDFkOC1iZTI5LWIwZWYyMmM3MWQ2YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:35:59 GMT" + "Mon, 27 Mar 2017 18:03:30 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fcc092ec-185e-4cfa-9ce3-aa7031bcd7cf" + "e5eef495-e346-4ded-a22b-9eb8e812bcf4" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "24d02453-9637-4a14-92b4-21cb324c7e86" + "22ca9a33-5a97-4480-bbfa-3f9aabfd27ec" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223559Z:24d02453-9637-4a14-92b4-21cb324c7e86" + "WESTUS2:20170327T180331Z:22ca9a33-5a97-4480-bbfa-3f9aabfd27ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6264?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MjY0P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2107?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTA3P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -745,14 +739,13 @@ "0" ], "x-ms-client-request-id": [ - "3123635a-3434-4335-8f59-0bbd2062d70e" + "fdd290df-91b6-41ee-8e11-b95897c990a1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:02 GMT" + "Mon, 27 Mar 2017 18:03:41 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs145.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt6264?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17137.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2107?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "97645649-ae1a-4782-b534-7a8a5c561228" + "426decc0-48ad-44c1-87be-a856f52ba7fa" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6264?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MjY0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2107?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTA3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5c6e28b-1a58-42ff-897d-c05a1df63a81" + "df913301-38c2-431a-a159-381b9c070359" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817362939,\r\n \"modificationTime\": 1478817362939,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490637822629,\r\n \"modificationTime\": 1490637822629,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:02 GMT" + "Mon, 27 Mar 2017 18:03:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d0db4638-3c34-4c8f-b521-fbb541ac9a9a" + "2b4922e6-cc22-45ad-baf1-6ddfcdab4568" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,26 +844,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6264?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MjY0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2107?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTA3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e311ab6f-8d88-4dbf-baae-fa293f284a56" + "a0a4f8a1-ab88-4099-8c33-cb4766ade6b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817362939,\r\n \"modificationTime\": 1478817363287,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490637822629,\r\n \"modificationTime\": 1490637822939,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:03 GMT" + "Mon, 27 Mar 2017 18:03:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7ad549e1-a7d7-46a7-a29b-c6fd9c11b74d" + "fe795d6b-185a-4df9-9b94-2a965f3f98d6" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -907,8 +898,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6264?op=APPEND&append=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MjY0P29wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2107?op=APPEND&append=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTA3P29wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -919,14 +910,13 @@ "39" ], "x-ms-client-request-id": [ - "d5e4ae3c-7355-4c36-b4f7-13807be8409d" + "3bf52c80-cb3b-4fe0-9dcb-84eb05fe6efb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -941,16 +931,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:03 GMT" + "Mon, 27 Mar 2017 18:03:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6eb05bb2-9a63-4503-bca3-2416a9005cc8" + "88a1a4f9-e38e-4854-854f-b74b1622cd65" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -967,12 +957,12 @@ ], "Names": { ".ctor": [ - "datalakerg19467", - "testdatalake14544", - "testadlfs145" + "datalakerg14595", + "testdatalake14323", + "testadlfs17137" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt6264" + "SDKTestFolder01/SDKTestFile01.txt2107" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithBadOffset.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithBadOffset.json index 0e885d285b0c..3867e996e670 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithBadOffset.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithBadOffset.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e936bf9-5582-456b-9c76-a69c615c2040" + "a52526a1-e479-40a3-85d0-a0995c69e8e5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:13 GMT" + "Mon, 27 Mar 2017 18:19:10 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-request-id": [ - "2253b05e-92cd-4177-8b4b-707eee2734e9" + "cf2cb35f-3695-4c4e-a9a9-e7a80d2fef5a" ], "x-ms-correlation-request-id": [ - "2253b05e-92cd-4177-8b4b-707eee2734e9" + "cf2cb35f-3695-4c4e-a9a9-e7a80d2fef5a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225814Z:2253b05e-92cd-4177-8b4b-707eee2734e9" + "CENTRALUS:20170327T181911Z:cf2cb35f-3695-4c4e-a9a9-e7a80d2fef5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83cd1a27-1ccf-4ca5-924f-ba21f41f18a8" + "dd7cdbca-5fe5-4672-9c36-9422197022cf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:13 GMT" + "Mon, 27 Mar 2017 18:19:10 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14996" ], "x-ms-request-id": [ - "23fca2ea-0c1b-4897-939b-f458413268eb" + "919973d7-ab82-40ae-af7d-981133c6ef40" ], "x-ms-correlation-request-id": [ - "23fca2ea-0c1b-4897-939b-f458413268eb" + "919973d7-ab82-40ae-af7d-981133c6ef40" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225814Z:23fca2ea-0c1b-4897-939b-f458413268eb" + "CENTRALUS:20170327T181911Z:919973d7-ab82-40ae-af7d-981133c6ef40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5d64cc6-cfe2-4873-a82f-b753f3a2c3b3" + "f01b29f7-d52b-4bb2-b053-d6f4fbe5558c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:14 GMT" + "Mon, 27 Mar 2017 18:19:11 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-request-id": [ - "a0d33d1a-75c2-4fa3-baab-ee0b10d7e1c1" + "3b85a4bd-af29-4e06-8563-a1e18d706dcf" ], "x-ms-correlation-request-id": [ - "a0d33d1a-75c2-4fa3-baab-ee0b10d7e1c1" + "3b85a4bd-af29-4e06-8563-a1e18d706dcf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225814Z:a0d33d1a-75c2-4fa3-baab-ee0b10d7e1c1" + "CENTRALUS:20170327T181912Z:3b85a4bd-af29-4e06-8563-a1e18d706dcf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1932a372-e725-4c58-ac11-4f75118a2156" + "75baf1cc-c504-42aa-864f-97c7d216ba05" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:14 GMT" + "Mon, 27 Mar 2017 18:19:11 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14995" ], "x-ms-request-id": [ - "a0662733-2103-4fb4-b9f1-4d38f04cc579" + "c2535934-a2bd-496b-9776-4dd17ca3e66c" ], "x-ms-correlation-request-id": [ - "a0662733-2103-4fb4-b9f1-4d38f04cc579" + "c2535934-a2bd-496b-9776-4dd17ca3e66c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225815Z:a0662733-2103-4fb4-b9f1-4d38f04cc579" + "CENTRALUS:20170327T181912Z:c2535934-a2bd-496b-9776-4dd17ca3e66c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,26 +223,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13766?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzc2Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1534?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7878e249-f838-48f9-8060-410b6b7bb860" + "922c8353-33eb-4a75-9e88-123e80a8dc61" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13766' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1534' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:14 GMT" + "Mon, 27 Mar 2017 18:19:11 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14994" ], "x-ms-request-id": [ - "d1f1ed20-0e08-4a04-8620-9a1499a51989" + "70c2e9f1-3c09-4ae8-a15c-2ae45e8ac614" ], "x-ms-correlation-request-id": [ - "d1f1ed20-0e08-4a04-8620-9a1499a51989" + "70c2e9f1-3c09-4ae8-a15c-2ae45e8ac614" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225815Z:d1f1ed20-0e08-4a04-8620-9a1499a51989" + "CENTRALUS:20170327T181912Z:70c2e9f1-3c09-4ae8-a15c-2ae45e8ac614" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13766?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzc2Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1534?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77f85cfe-c0fe-45c1-9c4d-48c25468c9f8" + "50155ac0-fe98-4c11-bffe-0661ac196b96" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766\",\r\n \"name\": \"datalakerg13766\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534\",\r\n \"name\": \"datalakerg1534\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:15 GMT" + "Mon, 27 Mar 2017 18:19:13 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14993" ], "x-ms-request-id": [ - "0d8b4a24-cd27-4d8d-ab22-1c9f7ab30882" + "4b0f29b1-f47f-44da-9d0c-65136c28a1bd" ], "x-ms-correlation-request-id": [ - "0d8b4a24-cd27-4d8d-ab22-1c9f7ab30882" + "4b0f29b1-f47f-44da-9d0c-65136c28a1bd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225815Z:0d8b4a24-cd27-4d8d-ab22-1c9f7ab30882" + "CENTRALUS:20170327T181914Z:4b0f29b1-f47f-44da-9d0c-65136c28a1bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13766?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzc2Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1534?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,20 +346,19 @@ "31" ], "x-ms-client-request-id": [ - "38ce7e80-6e80-4b7b-8c0b-fab29593e75b" + "132691ad-9c6a-44aa-b4a3-60b2a922b29f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766\",\r\n \"name\": \"datalakerg13766\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534\",\r\n \"name\": \"datalakerg1534\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "184" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:15 GMT" + "Mon, 27 Mar 2017 18:19:13 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-request-id": [ - "f48b724f-67aa-4fb4-9b14-f23d83414fd3" + "bd9222d1-4595-47b3-8ff2-ac70c1fc0c0e" ], "x-ms-correlation-request-id": [ - "f48b724f-67aa-4fb4-9b14-f23d83414fd3" + "bd9222d1-4595-47b3-8ff2-ac70c1fc0c0e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225815Z:f48b724f-67aa-4fb4-9b14-f23d83414fd3" + "CENTRALUS:20170327T181914Z:bd9222d1-4595-47b3-8ff2-ac70c1fc0c0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTkzMjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTM5Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d48ba0ca-77e2-477e-b552-f9ceb10f76c4" + "294d1f3a-2c4b-4dd6-9a13-b2d06b7132e3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs19323' under resource group 'datalakerg13766' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15392' under resource group 'datalakerg1534' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:16 GMT" + "Mon, 27 Mar 2017 18:19:13 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "1d2467d2-e884-4bed-a50b-d1b022a99741" + "78c5e19b-7490-481f-bb35-bb5063c6b596" ], "x-ms-correlation-request-id": [ - "1d2467d2-e884-4bed-a50b-d1b022a99741" + "78c5e19b-7490-481f-bb35-bb5063c6b596" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225817Z:1d2467d2-e884-4bed-a50b-d1b022a99741" + "CENTRALUS:20170327T181913Z:78c5e19b-7490-481f-bb35-bb5063c6b596" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTkzMjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTM5Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19323.azuredatalakestore.net\",\r\n \"accountId\": \"4e966a83-598b-4f50-9fb8-6382d71b737a\",\r\n \"creationTime\": \"2016-11-10T22:58:22.9376247Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:58:22.9376247Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323\",\r\n \"name\": \"testadlfs19323\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15392.azuredatalakestore.net\",\r\n \"accountId\": \"5184c6a6-81e6-427c-852c-aa5866cc6f12\",\r\n \"creationTime\": \"2017-03-27T18:19:15.4392041Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:19:15.4392041Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392\",\r\n \"name\": \"testadlfs15392\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:48 GMT" + "Mon, 27 Mar 2017 18:19:46 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "18c9221a-1552-462c-a400-29998c3e68ea" + "8ee6a412-a49a-4cb4-9256-429d5cbc3769" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14999" ], "x-ms-correlation-request-id": [ - "04bc67db-cdd1-4dbf-aaaf-5974c69696ff" + "8ceeddc8-cc0e-4e95-af6f-e83aa49edc97" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225848Z:04bc67db-cdd1-4dbf-aaaf-5974c69696ff" + "CENTRALUS:20170327T181946Z:8ceeddc8-cc0e-4e95-af6f-e83aa49edc97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTkzMjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTM5Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4ee5eca-c5be-47bf-811d-3a451958ee0e" + "45133282-3363-46c7-b2cf-4e2ed2126049" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19323.azuredatalakestore.net\",\r\n \"accountId\": \"4e966a83-598b-4f50-9fb8-6382d71b737a\",\r\n \"creationTime\": \"2016-11-10T22:58:22.9376247Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:58:22.9376247Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323\",\r\n \"name\": \"testadlfs19323\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15392.azuredatalakestore.net\",\r\n \"accountId\": \"5184c6a6-81e6-427c-852c-aa5866cc6f12\",\r\n \"creationTime\": \"2017-03-27T18:19:15.4392041Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:19:15.4392041Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392\",\r\n \"name\": \"testadlfs15392\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:49 GMT" + "Mon, 27 Mar 2017 18:19:45 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3e771fd5-4dda-4261-aa60-e683f2b79b13" + "e8117938-2481-4a76-b470-6d3060a56ce1" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14993" ], "x-ms-correlation-request-id": [ - "d7b57ea9-0c70-44c1-97bf-f53dc400cfe8" + "6f65cabd-8614-4077-a958-c4e4f65e3ceb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225849Z:d7b57ea9-0c70-44c1-97bf-f53dc400cfe8" + "CENTRALUS:20170327T181946Z:6f65cabd-8614-4077-a958-c4e4f65e3ceb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzc2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTkzMjM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTM5Mj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "5dbb83b0-89c5-4f1f-b919-29503f93de10" + "22996e9e-a044-4425-99db-490bd015ba15" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4e966a83-598b-4f50-9fb8-6382d71b737a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323\",\r\n \"name\": \"testadlfs19323\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"5184c6a6-81e6-427c-852c-aa5866cc6f12\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392\",\r\n \"name\": \"testadlfs15392\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "419" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:17 GMT" + "Mon, 27 Mar 2017 18:19:14 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13766/providers/Microsoft.DataLakeStore/accounts/testadlfs19323/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1534/providers/Microsoft.DataLakeStore/accounts/testadlfs15392/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4e966a83-598b-4f50-9fb8-6382d71b737a0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5184c6a6-81e6-427c-852c-aa5866cc6f120?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "28e70a98-31d0-481e-ac50-07112a28f81c" + "b00f1e7d-a8ea-47ed-b643-8af5f8f81450" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "56ba9449-67a1-4eaa-915a-9fce989df437" + "79a83afa-e00d-4a1f-b0a3-1c34c750510a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225817Z:56ba9449-67a1-4eaa-915a-9fce989df437" + "CENTRALUS:20170327T181915Z:79a83afa-e00d-4a1f-b0a3-1c34c750510a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4e966a83-598b-4f50-9fb8-6382d71b737a0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRlOTY2YTgzLTU5OGItNGY1MC05ZmI4LTYzODJkNzFiNzM3YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5184c6a6-81e6-427c-852c-aa5866cc6f120?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzUxODRjNmE2LTgxZTYtNDI3Yy04NTJjLWFhNTg2NmNjNmYxMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:48 GMT" + "Mon, 27 Mar 2017 18:19:45 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "103b2b58-c695-4a48-a5de-ecfc8f4afaba" + "5d116183-fb4e-4900-8780-99748c1562d4" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14994" ], "x-ms-correlation-request-id": [ - "ff49687f-b588-4766-831b-f7d6a5d5ccb7" + "857896be-6fae-46c1-bfcb-e1c83278635a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225848Z:ff49687f-b588-4766-831b-f7d6a5d5ccb7" + "CENTRALUS:20170327T181946Z:857896be-6fae-46c1-bfcb-e1c83278635a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7854?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODU0P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5731?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NzMxP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "c5202a12-6921-4fe2-987b-620174fdb317" + "34c8673a-9ffa-416b-bb0b-e3da95c647ee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:50 GMT" + "Mon, 27 Mar 2017 18:19:47 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs19323.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7854?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs15392.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt5731?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "008c94fb-aa68-44d4-a879-25f87c0d7df5" + "e824dcea-86c5-4d3b-a220-ee276df9d520" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7854?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODU0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5731?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NzMxP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec547d0e-e733-4c96-9599-589b82ba2637" + "363f0644-afb5-4f9c-aa1c-88b3063a71d8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818730916,\r\n \"modificationTime\": 1478818731015,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638788016,\r\n \"modificationTime\": 1490638788059,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:50 GMT" + "Mon, 27 Mar 2017 18:19:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9c91c54e-a3a9-4314-b4d2-408bb3306328" + "016d8761-5be3-426b-8f16-dfb86e4dffa9" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,8 +844,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7854?offset=0&op=APPEND&append=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODU0P29mZnNldD0wJm9wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5731?offset=0&op=APPEND&append=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NzMxP29mZnNldD0wJm9wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "POST", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -864,20 +856,19 @@ "42" ], "x-ms-client-request-id": [ - "947f99df-e8b2-4e7b-83f9-955c9efe5fa8" + "04cb8f81-8447-4728-a975-7b506e1eda5a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"BadOffsetException\",\r\n \"message\": \"FsAppendStream failed with error 0x83090015 (Bad request. Invalid offset.). [4232124d-1de6-406e-9821-c97dd639b39c][2016-11-10T14:58:51.4216675-08:00]\",\r\n \"javaClassName\": \"org.apache.hadoop.fs.adl.BadOffsetException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"BadOffsetException\",\r\n \"message\": \"APPEND failed with error 0x83090015 (Bad request. Invalid offset.). [5fc3eb0f-e2e5-479f-af3d-f2f40f021627][2017-03-27T11:19:48.4743168-07:00]\",\r\n \"javaClassName\": \"org.apache.hadoop.fs.adl.BadOffsetException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "278" + "270" ], "Content-Type": [ "application/json; charset=utf-8" @@ -889,16 +880,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:50 GMT" + "Mon, 27 Mar 2017 18:19:48 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4232124d-1de6-406e-9821-c97dd639b39c" + "5fc3eb0f-e2e5-479f-af3d-f2f40f021627" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x83090015" @@ -915,12 +906,12 @@ ], "Names": { ".ctor": [ - "datalakerg13766", - "testdatalake19076", - "testadlfs19323" + "datalakerg1534", + "testdatalake1304", + "testadlfs15392" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt7854" + "SDKTestFolder01/SDKTestFile01.txt5731" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithOffset.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithOffset.json index 7f20b4a63ffe..0395e5c0d2ae 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithOffset.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemAppendToFileWithOffset.json @@ -7,21 +7,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10cafc4a-d4db-47f3-8efd-399701247409" + "70aa1e68-3504-4b11-a7f1-1110f9f8b5a7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -32,22 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:02 GMT" + "Mon, 27 Mar 2017 18:12:09 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "540555d5-48c2-4a0b-b872-ff8f37528f7d" + "9d111bcb-caa0-4421-8041-697adae1f8c6" ], "x-ms-correlation-request-id": [ - "540555d5-48c2-4a0b-b872-ff8f37528f7d" + "9d111bcb-caa0-4421-8041-697adae1f8c6" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224203Z:540555d5-48c2-4a0b-b872-ff8f37528f7d" + "WESTUS2:20170327T181210Z:9d111bcb-caa0-4421-8041-697adae1f8c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,21 +64,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea3184d8-053c-4eac-b1ed-76f8f22a7cc0" + "cca71a93-4a11-46c2-a71a-99cabd4a8651" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -87,22 +85,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:02 GMT" + "Mon, 27 Mar 2017 18:12:09 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14992" ], "x-ms-request-id": [ - "527a6daa-b9aa-428e-80f2-431e124a5261" + "adf9905a-900f-4b03-b950-92533226208c" ], "x-ms-correlation-request-id": [ - "527a6daa-b9aa-428e-80f2-431e124a5261" + "adf9905a-900f-4b03-b950-92533226208c" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224203Z:527a6daa-b9aa-428e-80f2-431e124a5261" + "WESTUS2:20170327T181210Z:adf9905a-900f-4b03-b950-92533226208c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,21 +118,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "385c49d7-3bed-45ad-a202-8c37e27e5e0d" + "d9124d91-298d-48d4-bd16-9ec7736d4b7e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -142,22 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:03 GMT" + "Mon, 27 Mar 2017 18:12:15 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "b5c3a23c-7647-4e22-b39a-7a9cd4ecbace" + "edce0958-7bb2-460e-b988-62c696876ab2" ], "x-ms-correlation-request-id": [ - "b5c3a23c-7647-4e22-b39a-7a9cd4ecbace" + "edce0958-7bb2-460e-b988-62c696876ab2" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224204Z:b5c3a23c-7647-4e22-b39a-7a9cd4ecbace" + "WESTUS2:20170327T181215Z:edce0958-7bb2-460e-b988-62c696876ab2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,21 +175,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ab8e4c7-71e3-4bed-b738-424859fa61c8" + "0ce00842-b886-46a3-bf54-2466bbbe6124" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -197,22 +196,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:04 GMT" + "Mon, 27 Mar 2017 18:12:15 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14991" ], "x-ms-request-id": [ - "090fff5b-66eb-420d-b970-2048e2ed519c" + "8be380a6-476f-4549-be48-f77d4a575060" ], "x-ms-correlation-request-id": [ - "090fff5b-66eb-420d-b970-2048e2ed519c" + "8be380a6-476f-4549-be48-f77d4a575060" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224204Z:090fff5b-66eb-420d-b970-2048e2ed519c" + "WESTUS2:20170327T181215Z:8be380a6-476f-4549-be48-f77d4a575060" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19080?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTA4MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19327?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTMyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c338959-f9a8-43c6-9ed8-35ca861f2b71" + "94e065f9-be57-4bff-a232-f07cef3eeeed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19080' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19327' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:04 GMT" + "Mon, 27 Mar 2017 18:12:15 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14990" ], "x-ms-request-id": [ - "f2e9985b-6c4c-4e06-9bb1-bbb501fa8621" + "42b9741c-25b4-4e92-ac39-2e695ebc8bed" ], "x-ms-correlation-request-id": [ - "f2e9985b-6c4c-4e06-9bb1-bbb501fa8621" + "42b9741c-25b4-4e92-ac39-2e695ebc8bed" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224204Z:f2e9985b-6c4c-4e06-9bb1-bbb501fa8621" + "WESTUS2:20170327T181215Z:42b9741c-25b4-4e92-ac39-2e695ebc8bed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,27 +280,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19080?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTA4MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19327?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTMyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed6e1641-fa68-4e2f-b668-c1f3f18e843c" + "6f85d6f3-b6ba-4df9-8658-ce1f6c432e4c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080\",\r\n \"name\": \"datalakerg19080\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327\",\r\n \"name\": \"datalakerg19327\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -310,22 +307,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:05 GMT" + "Mon, 27 Mar 2017 18:12:16 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14989" ], "x-ms-request-id": [ - "3946b5c4-a0ee-46f3-a8c5-48bed823662b" + "7fbc45a4-cd60-4220-91f9-b713362477cb" ], "x-ms-correlation-request-id": [ - "3946b5c4-a0ee-46f3-a8c5-48bed823662b" + "7fbc45a4-cd60-4220-91f9-b713362477cb" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224206Z:3946b5c4-a0ee-46f3-a8c5-48bed823662b" + "WESTUS2:20170327T181216Z:7fbc45a4-cd60-4220-91f9-b713362477cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19080?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTA4MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19327?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTMyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "2347026f-7009-47cc-93bb-8e5100ec03b7" + "99249f55-56f9-45ae-a35e-ec83cc68b22a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080\",\r\n \"name\": \"datalakerg19080\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327\",\r\n \"name\": \"datalakerg19327\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:05 GMT" + "Mon, 27 Mar 2017 18:12:16 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-request-id": [ - "868f36b0-3484-42b4-9a43-24b4a65a9574" + "6bb94ffc-f5a5-47a8-b382-0866349357d4" ], "x-ms-correlation-request-id": [ - "868f36b0-3484-42b4-9a43-24b4a65a9574" + "6bb94ffc-f5a5-47a8-b382-0866349357d4" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224206Z:868f36b0-3484-42b4-9a43-24b4a65a9574" + "WESTUS2:20170327T181216Z:6bb94ffc-f5a5-47a8-b382-0866349357d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTA4MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0NzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2541fd8-a844-43a2-acd2-3eef4f2620d5" + "c3f0ec86-0d51-45ab-a134-0fa1d0f20ace" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11471' under resource group 'datalakerg19080' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17946' under resource group 'datalakerg19327' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:06 GMT" + "Mon, 27 Mar 2017 18:12:16 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "66e3200d-6733-4693-8748-7745cd275bee" + "b2fcec46-4f6c-4228-9aeb-eac8886e676b" ], "x-ms-correlation-request-id": [ - "66e3200d-6733-4693-8748-7745cd275bee" + "b2fcec46-4f6c-4228-9aeb-eac8886e676b" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224206Z:66e3200d-6733-4693-8748-7745cd275bee" + "WESTUS2:20170327T181217Z:b2fcec46-4f6c-4228-9aeb-eac8886e676b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTA4MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0NzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11471.azuredatalakestore.net\",\r\n \"accountId\": \"846049ad-34ce-49aa-ae7f-b2a29e8e41d5\",\r\n \"creationTime\": \"2016-11-10T22:42:13.7166385Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:42:13.7166385Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471\",\r\n \"name\": \"testadlfs11471\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17946.azuredatalakestore.net\",\r\n \"accountId\": \"138a4ac9-99f4-4475-b5b8-8c36d1c273df\",\r\n \"creationTime\": \"2017-03-27T18:12:20.129333Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:12:20.129333Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946\",\r\n \"name\": \"testadlfs17946\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:42:39 GMT" + "Mon, 27 Mar 2017 18:12:49 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ae1b74b8-e76a-45da-aa65-f65c26040989" + "eef5ccfe-48ef-4b0e-9330-e891feb2bc2f" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "3f0e836c-56db-4110-8e1e-b39dfa394bb5" + "4388eb3a-68f4-4811-81a2-505756bdc29a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224239Z:3f0e836c-56db-4110-8e1e-b39dfa394bb5" + "WESTUS2:20170327T181250Z:4388eb3a-68f4-4811-81a2-505756bdc29a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTA4MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0NzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ad95058-30a0-49e2-ba40-f86cd920ff14" + "2048d8c4-6332-4f54-bea2-591c26ac6fad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11471.azuredatalakestore.net\",\r\n \"accountId\": \"846049ad-34ce-49aa-ae7f-b2a29e8e41d5\",\r\n \"creationTime\": \"2016-11-10T22:42:13.7166385Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:42:13.7166385Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471\",\r\n \"name\": \"testadlfs11471\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17946.azuredatalakestore.net\",\r\n \"accountId\": \"138a4ac9-99f4-4475-b5b8-8c36d1c273df\",\r\n \"creationTime\": \"2017-03-27T18:12:20.129333Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:12:20.129333Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946\",\r\n \"name\": \"testadlfs17946\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:42:40 GMT" + "Mon, 27 Mar 2017 18:12:50 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "da879ff3-6ab8-4dc4-b028-4dd7715138bc" + "5f1d4dca-e738-48b1-a5b8-ce3cc1c78c15" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14982" ], "x-ms-correlation-request-id": [ - "c6e1d7e7-d85c-4654-8e48-ebd49ddae779" + "4c0edc92-e69a-4fa1-ad46-07a99e146b3a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224240Z:c6e1d7e7-d85c-4654-8e48-ebd49ddae779" + "WESTUS2:20170327T181251Z:4c0edc92-e69a-4fa1-ad46-07a99e146b3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTA4MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0NzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTMyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc5NDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "35dcd840-099f-4c4c-a471-63656a3ca212" + "f1b2a73c-adac-4138-8003-80707c11662e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"846049ad-34ce-49aa-ae7f-b2a29e8e41d5\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471\",\r\n \"name\": \"testadlfs11471\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"138a4ac9-99f4-4475-b5b8-8c36d1c273df\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946\",\r\n \"name\": \"testadlfs17946\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:42:08 GMT" + "Mon, 27 Mar 2017 18:12:18 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19080/providers/Microsoft.DataLakeStore/accounts/testadlfs11471/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19327/providers/Microsoft.DataLakeStore/accounts/testadlfs17946/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/846049ad-34ce-49aa-ae7f-b2a29e8e41d50?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/138a4ac9-99f4-4475-b5b8-8c36d1c273df0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "63e6b5db-e7a3-45f4-a6da-fc3422675e1c" + "a42cd0d5-e140-4622-9b07-0c389df5a3a1" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "dc0ddc7b-7962-4670-9ab6-9ded4bcb051f" + "d1fbf7a8-026b-4aa1-89d3-99491349bc74" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224208Z:dc0ddc7b-7962-4670-9ab6-9ded4bcb051f" + "WESTUS2:20170327T181219Z:d1fbf7a8-026b-4aa1-89d3-99491349bc74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,21 +664,17 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/846049ad-34ce-49aa-ae7f-b2a29e8e41d50?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzg0NjA0OWFkLTM0Y2UtNDlhYS1hZTdmLWIyYTI5ZThlNDFkNTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/138a4ac9-99f4-4475-b5b8-8c36d1c273df0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzEzOGE0YWM5LTk5ZjQtNDQ3NS1iNWI4LThjMzZkMWMyNzNkZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "22" - ], "Content-Type": [ "application/json" ], @@ -697,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:42:38 GMT" + "Mon, 27 Mar 2017 18:12:49 GMT" ], "Pragma": [ "no-cache" @@ -705,8 +696,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "d9802b62-1547-4877-8bde-d45c6af315f5" + "81443d41-e770-47b3-9b2f-2ac792ea922b" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14997" ], "x-ms-correlation-request-id": [ - "a57d8de3-b4b6-438a-aa56-620621a519a8" + "d558b5c4-8ba6-4e1f-966f-748bed63f01b" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224239Z:a57d8de3-b4b6-438a-aa56-620621a519a8" + "WESTUS2:20170327T181250Z:d558b5c4-8ba6-4e1f-966f-748bed63f01b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2757?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNzU3P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8597?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4NTk3P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "adb896f0-44eb-4127-b480-8d3cb2c397db" + "4f26db5e-337d-4faf-b32b-fc6d1c038987" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:42:41 GMT" + "Mon, 27 Mar 2017 18:12:53 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11471.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2757?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17946.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt8597?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "a35f8624-9bb0-4fc7-b2a4-d7bd7cb03cb3" + "947f7021-0a27-491b-880c-40bff16b83f4" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2757?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNzU3P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8597?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4NTk3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a4b8c58-3f8e-4692-be1a-869a19537265" + "bf99e004-ffab-46e0-9d82-36e04b608cef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817762006,\r\n \"modificationTime\": 1478817762058,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638373113,\r\n \"modificationTime\": 1490638373157,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:42:41 GMT" + "Mon, 27 Mar 2017 18:12:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "702df1fe-056d-47b3-8ed2-babeff4cb360" + "8c532d2b-4729-4c85-8750-a4b4be86dce6" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,26 +844,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2757?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNzU3P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8597?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4NTk3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da04bfec-d8c9-4af0-8900-a0aa3c4bd41e" + "84af75fe-d7b6-4b16-bf91-2e3a99bea7ea" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817762006,\r\n \"modificationTime\": 1478817762589,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638373113,\r\n \"modificationTime\": 1490638374000,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:42:42 GMT" + "Mon, 27 Mar 2017 18:12:54 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3d89f8be-53cc-4d9c-bb45-aabbb42e5d3c" + "78d6c3ef-b2d4-47c7-9750-1d45e8e20613" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -907,8 +898,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2757?offset=42&op=APPEND&append=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNzU3P29mZnNldD00MiZvcD1BUFBFTkQmYXBwZW5kPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8597?offset=42&op=APPEND&append=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4NTk3P29mZnNldD00MiZvcD1BUFBFTkQmYXBwZW5kPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -919,14 +910,13 @@ "42" ], "x-ms-client-request-id": [ - "989eed97-6a1c-47d3-8fc0-8dfd3f5d991d" + "b0d6c7cc-902c-4058-b417-c07e81a736ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -941,16 +931,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:42:41 GMT" + "Mon, 27 Mar 2017 18:12:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7371c698-2560-43d6-a97c-80a4133d2b86" + "9eed5a5d-0dcd-4903-82f0-a5293c753691" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -967,12 +957,12 @@ ], "Names": { ".ctor": [ - "datalakerg19080", - "testdatalake14446", - "testadlfs11471" + "datalakerg19327", + "testdatalake19761", + "testadlfs17946" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt2757" + "SDKTestFolder01/SDKTestFile01.txt8597" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcatenateFiles.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcatenateFiles.json index 770a724459e9..decf6c179aff 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcatenateFiles.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcatenateFiles.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f93b90e-2165-49cd-bba3-9004b1f796ec" + "e0575692-876d-4a83-9d06-9da6d82c8585" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:51 GMT" + "Mon, 27 Mar 2017 18:16:36 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-request-id": [ - "e0308dbf-3880-4893-8add-a7289cf48b20" + "7b9acf91-1283-4c2a-b1d1-ed0eff2108dc" ], "x-ms-correlation-request-id": [ - "e0308dbf-3880-4893-8add-a7289cf48b20" + "7b9acf91-1283-4c2a-b1d1-ed0eff2108dc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224651Z:e0308dbf-3880-4893-8add-a7289cf48b20" + "WESTUS2:20170327T181636Z:7b9acf91-1283-4c2a-b1d1-ed0eff2108dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "210e3a56-3ff2-40b4-a874-f4753a58a003" + "365a6005-ed7d-43fd-b15a-625278577a64" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:51 GMT" + "Mon, 27 Mar 2017 18:16:36 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14986" ], "x-ms-request-id": [ - "6b3ea12e-19dd-4b44-ac7a-9919b0f2d2b0" + "2addbb68-ea62-47ff-aa53-90f000b07847" ], "x-ms-correlation-request-id": [ - "6b3ea12e-19dd-4b44-ac7a-9919b0f2d2b0" + "2addbb68-ea62-47ff-aa53-90f000b07847" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224651Z:6b3ea12e-19dd-4b44-ac7a-9919b0f2d2b0" + "WESTUS2:20170327T181636Z:2addbb68-ea62-47ff-aa53-90f000b07847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7700bec-30ac-4806-9ab6-bfa7f61ee3b9" + "e44a8117-c188-456a-a58e-69a085414997" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:52 GMT" + "Mon, 27 Mar 2017 18:16:37 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-request-id": [ - "d9df6f09-e144-47e3-a19a-e9fd081ca243" + "4ed16b6d-2838-4f49-a004-fc344e8daadb" ], "x-ms-correlation-request-id": [ - "d9df6f09-e144-47e3-a19a-e9fd081ca243" + "4ed16b6d-2838-4f49-a004-fc344e8daadb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224652Z:d9df6f09-e144-47e3-a19a-e9fd081ca243" + "WESTUS2:20170327T181637Z:4ed16b6d-2838-4f49-a004-fc344e8daadb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f71079e-c2fc-40af-b2df-d7bee56ff70c" + "bfeca382-a009-4d37-99c2-b76a1e626f74" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:52 GMT" + "Mon, 27 Mar 2017 18:16:37 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14985" ], "x-ms-request-id": [ - "d0b57072-ba7a-446f-8da7-a8670a99e2e7" + "a1160d86-b19e-4290-8f80-264920e7b4f0" ], "x-ms-correlation-request-id": [ - "d0b57072-ba7a-446f-8da7-a8670a99e2e7" + "a1160d86-b19e-4290-8f80-264920e7b4f0" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224652Z:d0b57072-ba7a-446f-8da7-a8670a99e2e7" + "WESTUS2:20170327T181637Z:a1160d86-b19e-4290-8f80-264920e7b4f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17600?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYwMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16750?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc1MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37d8fdf6-42f4-41de-845b-8c18becae08e" + "d63a9ea5-0435-4289-b7f2-5e57c24a227f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17600' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16750' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:52 GMT" + "Mon, 27 Mar 2017 18:16:37 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14984" ], "x-ms-request-id": [ - "683cee2e-8695-456c-b97a-54f06190326a" + "415703a2-cdf6-433d-b1f5-d07ebfdd671f" ], "x-ms-correlation-request-id": [ - "683cee2e-8695-456c-b97a-54f06190326a" + "415703a2-cdf6-433d-b1f5-d07ebfdd671f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224652Z:683cee2e-8695-456c-b97a-54f06190326a" + "WESTUS2:20170327T181637Z:415703a2-cdf6-433d-b1f5-d07ebfdd671f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17600?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYwMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16750?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc1MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7ccfa79-7769-4946-ad53-c7a563b3b9a1" + "482eaaba-ed3b-438d-8893-04544a7620b0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600\",\r\n \"name\": \"datalakerg17600\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750\",\r\n \"name\": \"datalakerg16750\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:53 GMT" + "Mon, 27 Mar 2017 18:16:38 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14983" ], "x-ms-request-id": [ - "8aea61d7-ec2a-4ac5-89d4-e7f2d5e16a5a" + "59325d55-8173-4bf7-9292-7c67360471be" ], "x-ms-correlation-request-id": [ - "8aea61d7-ec2a-4ac5-89d4-e7f2d5e16a5a" + "59325d55-8173-4bf7-9292-7c67360471be" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224653Z:8aea61d7-ec2a-4ac5-89d4-e7f2d5e16a5a" + "WESTUS2:20170327T181638Z:59325d55-8173-4bf7-9292-7c67360471be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17600?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzYwMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16750?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc1MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "894c1ee7-fbf4-4c18-b9c5-7889373fa3f4" + "3adaf20e-15ea-4b25-a1b8-0cf22b294ca9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600\",\r\n \"name\": \"datalakerg17600\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750\",\r\n \"name\": \"datalakerg16750\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:53 GMT" + "Mon, 27 Mar 2017 18:16:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1191" ], "x-ms-request-id": [ - "8af0d9ae-0586-4a03-acb8-792cab52911d" + "0a635e86-7697-453c-8e24-3232bff59f4e" ], "x-ms-correlation-request-id": [ - "8af0d9ae-0586-4a03-acb8-792cab52911d" + "0a635e86-7697-453c-8e24-3232bff59f4e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224653Z:8af0d9ae-0586-4a03-acb8-792cab52911d" + "WESTUS2:20170327T181638Z:0a635e86-7697-453c-8e24-3232bff59f4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7ea9c72-2395-4644-ad28-8d9043195d74" + "e7e2d558-b0c1-4e51-973c-a1b680a95a43" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17587' under resource group 'datalakerg17600' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs16984' under resource group 'datalakerg16750' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:46:53 GMT" + "Mon, 27 Mar 2017 18:16:38 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "76df0802-d2bd-41e4-8272-6b3ecdf64347" + "75977099-d576-4e44-a8e1-106351024a34" ], "x-ms-correlation-request-id": [ - "76df0802-d2bd-41e4-8272-6b3ecdf64347" + "75977099-d576-4e44-a8e1-106351024a34" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224653Z:76df0802-d2bd-41e4-8272-6b3ecdf64347" + "WESTUS2:20170327T181639Z:75977099-d576-4e44-a8e1-106351024a34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17587.azuredatalakestore.net\",\r\n \"accountId\": \"0f6e664d-8b57-4e85-b30f-1b05d004f30c\",\r\n \"creationTime\": \"2016-11-10T22:47:00.0039892Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:47:00.0039892Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587\",\r\n \"name\": \"testadlfs17587\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16984.azuredatalakestore.net\",\r\n \"accountId\": \"4c86c33e-77dd-4900-ac91-c9944059e2d1\",\r\n \"creationTime\": \"2017-03-27T18:16:40.8284786Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:16:40.8284786Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984\",\r\n \"name\": \"testadlfs16984\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:47:25 GMT" + "Mon, 27 Mar 2017 18:17:11 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e6ffe2e4-5fd5-4ea5-b03c-4462796b4e24" + "491de285-8b1b-4567-8550-02cb98bb2adf" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14985" ], "x-ms-correlation-request-id": [ - "74e76fe6-d196-406f-87e1-5d3f28cfe7eb" + "252e401e-933d-49fe-9196-442f0e77922f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224726Z:74e76fe6-d196-406f-87e1-5d3f28cfe7eb" + "WESTUS2:20170327T181711Z:252e401e-933d-49fe-9196-442f0e77922f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2cac29d-23c6-4ab7-8a35-98211823e587" + "e5e114cc-4172-4c37-a3b6-9b047b894581" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17587.azuredatalakestore.net\",\r\n \"accountId\": \"0f6e664d-8b57-4e85-b30f-1b05d004f30c\",\r\n \"creationTime\": \"2016-11-10T22:47:00.0039892Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:47:00.0039892Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587\",\r\n \"name\": \"testadlfs17587\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16984.azuredatalakestore.net\",\r\n \"accountId\": \"4c86c33e-77dd-4900-ac91-c9944059e2d1\",\r\n \"creationTime\": \"2017-03-27T18:16:40.8284786Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:16:40.8284786Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984\",\r\n \"name\": \"testadlfs16984\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:47:25 GMT" + "Mon, 27 Mar 2017 18:17:11 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4a873abd-a4e5-4778-89bc-0ad18ef9516a" + "03857a7a-380e-4097-8786-96e6660920b1" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14982" ], "x-ms-correlation-request-id": [ - "9c6fa652-403c-44dc-a329-7148b66b7fdc" + "d3a51e87-22fe-47c6-ac66-8f38e6419655" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224726Z:9c6fa652-403c-44dc-a329-7148b66b7fdc" + "WESTUS2:20170327T181712Z:d3a51e87-22fe-47c6-ac66-8f38e6419655" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc1MC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY5ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "c59a6b89-bc0a-46ed-8186-3081e77f41a1" + "4955b602-abec-4370-b4a0-4158f50bb0b4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"0f6e664d-8b57-4e85-b30f-1b05d004f30c\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587\",\r\n \"name\": \"testadlfs17587\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4c86c33e-77dd-4900-ac91-c9944059e2d1\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984\",\r\n \"name\": \"testadlfs16984\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:46:54 GMT" + "Mon, 27 Mar 2017 18:16:39 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17600/providers/Microsoft.DataLakeStore/accounts/testadlfs17587/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16750/providers/Microsoft.DataLakeStore/accounts/testadlfs16984/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0f6e664d-8b57-4e85-b30f-1b05d004f30c0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4c86c33e-77dd-4900-ac91-c9944059e2d10?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "4864e005-7f3a-4b29-af97-4d46741f6018" + "b86e8d1a-80f8-4ed8-8077-6d3b32eea914" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-correlation-request-id": [ - "93d71514-a7f7-4daf-8021-ea7a34a8ef25" + "22c9a962-5db8-4263-b846-603a0ac67bbb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224655Z:93d71514-a7f7-4daf-8021-ea7a34a8ef25" + "WESTUS2:20170327T181640Z:22c9a962-5db8-4263-b846-603a0ac67bbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0f6e664d-8b57-4e85-b30f-1b05d004f30c0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzBmNmU2NjRkLThiNTctNGU4NS1iMzBmLTFiMDVkMDA0ZjMwYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4c86c33e-77dd-4900-ac91-c9944059e2d10?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRjODZjMzNlLTc3ZGQtNDkwMC1hYzkxLWM5OTQ0MDU5ZTJkMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:47:25 GMT" + "Mon, 27 Mar 2017 18:17:10 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0692a7ca-e536-4d74-8c41-1717fb89d158" + "836978bd-a633-4ad3-9ccb-eb30a2fadb12" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14987" ], "x-ms-correlation-request-id": [ - "16e2ce8c-7d3b-45c2-9387-fd24e9165e97" + "fc41c6ba-589e-4c23-afb1-dad5cf0b0b46" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224725Z:16e2ce8c-7d3b-45c2-9387-fd24e9165e97" + "WESTUS2:20170327T181711Z:fc41c6ba-589e-4c23-afb1-dad5cf0b0b46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2111?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTExP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3408?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNDA4P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "d4bfb574-5d27-4258-aa66-dc031a7b717c" + "1c1fc33b-afc2-4496-b9f4-b32d19795611" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:29 GMT" + "Mon, 27 Mar 2017 18:17:17 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs17587.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2111?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs16984.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3408?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "a2e1c7b7-e889-4069-af1a-3d46fa6b7564" + "b62b1580-63d5-470d-b33e-51f969269bf6" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2111?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTExP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3408?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNDA4P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "208b4fcc-2d39-4213-8ab8-5c82dd5a2c6b" + "091fd084-4432-4778-b567-8dec5eb1cdc0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818049416,\r\n \"modificationTime\": 1478818049465,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638637420,\r\n \"modificationTime\": 1490638637474,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:29 GMT" + "Mon, 27 Mar 2017 18:17:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a6abf75f-f12b-4f57-8505-f578ffe12e0a" + "f5de3b90-da29-4b7b-9e6a-cdd5e7be7750" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,23 +844,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2111?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyMTExP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3408?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNDA4P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5f6df19-991a-42dc-a6ea-9b9e232de977" + "2ae0a418-51f0-493f-968a-072c4dbc95c6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt2111 [29c739c8-cfeb-44f9-afff-d43e69f72aca][2016-11-10T14:47:31.1341119-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt3408 [c11b0622-9103-4336-95bc-dff861fac219][2017-03-27T11:17:18.6811704-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:30 GMT" + "Mon, 27 Mar 2017 18:17:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "29c739c8-cfeb-44f9-afff-d43e69f72aca" + "c11b0622-9103-4336-95bc-dff861fac219" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -907,8 +898,8 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5803?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1ODAzP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6668?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjY4P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -919,14 +910,13 @@ "42" ], "x-ms-client-request-id": [ - "4387b936-4468-43fe-9d96-6cda0784efab" + "3ef5eb81-0b91-409a-854e-eccb510ab07a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -941,22 +931,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:30 GMT" + "Mon, 27 Mar 2017 18:17:17 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs17587.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt5803?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs16984.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt6668?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "c5ef1abf-6e64-478a-bba5-af8a13e03ae9" + "21e20506-3523-4048-93af-04e3e294335e" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -971,26 +961,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5803?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1ODAzP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6668?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjY4P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c32a7f9-cdef-415e-8349-8ae22ba907c3" + "c36d6513-2bb8-4a87-be64-d5aaec8fe77a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818049819,\r\n \"modificationTime\": 1478818049931,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638637780,\r\n \"modificationTime\": 1490638637843,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1002,16 +991,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:30 GMT" + "Mon, 27 Mar 2017 18:17:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "07862cc8-5f7d-47a0-b30a-3a05052fdd0f" + "082d2970-e70e-4f90-bb5e-f21fe164a9c0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1026,23 +1015,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5803?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1ODAzP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6668?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjY4P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7439f1aa-1105-40bc-bb66-cec9cb814d8c" + "f5755211-5eb3-49af-9ebe-356cc1aa2d9f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt5803 [115cb350-cb90-4271-8267-c8405ea588ce][2016-11-10T14:47:31.2591068-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt6668 [84507f38-b08e-40a6-b77c-f62694174565][2017-03-27T11:17:19.0405274-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -1057,16 +1045,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:30 GMT" + "Mon, 27 Mar 2017 18:17:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "115cb350-cb90-4271-8267-c8405ea588ce" + "84507f38-b08e-40a6-b77c-f62694174565" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1081,20 +1069,19 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01503?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAzP29wPU1LRElSUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder019364?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTM2ND9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77e5e1bb-af32-4245-8f6b-5af8305e0c30" + "a090af48-8e02-46e8-9030-c9ce3bd51c79" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -1112,16 +1099,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:30 GMT" + "Mon, 27 Mar 2017 18:17:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "de77eb19-21bd-425f-8c70-cb937c57a82f" + "eb515ede-6c63-425a-a68b-c64d13f580f0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1136,20 +1123,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01503%2FSDKTestConcatFile01.txt?sources=SDKTestFolder01%2FSDKTestFile01.txt2111%2CSDKTestFolder01%2FSDKTestFile01.txt5803&op=CONCAT&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAzJTJGU0RLVGVzdENvbmNhdEZpbGUwMS50eHQ/c291cmNlcz1TREtUZXN0Rm9sZGVyMDElMkZTREtUZXN0RmlsZTAxLnR4dDIxMTElMkNTREtUZXN0Rm9sZGVyMDElMkZTREtUZXN0RmlsZTAxLnR4dDU4MDMmb3A9Q09OQ0FUJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder019364%2FSDKTestConcatFile01.txt?sources=SDKTestFolder01%2FSDKTestFile01.txt3408%2CSDKTestFolder01%2FSDKTestFile01.txt6668&op=CONCAT&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTM2NCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P3NvdXJjZXM9U0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNDA4JTJDU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2NjY4Jm9wPUNPTkNBVCZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39a9c7a0-06df-4542-b1b9-af3737dd68f0" + "86ff465d-9d56-4c51-8653-9fd9777dae70" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1164,16 +1150,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:30 GMT" + "Mon, 27 Mar 2017 18:17:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f47c7bda-57bb-4848-8cc0-d34fceb21bc6" + "554ff7bb-3ee9-4e87-bd7d-91df80c547e3" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1188,26 +1174,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01503%2FSDKTestConcatFile01.txt?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAzJTJGU0RLVGVzdENvbmNhdEZpbGUwMS50eHQ/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder019364%2FSDKTestConcatFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTM2NCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae542c1e-e528-4cf7-b8d3-6a90729e3782" + "e31efa16-8a17-40f1-ab7d-4aa0006161b3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818050759,\r\n \"modificationTime\": 1478818050806,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638638260,\r\n \"modificationTime\": 1490638638291,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1219,16 +1204,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:47:30 GMT" + "Mon, 27 Mar 2017 18:17:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a891dbfb-3cb0-45b2-a00d-fca03bc44813" + "33495cb8-13ea-4445-8b61-affb9c0c1327" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1245,16 +1230,16 @@ ], "Names": { ".ctor": [ - "datalakerg17600", - "testdatalake16651", - "testadlfs17587" + "datalakerg16750", + "testdatalake11945", + "testadlfs16984" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt2111", - "SDKTestFolder01/SDKTestFile01.txt5803" + "SDKTestFolder01/SDKTestFile01.txt3408", + "SDKTestFolder01/SDKTestFile01.txt6668" ], "CreateFolder": [ - "SDKTestFolder01503" + "SDKTestFolder019364" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendCreateFile.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendCreateFile.json index a1c26f96766a..9ada5effbae0 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendCreateFile.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendCreateFile.json @@ -7,21 +7,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fafd701-249e-4f69-96b5-9b99b60fe6b0" + "f9e284be-6581-42c6-86db-f323a0565840" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -32,22 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:45 GMT" + "Mon, 27 Mar 2017 18:09:27 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-request-id": [ - "c0c6c552-ba33-48f6-ac9b-fff4bbddf0e3" + "4e4cbe26-fe26-425e-b1ef-4e27a3e41c68" ], "x-ms-correlation-request-id": [ - "c0c6c552-ba33-48f6-ac9b-fff4bbddf0e3" + "4e4cbe26-fe26-425e-b1ef-4e27a3e41c68" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223946Z:c0c6c552-ba33-48f6-ac9b-fff4bbddf0e3" + "WESTUS2:20170327T180928Z:4e4cbe26-fe26-425e-b1ef-4e27a3e41c68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,21 +64,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d713408-d99c-4c09-9e91-c08d2c202aca" + "94236c1c-7661-46d5-8ab3-c992fdac0181" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -87,22 +85,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:45 GMT" + "Mon, 27 Mar 2017 18:09:27 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14987" ], "x-ms-request-id": [ - "08912669-54df-4cb1-a852-08abd7a4ae00" + "8bc53be6-e910-4a78-9bdd-35849209bda2" ], "x-ms-correlation-request-id": [ - "08912669-54df-4cb1-a852-08abd7a4ae00" + "8bc53be6-e910-4a78-9bdd-35849209bda2" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223946Z:08912669-54df-4cb1-a852-08abd7a4ae00" + "WESTUS2:20170327T180928Z:8bc53be6-e910-4a78-9bdd-35849209bda2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,21 +118,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b515a6d-ae3a-4320-9ebd-2bb2caf47a56" + "d0ccb26f-9617-4bcf-afde-52653de50d4e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -142,22 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:46 GMT" + "Mon, 27 Mar 2017 18:09:28 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-request-id": [ - "ef9f8ba6-9c72-4a6f-9aac-70e938354c15" + "dcc5ea00-feeb-4115-82b4-7646a2fb4d0c" ], "x-ms-correlation-request-id": [ - "ef9f8ba6-9c72-4a6f-9aac-70e938354c15" + "dcc5ea00-feeb-4115-82b4-7646a2fb4d0c" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223947Z:ef9f8ba6-9c72-4a6f-9aac-70e938354c15" + "WESTUS2:20170327T180929Z:dcc5ea00-feeb-4115-82b4-7646a2fb4d0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,21 +175,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9516e050-882b-4e5d-8d18-cd8c4b1a84db" + "98a6269c-0799-4a8b-832e-816df878fb1c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -197,22 +196,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:46 GMT" + "Mon, 27 Mar 2017 18:09:28 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14986" ], "x-ms-request-id": [ - "23b071e4-d49f-4c19-837c-240015859d5c" + "44d0e06e-0454-4488-8688-5087dfb6b3ca" ], "x-ms-correlation-request-id": [ - "23b071e4-d49f-4c19-837c-240015859d5c" + "44d0e06e-0454-4488-8688-5087dfb6b3ca" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223947Z:23b071e4-d49f-4c19-837c-240015859d5c" + "WESTUS2:20170327T180929Z:44d0e06e-0454-4488-8688-5087dfb6b3ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12153?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjE1Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16772?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc3Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c94593ff-213d-4d66-9598-5ba187f3668f" + "a3086aab-b42e-4dd7-8493-76a68fdf4045" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg12153' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16772' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:47 GMT" + "Mon, 27 Mar 2017 18:09:28 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14985" ], "x-ms-request-id": [ - "6e1b257d-3166-470c-8974-091ba7e8b8a4" + "8f86d7b2-b2ca-4cd3-84f6-c71b81a740fe" ], "x-ms-correlation-request-id": [ - "6e1b257d-3166-470c-8974-091ba7e8b8a4" + "8f86d7b2-b2ca-4cd3-84f6-c71b81a740fe" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223947Z:6e1b257d-3166-470c-8974-091ba7e8b8a4" + "WESTUS2:20170327T180929Z:8f86d7b2-b2ca-4cd3-84f6-c71b81a740fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,27 +280,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12153?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjE1Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16772?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc3Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1b835b0-9085-460c-aa35-f28a69b2a7ed" + "55b64f61-6e7f-43a9-a364-2fcdb266cf70" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153\",\r\n \"name\": \"datalakerg12153\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772\",\r\n \"name\": \"datalakerg16772\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -310,22 +307,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:48 GMT" + "Mon, 27 Mar 2017 18:09:29 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14984" ], "x-ms-request-id": [ - "68d2a6c4-bb70-46c8-b8ff-0cc2eac4e4a3" + "ff664557-12cd-4070-9af7-f28d6f15eb31" ], "x-ms-correlation-request-id": [ - "68d2a6c4-bb70-46c8-b8ff-0cc2eac4e4a3" + "ff664557-12cd-4070-9af7-f28d6f15eb31" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223948Z:68d2a6c4-bb70-46c8-b8ff-0cc2eac4e4a3" + "WESTUS2:20170327T180930Z:ff664557-12cd-4070-9af7-f28d6f15eb31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12153?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjE1Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16772?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjc3Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "5f4b5897-03fb-4d7f-9b77-777c0055280d" + "91c02089-ab24-444c-bb58-ca6358c421a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153\",\r\n \"name\": \"datalakerg12153\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772\",\r\n \"name\": \"datalakerg16772\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:48 GMT" + "Mon, 27 Mar 2017 18:09:29 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1191" ], "x-ms-request-id": [ - "25d2272f-edc8-4c70-b094-fdbc5f808f77" + "1ade7e2a-92ff-4a44-b39e-6f8d4bc365f9" ], "x-ms-correlation-request-id": [ - "25d2272f-edc8-4c70-b094-fdbc5f808f77" + "1ade7e2a-92ff-4a44-b39e-6f8d4bc365f9" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223948Z:25d2272f-edc8-4c70-b094-fdbc5f808f77" + "WESTUS2:20170327T180930Z:1ade7e2a-92ff-4a44-b39e-6f8d4bc365f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyMzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fac3cca-76d7-438e-a19b-b7fcecdf64b3" + "7ae7380b-8c43-4c79-80d6-84c4198f2616" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11498' under resource group 'datalakerg12153' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18233' under resource group 'datalakerg16772' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:48 GMT" + "Mon, 27 Mar 2017 18:09:29 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "c95388fc-7a30-4477-b5c6-437d8bbfa1e4" + "835473b1-8b4d-44ab-b226-deacfe81c55b" ], "x-ms-correlation-request-id": [ - "c95388fc-7a30-4477-b5c6-437d8bbfa1e4" + "835473b1-8b4d-44ab-b226-deacfe81c55b" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223949Z:c95388fc-7a30-4477-b5c6-437d8bbfa1e4" + "WESTUS2:20170327T180930Z:835473b1-8b4d-44ab-b226-deacfe81c55b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,21 +448,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyMzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11498.azuredatalakestore.net\",\r\n \"accountId\": \"49723422-a0ce-4661-89d9-4adb63e9440e\",\r\n \"creationTime\": \"2016-11-10T22:39:54.8922418Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:39:54.8922418Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498\",\r\n \"name\": \"testadlfs11498\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18233.azuredatalakestore.net\",\r\n \"accountId\": \"72a82ef7-2ef6-402f-be0a-439dc63d8065\",\r\n \"creationTime\": \"2017-03-27T18:09:32.7886005Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:09:32.7886005Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233\",\r\n \"name\": \"testadlfs18233\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "691" - ], "Content-Type": [ "application/json" ], @@ -478,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:40:20 GMT" + "Mon, 27 Mar 2017 18:10:33 GMT" ], "Pragma": [ "no-cache" @@ -486,8 +480,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "839e59c9-f580-4221-ba7f-cec6e2c06488" + "80fb73e4-c8e0-40d5-a5ad-3420e1e7d796" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14987" ], "x-ms-correlation-request-id": [ - "4f175d0b-082a-4eb3-b571-5c24e19f72cb" + "81e0ab3c-6c79-4bbf-95b0-00e7f7a12c49" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224021Z:4f175d0b-082a-4eb3-b571-5c24e19f72cb" + "WESTUS2:20170327T181033Z:81e0ab3c-6c79-4bbf-95b0-00e7f7a12c49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyMzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b18b8de0-e91a-4d07-a5c2-8e76cd598958" + "006cd93c-66e8-4fc9-9e9f-7d03611a3e9a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11498.azuredatalakestore.net\",\r\n \"accountId\": \"49723422-a0ce-4661-89d9-4adb63e9440e\",\r\n \"creationTime\": \"2016-11-10T22:39:54.8922418Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:39:54.8922418Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498\",\r\n \"name\": \"testadlfs11498\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18233.azuredatalakestore.net\",\r\n \"accountId\": \"72a82ef7-2ef6-402f-be0a-439dc63d8065\",\r\n \"creationTime\": \"2017-03-27T18:09:32.7886005Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:09:32.7886005Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233\",\r\n \"name\": \"testadlfs18233\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:40:23 GMT" + "Mon, 27 Mar 2017 18:10:33 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9c96015c-56b2-420a-b186-1bb3e04740ab" + "e1665423-f314-4627-94fb-c71545f10827" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14992" ], "x-ms-correlation-request-id": [ - "36493efb-ced4-4dc0-bec5-9f3602ada32b" + "150139d6-3810-4f43-a307-7bee26b75863" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224024Z:36493efb-ced4-4dc0-bec5-9f3602ada32b" + "WESTUS2:20170327T181034Z:150139d6-3810-4f43-a307-7bee26b75863" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjE1My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjc3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyMzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "5110cfab-c3af-41b2-bdea-e0a10fd3e234" + "d44c33f6-2a16-4f48-bbd7-dbfba7fe6bf3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"49723422-a0ce-4661-89d9-4adb63e9440e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498\",\r\n \"name\": \"testadlfs11498\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"72a82ef7-2ef6-402f-be0a-439dc63d8065\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233\",\r\n \"name\": \"testadlfs18233\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:39:49 GMT" + "Mon, 27 Mar 2017 18:09:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12153/providers/Microsoft.DataLakeStore/accounts/testadlfs11498/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16772/providers/Microsoft.DataLakeStore/accounts/testadlfs18233/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/49723422-a0ce-4661-89d9-4adb63e9440e0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/72a82ef7-2ef6-402f-be0a-439dc63d80650?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "65f79bfb-6605-4a2c-ad77-d9b173bd3bac" + "66e3ac20-a07b-4ba9-8dcc-17380602c923" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-correlation-request-id": [ - "1c68aead-9571-41be-864f-129f3ebdb15f" + "73332519-5fef-405d-870e-c6e12fd51ab7" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T223950Z:1c68aead-9571-41be-864f-129f3ebdb15f" + "WESTUS2:20170327T180932Z:73332519-5fef-405d-870e-c6e12fd51ab7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,21 +664,17 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/49723422-a0ce-4661-89d9-4adb63e9440e0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQ5NzIzNDIyLWEwY2UtNDY2MS04OWQ5LTRhZGI2M2U5NDQwZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/72a82ef7-2ef6-402f-be0a-439dc63d80650?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzcyYTgyZWY3LTJlZjYtNDAyZi1iZTBhLTQzOWRjNjNkODA2NTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "22" - ], "Content-Type": [ "application/json" ], @@ -697,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:40:19 GMT" + "Mon, 27 Mar 2017 18:10:02 GMT" ], "Pragma": [ "no-cache" @@ -705,8 +696,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "ffc78a30-a86a-4900-b48d-bb7dad0fc016" + "bfeccbbd-4602-4565-963d-7e8214667ff2" ], "X-Content-Type-Options": [ "nosniff" @@ -721,10 +715,73 @@ "14994" ], "x-ms-correlation-request-id": [ - "92affc18-028e-4587-a47a-2fc4be3a6997" + "915312f0-5a5b-4f8c-81e3-c63ec63a9a7c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170327T181002Z:915312f0-5a5b-4f8c-81e3-c63ec63a9a7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/72a82ef7-2ef6-402f-be0a-439dc63d80650?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzcyYTgyZWY3LTJlZjYtNDAyZi1iZTBhLTQzOWRjNjNkODA2NTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 18:10:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "22ca7368-c518-460f-a5e5-8a208658dde1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "5473382c-2bcd-4501-9c54-cfbaa40ec57d" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224020Z:92affc18-028e-4587-a47a-2fc4be3a6997" + "WESTUS2:20170327T181033Z:5473382c-2bcd-4501-9c54-cfbaa40ec57d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +790,8 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7044?appendMode=autocreate&op=CONCURRENTAPPEND&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MDQ0P2FwcGVuZE1vZGU9YXV0b2NyZWF0ZSZvcD1DT05DVVJSRU5UQVBQRU5EJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt282?appendMode=autocreate&op=CONCURRENTAPPEND&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyODI/YXBwZW5kTW9kZT1hdXRvY3JlYXRlJm9wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -742,7 +799,7 @@ "application/octet-stream" ], "x-ms-client-request-id": [ - "bbca049b-cada-4489-b703-da285bcf472e" + "d93dbcec-5e00-481c-a952-77693d70ab7a" ], "Transfer-Encoding": [ "chunked" @@ -751,14 +808,13 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "\"Appending succeeds.\"", + "ResponseBody": "\"Operation succeeded.\"", "ResponseHeaders": { "Content-Length": [ - "21" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -770,13 +826,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:40:26 GMT" + "Mon, 27 Mar 2017 18:10:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a32643c0-d1cd-42a4-adfa-48b61fbf3ec4" + "73ebdaa9-1865-4ef9-9a83-e3b87fdaee7e" ], "X-Content-Type-Options": [ "nosniff" @@ -788,20 +844,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7044?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MDQ0P29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt282?op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyODI/b3A9T1BFTiZyZWFkPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "870ddb69-91e9-4ea8-8f62-e5218a4553f6" + "a53bae95-1a05-43b1-b482-814536f3a663" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "More test contents, that were appended!", @@ -816,7 +871,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:40:26 GMT" + "Mon, 27 Mar 2017 18:10:35 GMT" ], "Pragma": [ "no-cache" @@ -825,10 +880,10 @@ "chunked" ], "x-ms-request-id": [ - "568920af-50d9-4614-8025-3d2963046e75" + "1129fc19-1005-42be-8163-62b49797a0d6" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -843,26 +898,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7044?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MDQ0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt282?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyODI/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "304480dc-78a4-4890-b953-ceba7ee59e8b" + "38ffb657-629b-4484-93bc-f5cb117329b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817626326,\r\n \"modificationTime\": 1478817626420,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638235492,\r\n \"modificationTime\": 1490638235539,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -874,16 +928,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:40:26 GMT" + "Mon, 27 Mar 2017 18:10:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "72d9c6e5-bfb3-4631-b14a-670c6820d970" + "34be682a-f2b6-46a9-8b59-a1e0e4a662d2" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -900,12 +954,12 @@ ], "Names": { ".ctor": [ - "datalakerg12153", - "testdatalake19057", - "testadlfs11498" + "datalakerg16772", + "testdatalake12391", + "testadlfs18233" ], "DataLakeStoreFileSystemConcurrentAppendCreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt7044" + "SDKTestFolder01/SDKTestFile01.txt282" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendToFile.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendToFile.json index c180cc83032e..e8f49bce154b 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendToFile.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemConcurrentAppendToFile.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9dfec45c-2016-4b00-b6ed-92a182bc894f" + "a65cbef3-6688-458f-a2af-8c7478ffe5f7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:52 GMT" + "Mon, 27 Mar 2017 18:04:36 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-request-id": [ - "2cfd00bb-00b6-4221-9e7c-81f65af49a2a" + "1c1ee1e0-e10a-4f46-9b33-1ebcf33b3017" ], "x-ms-correlation-request-id": [ - "2cfd00bb-00b6-4221-9e7c-81f65af49a2a" + "1c1ee1e0-e10a-4f46-9b33-1ebcf33b3017" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225652Z:2cfd00bb-00b6-4221-9e7c-81f65af49a2a" + "CENTRALUS:20170327T180436Z:1c1ee1e0-e10a-4f46-9b33-1ebcf33b3017" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e605217-efca-4734-96b8-274fee801bee" + "add16008-abfd-4a7d-a3c9-02c3b783d29a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:52 GMT" + "Mon, 27 Mar 2017 18:04:36 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14999" ], "x-ms-request-id": [ - "f4ba8203-637a-4f47-a70d-bfa08f945efe" + "f791a087-3a16-40fc-91ae-628d1de3db75" ], "x-ms-correlation-request-id": [ - "f4ba8203-637a-4f47-a70d-bfa08f945efe" + "f791a087-3a16-40fc-91ae-628d1de3db75" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225653Z:f4ba8203-637a-4f47-a70d-bfa08f945efe" + "CENTRALUS:20170327T180436Z:f791a087-3a16-40fc-91ae-628d1de3db75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0bed3e68-b356-4e8e-8641-032a34e87001" + "26901827-6753-4d7a-95fe-8dce60cd142e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:53 GMT" + "Mon, 27 Mar 2017 18:04:36 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-request-id": [ - "4f038b56-248c-4e53-bbfb-45919ae6824a" + "acc56a40-77f5-48e8-895e-91c345a02c33" ], "x-ms-correlation-request-id": [ - "4f038b56-248c-4e53-bbfb-45919ae6824a" + "acc56a40-77f5-48e8-895e-91c345a02c33" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225653Z:4f038b56-248c-4e53-bbfb-45919ae6824a" + "CENTRALUS:20170327T180437Z:acc56a40-77f5-48e8-895e-91c345a02c33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7326f132-2418-489b-b176-2b81679a034e" + "9e936890-c022-406e-b368-a1b622d497be" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:53 GMT" + "Mon, 27 Mar 2017 18:04:36 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14998" ], "x-ms-request-id": [ - "0506abe7-beaf-4620-b866-c1db3bd2f8a3" + "60aae6af-069d-42cc-9fa9-ac4358496785" ], "x-ms-correlation-request-id": [ - "0506abe7-beaf-4620-b866-c1db3bd2f8a3" + "60aae6af-069d-42cc-9fa9-ac4358496785" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225653Z:0506abe7-beaf-4620-b866-c1db3bd2f8a3" + "CENTRALUS:20170327T180437Z:60aae6af-069d-42cc-9fa9-ac4358496785" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15696?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTY5Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17573?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU3Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "978467d4-3795-48c7-80a8-0a80001fa138" + "964e240c-7f0b-4836-a956-268652945351" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg15696' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17573' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:53 GMT" + "Mon, 27 Mar 2017 18:04:37 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14997" ], "x-ms-request-id": [ - "51aca814-28bd-487f-8c35-a6d13b221b58" + "e5464ae9-f7da-40c1-83e6-cc52a9411efb" ], "x-ms-correlation-request-id": [ - "51aca814-28bd-487f-8c35-a6d13b221b58" + "e5464ae9-f7da-40c1-83e6-cc52a9411efb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225653Z:51aca814-28bd-487f-8c35-a6d13b221b58" + "CENTRALUS:20170327T180437Z:e5464ae9-f7da-40c1-83e6-cc52a9411efb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15696?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTY5Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17573?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU3Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d41aec15-2c06-400e-b3dc-bb512bcd788a" + "c0f22498-ecae-4e27-b940-42f3d504f79a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696\",\r\n \"name\": \"datalakerg15696\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573\",\r\n \"name\": \"datalakerg17573\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:54 GMT" + "Mon, 27 Mar 2017 18:04:37 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14996" ], "x-ms-request-id": [ - "e4f2bb04-9e86-4ce5-b9a7-2f7792f3399c" + "7f397681-4ea5-489f-8600-d7419ed39a3d" ], "x-ms-correlation-request-id": [ - "e4f2bb04-9e86-4ce5-b9a7-2f7792f3399c" + "7f397681-4ea5-489f-8600-d7419ed39a3d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225654Z:e4f2bb04-9e86-4ce5-b9a7-2f7792f3399c" + "CENTRALUS:20170327T180438Z:7f397681-4ea5-489f-8600-d7419ed39a3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15696?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTY5Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17573?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzU3Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "8158e3d5-d4d5-4a14-823f-93a544b8fb0f" + "5c4fef0a-d705-4b30-835b-b7cb10c5afaa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696\",\r\n \"name\": \"datalakerg15696\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573\",\r\n \"name\": \"datalakerg17573\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:53 GMT" + "Mon, 27 Mar 2017 18:04:37 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-request-id": [ - "690b7dad-85f6-4965-8963-70d42432f10b" + "5d1ce17a-c2fc-41db-9ceb-cb3c471e210a" ], "x-ms-correlation-request-id": [ - "690b7dad-85f6-4965-8963-70d42432f10b" + "5d1ce17a-c2fc-41db-9ceb-cb3c471e210a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225654Z:690b7dad-85f6-4965-8963-70d42432f10b" + "CENTRALUS:20170327T180438Z:5d1ce17a-c2fc-41db-9ceb-cb3c471e210a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTY5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxNjE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU3My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a96c0d5c-2a15-4b95-80fe-b7d888137db6" + "0e2453d2-4820-41dc-b651-2f3c0c98c7d2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13161' under resource group 'datalakerg15696' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17707' under resource group 'datalakerg17573' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:54 GMT" + "Mon, 27 Mar 2017 18:04:37 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "242db19d-f46d-458a-a23b-224b039aaa5e" + "359dc8d2-4d8d-46b3-be34-c0b08bdaaacd" ], "x-ms-correlation-request-id": [ - "242db19d-f46d-458a-a23b-224b039aaa5e" + "359dc8d2-4d8d-46b3-be34-c0b08bdaaacd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225655Z:242db19d-f46d-458a-a23b-224b039aaa5e" + "CENTRALUS:20170327T180438Z:359dc8d2-4d8d-46b3-be34-c0b08bdaaacd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTY5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxNjE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU3My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13161.azuredatalakestore.net\",\r\n \"accountId\": \"134506c4-d3dd-483a-9c26-4beadbb6a4dc\",\r\n \"creationTime\": \"2016-11-10T22:56:59.7562987Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:56:59.7562987Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161\",\r\n \"name\": \"testadlfs13161\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17707.azuredatalakestore.net\",\r\n \"accountId\": \"6ea2ea8d-3960-465f-b359-b4eb37e9fd30\",\r\n \"creationTime\": \"2017-03-27T18:04:40.0552483Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:04:40.0552483Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707\",\r\n \"name\": \"testadlfs17707\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:57:26 GMT" + "Mon, 27 Mar 2017 18:05:41 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8df2d1ae-b386-4490-8b3a-a2d9a6d4f20d" + "76eb1877-c2e7-4b8c-82b7-e29110eb191a" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "965d42b5-09e0-480f-bf1f-358e58ff73a7" + "e68154e3-94f4-40a4-8027-a9317e81dc18" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225726Z:965d42b5-09e0-480f-bf1f-358e58ff73a7" + "CENTRALUS:20170327T180542Z:e68154e3-94f4-40a4-8027-a9317e81dc18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTY5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxNjE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU3My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a72bcdce-83f9-42cf-9d81-eaf45874c24c" + "145f181f-14a4-49f9-a63a-5373dd43e582" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13161.azuredatalakestore.net\",\r\n \"accountId\": \"134506c4-d3dd-483a-9c26-4beadbb6a4dc\",\r\n \"creationTime\": \"2016-11-10T22:56:59.7562987Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:56:59.7562987Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161\",\r\n \"name\": \"testadlfs13161\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17707.azuredatalakestore.net\",\r\n \"accountId\": \"6ea2ea8d-3960-465f-b359-b4eb37e9fd30\",\r\n \"creationTime\": \"2017-03-27T18:04:40.0552483Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:04:40.0552483Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707\",\r\n \"name\": \"testadlfs17707\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:57:26 GMT" + "Mon, 27 Mar 2017 18:05:41 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bc2a433e-9ade-436c-8895-fccd5c5db55c" + "aa43fbe7-b857-4ffb-85ea-bf50ea05aa48" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14995" ], "x-ms-correlation-request-id": [ - "f3d487c7-2e44-4845-8172-4cbc40db71e7" + "72166533-593f-4619-b2f4-a9a73a282ca1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225727Z:f3d487c7-2e44-4845-8172-4cbc40db71e7" + "CENTRALUS:20170327T180542Z:72166533-593f-4619-b2f4-a9a73a282ca1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTY5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxNjE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzU3My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3MDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "b3b8d641-5b56-4a41-b56d-187ff5b7a261" + "a18ff6bd-76db-4f34-b371-a640b987b763" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"134506c4-d3dd-483a-9c26-4beadbb6a4dc\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161\",\r\n \"name\": \"testadlfs13161\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"6ea2ea8d-3960-465f-b359-b4eb37e9fd30\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707\",\r\n \"name\": \"testadlfs17707\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:56:54 GMT" + "Mon, 27 Mar 2017 18:04:39 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15696/providers/Microsoft.DataLakeStore/accounts/testadlfs13161/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17573/providers/Microsoft.DataLakeStore/accounts/testadlfs17707/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/134506c4-d3dd-483a-9c26-4beadbb6a4dc0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6ea2ea8d-3960-465f-b359-b4eb37e9fd300?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "86a05094-b18b-46d1-8171-1ce51a920f66" + "84ad99af-5ef7-4ef2-aa79-0ad4cb1c9991" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "f72901e0-07b4-4664-8468-b1be2798a96c" + "8f2ee946-8181-4d0f-b1d7-e3ab6c23e13f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225655Z:f72901e0-07b4-4664-8468-b1be2798a96c" + "CENTRALUS:20170327T180440Z:8f2ee946-8181-4d0f-b1d7-e3ab6c23e13f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,76 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/134506c4-d3dd-483a-9c26-4beadbb6a4dc0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzEzNDUwNmM0LWQzZGQtNDgzYS05YzI2LTRiZWFkYmI2YTRkYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6ea2ea8d-3960-465f-b359-b4eb37e9fd300?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzZlYTJlYThkLTM5NjAtNDY1Zi1iMzU5LWI0ZWIzN2U5ZmQzMDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Connection": [ + "close" + ], + "Date": [ + "Mon, 27 Mar 2017 18:05:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "d95f4d0f-2ab5-4329-9cab-f84cc90d7b47" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "f4f808e7-4043-4583-af02-402215667a0d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170327T180510Z:f4f808e7-4043-4583-af02-402215667a0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/6ea2ea8d-3960-465f-b359-b4eb37e9fd300?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzZlYTJlYThkLTM5NjAtNDY1Zi1iMzU5LWI0ZWIzN2U5ZmQzMDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +751,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:57:26 GMT" + "Mon, 27 Mar 2017 18:05:40 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +763,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8ec750bf-d9cf-442b-bd02-0c3635d22886" + "4f82b938-5255-4886-a837-e0e36c29dd5d" ], "X-Content-Type-Options": [ "nosniff" @@ -721,10 +778,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "3ac5d7e0-ab22-4725-b12d-4d673e151cdc" + "a17cd4a2-1b9b-4493-9e98-1e33d23ed232" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225726Z:3ac5d7e0-ab22-4725-b12d-4d673e151cdc" + "CENTRALUS:20170327T180541Z:a17cd4a2-1b9b-4493-9e98-1e33d23ed232" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +790,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1909?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxOTA5P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4282?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -745,14 +802,13 @@ "0" ], "x-ms-client-request-id": [ - "210d4043-fa98-4481-b282-3cf58c35715d" + "f07fc03e-4633-4e76-85ac-f7eb63fbc1b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +823,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:57:29 GMT" + "Mon, 27 Mar 2017 18:05:44 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs13161.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt1909?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17707.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt4282?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "175a5938-f9b8-4386-8dfa-ba1c860ea99f" + "8c6eb0cb-5a68-4649-921e-b76957f93467" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +853,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1909?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxOTA5P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4282?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c425be72-6ec2-4621-a6df-5585d30ddbdf" + "1ce252ad-36f6-4d5d-b844-63f18ced95ba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818650308,\r\n \"modificationTime\": 1478818650308,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490637944774,\r\n \"modificationTime\": 1490637944774,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +883,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:57:29 GMT" + "Mon, 27 Mar 2017 18:05:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ba68aac0-d64e-49ac-b48f-64fe602e011e" + "49ce7ef9-21b9-41ff-b330-a3d4715bf5c7" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,26 +907,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1909?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxOTA5P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4282?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0853e7b8-a16b-42a0-8b4e-23f3d64249c7" + "f1942190-6484-4703-ad71-8e9637d770a0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818650308,\r\n \"modificationTime\": 1478818650605,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 39,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490637944774,\r\n \"modificationTime\": 1490637945274,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,16 +937,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:57:30 GMT" + "Mon, 27 Mar 2017 18:05:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2331cbf7-e6e1-4e1d-87f0-4a2a533af8a7" + "f6c79b0d-5889-494c-bb9e-ac2f9f905a56" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -907,8 +961,8 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt1909?op=CONCURRENTAPPEND&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxOTA5P29wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt4282?op=CONCURRENTAPPEND&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP29wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -916,7 +970,7 @@ "application/octet-stream" ], "x-ms-client-request-id": [ - "decdc37b-6bbf-4d20-9a2d-366cd787041c" + "1ae14adb-481f-4978-a62a-dbe6fda2cc1e" ], "Transfer-Encoding": [ "chunked" @@ -925,14 +979,13 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "\"Appending succeeds.\"", + "ResponseBody": "\"Operation succeeded.\"", "ResponseHeaders": { "Content-Length": [ - "21" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -944,13 +997,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:57:30 GMT" + "Mon, 27 Mar 2017 18:05:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5219f554-03c3-49cf-8c41-743f0000cb55" + "4716c180-c924-473e-acf0-cc2df9a0dfb6" ], "X-Content-Type-Options": [ "nosniff" @@ -962,20 +1015,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1909?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxOTA5P29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4282?op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0MjgyP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d110bdd-e516-4108-a931-cf5c77b10af8" + "0d486127-4c7d-4d27-ac6c-151d42136cc1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "More test contents, that were appended!", @@ -990,7 +1042,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:57:30 GMT" + "Mon, 27 Mar 2017 18:05:45 GMT" ], "Pragma": [ "no-cache" @@ -999,10 +1051,10 @@ "chunked" ], "x-ms-request-id": [ - "c28eef3f-948c-44ae-a5dc-c4c9ef3a1151" + "02661fe5-d774-48df-a7ce-7e442214813e" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1019,12 +1071,12 @@ ], "Names": { ".ctor": [ - "datalakerg15696", - "testdatalake1254", - "testadlfs13161" + "datalakerg17573", + "testdatalake18488", + "testadlfs17707" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt1909" + "SDKTestFolder01/SDKTestFile01.txt4282" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFile.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFile.json index a186a2412551..93457f0928b9 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFile.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFile.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d7386ea-27a9-4eb8-8360-a116bbdb1188" + "06be8185-4095-4190-9e56-96c2357e405d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,11 +28,14 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:20 GMT" + "Mon, 27 Mar 2017 18:24:28 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -41,13 +43,13 @@ "1199" ], "x-ms-request-id": [ - "15d7c34a-b5ac-49ec-9b65-20c1e68bea36" + "082d5b3e-ed4d-4955-9ce5-be66adabcb59" ], "x-ms-correlation-request-id": [ - "15d7c34a-b5ac-49ec-9b65-20c1e68bea36" + "082d5b3e-ed4d-4955-9ce5-be66adabcb59" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230220Z:15d7c34a-b5ac-49ec-9b65-20c1e68bea36" + "CENTRALUS:20170327T182428Z:082d5b3e-ed4d-4955-9ce5-be66adabcb59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db5b23fc-0807-461a-9922-377c852c31d4" + "2c7619f4-4aea-4fff-9bd0-22c743451f9b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:20 GMT" + "Mon, 27 Mar 2017 18:24:28 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-request-id": [ - "2aa72164-2435-4dd8-9760-6049dd23d403" + "01197303-e2ed-4e0a-a399-21780f6d17b3" ], "x-ms-correlation-request-id": [ - "2aa72164-2435-4dd8-9760-6049dd23d403" + "01197303-e2ed-4e0a-a399-21780f6d17b3" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230220Z:2aa72164-2435-4dd8-9760-6049dd23d403" + "CENTRALUS:20170327T182428Z:01197303-e2ed-4e0a-a399-21780f6d17b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9a5b11e-4de5-4f64-a497-7568514e06d0" + "18a78014-0347-4474-a556-abcd13c7413b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,11 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:20 GMT" + "Mon, 27 Mar 2017 18:24:29 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -151,13 +154,13 @@ "1198" ], "x-ms-request-id": [ - "23d57a87-da37-42ff-a15d-5354ab07ee26" + "ceebe63a-35ae-460e-9aa4-fc08f7bf1ffc" ], "x-ms-correlation-request-id": [ - "23d57a87-da37-42ff-a15d-5354ab07ee26" + "ceebe63a-35ae-460e-9aa4-fc08f7bf1ffc" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230221Z:23d57a87-da37-42ff-a15d-5354ab07ee26" + "CENTRALUS:20170327T182429Z:ceebe63a-35ae-460e-9aa4-fc08f7bf1ffc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a8ecb54-48ad-4757-a92b-47d4c508e074" + "758c1b55-f127-4981-a661-671409c8a494" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:21 GMT" + "Mon, 27 Mar 2017 18:24:29 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-request-id": [ - "6455781d-a5b8-44b1-a3b7-7b812d8698cc" + "179e1fc1-1f12-4fcc-a3f3-5d44d5f1b9ee" ], "x-ms-correlation-request-id": [ - "6455781d-a5b8-44b1-a3b7-7b812d8698cc" + "179e1fc1-1f12-4fcc-a3f3-5d44d5f1b9ee" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230221Z:6455781d-a5b8-44b1-a3b7-7b812d8698cc" + "CENTRALUS:20170327T182429Z:179e1fc1-1f12-4fcc-a3f3-5d44d5f1b9ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19938?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTkzOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12974?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjk3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa837517-abf1-4e76-855a-b61bfa0e7153" + "b469cb7b-0eec-4766-8a89-96112aabdd85" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19938' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg12974' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:21 GMT" + "Mon, 27 Mar 2017 18:24:29 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14994" ], "x-ms-request-id": [ - "fdb18417-3398-4cf4-987a-b816a1d5517f" + "393440f2-793f-4a99-a313-fd49ee4cda7a" ], "x-ms-correlation-request-id": [ - "fdb18417-3398-4cf4-987a-b816a1d5517f" + "393440f2-793f-4a99-a313-fd49ee4cda7a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230221Z:fdb18417-3398-4cf4-987a-b816a1d5517f" + "CENTRALUS:20170327T182429Z:393440f2-793f-4a99-a313-fd49ee4cda7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19938?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTkzOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12974?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjk3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4f932fc-0842-4e4c-9f5a-d34c29869ad4" + "276e819f-aac2-4d2f-a2d3-723c5b3ce9a2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938\",\r\n \"name\": \"datalakerg19938\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974\",\r\n \"name\": \"datalakerg12974\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:22 GMT" + "Mon, 27 Mar 2017 18:24:30 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14993" ], "x-ms-request-id": [ - "4ca98a62-bdfb-436a-a501-2cb2f0645dc4" + "f9de781c-1255-4adc-a4d2-089da4a99589" ], "x-ms-correlation-request-id": [ - "4ca98a62-bdfb-436a-a501-2cb2f0645dc4" + "f9de781c-1255-4adc-a4d2-089da4a99589" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230223Z:4ca98a62-bdfb-436a-a501-2cb2f0645dc4" + "CENTRALUS:20170327T182430Z:f9de781c-1255-4adc-a4d2-089da4a99589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19938?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTkzOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12974?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjk3ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "cb90367a-b591-4496-85a2-380cf71c0c10" + "1b9c8956-beb2-4135-b9e3-d2bbf69c064f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938\",\r\n \"name\": \"datalakerg19938\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974\",\r\n \"name\": \"datalakerg12974\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,7 +370,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:22 GMT" + "Mon, 27 Mar 2017 18:24:30 GMT" ], "Pragma": [ "no-cache" @@ -380,13 +379,13 @@ "1197" ], "x-ms-request-id": [ - "53f3d05a-9742-45ad-936e-36695843d089" + "65b0fef5-1756-46b0-8e90-53c8ed903351" ], "x-ms-correlation-request-id": [ - "53f3d05a-9742-45ad-936e-36695843d089" + "65b0fef5-1756-46b0-8e90-53c8ed903351" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230223Z:53f3d05a-9742-45ad-936e-36695843d089" + "CENTRALUS:20170327T182430Z:65b0fef5-1756-46b0-8e90-53c8ed903351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTkzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ecd8abc-c3b1-4412-8dcf-4738027dff28" + "ff306566-9046-4547-9670-f2db4c093e00" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11864' under resource group 'datalakerg19938' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17767' under resource group 'datalakerg12974' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:02:23 GMT" + "Mon, 27 Mar 2017 18:24:30 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "f2f37ffc-d905-49da-9d27-44319b320a19" + "b8301618-b35d-4df0-9432-4da92489cd19" ], "x-ms-correlation-request-id": [ - "f2f37ffc-d905-49da-9d27-44319b320a19" + "b8301618-b35d-4df0-9432-4da92489cd19" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230223Z:f2f37ffc-d905-49da-9d27-44319b320a19" + "CENTRALUS:20170327T182431Z:b8301618-b35d-4df0-9432-4da92489cd19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTkzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11864.azuredatalakestore.net\",\r\n \"accountId\": \"a6b19088-106c-4e39-9dd9-2c9be05ec260\",\r\n \"creationTime\": \"2016-11-10T23:02:30.0728648Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:02:30.0728648Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864\",\r\n \"name\": \"testadlfs11864\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17767.azuredatalakestore.net\",\r\n \"accountId\": \"111fdfd2-4944-419d-a090-5d9bac0e1389\",\r\n \"creationTime\": \"2017-03-27T18:24:32.5561174Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:24:32.5561174Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767\",\r\n \"name\": \"testadlfs17767\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:02:56 GMT" + "Mon, 27 Mar 2017 18:25:03 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "dbf2f496-318a-4640-9d2b-f0346e5cd39b" + "201e7606-6416-4eca-885e-e93bd13a6b24" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14999" ], "x-ms-correlation-request-id": [ - "43224f52-0367-480d-86ee-d4ede5cf1b7d" + "e683d00f-bd58-4e4a-922a-828dd67caed5" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230256Z:43224f52-0367-480d-86ee-d4ede5cf1b7d" + "CENTRALUS:20170327T182503Z:e683d00f-bd58-4e4a-922a-828dd67caed5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTkzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a3fa32f-4692-440f-afca-767234806886" + "25bbb917-35ac-49aa-8e79-8f1a947e0899" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11864.azuredatalakestore.net\",\r\n \"accountId\": \"a6b19088-106c-4e39-9dd9-2c9be05ec260\",\r\n \"creationTime\": \"2016-11-10T23:02:30.0728648Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:02:30.0728648Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864\",\r\n \"name\": \"testadlfs11864\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17767.azuredatalakestore.net\",\r\n \"accountId\": \"111fdfd2-4944-419d-a090-5d9bac0e1389\",\r\n \"creationTime\": \"2017-03-27T18:24:32.5561174Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:24:32.5561174Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767\",\r\n \"name\": \"testadlfs17767\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:02:56 GMT" + "Mon, 27 Mar 2017 18:25:03 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "6e03305a-b316-4b21-bc9b-34d2919a5f3b" + "798feaed-103d-4172-b98d-41539956ff47" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14991" ], "x-ms-correlation-request-id": [ - "86dce131-8f47-4d51-b453-014893ec10bf" + "1d7e35eb-3a5e-4276-90bc-e7f31ad75bf0" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230257Z:86dce131-8f47-4d51-b453-014893ec10bf" + "CENTRALUS:20170327T182503Z:1d7e35eb-3a5e-4276-90bc-e7f31ad75bf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTkzOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjk3NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc3Njc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "75bc5bc8-c66c-48bc-b7f5-0cf91dd6b0c8" + "4f953a4b-82cd-4385-89bd-3071ec154ad5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"a6b19088-106c-4e39-9dd9-2c9be05ec260\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864\",\r\n \"name\": \"testadlfs11864\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"111fdfd2-4944-419d-a090-5d9bac0e1389\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767\",\r\n \"name\": \"testadlfs17767\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:02:25 GMT" + "Mon, 27 Mar 2017 18:24:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19938/providers/Microsoft.DataLakeStore/accounts/testadlfs11864/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12974/providers/Microsoft.DataLakeStore/accounts/testadlfs17767/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a6b19088-106c-4e39-9dd9-2c9be05ec2600?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/111fdfd2-4944-419d-a090-5d9bac0e13890?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "7d3e6cb7-d12c-4859-9330-723f4e080b23" + "38e2cef7-b32d-4da3-b586-c648cd98efea" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "26c3b0e1-1fdd-44e5-a2c0-f3a722259690" + "dadc5cc4-0d88-4f1e-b380-61047f9e4ffe" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230225Z:26c3b0e1-1fdd-44e5-a2c0-f3a722259690" + "CENTRALUS:20170327T182432Z:dadc5cc4-0d88-4f1e-b380-61047f9e4ffe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/a6b19088-106c-4e39-9dd9-2c9be05ec2600?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2E2YjE5MDg4LTEwNmMtNGUzOS05ZGQ5LTJjOWJlMDVlYzI2MDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/111fdfd2-4944-419d-a090-5d9bac0e13890?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzExMWZkZmQyLTQ5NDQtNDE5ZC1hMDkwLTVkOWJhYzBlMTM4OTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:02:56 GMT" + "Mon, 27 Mar 2017 18:25:01 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c04842dd-710c-4292-9a74-386dd5b21bd2" + "babb3def-645e-4ce5-9bff-e956b426b61a" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-correlation-request-id": [ - "79a1fdc8-d814-4137-977d-4977be302a1a" + "e854d296-08d7-48ab-81ab-09d7bd5e52c9" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230256Z:79a1fdc8-d814-4137-977d-4977be302a1a" + "CENTRALUS:20170327T182502Z:e854d296-08d7-48ab-81ab-09d7bd5e52c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3275?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjc1P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt174?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxNzQ/b3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "63fb1a26-7c52-4f1b-9b30-e1e63fc77358" + "f00b540e-8e48-448f-bebe-ecc85d5bfc3d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:59 GMT" + "Mon, 27 Mar 2017 18:25:04 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11864.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3275?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17767.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt174?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "2c3902b4-70f0-4647-bfa4-e50d801def61" + "ce4d5b30-48b5-48d7-8601-6d20faca7264" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3275?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjc1P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt174?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxNzQ/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a13443c5-823d-41e6-acc0-9a24a52d2cdc" + "1c7f6dbd-94ae-42c4-ba61-00031775f040" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818978963,\r\n \"modificationTime\": 1478818979111,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490639104809,\r\n \"modificationTime\": 1490639104883,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:59 GMT" + "Mon, 27 Mar 2017 18:25:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d19e5345-f924-4e78-a50f-3b7db54cfb9c" + "a1a57898-af61-477f-9177-5afedc849b67" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,20 +844,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3275?recursive=false&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjc1P3JlY3Vyc2l2ZT1mYWxzZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt174?recursive=false&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxNzQ/cmVjdXJzaXZlPWZhbHNlJm9wPURFTEVURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acb30935-4ca6-4848-8b81-0bc4f3b48e89" + "d80cd98a-b5f3-47ef-a0fa-f2e3397a60fa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:00 GMT" + "Mon, 27 Mar 2017 18:25:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "637d2582-9d47-46dd-84ae-bb40ef2012e5" + "40f453b8-a3fd-4102-bf6c-59838733e103" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -907,20 +898,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3275?recursive=false&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjc1P3JlY3Vyc2l2ZT1mYWxzZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt174?recursive=false&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxNzQ/cmVjdXJzaXZlPWZhbHNlJm9wPURFTEVURSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41a4154f-1fb1-46df-b4bc-88d60119135f" + "d33f4fac-0125-44cb-9627-6af164fc973e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": false\r\n}", @@ -938,16 +928,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:00 GMT" + "Mon, 27 Mar 2017 18:25:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1e202d87-c7e6-45a3-8cad-4c106b141484" + "b15d44d4-5b6e-44c1-aaf9-9ba7e99bb7e6" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -964,12 +954,12 @@ ], "Names": { ".ctor": [ - "datalakerg19938", - "testdatalake13489", - "testadlfs11864" + "datalakerg12974", + "testdatalake15928", + "testadlfs17767" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt3275" + "SDKTestFolder01/SDKTestFile01.txt174" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFolder.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFolder.json index 995a4fd042d0..8a019317df26 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFolder.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemDeleteFolder.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "faad5896-6f5b-4600-b466-b8781339fad8" + "fdcebaf5-ef7d-4f7b-a31f-cffa4ed103ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,11 +28,14 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:17 GMT" + "Mon, 27 Mar 2017 18:05:48 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -41,13 +43,13 @@ "1199" ], "x-ms-request-id": [ - "0a6296f3-90b5-47bb-8a03-63539723d1af" + "e00babd9-c7fe-4004-8939-b9e94df9a928" ], "x-ms-correlation-request-id": [ - "0a6296f3-90b5-47bb-8a03-63539723d1af" + "e00babd9-c7fe-4004-8939-b9e94df9a928" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223618Z:0a6296f3-90b5-47bb-8a03-63539723d1af" + "CENTRALUS:20170327T180548Z:e00babd9-c7fe-4004-8939-b9e94df9a928" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e1356e7-8d6a-4ff4-85c4-c2cb8b7b1df2" + "7dcb9686-14b1-47b5-89dd-d1749fe5e5b1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:17 GMT" + "Mon, 27 Mar 2017 18:05:48 GMT" ], "Pragma": [ "no-cache" @@ -96,13 +97,13 @@ "14999" ], "x-ms-request-id": [ - "0d3250b8-a4c8-40f7-9593-83132259b824" + "5250d54b-c679-44f3-8427-9f1e1ad9596a" ], "x-ms-correlation-request-id": [ - "0d3250b8-a4c8-40f7-9593-83132259b824" + "5250d54b-c679-44f3-8427-9f1e1ad9596a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223618Z:0d3250b8-a4c8-40f7-9593-83132259b824" + "CENTRALUS:20170327T180548Z:5250d54b-c679-44f3-8427-9f1e1ad9596a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01c78487-02d0-431c-99f0-72336d2cea09" + "87bf9b19-c61d-467e-b9fe-d42be8ac3b45" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,11 +139,14 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:18 GMT" + "Mon, 27 Mar 2017 18:05:48 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], @@ -151,13 +154,13 @@ "1198" ], "x-ms-request-id": [ - "59578713-754b-4e80-97d7-1eef4fdd00a2" + "a0f07205-cd57-4937-bfe4-f398338f434d" ], "x-ms-correlation-request-id": [ - "59578713-754b-4e80-97d7-1eef4fdd00a2" + "a0f07205-cd57-4937-bfe4-f398338f434d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223619Z:59578713-754b-4e80-97d7-1eef4fdd00a2" + "CENTRALUS:20170327T180549Z:a0f07205-cd57-4937-bfe4-f398338f434d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3ad692c-37b0-46b6-b787-2a844141ae07" + "05c3dd2c-6da1-445d-9647-9c9c6bd5e364" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:18 GMT" + "Mon, 27 Mar 2017 18:05:48 GMT" ], "Pragma": [ "no-cache" @@ -206,13 +208,13 @@ "14998" ], "x-ms-request-id": [ - "7842948e-1912-4d77-8fd2-211b594f2ae6" + "7e854e12-0f27-4adb-a5ce-567dd5275584" ], "x-ms-correlation-request-id": [ - "7842948e-1912-4d77-8fd2-211b594f2ae6" + "7e854e12-0f27-4adb-a5ce-567dd5275584" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223619Z:7842948e-1912-4d77-8fd2-211b594f2ae6" + "CENTRALUS:20170327T180549Z:7e854e12-0f27-4adb-a5ce-567dd5275584" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,26 +223,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19600?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTYwMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1538?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7347e76-d4e7-4dfa-857a-abca12dfa20a" + "3d7cbc5d-2290-4a14-873f-da349b30dbee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19600' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1538' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:18 GMT" + "Mon, 27 Mar 2017 18:05:48 GMT" ], "Pragma": [ "no-cache" @@ -264,13 +265,13 @@ "14997" ], "x-ms-request-id": [ - "08e80346-14d8-47e7-89a8-7ff9f1610ac9" + "c0607a1f-7d22-4762-8bb0-6dca57af2adb" ], "x-ms-correlation-request-id": [ - "08e80346-14d8-47e7-89a8-7ff9f1610ac9" + "c0607a1f-7d22-4762-8bb0-6dca57af2adb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223619Z:08e80346-14d8-47e7-89a8-7ff9f1610ac9" + "CENTRALUS:20170327T180549Z:c0607a1f-7d22-4762-8bb0-6dca57af2adb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19600?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTYwMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1538?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4219213-2169-42e0-9a56-cb730267ef9d" + "5de01736-1d90-48a6-8468-83ccd666efb9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600\",\r\n \"name\": \"datalakerg19600\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538\",\r\n \"name\": \"datalakerg1538\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:19 GMT" + "Mon, 27 Mar 2017 18:05:49 GMT" ], "Pragma": [ "no-cache" @@ -319,13 +319,13 @@ "14996" ], "x-ms-request-id": [ - "5de6fb7c-f158-43fc-845d-cde3ff3a5c44" + "d3bf6464-87b5-4105-8c23-f4fd938fc36c" ], "x-ms-correlation-request-id": [ - "5de6fb7c-f158-43fc-845d-cde3ff3a5c44" + "d3bf6464-87b5-4105-8c23-f4fd938fc36c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223620Z:5de6fb7c-f158-43fc-845d-cde3ff3a5c44" + "CENTRALUS:20170327T180550Z:d3bf6464-87b5-4105-8c23-f4fd938fc36c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19600?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTYwMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1538?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,20 +346,19 @@ "31" ], "x-ms-client-request-id": [ - "f73a0c2a-34b0-482f-acfd-94e58f70742f" + "a67f3597-e349-47be-8483-9f36377cb4a7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600\",\r\n \"name\": \"datalakerg19600\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538\",\r\n \"name\": \"datalakerg1538\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "184" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,7 +370,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:19 GMT" + "Mon, 27 Mar 2017 18:05:49 GMT" ], "Pragma": [ "no-cache" @@ -380,13 +379,13 @@ "1197" ], "x-ms-request-id": [ - "a29975d7-e55c-415e-9403-3d9caec35c2e" + "37544070-1463-40d5-899e-133f6b2d5f45" ], "x-ms-correlation-request-id": [ - "a29975d7-e55c-415e-9403-3d9caec35c2e" + "37544070-1463-40d5-899e-133f6b2d5f45" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223620Z:a29975d7-e55c-415e-9403-3d9caec35c2e" + "CENTRALUS:20170327T180550Z:37544070-1463-40d5-899e-133f6b2d5f45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c534b70a-0f3a-44eb-9a0b-910800125859" + "2e86a7be-929f-4d91-8ba3-3850e6de4629" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs14264' under resource group 'datalakerg19600' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1182' under resource group 'datalakerg1538' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "164" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:19 GMT" + "Mon, 27 Mar 2017 18:05:50 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "0dbbc763-eade-4356-ad63-703a8fa95ab6" + "d09e7175-a35a-49ee-b76d-77cbf97ff0e5" ], "x-ms-correlation-request-id": [ - "0dbbc763-eade-4356-ad63-703a8fa95ab6" + "d09e7175-a35a-49ee-b76d-77cbf97ff0e5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223620Z:0dbbc763-eade-4356-ad63-703a8fa95ab6" + "CENTRALUS:20170327T180550Z:d09e7175-a35a-49ee-b76d-77cbf97ff0e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14264.azuredatalakestore.net\",\r\n \"accountId\": \"183e1e71-a627-46cd-b84e-5c30eb2b567f\",\r\n \"creationTime\": \"2016-11-10T22:36:25.8246145Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:36:25.8246145Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264\",\r\n \"name\": \"testadlfs14264\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1182.azuredatalakestore.net\",\r\n \"accountId\": \"57b65147-c69a-4775-9a65-934667ef0d18\",\r\n \"creationTime\": \"2017-03-27T18:05:52.0156461Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:05:52.0156461Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182\",\r\n \"name\": \"testadlfs1182\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:36:51 GMT" + "Mon, 27 Mar 2017 18:06:22 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "be27cd5f-0cd4-4296-97be-0dddda4ed690" + "32f8e4d5-1995-40dd-833f-0a276881cbb8" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14999" ], "x-ms-correlation-request-id": [ - "3bd39e3b-c9fb-4fae-b7bf-a9b5c7fd8760" + "f7382862-af22-46c1-a1ac-aa13217f9aa5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223652Z:3bd39e3b-c9fb-4fae-b7bf-a9b5c7fd8760" + "CENTRALUS:20170327T180623Z:f7382862-af22-46c1-a1ac-aa13217f9aa5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63891a71-bae2-4882-a1e9-39b64bd6e4cd" + "fc06f53a-010a-46a0-9a82-22ca9ebeccae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14264.azuredatalakestore.net\",\r\n \"accountId\": \"183e1e71-a627-46cd-b84e-5c30eb2b567f\",\r\n \"creationTime\": \"2016-11-10T22:36:25.8246145Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:36:25.8246145Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264\",\r\n \"name\": \"testadlfs14264\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1182.azuredatalakestore.net\",\r\n \"accountId\": \"57b65147-c69a-4775-9a65-934667ef0d18\",\r\n \"creationTime\": \"2017-03-27T18:05:52.0156461Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:05:52.0156461Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182\",\r\n \"name\": \"testadlfs1182\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:36:51 GMT" + "Mon, 27 Mar 2017 18:06:23 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "ba724225-d87d-41c2-9145-4723a7c47ea8" + "40e6c828-63ef-4015-9c21-9dd995288f07" ], "X-Content-Type-Options": [ "nosniff" @@ -572,10 +568,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "4b7ce231-69d5-4046-b45d-7be1196057e3" + "ff731458-f61d-40fb-98c6-879d846c77c7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223652Z:4b7ce231-69d5-4046-b45d-7be1196057e3" + "CENTRALUS:20170327T180624Z:ff731458-f61d-40fb-98c6-879d846c77c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTYwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMTgyP2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "8d49adae-caeb-46b0-8a04-deb51f91779f" + "d46b2504-7bae-4057-949e-07d0ddf31976" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"183e1e71-a627-46cd-b84e-5c30eb2b567f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264\",\r\n \"name\": \"testadlfs14264\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"57b65147-c69a-4775-9a65-934667ef0d18\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182\",\r\n \"name\": \"testadlfs1182\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "417" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:36:20 GMT" + "Mon, 27 Mar 2017 18:05:52 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19600/providers/Microsoft.DataLakeStore/accounts/testadlfs14264/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1538/providers/Microsoft.DataLakeStore/accounts/testadlfs1182/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/183e1e71-a627-46cd-b84e-5c30eb2b567f0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/57b65147-c69a-4775-9a65-934667ef0d180?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "5e687e26-77e6-4984-865b-c6c1ded71c82" + "b4f58a2c-1df8-461e-bcee-314051fc6077" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "544a1cc0-7c88-45a2-86fb-53ceca94058a" + "bb0db832-2358-4f0b-b77b-81dbe8a21b0e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223621Z:544a1cc0-7c88-45a2-86fb-53ceca94058a" + "CENTRALUS:20170327T180552Z:bb0db832-2358-4f0b-b77b-81dbe8a21b0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/183e1e71-a627-46cd-b84e-5c30eb2b567f0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzE4M2UxZTcxLWE2MjctNDZjZC1iODRlLTVjMzBlYjJiNTY3ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/57b65147-c69a-4775-9a65-934667ef0d180?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzU3YjY1MTQ3LWM2OWEtNDc3NS05YTY1LTkzNDY2N2VmMGQxODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:36:50 GMT" + "Mon, 27 Mar 2017 18:06:22 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "b287b4c3-3f3c-4640-8761-6cdad8840c7d" + "562c2560-e11f-437a-986c-a1a4d9eaf893" ], "X-Content-Type-Options": [ "nosniff" @@ -721,10 +715,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "5607e991-89d2-4b3d-9dda-f2b3d19eb27e" + "1106f391-86de-4b51-a596-7d27b689f72f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223651Z:5607e991-89d2-4b3d-9dda-f2b3d19eb27e" + "CENTRALUS:20170327T180623Z:1106f391-86de-4b51-a596-7d27b689f72f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,20 +727,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2Mj9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a34484c0-f680-4ef2-a457-5af66e6a1aa5" + "68cc2ae7-b300-4ee3-a6ff-ef9126920009" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:54 GMT" + "Mon, 27 Mar 2017 18:06:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "28831e78-8612-4149-9b82-69c3d8dced26" + "256a4acf-d673-4c00-90c7-a0ae36d40800" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -788,26 +781,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2Mj9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7177d1d9-07c0-41c1-9d09-ba9578da15e8" + "ee1bbd4c-27df-4e3a-abd7-b11eb236265c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1478817414497,\r\n \"modificationTime\": 1478817414497,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1490637988385,\r\n \"modificationTime\": 1490637988385,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "265" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,16 +811,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:54 GMT" + "Mon, 27 Mar 2017 18:06:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9ee84e0c-e059-4998-b451-922664606fa4" + "05b0abd3-ee9a-44fc-9340-dc1c94976451" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -843,20 +835,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862?recursive=true&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2Mj9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=true&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8274b0f5-7e8a-41bf-931b-134a7f0e5e31" + "03d858b5-9587-45eb-ad5f-f56c10c2c846" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -874,16 +865,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:54 GMT" + "Mon, 27 Mar 2017 18:06:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2f18d970-7b19-48d6-95ce-2a60425f6594" + "d2c427a1-c327-4f94-921a-265ed0dd6291" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -898,20 +889,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862?recursive=true&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2Mj9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=true&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45dd12a6-4ce0-47ac-89f6-350964bf6a8f" + "da83e665-1c89-422d-acbf-295728d27d01" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -929,16 +919,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:55 GMT" + "Mon, 27 Mar 2017 18:06:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fb7028c7-cf36-43a3-b77a-e0628dedb6b6" + "68673fd4-a6fc-4ffa-8d92-125e3601848d" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -953,20 +943,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862?recursive=true&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2Mj9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=true&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9dHJ1ZSZvcD1ERUxFVEUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cd0af9c-385c-4268-a564-9b717b5b45e1" + "391c5454-cb68-4fcb-b92f-c3e06012d69d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": false\r\n}", @@ -984,16 +973,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:55 GMT" + "Mon, 27 Mar 2017 18:06:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "45393512-6a5a-4b87-83cf-df2b397dfeb7" + "742e99b9-8630-4d60-a07a-968c5bdffb4a" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1008,20 +997,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862?recursive=false&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2Mj9yZWN1cnNpdmU9ZmFsc2Umb3A9REVMRVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=false&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9ZmFsc2Umb3A9REVMRVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89c6f668-5cf3-47df-afa2-b068d95e11d3" + "e41d502e-ec0b-44fc-a292-c621f36b1b47" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": false\r\n}", @@ -1039,16 +1027,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:54 GMT" + "Mon, 27 Mar 2017 18:06:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "eb59e114-8b09-4e37-8198-90a8e469bf42" + "c88d4e2f-b133-4daa-aa44-22ba08a5e75e" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1063,23 +1051,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862?recursive=false&op=DELETE&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2Mj9yZWN1cnNpdmU9ZmFsc2Umb3A9REVMRVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059?recursive=false&op=DELETE&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OT9yZWN1cnNpdmU9ZmFsc2Umb3A9REVMRVRFJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18e4d53f-4a14-4bec-931f-9a0d1f192367" + "35e86f59-53e7-4739-8505-483c7bbbe38b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"AccessControlException\",\r\n \"message\": \"Path is not empty [b31c8be9-f433-4dc5-bbae-9073ee577895][2016-11-10T14:36:55.6765258-08:00]\",\r\n \"javaClassName\": \"org.apache.hadoop.security.AccessControlException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"AccessControlException\",\r\n \"message\": \"Path is not empty [95d9ca31-4364-45d0-8e0f-241183b76944][2017-03-27T11:06:29.2999782-07:00]\",\r\n \"javaClassName\": \"org.apache.hadoop.security.AccessControlException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "230" @@ -1094,16 +1081,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:55 GMT" + "Mon, 27 Mar 2017 18:06:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b31c8be9-f433-4dc5-bbae-9073ee577895" + "95d9ca31-4364-45d0-8e0f-241183b76944" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x83090172" @@ -1118,8 +1105,8 @@ "StatusCode": 403 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862%2FSDKTestFile01.txt2001?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2MiUyRlNES1Rlc3RGaWxlMDEudHh0MjAwMT9vcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059%2FSDKTestFile01.txt7599?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OSUyRlNES1Rlc3RGaWxlMDEudHh0NzU5OT9vcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -1130,14 +1117,13 @@ "42" ], "x-ms-client-request-id": [ - "8405f4fe-84ea-4bff-9901-019bbcc15b54" + "f79a6d6e-1ec1-4581-bcbf-3eb15b7f1a28" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1152,22 +1138,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:54 GMT" + "Mon, 27 Mar 2017 18:06:28 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs14264.azuredatalakestore.net/webhdfs/v1/SDKTestFolder014862/SDKTestFile01.txt2001?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs1182.azuredatalakestore.net/webhdfs/v1/SDKTestFolder019059/SDKTestFile01.txt7599?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "95f43152-3dc2-48fc-9ac3-5caefe9b1813" + "5657bdd3-44f3-458b-ae3c-4b95c93cd30d" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1182,26 +1168,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder014862%2FSDKTestFile01.txt2001?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNDg2MiUyRlNES1Rlc3RGaWxlMDEudHh0MjAwMT9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019059%2FSDKTestFile01.txt7599?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA1OSUyRlNES1Rlc3RGaWxlMDEudHh0NzU5OT9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79c68a46-4b9c-4f24-aed4-63f892739363" + "272e192a-bab2-44e6-a426-f92bdaaf05e6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817415105,\r\n \"modificationTime\": 1478817415171,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490637988852,\r\n \"modificationTime\": 1490637988906,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1213,16 +1198,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:36:55 GMT" + "Mon, 27 Mar 2017 18:06:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "17b121fc-1435-40e3-8bc7-1b2e2272a256" + "0b15f80b-a7ed-4e93-83bb-deb588f0abd3" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1239,15 +1224,15 @@ ], "Names": { ".ctor": [ - "datalakerg19600", - "testdatalake12352", - "testadlfs14264" + "datalakerg1538", + "testdatalake19498", + "testadlfs1182" ], "CreateFolder": [ - "SDKTestFolder014862" + "SDKTestFolder019059" ], "CreateFile": [ - "SDKTestFolder014862/SDKTestFile01.txt2001" + "SDKTestFolder019059/SDKTestFile01.txt7599" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemEmptyFileCreate.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemEmptyFileCreate.json index 205442c3e3ab..b33d0577d50a 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemEmptyFileCreate.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemEmptyFileCreate.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "375f3cb8-4e90-4796-b253-20c49f283f2f" + "3d87af08-fc7b-4368-b563-fbbef1b1dfa7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:15 GMT" + "Mon, 27 Mar 2017 18:11:24 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "453959cb-1655-4609-91fd-db7b0bb11c79" + "54f1cd21-b112-4933-bf93-7f5b3b899446" ], "x-ms-correlation-request-id": [ - "453959cb-1655-4609-91fd-db7b0bb11c79" + "54f1cd21-b112-4933-bf93-7f5b3b899446" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224115Z:453959cb-1655-4609-91fd-db7b0bb11c79" + "WESTUS2:20170327T181124Z:54f1cd21-b112-4933-bf93-7f5b3b899446" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f41515f7-6d78-4ec6-8c94-2c5a6771a08b" + "9db2b0c0-cb5f-49fa-9374-afbc1135fbcc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:15 GMT" + "Mon, 27 Mar 2017 18:11:24 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-request-id": [ - "e4a384b2-5a3f-4752-9315-e2677981b5f1" + "40463d0a-1eb2-4614-bd73-e557eeb4c526" ], "x-ms-correlation-request-id": [ - "e4a384b2-5a3f-4752-9315-e2677981b5f1" + "40463d0a-1eb2-4614-bd73-e557eeb4c526" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224115Z:e4a384b2-5a3f-4752-9315-e2677981b5f1" + "WESTUS2:20170327T181124Z:40463d0a-1eb2-4614-bd73-e557eeb4c526" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "729e9d20-e0eb-42e6-8ecd-fa215908b450" + "ab0176b4-0099-43a1-824c-92d141306b5a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:16 GMT" + "Mon, 27 Mar 2017 18:11:25 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "9448e2eb-b7b6-4dcb-9b12-983b2e16be73" + "7a95b20b-04cf-4820-86d8-f861004db1d6" ], "x-ms-correlation-request-id": [ - "9448e2eb-b7b6-4dcb-9b12-983b2e16be73" + "7a95b20b-04cf-4820-86d8-f861004db1d6" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224116Z:9448e2eb-b7b6-4dcb-9b12-983b2e16be73" + "WESTUS2:20170327T181125Z:7a95b20b-04cf-4820-86d8-f861004db1d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4492731f-5027-4253-8311-72a39908fd99" + "92f97c71-1b23-4fda-ae23-a3fbbfba9c65" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:16 GMT" + "Mon, 27 Mar 2017 18:11:25 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14994" ], "x-ms-request-id": [ - "298d9c42-c651-4244-9689-18897060d87d" + "9473a8eb-d3ae-422f-997d-795262ab8bde" ], "x-ms-correlation-request-id": [ - "298d9c42-c651-4244-9689-18897060d87d" + "9473a8eb-d3ae-422f-997d-795262ab8bde" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224116Z:298d9c42-c651-4244-9689-18897060d87d" + "WESTUS2:20170327T181125Z:9473a8eb-d3ae-422f-997d-795262ab8bde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13495?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19212?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTIxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b99c287-a73c-4cdf-abbd-554d0e5e98d6" + "639fc917-95bc-488b-9b09-c138667b54fe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13495' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19212' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:16 GMT" + "Mon, 27 Mar 2017 18:11:25 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14993" ], "x-ms-request-id": [ - "7c46559e-2928-47d8-8653-acc2764b73fb" + "b66e7f2a-c47f-43bb-81ef-e577a71d96ab" ], "x-ms-correlation-request-id": [ - "7c46559e-2928-47d8-8653-acc2764b73fb" + "b66e7f2a-c47f-43bb-81ef-e577a71d96ab" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224116Z:7c46559e-2928-47d8-8653-acc2764b73fb" + "WESTUS2:20170327T181125Z:b66e7f2a-c47f-43bb-81ef-e577a71d96ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13495?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19212?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTIxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fea3dd66-7da3-408f-9536-d08ba410546f" + "27fc4738-0698-4380-8e8d-54f16bd46bdb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495\",\r\n \"name\": \"datalakerg13495\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212\",\r\n \"name\": \"datalakerg19212\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:17 GMT" + "Mon, 27 Mar 2017 18:11:26 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14992" ], "x-ms-request-id": [ - "c0e83386-eb59-4c21-9a49-bc9534f6badb" + "60e5c081-f27b-4d94-b103-b02e85ea091c" ], "x-ms-correlation-request-id": [ - "c0e83386-eb59-4c21-9a49-bc9534f6badb" + "60e5c081-f27b-4d94-b103-b02e85ea091c" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224117Z:c0e83386-eb59-4c21-9a49-bc9534f6badb" + "WESTUS2:20170327T181126Z:60e5c081-f27b-4d94-b103-b02e85ea091c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13495?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzQ5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19212?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTIxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "b79f9759-4c4b-48b8-9bfc-dd210659a897" + "de44ea6b-27ec-4001-a971-6b29593598d9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495\",\r\n \"name\": \"datalakerg13495\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212\",\r\n \"name\": \"datalakerg19212\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:17 GMT" + "Mon, 27 Mar 2017 18:11:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-request-id": [ - "95125268-a625-4b68-9382-460fe87b6777" + "7ec33522-302e-4198-8205-73fd1fb0368c" ], "x-ms-correlation-request-id": [ - "95125268-a625-4b68-9382-460fe87b6777" + "7ec33522-302e-4198-8205-73fd1fb0368c" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224117Z:95125268-a625-4b68-9382-460fe87b6777" + "WESTUS2:20170327T181126Z:7ec33522-302e-4198-8205-73fd1fb0368c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ5NzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTIxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9168e201-1f9d-4c86-af17-2db6640475e3" + "886963fc-44b1-4866-932d-24b3ffb2ef00" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs14976' under resource group 'datalakerg13495' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17264' under resource group 'datalakerg19212' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:41:18 GMT" + "Mon, 27 Mar 2017 18:11:26 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "611e2b4a-5c6b-4e9d-a073-aea140af95fe" + "8a4aeaa5-4dcd-4763-a05d-5ac59ff8e6bd" ], "x-ms-correlation-request-id": [ - "611e2b4a-5c6b-4e9d-a073-aea140af95fe" + "8a4aeaa5-4dcd-4763-a05d-5ac59ff8e6bd" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224118Z:611e2b4a-5c6b-4e9d-a073-aea140af95fe" + "WESTUS2:20170327T181127Z:8a4aeaa5-4dcd-4763-a05d-5ac59ff8e6bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,21 +448,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ5NzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTIxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14976.azuredatalakestore.net\",\r\n \"accountId\": \"13aabe64-6320-4c8b-a6ff-f31beb573a83\",\r\n \"creationTime\": \"2016-11-10T22:41:24.8726368Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:41:24.8726368Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976\",\r\n \"name\": \"testadlfs14976\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17264.azuredatalakestore.net\",\r\n \"accountId\": \"90363854-e7b1-4f64-8743-074179c0ec88\",\r\n \"creationTime\": \"2017-03-27T18:11:27.4777225Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:11:27.4777225Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264\",\r\n \"name\": \"testadlfs17264\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "691" - ], "Content-Type": [ "application/json" ], @@ -478,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:41:54 GMT" + "Mon, 27 Mar 2017 18:11:59 GMT" ], "Pragma": [ "no-cache" @@ -486,8 +480,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "a3d6616e-32ad-4432-9fa3-9115c9a8186c" + "1450df30-f9a5-4b68-9d65-2f87ad9dfe92" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "ac71101d-09d8-48ff-a55b-8e5359fce2de" + "f65d3354-ea57-423a-aee7-2b64d37482a8" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224154Z:ac71101d-09d8-48ff-a55b-8e5359fce2de" + "WESTUS2:20170327T181159Z:f65d3354-ea57-423a-aee7-2b64d37482a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ5NzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTIxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c3b8a51-33db-46f3-81d5-c79db980ebee" + "44cb9c6d-220d-4dbb-9da4-a74e354f9949" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14976.azuredatalakestore.net\",\r\n \"accountId\": \"13aabe64-6320-4c8b-a6ff-f31beb573a83\",\r\n \"creationTime\": \"2016-11-10T22:41:24.8726368Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:41:24.8726368Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976\",\r\n \"name\": \"testadlfs14976\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17264.azuredatalakestore.net\",\r\n \"accountId\": \"90363854-e7b1-4f64-8743-074179c0ec88\",\r\n \"creationTime\": \"2017-03-27T18:11:27.4777225Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:11:27.4777225Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264\",\r\n \"name\": \"testadlfs17264\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:41:54 GMT" + "Mon, 27 Mar 2017 18:12:00 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "87ed457d-59c0-4d4d-b274-f0ea35958390" + "590e5d5c-5312-400e-9d07-4af97893ccda" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14983" ], "x-ms-correlation-request-id": [ - "0dd1dcb1-13cc-45ea-a67a-21245d486d04" + "8be4711d-bafe-40aa-a3cf-50cf4b33407d" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224155Z:0dd1dcb1-13cc-45ea-a67a-21245d486d04" + "WESTUS2:20170327T181200Z:8be4711d-bafe-40aa-a3cf-50cf4b33407d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzQ5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ5NzY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTIxMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcyNjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "18c637fd-9c05-4c50-b6e8-b52fbe81d4da" + "5530720d-6562-46b1-9207-40fc8551f6ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"13aabe64-6320-4c8b-a6ff-f31beb573a83\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976\",\r\n \"name\": \"testadlfs14976\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"90363854-e7b1-4f64-8743-074179c0ec88\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264\",\r\n \"name\": \"testadlfs17264\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:41:19 GMT" + "Mon, 27 Mar 2017 18:11:27 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13495/providers/Microsoft.DataLakeStore/accounts/testadlfs14976/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19212/providers/Microsoft.DataLakeStore/accounts/testadlfs17264/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/13aabe64-6320-4c8b-a6ff-f31beb573a830?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/90363854-e7b1-4f64-8743-074179c0ec880?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "e1aa5f1c-4a36-4555-b1f4-a7eab3b0aa1f" + "ff3fc5ae-f9f4-4c7d-bac8-1a331810d3d4" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "bfead3d7-bf24-4130-8887-6d86291ea31f" + "ac927465-20e7-4df7-88a4-27395dfede3e" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224120Z:bfead3d7-bf24-4130-8887-6d86291ea31f" + "WESTUS2:20170327T181128Z:ac927465-20e7-4df7-88a4-27395dfede3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,21 +664,17 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/13aabe64-6320-4c8b-a6ff-f31beb573a830?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzEzYWFiZTY0LTYzMjAtNGM4Yi1hNmZmLWYzMWJlYjU3M2E4MzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/90363854-e7b1-4f64-8743-074179c0ec880?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzkwMzYzODU0LWU3YjEtNGY2NC04NzQzLTA3NDE3OWMwZWM4ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "22" - ], "Content-Type": [ "application/json" ], @@ -697,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:41:50 GMT" + "Mon, 27 Mar 2017 18:11:58 GMT" ], "Pragma": [ "no-cache" @@ -705,8 +696,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "d2855275-8ea3-4b58-8240-e72aaec56a29" + "d62ad3e7-91dc-45c1-93a3-56cb7c8eca28" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14998" ], "x-ms-correlation-request-id": [ - "fdf7fb95-5d67-43ee-8128-5fd6c2a24bd1" + "d73beab9-a1d6-4f8d-bed4-67f14a54ad59" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224150Z:fdf7fb95-5d67-43ee-8128-5fd6c2a24bd1" + "WESTUS2:20170327T181159Z:d73beab9-a1d6-4f8d-bed4-67f14a54ad59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7385?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3Mzg1P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4756?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzU2P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -745,14 +739,13 @@ "0" ], "x-ms-client-request-id": [ - "cf98757b-0074-4df1-80b3-5553e9d0a49a" + "53c17fe9-7ef5-4a7b-9d97-e749fefdc97b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:41:55 GMT" + "Mon, 27 Mar 2017 18:12:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs14976.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7385?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17264.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt4756?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "d2bfdd7d-1120-4105-82a3-588f63ba1bde" + "7e747382-51f8-4044-b497-8f7c94588682" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7385?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3Mzg1P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4756?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzU2P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e7ff0f1-2ef1-4d05-a82d-10454a6023c2" + "e366ba08-95c5-4743-b125-83038029979b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817716421,\r\n \"modificationTime\": 1478817716421,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638327506,\r\n \"modificationTime\": 1490638327506,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:41:55 GMT" + "Mon, 27 Mar 2017 18:12:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "69af596f-7b88-43c2-9f3c-14e9074390c8" + "2d012ca8-9def-4758-9afe-e2177a9bed13" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -854,12 +846,12 @@ ], "Names": { ".ctor": [ - "datalakerg13495", - "testdatalake18240", - "testadlfs14976" + "datalakerg19212", + "testdatalake13712", + "testadlfs17264" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt7385" + "SDKTestFolder01/SDKTestFile01.txt4756" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileAlreadyExists.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileAlreadyExists.json index 6804cf23fd1d..5b6fc6f6113e 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileAlreadyExists.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileAlreadyExists.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17ae9deb-da0e-4575-a6be-a5f48d20eaff" + "6946b430-f514-4da9-9c0d-4439d6e44cc0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:04 GMT" + "Mon, 27 Mar 2017 18:08:46 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "0435ff2d-38df-4eb0-b7d7-d1f361c62356" + "a5b91d68-c422-4df3-b847-a6f85bd7f3e3" ], "x-ms-correlation-request-id": [ - "0435ff2d-38df-4eb0-b7d7-d1f361c62356" + "a5b91d68-c422-4df3-b847-a6f85bd7f3e3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223904Z:0435ff2d-38df-4eb0-b7d7-d1f361c62356" + "WESTUS2:20170327T180847Z:a5b91d68-c422-4df3-b847-a6f85bd7f3e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87c7ce40-ea03-4136-86ca-279bb96d290a" + "dbda84a8-d36b-483e-8df6-4083231a3d95" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:04 GMT" + "Mon, 27 Mar 2017 18:08:46 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14994" ], "x-ms-request-id": [ - "d329926b-55e9-4440-8c0e-26ce6e348520" + "c81ea6af-c62d-496d-a92e-38569aad898c" ], "x-ms-correlation-request-id": [ - "d329926b-55e9-4440-8c0e-26ce6e348520" + "c81ea6af-c62d-496d-a92e-38569aad898c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223905Z:d329926b-55e9-4440-8c0e-26ce6e348520" + "WESTUS2:20170327T180847Z:c81ea6af-c62d-496d-a92e-38569aad898c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89001465-8b60-4af6-b17d-bcc56b56e6d7" + "f9c5d62f-07c2-45df-b15f-8277425fc279" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:04 GMT" + "Mon, 27 Mar 2017 18:08:47 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-request-id": [ - "d03d364a-e2de-4c66-b1ad-25456897f272" + "37431f82-f75a-437d-b03c-b70d5b4b07f5" ], "x-ms-correlation-request-id": [ - "d03d364a-e2de-4c66-b1ad-25456897f272" + "37431f82-f75a-437d-b03c-b70d5b4b07f5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223905Z:d03d364a-e2de-4c66-b1ad-25456897f272" + "WESTUS2:20170327T180848Z:37431f82-f75a-437d-b03c-b70d5b4b07f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "324812a9-d3ac-4927-8d0b-c34d64307942" + "a4668cdd-dd7d-4093-93c3-4b104900531e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:05 GMT" + "Mon, 27 Mar 2017 18:08:47 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-request-id": [ - "43dbddbb-5fc9-4126-a9e0-9ff773cd2bd7" + "51c02027-2677-4144-80ab-672df15561f5" ], "x-ms-correlation-request-id": [ - "43dbddbb-5fc9-4126-a9e0-9ff773cd2bd7" + "51c02027-2677-4144-80ab-672df15561f5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223905Z:43dbddbb-5fc9-4126-a9e0-9ff773cd2bd7" + "WESTUS2:20170327T180848Z:51c02027-2677-4144-80ab-672df15561f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,26 +223,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11451?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTQ1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1706?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "138edf7c-c7db-48d8-9d16-2fd3f8838be1" + "110af690-9f1b-43c7-8801-148051454d36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11451' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1706' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:05 GMT" + "Mon, 27 Mar 2017 18:08:47 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-request-id": [ - "fc5a36ad-c7c7-49b1-99d4-cda17b61bf9a" + "3f7e6e4a-9c93-4744-991b-1ff9011670fa" ], "x-ms-correlation-request-id": [ - "fc5a36ad-c7c7-49b1-99d4-cda17b61bf9a" + "3f7e6e4a-9c93-4744-991b-1ff9011670fa" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223905Z:fc5a36ad-c7c7-49b1-99d4-cda17b61bf9a" + "WESTUS2:20170327T180848Z:3f7e6e4a-9c93-4744-991b-1ff9011670fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11451?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTQ1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1706?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b362e6c-5d1d-4a36-bfc0-6dd5171a329b" + "db60073f-dad2-4e4d-80f8-2a4a66db6052" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451\",\r\n \"name\": \"datalakerg11451\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706\",\r\n \"name\": \"datalakerg1706\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:05 GMT" + "Mon, 27 Mar 2017 18:08:49 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14991" ], "x-ms-request-id": [ - "59b763bf-bae6-4805-b703-9456eb8d8f64" + "6b47d828-1a1b-4e01-8f1d-2c34646b72fe" ], "x-ms-correlation-request-id": [ - "59b763bf-bae6-4805-b703-9456eb8d8f64" + "6b47d828-1a1b-4e01-8f1d-2c34646b72fe" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223906Z:59b763bf-bae6-4805-b703-9456eb8d8f64" + "WESTUS2:20170327T180849Z:6b47d828-1a1b-4e01-8f1d-2c34646b72fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11451?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTQ1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1706?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,20 +346,19 @@ "31" ], "x-ms-client-request-id": [ - "5f8a3da9-3d2d-4b16-a5d8-777bc59b16de" + "233a7943-30e0-4166-83f0-8d5ffacac862" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451\",\r\n \"name\": \"datalakerg11451\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706\",\r\n \"name\": \"datalakerg1706\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "184" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:05 GMT" + "Mon, 27 Mar 2017 18:08:49 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-request-id": [ - "2a2b9e17-0d85-428e-8d90-38667256d925" + "8af0831a-d287-4a15-858d-48f3ee21e4c5" ], "x-ms-correlation-request-id": [ - "2a2b9e17-0d85-428e-8d90-38667256d925" + "8af0831a-d287-4a15-858d-48f3ee21e4c5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223906Z:2a2b9e17-0d85-428e-8d90-38667256d925" + "WESTUS2:20170327T180849Z:8af0831a-d287-4a15-858d-48f3ee21e4c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5NDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxODU5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3531780e-8354-4e49-b9c5-f4c47a29536c" + "87548207-2bf3-40a6-8bac-896c989a1573" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs12949' under resource group 'datalakerg11451' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18591' under resource group 'datalakerg1706' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:39:06 GMT" + "Mon, 27 Mar 2017 18:08:49 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "d5763ccc-de2f-4639-aca1-614019f9fda0" + "befc495c-d378-4548-8f60-f74df089cdb1" ], "x-ms-correlation-request-id": [ - "d5763ccc-de2f-4639-aca1-614019f9fda0" + "befc495c-d378-4548-8f60-f74df089cdb1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223907Z:d5763ccc-de2f-4639-aca1-614019f9fda0" + "WESTUS2:20170327T180849Z:befc495c-d378-4548-8f60-f74df089cdb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5NDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxODU5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12949.azuredatalakestore.net\",\r\n \"accountId\": \"8c4a537d-b366-4d31-9506-2ac03c8b5222\",\r\n \"creationTime\": \"2016-11-10T22:39:12.1216726Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:39:12.1216726Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949\",\r\n \"name\": \"testadlfs12949\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18591.azuredatalakestore.net\",\r\n \"accountId\": \"3874953f-b4cb-4503-b1b8-979d053e5f79\",\r\n \"creationTime\": \"2017-03-27T18:08:50.5765104Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:08:50.5765104Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591\",\r\n \"name\": \"testadlfs18591\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:39:38 GMT" + "Mon, 27 Mar 2017 18:09:22 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "847d6f9b-c398-49b9-9ab3-17a550c967a5" + "d1a2b6a8-32d2-45ba-a941-4672124fd2fb" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14993" ], "x-ms-correlation-request-id": [ - "1ce58f35-968b-429e-847a-94b20a8dc779" + "b21242fb-177b-4c25-b439-d4ebf85e35ea" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223938Z:1ce58f35-968b-429e-847a-94b20a8dc779" + "WESTUS2:20170327T180922Z:b21242fb-177b-4c25-b439-d4ebf85e35ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5NDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxODU5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5711b182-8a81-40bb-b8b6-56db47aced97" + "85e7594d-ec1c-4d3c-a1f1-d63794014c8f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12949.azuredatalakestore.net\",\r\n \"accountId\": \"8c4a537d-b366-4d31-9506-2ac03c8b5222\",\r\n \"creationTime\": \"2016-11-10T22:39:12.1216726Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:39:12.1216726Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949\",\r\n \"name\": \"testadlfs12949\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18591.azuredatalakestore.net\",\r\n \"accountId\": \"3874953f-b4cb-4503-b1b8-979d053e5f79\",\r\n \"creationTime\": \"2017-03-27T18:08:50.5765104Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:08:50.5765104Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591\",\r\n \"name\": \"testadlfs18591\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:39:39 GMT" + "Mon, 27 Mar 2017 18:09:22 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0b95f336-3230-4acf-a799-9bb034558e12" + "c5ed6e35-63e7-4867-ba3f-1681cc4228b1" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14994" ], "x-ms-correlation-request-id": [ - "59d71883-0377-458f-bc8c-48d8e8cabcaa" + "1a1d733d-aaea-46b1-af36-a926c3cf6cfb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223939Z:59d71883-0377-458f-bc8c-48d8e8cabcaa" + "WESTUS2:20170327T180923Z:1a1d733d-aaea-46b1-af36-a926c3cf6cfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTQ1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI5NDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxODU5MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "229950c5-1bc9-4f27-811a-10a8ec32fe79" + "40ba097c-b0cd-4c19-bccf-e83d11418b35" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"8c4a537d-b366-4d31-9506-2ac03c8b5222\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949\",\r\n \"name\": \"testadlfs12949\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3874953f-b4cb-4503-b1b8-979d053e5f79\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591\",\r\n \"name\": \"testadlfs18591\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "419" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:39:07 GMT" + "Mon, 27 Mar 2017 18:08:51 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11451/providers/Microsoft.DataLakeStore/accounts/testadlfs12949/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1706/providers/Microsoft.DataLakeStore/accounts/testadlfs18591/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8c4a537d-b366-4d31-9506-2ac03c8b52220?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3874953f-b4cb-4503-b1b8-979d053e5f790?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "3ec9a781-9903-44b9-a751-6bef8a93b33a" + "1362daa2-e829-4a2a-bfc0-24cedbf1f4e8" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "aeed5aaf-2105-4f1b-9fa4-8219ba15ce5c" + "d0394223-d8f0-4830-9884-7e23a32b260e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223907Z:aeed5aaf-2105-4f1b-9fa4-8219ba15ce5c" + "WESTUS2:20170327T180851Z:d0394223-d8f0-4830-9884-7e23a32b260e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/8c4a537d-b366-4d31-9506-2ac03c8b52220?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzhjNGE1MzdkLWIzNjYtNGQzMS05NTA2LTJhYzAzYzhiNTIyMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3874953f-b4cb-4503-b1b8-979d053e5f790?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzM4NzQ5NTNmLWI0Y2ItNDUwMy1iMWI4LTk3OWQwNTNlNWY3OTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:39:38 GMT" + "Mon, 27 Mar 2017 18:09:21 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "374a82f4-e4fe-468d-8d99-b2e39a17c500" + "62223696-7d64-40a2-9323-f48142590832" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14990" ], "x-ms-correlation-request-id": [ - "95676d81-89bd-4be6-bff3-f5d1b06551d4" + "1a85de23-083d-485c-92c2-e1951b68e45c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223938Z:95676d81-89bd-4be6-bff3-f5d1b06551d4" + "WESTUS2:20170327T180922Z:1a85de23-083d-485c-92c2-e1951b68e45c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4763?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzYzP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2514?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNTE0P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -745,14 +739,13 @@ "0" ], "x-ms-client-request-id": [ - "a3292754-5621-43d3-b3a2-8c474235557a" + "07adc3ad-c6af-4d47-88cc-6f89b770453e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:41 GMT" + "Mon, 27 Mar 2017 18:09:24 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs12949.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt4763?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs18591.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2514?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "ee9e07e3-ca8c-4c79-9903-41ce2c294ee4" + "56d47025-c226-4c7c-bf18-d52c66debd3a" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4763?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzYzP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2514?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNTE0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eab0646f-aaba-4e68-b5d5-99169e9d97ce" + "e20eac6f-f43e-4544-b1b5-145ff77abc45" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817582732,\r\n \"modificationTime\": 1478817582732,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638165023,\r\n \"modificationTime\": 1490638165023,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:41 GMT" + "Mon, 27 Mar 2017 18:09:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1bca4892-f68b-41aa-b1ad-8fd018ad5f08" + "f0e745e0-f085-4ddf-8b56-2e7033c57acf" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,8 +844,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4763?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzYzP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2514?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyNTE0P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -864,17 +856,16 @@ "0" ], "x-ms-client-request-id": [ - "41e8315e-2af0-4129-b69b-59328cae80be" + "c2e2c48d-2fe1-495f-a756-5897bcca7cfe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileAlreadyExistsException\",\r\n \"message\": \"[55dceb5e-6535-4861-8a48-05fb1da08fe7]][Op=CREATE][[d__28::MoveNext::0x83090009]] Path /SDKTestFolder01/SDKTestFile01.txt4763 already exists\",\r\n \"javaClassName\": \"org.apache.hadoop.fs.FileAlreadyExistsException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileAlreadyExistsException\",\r\n \"message\": \"[979ded7f-0103-4a97-8e91-5ed3ac95d78b]][Op=CREATE][[d__30::MoveNext::0x83090009]] Path /SDKTestFolder01/SDKTestFile01.txt2514 already exists\",\r\n \"javaClassName\": \"org.apache.hadoop.fs.FileAlreadyExistsException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "293" @@ -889,16 +880,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:42 GMT" + "Mon, 27 Mar 2017 18:09:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "55dceb5e-6535-4861-8a48-05fb1da08fe7" + "979ded7f-0103-4a97-8e91-5ed3ac95d78b" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x83090009" @@ -915,12 +906,12 @@ ], "Names": { ".ctor": [ - "datalakerg11451", - "testdatalake11077", - "testadlfs12949" + "datalakerg1706", + "testdatalake17530", + "testadlfs18591" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt4763" + "SDKTestFolder01/SDKTestFile01.txt2514" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileCreateWithContents.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileCreateWithContents.json index b69648cf5f0e..c75c4d65f560 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileCreateWithContents.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFileCreateWithContents.json @@ -7,21 +7,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "708e7532-5598-408f-bc1b-4a1b13ccdeb0" + "42269bb6-b8ee-4dd3-9e2a-5674ec4c8e7b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -32,22 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:46 GMT" + "Mon, 27 Mar 2017 18:12:56 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1191" ], "x-ms-request-id": [ - "31c08e9c-6aaf-4fa6-9bcc-ea178318df88" + "112dadfa-fe37-4a62-9b8b-79c5781a4b7a" ], "x-ms-correlation-request-id": [ - "31c08e9c-6aaf-4fa6-9bcc-ea178318df88" + "112dadfa-fe37-4a62-9b8b-79c5781a4b7a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224246Z:31c08e9c-6aaf-4fa6-9bcc-ea178318df88" + "WESTUS2:20170327T181256Z:112dadfa-fe37-4a62-9b8b-79c5781a4b7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,21 +64,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b7a9180-3e4e-48db-baf1-ac785e5d73c4" + "53a36968-9fc8-40e8-99de-2179f8f3cd69" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -87,22 +85,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:46 GMT" + "Mon, 27 Mar 2017 18:12:56 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14988" ], "x-ms-request-id": [ - "71540dca-4a9a-42ef-a991-5b2d947033b7" + "ea394bca-a41f-48e8-8021-51cce8a5589a" ], "x-ms-correlation-request-id": [ - "71540dca-4a9a-42ef-a991-5b2d947033b7" + "ea394bca-a41f-48e8-8021-51cce8a5589a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224246Z:71540dca-4a9a-42ef-a991-5b2d947033b7" + "WESTUS2:20170327T181256Z:ea394bca-a41f-48e8-8021-51cce8a5589a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,21 +118,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6e30ac9-a1c3-494b-9f13-9e0d3e21bf96" + "08502aa1-9edb-4d81-9f94-59382d10e201" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -142,22 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:47 GMT" + "Mon, 27 Mar 2017 18:12:57 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1190" ], "x-ms-request-id": [ - "9e89f302-466d-413f-bf21-7c34021a6707" + "2410957d-d7e8-4f12-bfef-033e66ffbdd6" ], "x-ms-correlation-request-id": [ - "9e89f302-466d-413f-bf21-7c34021a6707" + "2410957d-d7e8-4f12-bfef-033e66ffbdd6" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224247Z:9e89f302-466d-413f-bf21-7c34021a6707" + "WESTUS2:20170327T181257Z:2410957d-d7e8-4f12-bfef-033e66ffbdd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,21 +175,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0dcf31ab-95fb-4ef2-8664-28228e87ada9" + "5ff8c856-5b6d-4d4a-8f3e-000b7f16d345" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -197,22 +196,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:47 GMT" + "Mon, 27 Mar 2017 18:12:57 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14987" ], "x-ms-request-id": [ - "20c97875-ac2b-414d-992d-322c884a0e0b" + "e89857d0-e5f9-4062-b9fd-1ba7984c8737" ], "x-ms-correlation-request-id": [ - "20c97875-ac2b-414d-992d-322c884a0e0b" + "e89857d0-e5f9-4062-b9fd-1ba7984c8737" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224247Z:20c97875-ac2b-414d-992d-322c884a0e0b" + "WESTUS2:20170327T181257Z:e89857d0-e5f9-4062-b9fd-1ba7984c8737" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18247?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODI0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14817?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDgxNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2df8bc7a-c5a0-404c-9084-949b52db59de" + "ad8e5fe3-c9f9-493e-9f52-2d117dd6acd3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg18247' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14817' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:47 GMT" + "Mon, 27 Mar 2017 18:12:57 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14986" ], "x-ms-request-id": [ - "eb605ab5-70db-498b-8a52-ceaae5a0fb10" + "06de7d4e-2092-4216-a332-71b437a62c6a" ], "x-ms-correlation-request-id": [ - "eb605ab5-70db-498b-8a52-ceaae5a0fb10" + "06de7d4e-2092-4216-a332-71b437a62c6a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224247Z:eb605ab5-70db-498b-8a52-ceaae5a0fb10" + "WESTUS2:20170327T181257Z:06de7d4e-2092-4216-a332-71b437a62c6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,27 +280,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18247?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODI0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14817?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDgxNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e872d03d-fdee-4d78-a285-bddebd006d43" + "2ca9ac75-1e05-477e-a427-9e939f074485" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247\",\r\n \"name\": \"datalakerg18247\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817\",\r\n \"name\": \"datalakerg14817\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -310,22 +307,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:48 GMT" + "Mon, 27 Mar 2017 18:12:58 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14985" ], "x-ms-request-id": [ - "7eda678d-a04c-494c-8a48-701e6b4d44a0" + "39f5bfc3-37ef-4463-8796-56693c7b7441" ], "x-ms-correlation-request-id": [ - "7eda678d-a04c-494c-8a48-701e6b4d44a0" + "39f5bfc3-37ef-4463-8796-56693c7b7441" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224248Z:7eda678d-a04c-494c-8a48-701e6b4d44a0" + "WESTUS2:20170327T181258Z:39f5bfc3-37ef-4463-8796-56693c7b7441" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18247?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODI0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14817?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDgxNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "12ea56cf-2396-4a71-8c96-35f3e5b4b265" + "96f043cb-29b0-45e7-8532-d8ca16108522" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247\",\r\n \"name\": \"datalakerg18247\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817\",\r\n \"name\": \"datalakerg14817\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:48 GMT" + "Mon, 27 Mar 2017 18:12:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1189" ], "x-ms-request-id": [ - "cd8ddd9f-bdd7-4d36-9b7c-3b6f150aaab8" + "abd3ad93-f544-479a-bb48-90b22a80c07b" ], "x-ms-correlation-request-id": [ - "cd8ddd9f-bdd7-4d36-9b7c-3b6f150aaab8" + "abd3ad93-f544-479a-bb48-90b22a80c07b" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224248Z:cd8ddd9f-bdd7-4d36-9b7c-3b6f150aaab8" + "WESTUS2:20170327T181258Z:abd3ad93-f544-479a-bb48-90b22a80c07b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODI0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxMjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDgxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "971e55e4-a510-470c-8203-daee09d2ea1a" + "155aaa90-81cc-4d1d-83a2-5ed12643dde2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13128' under resource group 'datalakerg18247' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1481' under resource group 'datalakerg14817' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:42:48 GMT" + "Mon, 27 Mar 2017 18:12:58 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "ef8a96f3-482a-41f5-b4ff-fa07283e48b2" + "431e08e2-37ac-4730-a79b-83e22372f936" ], "x-ms-correlation-request-id": [ - "ef8a96f3-482a-41f5-b4ff-fa07283e48b2" + "431e08e2-37ac-4730-a79b-83e22372f936" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224249Z:ef8a96f3-482a-41f5-b4ff-fa07283e48b2" + "WESTUS2:20170327T181259Z:431e08e2-37ac-4730-a79b-83e22372f936" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,21 +448,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODI0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxMjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDgxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13128.azuredatalakestore.net\",\r\n \"accountId\": \"c489be33-aa76-4657-a4fd-f31e923bc047\",\r\n \"creationTime\": \"2016-11-10T22:42:54.7660342Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:42:54.7660342Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128\",\r\n \"name\": \"testadlfs13128\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1481.azuredatalakestore.net\",\r\n \"accountId\": \"4048bc98-800b-409c-b860-db8bfbe1c855\",\r\n \"creationTime\": \"2017-03-27T18:13:01.1649817Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:13:01.1649817Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481\",\r\n \"name\": \"testadlfs1481\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "691" - ], "Content-Type": [ "application/json" ], @@ -478,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:43:21 GMT" + "Mon, 27 Mar 2017 18:13:32 GMT" ], "Pragma": [ "no-cache" @@ -486,8 +480,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "d292d990-ec3a-4973-93e7-8ba86e6a325e" + "2cbf4284-7b34-4924-807e-e9d2ebeb5595" ], "X-Content-Type-Options": [ "nosniff" @@ -502,10 +499,10 @@ "14988" ], "x-ms-correlation-request-id": [ - "e89f8d2d-937e-4afe-92fd-0c4be24fe1c2" + "b720e0a3-eb1b-4030-8591-e89b57b5e43e" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224322Z:e89f8d2d-937e-4afe-92fd-0c4be24fe1c2" + "WESTUS2:20170327T181332Z:b720e0a3-eb1b-4030-8591-e89b57b5e43e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODI0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxMjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDgxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fcc2e65-d29d-45b3-8b4f-5ba0cd4540a0" + "ec1060b2-b3b8-4691-8ff5-ec105c03d5df" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13128.azuredatalakestore.net\",\r\n \"accountId\": \"c489be33-aa76-4657-a4fd-f31e923bc047\",\r\n \"creationTime\": \"2016-11-10T22:42:54.7660342Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:42:54.7660342Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128\",\r\n \"name\": \"testadlfs13128\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1481.azuredatalakestore.net\",\r\n \"accountId\": \"4048bc98-800b-409c-b860-db8bfbe1c855\",\r\n \"creationTime\": \"2017-03-27T18:13:01.1649817Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:13:01.1649817Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481\",\r\n \"name\": \"testadlfs1481\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:43:22 GMT" + "Mon, 27 Mar 2017 18:13:32 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "56a6a7da-ad3e-47b0-9949-41f7664eb311" + "735e06d3-2e31-41e7-8e56-d41ad10bc15a" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-correlation-request-id": [ - "e2c3e6aa-847b-4dda-b01b-9448be9cb130" + "5b202160-ecfb-4d2c-80c0-13210b348944" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224322Z:e2c3e6aa-847b-4dda-b01b-9448be9cb130" + "WESTUS2:20170327T181333Z:5b202160-ecfb-4d2c-80c0-13210b348944" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODI0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMxMjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDgxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ4MT9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "44b78c4e-5a68-4656-a4f8-461c148ce1d3" + "c28e13a8-d9b5-442a-bc43-723dfabda140" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"c489be33-aa76-4657-a4fd-f31e923bc047\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128\",\r\n \"name\": \"testadlfs13128\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4048bc98-800b-409c-b860-db8bfbe1c855\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481\",\r\n \"name\": \"testadlfs1481\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "418" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:42:49 GMT" + "Mon, 27 Mar 2017 18:13:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18247/providers/Microsoft.DataLakeStore/accounts/testadlfs13128/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14817/providers/Microsoft.DataLakeStore/accounts/testadlfs1481/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c489be33-aa76-4657-a4fd-f31e923bc0470?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4048bc98-800b-409c-b860-db8bfbe1c8550?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "43f56208-f571-46cf-b579-cc9a7636a615" + "14456059-7700-4e6d-96b8-958e81ff99da" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "1f9164da-2777-46fd-8384-656463b9d8a2" + "c6ce183e-2695-4bc3-9be6-2642998aa610" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224250Z:1f9164da-2777-46fd-8384-656463b9d8a2" + "WESTUS2:20170327T181301Z:c6ce183e-2695-4bc3-9be6-2642998aa610" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/c489be33-aa76-4657-a4fd-f31e923bc0470?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2M0ODliZTMzLWFhNzYtNDY1Ny1hNGZkLWYzMWU5MjNiYzA0NzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4048bc98-800b-409c-b860-db8bfbe1c8550?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQwNDhiYzk4LTgwMGItNDA5Yy1iODYwLWRiOGJmYmUxYzg1NTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:43:21 GMT" + "Mon, 27 Mar 2017 18:13:31 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e48c9458-cc1b-448e-8273-e18fdb634197" + "2723ee72-fbc3-4ab4-b1d1-31bdf37e70eb" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14987" ], "x-ms-correlation-request-id": [ - "e2007d98-e59f-445c-a2e3-cb8943de5126" + "802af38f-b777-4404-aca6-885fed1972da" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224321Z:e2007d98-e59f-445c-a2e3-cb8943de5126" + "WESTUS2:20170327T181331Z:802af38f-b777-4404-aca6-885fed1972da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9311?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5MzExP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3576?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNTc2P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "71d51da3-fc6b-4266-9e15-9afa98d10c4d" + "303bf950-42dd-4eb6-aa8a-361de7215dd1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:43:26 GMT" + "Mon, 27 Mar 2017 18:13:43 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs13128.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt9311?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs1481.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3576?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "fd22ca08-34fe-493b-a50d-4d421eb39169" + "abc9f946-9bac-4ade-b6e0-9ce276d05788" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9311?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5MzExP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3576?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNTc2P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b21d760-6621-40a9-841d-2e5326c8b1f9" + "448e76fc-9afa-49d1-bbc1-4c17061840d2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817806258,\r\n \"modificationTime\": 1478817806350,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638423604,\r\n \"modificationTime\": 1490638423659,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:43:26 GMT" + "Mon, 27 Mar 2017 18:13:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "f3a15dab-eb00-4682-b43c-84a66293911a" + "b5854461-0aea-430a-a7f5-d390b6f57a2a" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,20 +844,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9311?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5MzExP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3576?op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzNTc2P29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f03b5c44-64aa-49f0-96d5-a7b732c6aa7d" + "62b4f599-324f-41b2-a2b6-7bdfdb772108" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -880,7 +871,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:43:26 GMT" + "Mon, 27 Mar 2017 18:13:43 GMT" ], "Pragma": [ "no-cache" @@ -889,10 +880,10 @@ "chunked" ], "x-ms-request-id": [ - "7a84068e-b04b-4e16-9f61-b9d48a772dea" + "91be6361-9118-4c7a-9ad7-14c0488d3c88" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -909,12 +900,12 @@ ], "Names": { ".ctor": [ - "datalakerg18247", - "testdatalake14117", - "testadlfs13128" + "datalakerg14817", + "testdatalake16400", + "testadlfs1481" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt9311" + "SDKTestFolder01/SDKTestFile01.txt3576" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFolderCreate.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFolderCreate.json index 0e61332fcde6..73e1d0bca3e0 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFolderCreate.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemFolderCreate.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8549164f-2fba-4dfe-ba69-af3085c710c4" + "3b60be79-a963-4c1f-9ea7-0e238bb6ffde" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:42 GMT" + "Mon, 27 Mar 2017 18:07:15 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "a8534c7f-8a95-4e27-84ce-4c08214b6e42" + "50f656eb-66c6-44f5-bf08-b60ab8640384" ], "x-ms-correlation-request-id": [ - "a8534c7f-8a95-4e27-84ce-4c08214b6e42" + "50f656eb-66c6-44f5-bf08-b60ab8640384" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223743Z:a8534c7f-8a95-4e27-84ce-4c08214b6e42" + "WESTUS2:20170327T180716Z:50f656eb-66c6-44f5-bf08-b60ab8640384" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2712105-d8ed-445e-9220-1150abec35a9" + "73010744-d956-4ffd-b21e-ef8ad5b968f4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:42 GMT" + "Mon, 27 Mar 2017 18:07:15 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14992" ], "x-ms-request-id": [ - "7666c774-be7d-4f37-839d-334bf5e79aae" + "03d92f9b-6702-4efd-87e9-cabfa632c03d" ], "x-ms-correlation-request-id": [ - "7666c774-be7d-4f37-839d-334bf5e79aae" + "03d92f9b-6702-4efd-87e9-cabfa632c03d" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223743Z:7666c774-be7d-4f37-839d-334bf5e79aae" + "WESTUS2:20170327T180716Z:03d92f9b-6702-4efd-87e9-cabfa632c03d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b637a1d-4f08-4795-8e53-d168d78cad02" + "e8f44061-e486-4848-ba1e-9667b380d86c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:43 GMT" + "Mon, 27 Mar 2017 18:07:16 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-request-id": [ - "36f9d724-3a2d-42c5-8d8d-bae3c8f5da10" + "c2a209aa-ddf5-4bbd-bcff-e1397dff8e9c" ], "x-ms-correlation-request-id": [ - "36f9d724-3a2d-42c5-8d8d-bae3c8f5da10" + "c2a209aa-ddf5-4bbd-bcff-e1397dff8e9c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223744Z:36f9d724-3a2d-42c5-8d8d-bae3c8f5da10" + "WESTUS2:20170327T180717Z:c2a209aa-ddf5-4bbd-bcff-e1397dff8e9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37767836-0674-4f30-9310-c2a24e7faca8" + "9099def9-6814-411a-9d26-d66030572954" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:43 GMT" + "Mon, 27 Mar 2017 18:07:16 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14991" ], "x-ms-request-id": [ - "fb0f5853-18b0-4f2f-b7ef-48446a42f242" + "170111b7-8155-48f9-a56a-779eb90ca19e" ], "x-ms-correlation-request-id": [ - "fb0f5853-18b0-4f2f-b7ef-48446a42f242" + "170111b7-8155-48f9-a56a-779eb90ca19e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223744Z:fb0f5853-18b0-4f2f-b7ef-48446a42f242" + "WESTUS2:20170327T180717Z:170111b7-8155-48f9-a56a-779eb90ca19e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13305?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzMwNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13083?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzA4Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe893e7a-9857-4c87-bd0d-eaf401f0999b" + "12883abf-a589-4ac9-b0d2-82d66b22886d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13305' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13083' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:43 GMT" + "Mon, 27 Mar 2017 18:07:16 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14990" ], "x-ms-request-id": [ - "667fc03f-2068-42f7-9102-60885ba494b7" + "ff2c89fb-3a1c-4272-822a-f6c93c3e482a" ], "x-ms-correlation-request-id": [ - "667fc03f-2068-42f7-9102-60885ba494b7" + "ff2c89fb-3a1c-4272-822a-f6c93c3e482a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223744Z:667fc03f-2068-42f7-9102-60885ba494b7" + "WESTUS2:20170327T180717Z:ff2c89fb-3a1c-4272-822a-f6c93c3e482a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13305?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzMwNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13083?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzA4Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffead004-d9dd-4775-a327-8342b7081015" + "6be4ca29-44cb-4144-8b63-e96763aa8f4b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305\",\r\n \"name\": \"datalakerg13305\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083\",\r\n \"name\": \"datalakerg13083\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:44 GMT" + "Mon, 27 Mar 2017 18:07:17 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14989" ], "x-ms-request-id": [ - "a3662dd4-4de5-4de3-8a1a-a07531d66006" + "7c79029c-e5e6-4e29-b7ea-e8e987eba3b6" ], "x-ms-correlation-request-id": [ - "a3662dd4-4de5-4de3-8a1a-a07531d66006" + "7c79029c-e5e6-4e29-b7ea-e8e987eba3b6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223745Z:a3662dd4-4de5-4de3-8a1a-a07531d66006" + "WESTUS2:20170327T180718Z:7c79029c-e5e6-4e29-b7ea-e8e987eba3b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13305?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzMwNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13083?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzA4Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "6cff4758-484d-444a-8dac-db4795947447" + "01a79804-6e58-48c7-98b3-0c3f7e04dd86" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305\",\r\n \"name\": \"datalakerg13305\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083\",\r\n \"name\": \"datalakerg13083\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:44 GMT" + "Mon, 27 Mar 2017 18:07:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-request-id": [ - "1e1805b4-e9e6-46cd-8811-56e105a773fe" + "c2c59780-4052-4bb8-9656-5e6ae887b930" ], "x-ms-correlation-request-id": [ - "1e1805b4-e9e6-46cd-8811-56e105a773fe" + "c2c59780-4052-4bb8-9656-5e6ae887b930" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223745Z:1e1805b4-e9e6-46cd-8811-56e105a773fe" + "WESTUS2:20170327T180718Z:c2c59780-4052-4bb8-9656-5e6ae887b930" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk2MzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3eebb38-85c7-479b-ade3-1d9b1ca3bada" + "24ad375d-1257-42bd-83d7-0d64ccc98da2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs12580' under resource group 'datalakerg13305' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs19631' under resource group 'datalakerg13083' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:45 GMT" + "Mon, 27 Mar 2017 18:07:18 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "d194b48a-61eb-42b4-8892-c03545b4f678" + "6f1cce1b-7b4b-42ec-8890-176ad2a2871e" ], "x-ms-correlation-request-id": [ - "d194b48a-61eb-42b4-8892-c03545b4f678" + "6f1cce1b-7b4b-42ec-8890-176ad2a2871e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223745Z:d194b48a-61eb-42b4-8892-c03545b4f678" + "WESTUS2:20170327T180718Z:6f1cce1b-7b4b-42ec-8890-176ad2a2871e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk2MzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12580.azuredatalakestore.net\",\r\n \"accountId\": \"4e50806b-5a67-47cf-8be2-6c7b9e6c064a\",\r\n \"creationTime\": \"2016-11-10T22:37:50.1637316Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:37:50.1637316Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580\",\r\n \"name\": \"testadlfs12580\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19631.azuredatalakestore.net\",\r\n \"accountId\": \"657758a3-4cde-4870-a40f-75b2045899c1\",\r\n \"creationTime\": \"2017-03-27T18:07:20.334011Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:07:20.334011Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631\",\r\n \"name\": \"testadlfs19631\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:38:16 GMT" + "Mon, 27 Mar 2017 18:07:51 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "55cd84eb-7a7d-4e1c-826f-8adbfe9d9dab" + "438d7e0e-2302-43d7-a566-658f096f0c52" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14994" ], "x-ms-correlation-request-id": [ - "8309a360-28a6-480e-9465-888d0f65ab9c" + "8683040e-3bc1-4857-a66e-13fe2b57aadd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223817Z:8309a360-28a6-480e-9465-888d0f65ab9c" + "WESTUS2:20170327T180751Z:8683040e-3bc1-4857-a66e-13fe2b57aadd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk2MzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2be1009b-d183-45f3-a54b-a9759ae17656" + "68256672-320c-4fbe-9ac4-c6ed5b4ceb2b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12580.azuredatalakestore.net\",\r\n \"accountId\": \"4e50806b-5a67-47cf-8be2-6c7b9e6c064a\",\r\n \"creationTime\": \"2016-11-10T22:37:50.1637316Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:37:50.1637316Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580\",\r\n \"name\": \"testadlfs12580\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19631.azuredatalakestore.net\",\r\n \"accountId\": \"657758a3-4cde-4870-a40f-75b2045899c1\",\r\n \"creationTime\": \"2017-03-27T18:07:20.334011Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:07:20.334011Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631\",\r\n \"name\": \"testadlfs19631\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:38:17 GMT" + "Mon, 27 Mar 2017 18:07:51 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9ebb667f-f44b-4984-9071-a0cb44433b36" + "e5b791f8-214c-494b-b17e-149780026dc4" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14998" ], "x-ms-correlation-request-id": [ - "0ed45807-1c83-4c20-961e-95e6bfebab90" + "e6d92b49-fcd9-4275-823d-5dadd3e4874e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223817Z:0ed45807-1c83-4c20-961e-95e6bfebab90" + "WESTUS2:20170327T180752Z:e6d92b49-fcd9-4275-823d-5dadd3e4874e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzMwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1ODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzA4My9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk2MzE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "97bd141b-db94-4af4-bca1-dbe755c86e9b" + "6aeef5a5-394b-4c98-8146-1ba5117d24b4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4e50806b-5a67-47cf-8be2-6c7b9e6c064a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580\",\r\n \"name\": \"testadlfs12580\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"657758a3-4cde-4870-a40f-75b2045899c1\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631\",\r\n \"name\": \"testadlfs19631\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:37:45 GMT" + "Mon, 27 Mar 2017 18:07:20 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13305/providers/Microsoft.DataLakeStore/accounts/testadlfs12580/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13083/providers/Microsoft.DataLakeStore/accounts/testadlfs19631/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4e50806b-5a67-47cf-8be2-6c7b9e6c064a0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/657758a3-4cde-4870-a40f-75b2045899c10?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "850b9798-a0fe-42b3-9445-2a1079f35b60" + "0ba81da1-2d10-4aed-9ae6-40e2c6ed160a" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "2729f951-ecc6-438f-8973-f52e020c1983" + "66f53b23-efa0-4401-8354-6fe936d00f61" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223746Z:2729f951-ecc6-438f-8973-f52e020c1983" + "WESTUS2:20170327T180720Z:66f53b23-efa0-4401-8354-6fe936d00f61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4e50806b-5a67-47cf-8be2-6c7b9e6c064a0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRlNTA4MDZiLTVhNjctNDdjZi04YmUyLTZjN2I5ZTZjMDY0YTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/657758a3-4cde-4870-a40f-75b2045899c10?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY1Nzc1OGEzLTRjZGUtNDg3MC1hNDBmLTc1YjIwNDU4OTljMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:38:16 GMT" + "Mon, 27 Mar 2017 18:07:50 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "27a453fe-d778-4f68-a442-47e01d18801b" + "60a82dc8-a1ff-4ca1-ad10-a7729f4b84d7" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14988" ], "x-ms-correlation-request-id": [ - "7cf7e4fe-b208-4876-b67e-6b292580c2bd" + "c3c5cdca-e6c3-4938-bd4e-debcdde8fae3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223816Z:7cf7e4fe-b208-4876-b67e-6b292580c2bd" + "WESTUS2:20170327T180751Z:c3c5cdca-e6c3-4938-bd4e-debcdde8fae3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,20 +727,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017797?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzc5Nz9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder015154?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTE1ND9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38308c55-4c59-4288-9f5e-4026bf3209de" + "00209ee8-c4f3-405a-9a82-0f12f26d9d4d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:38:19 GMT" + "Mon, 27 Mar 2017 18:08:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "97543b2d-46aa-451d-9ef2-307c5a5fb7fc" + "d301374c-ee54-4bb2-a6ef-59fb4884ef9a" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -788,26 +781,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017797?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzc5Nz9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder015154?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTE1ND9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cbef8191-1820-420f-9d2b-d6e3adc434da" + "3284fded-25c1-4a76-9702-0d3bcdd66c64" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1478817500585,\r\n \"modificationTime\": 1478817500585,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1490638080977,\r\n \"modificationTime\": 1490638080977,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "265" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,16 +811,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:38:20 GMT" + "Mon, 27 Mar 2017 18:08:00 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b0bc70e7-926a-4a17-906c-7193e23bc296" + "77ad9f9c-c8da-4191-8ad2-c9f5859a1029" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -845,12 +837,12 @@ ], "Names": { ".ctor": [ - "datalakerg13305", - "testdatalake13167", - "testadlfs12580" + "datalakerg13083", + "testdatalake15290", + "testadlfs19631" ], "CreateFolder": [ - "SDKTestFolder017797" + "SDKTestFolder015154" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAcl.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAcl.json index 2e2a09f07f43..76304a9a672d 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAcl.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAcl.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1db5669c-c971-4887-98c9-9d951490fe95" + "8e8f8b5b-0a3e-486a-9568-64a3c323db44" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:40 GMT" + "Mon, 27 Mar 2017 18:15:55 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-request-id": [ - "6b09a1c5-1f83-4290-aa6d-13987ab55b61" + "d930a750-95c0-4623-b634-f78d4867fe61" ], "x-ms-correlation-request-id": [ - "6b09a1c5-1f83-4290-aa6d-13987ab55b61" + "d930a750-95c0-4623-b634-f78d4867fe61" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224540Z:6b09a1c5-1f83-4290-aa6d-13987ab55b61" + "WESTUS2:20170327T181556Z:d930a750-95c0-4623-b634-f78d4867fe61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69bf9dcb-b2e4-4e64-8e2e-65814a70269d" + "24c605f1-b081-4d54-a15c-a5c7ea3baba5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:40 GMT" + "Mon, 27 Mar 2017 18:15:55 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14992" ], "x-ms-request-id": [ - "b75347fb-40b7-42e0-b489-f7fec36186fb" + "8dcee9f9-1b9b-48bb-b02c-b7ddb40a3a36" ], "x-ms-correlation-request-id": [ - "b75347fb-40b7-42e0-b489-f7fec36186fb" + "8dcee9f9-1b9b-48bb-b02c-b7ddb40a3a36" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224540Z:b75347fb-40b7-42e0-b489-f7fec36186fb" + "WESTUS2:20170327T181556Z:8dcee9f9-1b9b-48bb-b02c-b7ddb40a3a36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10b94ac4-c668-4dbe-97e3-71b7faab25e6" + "40d4dbc2-11eb-47c4-8037-4a7336970c81" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:41 GMT" + "Mon, 27 Mar 2017 18:15:56 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-request-id": [ - "c4a5a3b9-d8ba-4d38-ade2-3955edd3d3e8" + "829574b2-c853-428d-90fc-5463b3c994da" ], "x-ms-correlation-request-id": [ - "c4a5a3b9-d8ba-4d38-ade2-3955edd3d3e8" + "829574b2-c853-428d-90fc-5463b3c994da" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224541Z:c4a5a3b9-d8ba-4d38-ade2-3955edd3d3e8" + "WESTUS2:20170327T181557Z:829574b2-c853-428d-90fc-5463b3c994da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6610f02e-01ff-4165-a2d5-83c3af8ed317" + "97c2830e-7b3d-4213-a7a0-5cfd423fb052" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:41 GMT" + "Mon, 27 Mar 2017 18:15:56 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14991" ], "x-ms-request-id": [ - "469bcc95-86d3-49bf-82e3-8e2c00d056f4" + "93dc8001-77f6-45f5-8094-95c013ae7fa4" ], "x-ms-correlation-request-id": [ - "469bcc95-86d3-49bf-82e3-8e2c00d056f4" + "93dc8001-77f6-45f5-8094-95c013ae7fa4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224541Z:469bcc95-86d3-49bf-82e3-8e2c00d056f4" + "WESTUS2:20170327T181557Z:93dc8001-77f6-45f5-8094-95c013ae7fa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15488?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQ4OD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14527?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDUyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1dd98e21-4b6a-4cef-81de-8779a83affdf" + "5278b31b-abb6-45e8-8666-edde6a5060f0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg15488' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14527' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:41 GMT" + "Mon, 27 Mar 2017 18:15:56 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14990" ], "x-ms-request-id": [ - "1f1bc497-7644-4b31-8eb5-f7d91e5539b5" + "25e74920-eadb-4f23-b9d8-8456cd944f96" ], "x-ms-correlation-request-id": [ - "1f1bc497-7644-4b31-8eb5-f7d91e5539b5" + "25e74920-eadb-4f23-b9d8-8456cd944f96" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224541Z:1f1bc497-7644-4b31-8eb5-f7d91e5539b5" + "WESTUS2:20170327T181557Z:25e74920-eadb-4f23-b9d8-8456cd944f96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15488?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQ4OD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14527?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDUyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7728fc7-90f9-41cb-ab59-d30c42b805de" + "009863ae-fe7e-476e-853c-caca703e1cd3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488\",\r\n \"name\": \"datalakerg15488\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527\",\r\n \"name\": \"datalakerg14527\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:42 GMT" + "Mon, 27 Mar 2017 18:15:58 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14989" ], "x-ms-request-id": [ - "61e23def-3d27-425c-83d4-1e922bb360c2" + "758bcf4c-6994-4a8b-babc-5ba84d524fee" ], "x-ms-correlation-request-id": [ - "61e23def-3d27-425c-83d4-1e922bb360c2" + "758bcf4c-6994-4a8b-babc-5ba84d524fee" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224542Z:61e23def-3d27-425c-83d4-1e922bb360c2" + "WESTUS2:20170327T181558Z:758bcf4c-6994-4a8b-babc-5ba84d524fee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15488?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNTQ4OD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14527?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDUyNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "be8f7f5e-1b6d-4902-a73d-58253ae4fe42" + "1704fcb8-73c3-4333-b454-3a8f760229e9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488\",\r\n \"name\": \"datalakerg15488\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527\",\r\n \"name\": \"datalakerg14527\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:42 GMT" + "Mon, 27 Mar 2017 18:15:58 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-request-id": [ - "abf8eb47-e3bf-4fa0-ba37-945d0f9852a6" + "2e330e09-c1b7-4721-98cf-0ced12d6c064" ], "x-ms-correlation-request-id": [ - "abf8eb47-e3bf-4fa0-ba37-945d0f9852a6" + "2e330e09-c1b7-4721-98cf-0ced12d6c064" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224542Z:abf8eb47-e3bf-4fa0-ba37-945d0f9852a6" + "WESTUS2:20170327T181558Z:2e330e09-c1b7-4721-98cf-0ced12d6c064" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQ4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NTY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDUyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcwMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6f2e172-5204-4bd3-9f93-3a5c9a673cf5" + "f8f066da-7f05-40e1-b07a-2e8ada13903c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11856' under resource group 'datalakerg15488' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17001' under resource group 'datalakerg14527' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:45:42 GMT" + "Mon, 27 Mar 2017 18:15:58 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "ced01107-72b1-4fe3-bbe0-f10ec6b29c48" + "63fa7a75-bc9a-409c-88a7-aa0f6b8afb01" ], "x-ms-correlation-request-id": [ - "ced01107-72b1-4fe3-bbe0-f10ec6b29c48" + "63fa7a75-bc9a-409c-88a7-aa0f6b8afb01" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224542Z:ced01107-72b1-4fe3-bbe0-f10ec6b29c48" + "WESTUS2:20170327T181559Z:63fa7a75-bc9a-409c-88a7-aa0f6b8afb01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQ4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NTY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDUyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcwMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11856.azuredatalakestore.net\",\r\n \"accountId\": \"79765ff4-d0a1-48d5-85c2-95381647067f\",\r\n \"creationTime\": \"2016-11-10T22:45:49.8930235Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:45:49.8930235Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856\",\r\n \"name\": \"testadlfs11856\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17001.azuredatalakestore.net\",\r\n \"accountId\": \"f3b263e2-1030-420a-a915-5a4e766c920f\",\r\n \"creationTime\": \"2017-03-27T18:16:00.7059962Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:16:00.7059962Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001\",\r\n \"name\": \"testadlfs17001\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:46:44 GMT" + "Mon, 27 Mar 2017 18:16:31 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a47fe14a-8bfe-42a2-997d-9e6bc497a2ac" + "a16ee601-9def-494c-a888-0ce74a7654ff" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14984" ], "x-ms-correlation-request-id": [ - "b7bfb96c-dae9-4b12-a3e7-3beb1cdd2454" + "1ab99c60-10a4-49c9-ab37-925a6d4ad543" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224645Z:b7bfb96c-dae9-4b12-a3e7-3beb1cdd2454" + "WESTUS2:20170327T181632Z:1ab99c60-10a4-49c9-ab37-925a6d4ad543" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQ4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NTY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDUyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcwMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea5ba4ae-77f6-412f-ad5b-dd799ef53970" + "fb4137ee-d95c-456c-a15e-f78845142a4a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11856.azuredatalakestore.net\",\r\n \"accountId\": \"79765ff4-d0a1-48d5-85c2-95381647067f\",\r\n \"creationTime\": \"2016-11-10T22:45:49.8930235Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:45:49.8930235Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856\",\r\n \"name\": \"testadlfs11856\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17001.azuredatalakestore.net\",\r\n \"accountId\": \"f3b263e2-1030-420a-a915-5a4e766c920f\",\r\n \"creationTime\": \"2017-03-27T18:16:00.7059962Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:16:00.7059962Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001\",\r\n \"name\": \"testadlfs17001\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:46:45 GMT" + "Mon, 27 Mar 2017 18:16:32 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "fc3f0b0d-3c41-4c8a-bb62-a1598b9801ec" + "c4bd9baa-2527-48f5-9232-e1d2332b0cfd" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14983" ], "x-ms-correlation-request-id": [ - "f3d7c29c-ada7-4d2d-a200-5c67d80b0612" + "e6660439-9762-4eae-a059-411e08e7e010" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224646Z:f3d7c29c-ada7-4d2d-a200-5c67d80b0612" + "WESTUS2:20170327T181632Z:e6660439-9762-4eae-a059-411e08e7e010" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNTQ4OC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE4NTY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDUyNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTcwMDE/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "4ab1a125-f63f-478e-acca-4075ca7b6f5c" + "5c0d3cf4-20cc-412d-a8fa-3de055e3074a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"79765ff4-d0a1-48d5-85c2-95381647067f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856\",\r\n \"name\": \"testadlfs11856\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f3b263e2-1030-420a-a915-5a4e766c920f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001\",\r\n \"name\": \"testadlfs17001\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:45:43 GMT" + "Mon, 27 Mar 2017 18:16:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg15488/providers/Microsoft.DataLakeStore/accounts/testadlfs11856/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14527/providers/Microsoft.DataLakeStore/accounts/testadlfs17001/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/79765ff4-d0a1-48d5-85c2-95381647067f0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f3b263e2-1030-420a-a915-5a4e766c920f0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "91d398c4-10d8-4339-997f-f80fdc9a5090" + "069dab42-9943-4367-9520-604bfa1c5cc1" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "4dcad25c-a194-40a3-8be5-7b6ea4e62a48" + "e6f6d3f0-3649-4d97-9a9d-f00c8e11123b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224543Z:4dcad25c-a194-40a3-8be5-7b6ea4e62a48" + "WESTUS2:20170327T181601Z:e6f6d3f0-3649-4d97-9a9d-f00c8e11123b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,78 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/79765ff4-d0a1-48d5-85c2-95381647067f0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzc5NzY1ZmY0LWQwYTEtNDhkNS04NWMyLTk1MzgxNjQ3MDY3ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Connection": [ - "close" - ], - "Date": [ - "Thu, 10 Nov 2016 22:46:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "08f9e992-5361-4968-8f02-7c5de44fc801" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "e61e033e-4270-47ab-be11-806debee09a5" - ], - "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224614Z:e61e033e-4270-47ab-be11-806debee09a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/79765ff4-d0a1-48d5-85c2-95381647067f0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzc5NzY1ZmY0LWQwYTEtNDhkNS04NWMyLTk1MzgxNjQ3MDY3ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f3b263e2-1030-420a-a915-5a4e766c920f0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2YzYjI2M2UyLTEwMzAtNDIwYS1hOTE1LTVhNGU3NjZjOTIwZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -758,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:46:44 GMT" + "Mon, 27 Mar 2017 18:16:30 GMT" ], "Pragma": [ "no-cache" @@ -770,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9b77d58d-e185-41f4-8143-071be71c38db" + "98ff12e2-5088-4bcb-9d91-a8850644988b" ], "X-Content-Type-Options": [ "nosniff" @@ -785,10 +715,10 @@ "14991" ], "x-ms-correlation-request-id": [ - "201dc830-5f40-4eb1-b4ff-422e2615fb89" + "d6ce0104-48a8-46a7-b19a-b64f25e13eb6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224644Z:201dc830-5f40-4eb1-b4ff-422e2615fb89" + "WESTUS2:20170327T181631Z:d6ce0104-48a8-46a7-b19a-b64f25e13eb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -797,26 +727,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40affad8-3c0a-44aa-bc3f-666db344effa" + "3573bb4d-af4b-4478-8483-6571a6c71f76" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "196" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:46:47 GMT" + "Mon, 27 Mar 2017 18:16:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4ac8483e-306f-4a75-bedb-2171afc0cc77" + "cba65d51-6698-4146-9423-1576cdca309b" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -854,9 +783,9 @@ ], "Names": { ".ctor": [ - "datalakerg15488", - "testdatalake17668", - "testadlfs11856" + "datalakerg14527", + "testdatalake1594", + "testadlfs17001" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAndSetAcl.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAndSetAcl.json index 4f2c9d7a5c48..a6eaaac692ad 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAndSetAcl.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetAndSetAcl.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39225c2d-0357-44a7-b544-c976a2737f08" + "477a69bf-b6a0-426b-984a-f408adef1905" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:33 GMT" + "Mon, 27 Mar 2017 19:08:27 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-request-id": [ - "8a592d1e-e1c9-4874-ab1a-f487eae218ac" + "6bd571da-eed2-4a08-8a2a-83f712d4b06b" ], "x-ms-correlation-request-id": [ - "8a592d1e-e1c9-4874-ab1a-f487eae218ac" + "6bd571da-eed2-4a08-8a2a-83f712d4b06b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225734Z:8a592d1e-e1c9-4874-ab1a-f487eae218ac" + "WESTUS2:20170327T190828Z:6bd571da-eed2-4a08-8a2a-83f712d4b06b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b515d42-e5ef-4131-ae6c-97a1ca9e0769" + "450da46c-4212-494c-b77b-ea0db86b9200" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:33 GMT" + "Mon, 27 Mar 2017 19:08:27 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14983" ], "x-ms-request-id": [ - "46623de5-32db-4c81-981c-1a1ab69dd1c7" + "6610abb0-4124-461b-a0e0-ece2741244b6" ], "x-ms-correlation-request-id": [ - "46623de5-32db-4c81-981c-1a1ab69dd1c7" + "6610abb0-4124-461b-a0e0-ece2741244b6" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225734Z:46623de5-32db-4c81-981c-1a1ab69dd1c7" + "WESTUS2:20170327T190828Z:6610abb0-4124-461b-a0e0-ece2741244b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a7611a8-3653-4a2d-b2f0-86bce77c46d8" + "3d6a0562-4911-4ddb-9e37-ed87446b4c95" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:34 GMT" + "Mon, 27 Mar 2017 19:08:28 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-request-id": [ - "9e372182-a96a-4d57-b826-cff9bafa8321" + "38f4799c-66c2-40de-9abd-2a9457bb8c37" ], "x-ms-correlation-request-id": [ - "9e372182-a96a-4d57-b826-cff9bafa8321" + "38f4799c-66c2-40de-9abd-2a9457bb8c37" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225734Z:9e372182-a96a-4d57-b826-cff9bafa8321" + "WESTUS2:20170327T190829Z:38f4799c-66c2-40de-9abd-2a9457bb8c37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6745a2c2-10e2-49fc-bf20-52450482b02c" + "195bc808-9977-419c-bef6-b2b222fc4d06" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:34 GMT" + "Mon, 27 Mar 2017 19:08:28 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14982" ], "x-ms-request-id": [ - "f5514113-229c-4b81-aafa-f367d11ff1e3" + "d6c02bad-696e-43cb-b18d-0cfa5eb7ebed" ], "x-ms-correlation-request-id": [ - "f5514113-229c-4b81-aafa-f367d11ff1e3" + "d6c02bad-696e-43cb-b18d-0cfa5eb7ebed" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225735Z:f5514113-229c-4b81-aafa-f367d11ff1e3" + "WESTUS2:20170327T190829Z:d6c02bad-696e-43cb-b18d-0cfa5eb7ebed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17246?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzI0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16813?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjgxMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "032d3fe2-4a54-4235-b297-042a70f5d3ee" + "bc18231d-ba09-423e-b5c5-2f4569e27382" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17246' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16813' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:34 GMT" + "Mon, 27 Mar 2017 19:08:28 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14981" ], "x-ms-request-id": [ - "a2032b20-5c1a-4dbc-85bb-00ace204f749" + "fe0cdc10-e254-4cd6-aab7-fa785d043e13" ], "x-ms-correlation-request-id": [ - "a2032b20-5c1a-4dbc-85bb-00ace204f749" + "fe0cdc10-e254-4cd6-aab7-fa785d043e13" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225735Z:a2032b20-5c1a-4dbc-85bb-00ace204f749" + "WESTUS2:20170327T190829Z:fe0cdc10-e254-4cd6-aab7-fa785d043e13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17246?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzI0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16813?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjgxMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb2ce8d2-8103-4c02-bc76-a0d13557b5b4" + "9ba18318-70b5-4dd6-b69a-5e5d75277f91" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246\",\r\n \"name\": \"datalakerg17246\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813\",\r\n \"name\": \"datalakerg16813\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:35 GMT" + "Mon, 27 Mar 2017 19:08:29 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14980" ], "x-ms-request-id": [ - "003bcdbb-22ee-498d-bc0b-1cf95b3dc114" + "0e748bd8-1e29-4e8c-b5db-0e2e8609b1c7" ], "x-ms-correlation-request-id": [ - "003bcdbb-22ee-498d-bc0b-1cf95b3dc114" + "0e748bd8-1e29-4e8c-b5db-0e2e8609b1c7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225735Z:003bcdbb-22ee-498d-bc0b-1cf95b3dc114" + "WESTUS2:20170327T190829Z:0e748bd8-1e29-4e8c-b5db-0e2e8609b1c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17246?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzI0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16813?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjgxMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "9a18f6f2-378d-449b-a4d6-f30daa3eef40" + "97fcc17d-d30e-4630-9bac-c459f5830f8a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246\",\r\n \"name\": \"datalakerg17246\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813\",\r\n \"name\": \"datalakerg16813\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:35 GMT" + "Mon, 27 Mar 2017 19:08:29 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1191" ], "x-ms-request-id": [ - "2daa1e01-5a0d-471f-8796-9d0cc166ccb1" + "cf98c0e6-e10e-4484-81e2-477d028bd966" ], "x-ms-correlation-request-id": [ - "2daa1e01-5a0d-471f-8796-9d0cc166ccb1" + "cf98c0e6-e10e-4484-81e2-477d028bd966" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225735Z:2daa1e01-5a0d-471f-8796-9d0cc166ccb1" + "WESTUS2:20170327T190829Z:cf98c0e6-e10e-4484-81e2-477d028bd966" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYyMTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjgxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk4NjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14631a45-0b22-41c4-b005-0449595c0d07" + "4fc08974-041d-4959-bea2-44358ff4b2e0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs16218' under resource group 'datalakerg17246' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs19862' under resource group 'datalakerg16813' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:57:35 GMT" + "Mon, 27 Mar 2017 19:08:29 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "e3ab8a23-0d36-4fc0-ba3d-b5eb9f6b3414" + "86f78131-ce9c-47af-a6b2-3ed436809410" ], "x-ms-correlation-request-id": [ - "e3ab8a23-0d36-4fc0-ba3d-b5eb9f6b3414" + "86f78131-ce9c-47af-a6b2-3ed436809410" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225736Z:e3ab8a23-0d36-4fc0-ba3d-b5eb9f6b3414" + "WESTUS2:20170327T190830Z:86f78131-ce9c-47af-a6b2-3ed436809410" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYyMTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjgxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk4NjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16218.azuredatalakestore.net\",\r\n \"accountId\": \"764390ad-46dc-42c6-9776-87894da9d48c\",\r\n \"creationTime\": \"2016-11-10T22:57:41.0613208Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:57:41.0613208Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218\",\r\n \"name\": \"testadlfs16218\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19862.azuredatalakestore.net\",\r\n \"accountId\": \"43bbe7d5-eaa9-411a-ac45-cf55c33a255e\",\r\n \"creationTime\": \"2017-03-27T19:08:32.5997652Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:08:32.5997652Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862\",\r\n \"name\": \"testadlfs19862\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:08 GMT" + "Mon, 27 Mar 2017 19:09:03 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e6921022-58b0-4a17-8e55-8a8308873a17" + "f3c4094d-6eb0-4036-baf4-0773d18b62e2" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14989" ], "x-ms-correlation-request-id": [ - "538b0a37-9f58-4bd3-9f55-7f718c57eeef" + "cace3c4a-e32d-4cbc-93fb-6351f72c03d9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225808Z:538b0a37-9f58-4bd3-9f55-7f718c57eeef" + "WESTUS2:20170327T190903Z:cace3c4a-e32d-4cbc-93fb-6351f72c03d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYyMTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjgxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk4NjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69ea0807-b25d-46dd-8278-63749d65095c" + "2f47024b-43c2-4a57-b9ef-e12612c8b778" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16218.azuredatalakestore.net\",\r\n \"accountId\": \"764390ad-46dc-42c6-9776-87894da9d48c\",\r\n \"creationTime\": \"2016-11-10T22:57:41.0613208Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:57:41.0613208Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218\",\r\n \"name\": \"testadlfs16218\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19862.azuredatalakestore.net\",\r\n \"accountId\": \"43bbe7d5-eaa9-411a-ac45-cf55c33a255e\",\r\n \"creationTime\": \"2017-03-27T19:08:32.5997652Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:08:32.5997652Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862\",\r\n \"name\": \"testadlfs19862\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:08 GMT" + "Mon, 27 Mar 2017 19:09:03 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "aa19bf6e-ea0e-4bbf-bd3a-9e5486a5d935" + "9f3ad3da-c8e1-4b3a-9936-894caae751f3" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "64aa43e5-29eb-4ef5-a05f-f9a4d08e9c40" + "01fef869-e2a1-455d-b54b-e35137f50222" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225808Z:64aa43e5-29eb-4ef5-a05f-f9a4d08e9c40" + "WESTUS2:20170327T190904Z:01fef869-e2a1-455d-b54b-e35137f50222" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzI0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYyMTg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjgxMy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk4NjI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "56bed9e0-730e-4b83-8c26-a65d35ca26e7" + "f9207428-a58b-4635-8159-c8b1fbf0d5dd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"764390ad-46dc-42c6-9776-87894da9d48c\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218\",\r\n \"name\": \"testadlfs16218\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"43bbe7d5-eaa9-411a-ac45-cf55c33a255e\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862\",\r\n \"name\": \"testadlfs19862\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:57:36 GMT" + "Mon, 27 Mar 2017 19:08:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17246/providers/Microsoft.DataLakeStore/accounts/testadlfs16218/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16813/providers/Microsoft.DataLakeStore/accounts/testadlfs19862/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/764390ad-46dc-42c6-9776-87894da9d48c0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/43bbe7d5-eaa9-411a-ac45-cf55c33a255e0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "2c30cb6c-653a-4e55-aa67-8281d68cb3f2" + "ebf26751-1a2a-41c2-abd5-740b49908ebb" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-correlation-request-id": [ - "e1dccfb1-a0b9-413b-81f6-ef7c5f389801" + "41ae4bcb-f9ea-4161-8451-6cfc598cb6e5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225737Z:e1dccfb1-a0b9-413b-81f6-ef7c5f389801" + "WESTUS2:20170327T190832Z:41ae4bcb-f9ea-4161-8451-6cfc598cb6e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/764390ad-46dc-42c6-9776-87894da9d48c0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzc2NDM5MGFkLTQ2ZGMtNDJjNi05Nzc2LTg3ODk0ZGE5ZDQ4YzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/43bbe7d5-eaa9-411a-ac45-cf55c33a255e0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQzYmJlN2Q1LWVhYTktNDExYS1hYzQ1LWNmNTVjMzNhMjU1ZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:07 GMT" + "Mon, 27 Mar 2017 19:09:02 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "92b32236-498b-4bee-8468-51602c7cf4cf" + "0afe3a77-e16d-4ee3-971c-eb1e518819bb" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14987" ], "x-ms-correlation-request-id": [ - "5f90c607-e546-4db7-adf8-74d43f957a58" + "fb9be0c9-7386-4250-bc71-b1b1e9841e7f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225807Z:5f90c607-e546-4db7-adf8-74d43f957a58" + "WESTUS2:20170327T190902Z:fb9be0c9-7386-4250-bc71-b1b1e9841e7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,26 +727,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c32929-aaa9-40a3-ba39-ccce954f9e4b" + "f7fdb636-65ce-44fe-9b05-173bc50eb474" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "196" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:09 GMT" + "Mon, 27 Mar 2017 19:09:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a757579f-21c5-4981-9f51-3a7969f7ffbf" + "fc4556e4-0546-4815-910a-3781775902c5" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -788,26 +781,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d49e844-aff2-4012-a84e-b8c25c123bda" + "b3bf8c1b-e6b5-4159-ba61-e4eacc618dd7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::rwx\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"777\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"777\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "196" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,16 +811,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:09 GMT" + "Mon, 27 Mar 2017 19:09:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9a11ae08-a5ae-4632-bccf-a530d567c6d0" + "a0458e86-254d-43de-9112-0f3c562d712d" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -843,26 +835,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4eb1a6f0-694f-48a0-a2da-330491c38e1b" + "93b2c301-618c-4f92-a642-3cc21a87fe6b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "196" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -874,16 +865,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:10 GMT" + "Mon, 27 Mar 2017 19:09:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4439d3c5-5d5b-4cc2-9296-4bc47f12156f" + "595b245b-d086-4018-8630-1cbafa649af7" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -898,20 +889,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?aclspec=user::rwx%2Cgroup::rwx%2Cother::rwx&op=SETACL&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP2FjbHNwZWM9dXNlciUzQSUzQXJ3eCUyQ2dyb3VwJTNBJTNBcnd4JTJDb3RoZXIlM0ElM0Fyd3gmb3A9U0VUQUNMJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?aclspec=group::rwx%2Cuser::rwx%2Cother::rwx%2Cmask::rwx&op=SETACL&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP2FjbHNwZWM9Z3JvdXAlM0ElM0Fyd3glMkN1c2VyJTNBJTNBcnd4JTJDb3RoZXIlM0ElM0Fyd3glMkNtYXNrJTNBJTNBcnd4Jm9wPVNFVEFDTCZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "deb73e62-df18-4843-9295-9476da60c8ee" + "f27a476d-f2c8-4ca4-abaa-32f9acb6fcf2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -926,19 +916,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:09 GMT" + "Mon, 27 Mar 2017 19:09:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0d73124e-902d-4d51-9135-6af92ae40779" + "a841cebe-2532-4a93-a542-abe89aef7eb9" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -959,14 +949,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a341c8ba-1312-4877-b364-53fe0d64ab72" + "b888e981-a2b9-4442-a997-bbadc877b3b9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -981,16 +970,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:10 GMT" + "Mon, 27 Mar 2017 19:09:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9196be04-ffc5-4aac-8c4c-9d92d155459c" + "fccd979a-5cce-47a8-bd7e-11826508a087" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1011,14 +1000,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbced847-d5c0-4aed-801b-75369947bf3c" + "2fc5c853-adc9-45d3-acba-d699ebb257b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1033,19 +1021,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:58:10 GMT" + "Mon, 27 Mar 2017 19:09:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "323e0b02-55c9-402f-a593-0b77f194a272" + "be449077-e114-4dcf-a8f7-0b361ec33d20" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1062,9 +1050,9 @@ ], "Names": { ".ctor": [ - "datalakerg17246", - "testdatalake19939", - "testadlfs16218" + "datalakerg16813", + "testdatalake11315", + "testadlfs19862" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetContentSummaryForFileAndFolder.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetContentSummaryForFileAndFolder.json index 48043e2391da..1f9dfc9ded74 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetContentSummaryForFileAndFolder.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetContentSummaryForFileAndFolder.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1c9ca67-6497-47ec-a814-358dd75b850e" + "5ac55dfe-7914-4e9c-bad8-f7ce0c66d98a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +28,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:02:59 GMT" + "Mon, 27 Mar 2017 18:22:54 GMT" ], "Pragma": [ "no-cache" @@ -41,16 +40,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "b410959e-c9de-4021-8c4b-d6872b1dcbda" + "a8ed5ce5-1001-45a4-b549-c4aea84c4255" ], "x-ms-correlation-request-id": [ - "b410959e-c9de-4021-8c4b-d6872b1dcbda" + "a8ed5ce5-1001-45a4-b549-c4aea84c4255" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200300Z:b410959e-c9de-4021-8c4b-d6872b1dcbda" + "CENTRALUS:20170327T182255Z:a8ed5ce5-1001-45a4-b549-c4aea84c4255" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -65,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1429a049-e0b7-47b1-93db-1e44efcefdb7" + "ebb6be0e-82af-46f8-859d-7f5262487ae0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -87,7 +85,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:03:00 GMT" + "Mon, 27 Mar 2017 18:22:54 GMT" ], "Pragma": [ "no-cache" @@ -96,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14994" ], "x-ms-request-id": [ - "9aa353c5-7e4f-45b0-bab7-7d0504c06d40" + "61f07101-f069-44d3-937e-e4e4ab5d2965" ], "x-ms-correlation-request-id": [ - "9aa353c5-7e4f-45b0-bab7-7d0504c06d40" + "61f07101-f069-44d3-937e-e4e4ab5d2965" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200300Z:9aa353c5-7e4f-45b0-bab7-7d0504c06d40" + "CENTRALUS:20170327T182255Z:61f07101-f069-44d3-937e-e4e4ab5d2965" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -120,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b326ebd-0d35-4f51-ba99-21e0fbc14cc3" + "d7cd0a7a-3eb9-4200-b5e9-e0483f2aa556" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -142,7 +139,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:03:01 GMT" + "Mon, 27 Mar 2017 18:22:55 GMT" ], "Pragma": [ "no-cache" @@ -154,16 +151,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "23a89ad6-46c0-433b-bde6-e6121dd79f6c" + "66e967cc-48d0-477d-bf43-3fe3fe642572" ], "x-ms-correlation-request-id": [ - "23a89ad6-46c0-433b-bde6-e6121dd79f6c" + "66e967cc-48d0-477d-bf43-3fe3fe642572" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200301Z:23a89ad6-46c0-433b-bde6-e6121dd79f6c" + "CENTRALUS:20170327T182256Z:66e967cc-48d0-477d-bf43-3fe3fe642572" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -178,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c8c3d3c-1d06-4eb8-bf25-972b3be662e7" + "4860d8a3-6ea2-47a7-aa64-545958bd3765" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -200,7 +196,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:03:01 GMT" + "Mon, 27 Mar 2017 18:22:55 GMT" ], "Pragma": [ "no-cache" @@ -209,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14993" ], "x-ms-request-id": [ - "9e282e24-a33a-4808-a36e-9c99a9708dc7" + "4799ddd2-ea12-41c3-ac90-57f65e9806ff" ], "x-ms-correlation-request-id": [ - "9e282e24-a33a-4808-a36e-9c99a9708dc7" + "4799ddd2-ea12-41c3-ac90-57f65e9806ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200301Z:9e282e24-a33a-4808-a36e-9c99a9708dc7" + "CENTRALUS:20170327T182256Z:4799ddd2-ea12-41c3-ac90-57f65e9806ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -227,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16710?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjcxMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13118?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzExOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa3b850c-dc2f-4c52-a081-d32bbf3a7644" + "271573d1-0da4-464d-a8f0-db0f531a6417" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16710' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13118' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -258,7 +253,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:03:01 GMT" + "Mon, 27 Mar 2017 18:22:56 GMT" ], "Pragma": [ "no-cache" @@ -267,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14992" ], "x-ms-request-id": [ - "424f25d2-5ea5-443f-b290-c32b932654fe" + "264e11e2-1065-48d9-afae-17df6bf6aac6" ], "x-ms-correlation-request-id": [ - "424f25d2-5ea5-443f-b290-c32b932654fe" + "264e11e2-1065-48d9-afae-17df6bf6aac6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200301Z:424f25d2-5ea5-443f-b290-c32b932654fe" + "CENTRALUS:20170327T182256Z:264e11e2-1065-48d9-afae-17df6bf6aac6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -285,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16710?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjcxMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13118?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzExOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e33bcf2a-43eb-4c8e-870d-c7eb6045f76f" + "d6b52003-3cb6-4b1b-9067-7514b70a795b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710\",\r\n \"name\": \"datalakerg16710\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118\",\r\n \"name\": \"datalakerg13118\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -313,7 +307,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:03:02 GMT" + "Mon, 27 Mar 2017 18:22:57 GMT" ], "Pragma": [ "no-cache" @@ -322,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14991" ], "x-ms-request-id": [ - "9a09f829-cef6-48e8-8faa-adfe321b2c55" + "50962f96-8a50-414e-be5c-8cb2b26722a2" ], "x-ms-correlation-request-id": [ - "9a09f829-cef6-48e8-8faa-adfe321b2c55" + "50962f96-8a50-414e-be5c-8cb2b26722a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200302Z:9a09f829-cef6-48e8-8faa-adfe321b2c55" + "CENTRALUS:20170327T182257Z:50962f96-8a50-414e-be5c-8cb2b26722a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -340,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16710?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjcxMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13118?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzExOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -352,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "a0627341-f7df-4743-9e22-4de4fd32378a" + "26c7a801-a82b-4db6-a20f-d1bbeed660d9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710\",\r\n \"name\": \"datalakerg16710\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118\",\r\n \"name\": \"datalakerg13118\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -377,22 +370,22 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:03:02 GMT" + "Mon, 27 Mar 2017 18:22:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "6d2c5286-a302-48a8-83a4-c9741a9adb69" + "5d1a2ab1-c6aa-417d-9f4e-05ee7c1f6c8c" ], "x-ms-correlation-request-id": [ - "6d2c5286-a302-48a8-83a4-c9741a9adb69" + "5d1a2ab1-c6aa-417d-9f4e-05ee7c1f6c8c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200302Z:6d2c5286-a302-48a8-83a4-c9741a9adb69" + "CENTRALUS:20170327T182257Z:5d1a2ab1-c6aa-417d-9f4e-05ee7c1f6c8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -401,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk3Mjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzExOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgwMDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70963978-c391-415e-b6e4-0809b5858bf2" + "7cb024eb-4e3d-4fd5-9eaa-e7de41badd07" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs19728' under resource group 'datalakerg16710' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18004' under resource group 'datalakerg13118' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -432,7 +424,7 @@ "no-cache" ], "Date": [ - "Wed, 01 Feb 2017 20:03:02 GMT" + "Mon, 27 Mar 2017 18:22:57 GMT" ], "Pragma": [ "no-cache" @@ -441,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "65d0e450-ed04-41c7-b91e-e77082fc9fed" + "dd685461-409f-4035-a6ed-a18b23e5e9fa" ], "x-ms-correlation-request-id": [ - "65d0e450-ed04-41c7-b91e-e77082fc9fed" + "dd685461-409f-4035-a6ed-a18b23e5e9fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200303Z:65d0e450-ed04-41c7-b91e-e77082fc9fed" + "CENTRALUS:20170327T182257Z:dd685461-409f-4035-a6ed-a18b23e5e9fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk3Mjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzExOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgwMDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19728.azuredatalakestore.net\",\r\n \"accountId\": \"2a9b123d-758c-4e0c-ba8d-e91f5438aed3\",\r\n \"creationTime\": \"2017-02-01T20:03:07.5468668Z\",\r\n \"lastModifiedTime\": \"2017-02-01T20:03:07.5468668Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728\",\r\n \"name\": \"testadlfs19728\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18004.azuredatalakestore.net\",\r\n \"accountId\": \"eb60d09d-9f0c-485c-8900-3034dba461b4\",\r\n \"creationTime\": \"2017-03-27T18:22:58.067748Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:22:58.067748Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004\",\r\n \"name\": \"testadlfs18004\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -481,7 +472,7 @@ "close" ], "Date": [ - "Wed, 01 Feb 2017 20:03:35 GMT" + "Mon, 27 Mar 2017 18:23:29 GMT" ], "Pragma": [ "no-cache" @@ -493,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "48b473ba-8954-4742-a503-0e96c966ef62" + "ecc27cdf-c73b-4936-8d1a-58af70d7c656" ], "X-Content-Type-Options": [ "nosniff" @@ -505,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14993" ], "x-ms-correlation-request-id": [ - "45c8cd06-0a04-4bf6-bbda-8296f13277f8" + "7182f2e5-12b4-4237-b42c-8b26e54c2c4e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200336Z:45c8cd06-0a04-4bf6-bbda-8296f13277f8" + "CENTRALUS:20170327T182330Z:7182f2e5-12b4-4237-b42c-8b26e54c2c4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -520,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk3Mjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzExOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgwMDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db437170-50f6-49f1-843f-f7648af15833" + "3b2d9b68-6344-4c54-bdb4-e6c24f745597" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs19728.azuredatalakestore.net\",\r\n \"accountId\": \"2a9b123d-758c-4e0c-ba8d-e91f5438aed3\",\r\n \"creationTime\": \"2017-02-01T20:03:07.5468668Z\",\r\n \"lastModifiedTime\": \"2017-02-01T20:03:07.5468668Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728\",\r\n \"name\": \"testadlfs19728\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18004.azuredatalakestore.net\",\r\n \"accountId\": \"eb60d09d-9f0c-485c-8900-3034dba461b4\",\r\n \"creationTime\": \"2017-03-27T18:22:58.067748Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:22:58.067748Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004\",\r\n \"name\": \"testadlfs18004\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -551,7 +541,7 @@ "close" ], "Date": [ - "Wed, 01 Feb 2017 20:03:36 GMT" + "Mon, 27 Mar 2017 18:23:30 GMT" ], "Pragma": [ "no-cache" @@ -563,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3da32320-531b-4a3f-8bc2-c229864be043" + "c0c869c6-48ae-4777-ae52-7e59b1f6d768" ], "X-Content-Type-Options": [ "nosniff" @@ -578,10 +568,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "bc86963d-c731-4d76-a747-d48ec22e50b4" + "ede9b1ec-0320-4fc7-a6bd-9c7c9c9d3b53" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200337Z:bc86963d-c731-4d76-a747-d48ec22e50b4" + "CENTRALUS:20170327T182330Z:ede9b1ec-0320-4fc7-a6bd-9c7c9c9d3b53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk3Mjg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzExOC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgwMDQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -602,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "5255fff3-9fb0-4238-bf1f-428b06a3dd2a" + "28daf7b5-af08-4efe-a005-6ad258a82f61" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"2a9b123d-758c-4e0c-ba8d-e91f5438aed3\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728\",\r\n \"name\": \"testadlfs19728\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"eb60d09d-9f0c-485c-8900-3034dba461b4\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004\",\r\n \"name\": \"testadlfs18004\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -630,13 +619,13 @@ "close" ], "Date": [ - "Wed, 01 Feb 2017 20:03:04 GMT" + "Mon, 27 Mar 2017 18:22:58 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16710/providers/Microsoft.DataLakeStore/accounts/testadlfs19728/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13118/providers/Microsoft.DataLakeStore/accounts/testadlfs18004/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -645,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2a9b123d-758c-4e0c-ba8d-e91f5438aed30?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/eb60d09d-9f0c-485c-8900-3034dba461b40?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "9566dd4b-fddf-40f5-b666-6eab083ea968" + "867bcc15-7f3d-4646-a46d-1e8ce6ca08ed" ], "X-Content-Type-Options": [ "nosniff" @@ -660,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "08fa3bfb-3a0a-40a4-b2ef-8b62ca6ac9d3" + "0aac3f6e-6771-42eb-8e14-6af0ca8dd8ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200305Z:08fa3bfb-3a0a-40a4-b2ef-8b62ca6ac9d3" + "CENTRALUS:20170327T182259Z:0aac3f6e-6771-42eb-8e14-6af0ca8dd8ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -675,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2a9b123d-758c-4e0c-ba8d-e91f5438aed30?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzJhOWIxMjNkLTc1OGMtNGUwYy1iYThkLWU5MWY1NDM4YWVkMzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/eb60d09d-9f0c-485c-8900-3034dba461b40?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2ViNjBkMDlkLTlmMGMtNDg1Yy04OTAwLTMwMzRkYmE0NjFiNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -700,7 +688,7 @@ "close" ], "Date": [ - "Wed, 01 Feb 2017 20:03:35 GMT" + "Mon, 27 Mar 2017 18:23:28 GMT" ], "Pragma": [ "no-cache" @@ -712,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e09054a9-caea-4edf-ae6b-8a2fa8438723" + "9355ef86-cb45-4f66-8456-3474f25660ea" ], "X-Content-Type-Options": [ "nosniff" @@ -724,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14992" ], "x-ms-correlation-request-id": [ - "eff0d1f0-1526-48c8-bf54-a29fc7bdd4a9" + "677bdb01-e0c0-4f8e-8d55-ca27007b0390" ], "x-ms-routing-request-id": [ - "WESTUS2:20170201T200336Z:eff0d1f0-1526-48c8-bf54-a29fc7bdd4a9" + "CENTRALUS:20170327T182329Z:677bdb01-e0c0-4f8e-8d55-ca27007b0390" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -739,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3311?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzExP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7381?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MzgxP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -751,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "a5f7235a-834e-48eb-9077-2e76a5d63493" + "2d9d2650-eed3-4cbc-8880-a729820217e8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -773,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Wed, 01 Feb 2017 20:03:39 GMT" + "Mon, 27 Mar 2017 18:23:32 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs19728.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3311?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs18004.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7381?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "b2576a2c-d571-41f9-978c-e3082fa19742" + "e203e722-a270-41b9-8d30-8b4dddc97fb2" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -803,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3311?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzExP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7381?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MzgxP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d0a8292-771b-4dbe-93ff-5e107fb93a4f" + "49143f01-97a7-402a-8a2a-4b99737e151c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1485979419262,\r\n \"modificationTime\": 1485979419317,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0,\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490639013058,\r\n \"modificationTime\": 1490639013112,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "324" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Wed, 01 Feb 2017 20:03:39 GMT" + "Mon, 27 Mar 2017 18:23:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7cff46bf-f661-4c48-afc7-e9a70c10964e" + "8c5f6432-605b-444f-bbfb-bffd97292775" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -858,20 +844,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3311?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzExP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7381?op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MzgxP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1fa1092-9394-45a3-9801-9b05d5747bce" + "f3878a29-e7b0-45c8-aeae-f199edd9f286" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "These are some random test contents 1234!@", @@ -886,7 +871,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Wed, 01 Feb 2017 20:03:40 GMT" + "Mon, 27 Mar 2017 18:23:33 GMT" ], "Pragma": [ "no-cache" @@ -895,10 +880,10 @@ "chunked" ], "x-ms-request-id": [ - "1f41aff7-0b07-4008-a5be-ad43f951a486" + "fd5b7e3b-4574-4d34-b93c-130637d77b75" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -919,14 +904,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c99390dd-4539-4403-8b8f-bfc7680ae34d" + "24b45b4b-ccee-49f7-8446-f50d6e1c091a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"ContentSummary\": {\r\n \"directoryCount\": 2,\r\n \"fileCount\": 1,\r\n \"length\": 42,\r\n \"quota\": -1,\r\n \"spaceConsumed\": 42,\r\n \"spaceQuota\": -1\r\n }\r\n}", @@ -944,16 +928,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Wed, 01 Feb 2017 20:03:40 GMT" + "Mon, 27 Mar 2017 18:23:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2689ce5f-65a7-479a-b7d1-6e27302f9c79" + "439275a5-340d-441f-9aa2-7732cfcdd7f0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -974,14 +958,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82be800e-0895-4b22-9c13-542ad7355834" + "b31e04c9-28de-4d3a-8c75-f3b27dd174b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"ContentSummary\": {\r\n \"directoryCount\": 1,\r\n \"fileCount\": 1,\r\n \"length\": 42,\r\n \"quota\": -1,\r\n \"spaceConsumed\": 42,\r\n \"spaceQuota\": -1\r\n }\r\n}", @@ -999,16 +982,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Wed, 01 Feb 2017 20:04:01 GMT" + "Mon, 27 Mar 2017 18:23:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "9d2b0701-3b32-482c-b9f9-71cc33ab3c42" + "576cb588-e0d2-4626-a1a7-5d8b9513e9bd" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1023,20 +1006,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3311?op=GETCONTENTSUMMARY&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzExP29wPUdFVENPTlRFTlRTVU1NQVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7381?op=GETCONTENTSUMMARY&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3MzgxP29wPUdFVENPTlRFTlRTVU1NQVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2778042b-63b7-45ed-99cd-9db8a71487b4" + "147540ec-46e2-4bed-b701-ef48d41b4ce7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.0.0-preview" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"ContentSummary\": {\r\n \"directoryCount\": 0,\r\n \"fileCount\": 1,\r\n \"length\": 42,\r\n \"quota\": -1,\r\n \"spaceConsumed\": 42,\r\n \"spaceQuota\": -1\r\n }\r\n}", @@ -1054,16 +1036,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Wed, 01 Feb 2017 20:04:15 GMT" + "Mon, 27 Mar 2017 18:23:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "fb0374b3-c4d5-4f38-9e3e-7c3f5a4e623e" + "10497fc3-11c9-4093-8f29-6b63dca1f2b9" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1080,12 +1062,12 @@ ], "Names": { ".ctor": [ - "datalakerg16710", - "testdatalake16255", - "testadlfs19728" + "datalakerg13118", + "testdatalake1263", + "testadlfs18004" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt3311" + "SDKTestFolder01/SDKTestFile01.txt7381" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetNonExistentFile.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetNonExistentFile.json index 741dea37d843..ed4136bfbb52 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetNonExistentFile.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemGetNonExistentFile.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd83a581-388b-4832-a766-2eaa879ce9c5" + "75de020f-9ae9-46b0-94e9-31645136da20" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:13 GMT" + "Mon, 27 Mar 2017 18:03:45 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "256e8ded-4190-47a1-b04b-d21bf7ae1d67" + "717ed235-0ba0-4359-bb5e-90c899ebf399" ], "x-ms-correlation-request-id": [ - "256e8ded-4190-47a1-b04b-d21bf7ae1d67" + "717ed235-0ba0-4359-bb5e-90c899ebf399" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225614Z:256e8ded-4190-47a1-b04b-d21bf7ae1d67" + "WESTUS2:20170327T180346Z:717ed235-0ba0-4359-bb5e-90c899ebf399" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4046ea4-61b2-4cbd-a388-c269c1ebccca" + "6364c932-92cf-49ba-a976-262740754dba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:13 GMT" + "Mon, 27 Mar 2017 18:03:45 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-request-id": [ - "6738aa7b-c5c7-4468-85e0-f6c7530ae57a" + "10e3ae70-d04f-44f7-a670-1c731f61987b" ], "x-ms-correlation-request-id": [ - "6738aa7b-c5c7-4468-85e0-f6c7530ae57a" + "10e3ae70-d04f-44f7-a670-1c731f61987b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225614Z:6738aa7b-c5c7-4468-85e0-f6c7530ae57a" + "WESTUS2:20170327T180346Z:10e3ae70-d04f-44f7-a670-1c731f61987b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e551d987-04a3-4b21-9f53-d63442589f69" + "9cba9534-03f6-4188-9df4-ff6333902720" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:14 GMT" + "Mon, 27 Mar 2017 18:03:46 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "f4458a20-88c5-4c28-ae42-7ee2ad2b6790" + "e08a23f4-b793-49bf-bd8b-65f01d06180a" ], "x-ms-correlation-request-id": [ - "f4458a20-88c5-4c28-ae42-7ee2ad2b6790" + "e08a23f4-b793-49bf-bd8b-65f01d06180a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225615Z:f4458a20-88c5-4c28-ae42-7ee2ad2b6790" + "WESTUS2:20170327T180347Z:e08a23f4-b793-49bf-bd8b-65f01d06180a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7867121a-5fb6-451a-ac58-24a37a270bc2" + "ed66455a-2992-4762-9b47-f8e9dfb54465" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:14 GMT" + "Mon, 27 Mar 2017 18:03:46 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14994" ], "x-ms-request-id": [ - "679e7ce7-7433-4baf-888e-69c4e8dd4b08" + "b252d9c1-b813-4218-b005-0ad5f03421c5" ], "x-ms-correlation-request-id": [ - "679e7ce7-7433-4baf-888e-69c4e8dd4b08" + "b252d9c1-b813-4218-b005-0ad5f03421c5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225615Z:679e7ce7-7433-4baf-888e-69c4e8dd4b08" + "WESTUS2:20170327T180347Z:b252d9c1-b813-4218-b005-0ad5f03421c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13549?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzU0OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13039?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzAzOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d51f009-e774-4c23-8db4-ea60aaa1d82e" + "0198ffe6-fe75-470a-aa00-612a8b5c4ceb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13549' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13039' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:14 GMT" + "Mon, 27 Mar 2017 18:03:46 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-request-id": [ - "ca84b48a-888b-47e4-a56f-563814cf1eab" + "75b7c598-00ec-4969-8f6a-0821d37b297e" ], "x-ms-correlation-request-id": [ - "ca84b48a-888b-47e4-a56f-563814cf1eab" + "75b7c598-00ec-4969-8f6a-0821d37b297e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225615Z:ca84b48a-888b-47e4-a56f-563814cf1eab" + "WESTUS2:20170327T180347Z:75b7c598-00ec-4969-8f6a-0821d37b297e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13549?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzU0OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13039?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzAzOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b64c60ff-9cd9-4423-a4d2-75d4c047cb42" + "c89d61e7-8b03-43e9-9967-6323139c4129" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549\",\r\n \"name\": \"datalakerg13549\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039\",\r\n \"name\": \"datalakerg13039\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:15 GMT" + "Mon, 27 Mar 2017 18:03:48 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-request-id": [ - "9d184497-1be7-4d03-a1aa-3b8c1893bb25" + "02587afb-76a5-4858-842e-28458759d19c" ], "x-ms-correlation-request-id": [ - "9d184497-1be7-4d03-a1aa-3b8c1893bb25" + "02587afb-76a5-4858-842e-28458759d19c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225616Z:9d184497-1be7-4d03-a1aa-3b8c1893bb25" + "WESTUS2:20170327T180348Z:02587afb-76a5-4858-842e-28458759d19c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13549?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzU0OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13039?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzAzOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "e9b6269f-2364-4c8c-97a3-12d5b8d0e07c" + "0bdfd43b-c3be-4c0f-b1ee-bc3e72c5978a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549\",\r\n \"name\": \"datalakerg13549\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039\",\r\n \"name\": \"datalakerg13039\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:15 GMT" + "Mon, 27 Mar 2017 18:03:47 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-request-id": [ - "d7e4b06f-5762-417a-b470-ea11af491fa3" + "a06bb354-9b71-4121-95a4-2fc47197dc3e" ], "x-ms-correlation-request-id": [ - "d7e4b06f-5762-417a-b470-ea11af491fa3" + "a06bb354-9b71-4121-95a4-2fc47197dc3e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225616Z:d7e4b06f-5762-417a-b470-ea11af491fa3" + "WESTUS2:20170327T180348Z:a06bb354-9b71-4121-95a4-2fc47197dc3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU5ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc73cea4-d29e-462a-8ccb-fc0f44acb425" + "6df1b560-f444-49a7-9d00-5a3823ae4b78" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15987' under resource group 'datalakerg13549' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs195' under resource group 'datalakerg13039' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "164" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:56:15 GMT" + "Mon, 27 Mar 2017 18:03:48 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "5a57eb7d-112e-4302-b309-07b61c3c7e89" + "8b7a0bdd-5b01-4f0a-a411-acd8b3a38155" ], "x-ms-correlation-request-id": [ - "5a57eb7d-112e-4302-b309-07b61c3c7e89" + "8b7a0bdd-5b01-4f0a-a411-acd8b3a38155" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225616Z:5a57eb7d-112e-4302-b309-07b61c3c7e89" + "WESTUS2:20170327T180348Z:8b7a0bdd-5b01-4f0a-a411-acd8b3a38155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU5ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15987.azuredatalakestore.net\",\r\n \"accountId\": \"fe4dfaa1-bd31-4848-8137-5ec845463d2c\",\r\n \"creationTime\": \"2016-11-10T22:56:22.2207688Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:56:22.2207688Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987\",\r\n \"name\": \"testadlfs15987\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs195.azuredatalakestore.net\",\r\n \"accountId\": \"b7298021-a31d-4f3e-9ac6-9f0d64da17cc\",\r\n \"creationTime\": \"2017-03-27T18:03:50.1911686Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:03:50.1911686Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195\",\r\n \"name\": \"testadlfs195\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:56:47 GMT" + "Mon, 27 Mar 2017 18:04:21 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2e2e9ede-7af8-4106-9b53-aad9d1d3d328" + "315f4bac-88a2-4470-8698-4b0f2302c99b" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14994" ], "x-ms-correlation-request-id": [ - "d83179fb-28e0-426d-af8c-35eacc05961d" + "cbaae1cd-f4a8-4a16-951c-54cc79509242" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225647Z:d83179fb-28e0-426d-af8c-35eacc05961d" + "WESTUS2:20170327T180421Z:cbaae1cd-f4a8-4a16-951c-54cc79509242" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU5ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0689b37-f220-4e9f-b4bd-ffebdd87e3ac" + "e68b0684-55f8-4bdf-ad66-9f4b8bb3f638" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15987.azuredatalakestore.net\",\r\n \"accountId\": \"fe4dfaa1-bd31-4848-8137-5ec845463d2c\",\r\n \"creationTime\": \"2016-11-10T22:56:22.2207688Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:56:22.2207688Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987\",\r\n \"name\": \"testadlfs15987\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs195.azuredatalakestore.net\",\r\n \"accountId\": \"b7298021-a31d-4f3e-9ac6-9f0d64da17cc\",\r\n \"creationTime\": \"2017-03-27T18:03:50.1911686Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:03:50.1911686Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195\",\r\n \"name\": \"testadlfs195\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:56:47 GMT" + "Mon, 27 Mar 2017 18:04:21 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e2c44f60-fa50-4c2a-9d87-9e87b0725b6a" + "474f32e7-5c16-4e10-a181-7f5ae962fdb2" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14996" ], "x-ms-correlation-request-id": [ - "d0d632fc-6325-4ba4-a7f0-78ca4164ce1a" + "d55ff71c-90f8-48ce-834a-76ec00ea0c8f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225648Z:d0d632fc-6325-4ba4-a7f0-78ca4164ce1a" + "WESTUS2:20170327T180422Z:d55ff71c-90f8-48ce-834a-76ec00ea0c8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU5ODc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzAzOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTk1P2FwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "5bc89240-998d-48cd-a8de-8f8ca1f7fff5" + "7f694bb2-ad22-489e-b732-38647e66826f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"fe4dfaa1-bd31-4848-8137-5ec845463d2c\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987\",\r\n \"name\": \"testadlfs15987\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"b7298021-a31d-4f3e-9ac6-9f0d64da17cc\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195\",\r\n \"name\": \"testadlfs195\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "416" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:56:16 GMT" + "Mon, 27 Mar 2017 18:03:50 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13549/providers/Microsoft.DataLakeStore/accounts/testadlfs15987/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13039/providers/Microsoft.DataLakeStore/accounts/testadlfs195/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fe4dfaa1-bd31-4848-8137-5ec845463d2c0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b7298021-a31d-4f3e-9ac6-9f0d64da17cc0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "572faf4a-6042-44e1-8b13-74de05755235" + "959429d4-9076-4c43-ae94-f23fb6103fb3" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "1b73fa71-15a6-4b57-9d2e-636c76ca6e04" + "8b0fe862-e1a3-4f58-9dce-51d577c4f26f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225617Z:1b73fa71-15a6-4b57-9d2e-636c76ca6e04" + "WESTUS2:20170327T180350Z:8b0fe862-e1a3-4f58-9dce-51d577c4f26f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fe4dfaa1-bd31-4848-8137-5ec845463d2c0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2ZlNGRmYWExLWJkMzEtNDg0OC04MTM3LTVlYzg0NTQ2M2QyYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b7298021-a31d-4f3e-9ac6-9f0d64da17cc0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2I3Mjk4MDIxLWEzMWQtNGYzZS05YWM2LTlmMGQ2NGRhMTdjYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:56:47 GMT" + "Mon, 27 Mar 2017 18:04:20 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "a7d3373c-85d5-43db-8f25-3d9fa1e5fbbd" + "c98b2d4b-0a72-409f-9243-c375636a2d30" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14996" ], "x-ms-correlation-request-id": [ - "a80e2c90-f676-4ad6-a8c9-e3ccbf5c84ac" + "82e5d9db-74d8-4888-a191-e6e2dace7117" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225647Z:a80e2c90-f676-4ad6-a8c9-e3ccbf5c84ac" + "WESTUS2:20170327T180421Z:82e5d9db-74d8-4888-a191-e6e2dace7117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,23 +727,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2Fnonexistentfile001.txt?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGbm9uZXhpc3RlbnRmaWxlMDAxLnR4dD9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/%2Fnonexistentfile001.txt?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGbm9uZXhpc3RlbnRmaWxlMDAxLnR4dD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4f8db3f-9783-4157-9fb1-01a205ae69ab" + "84243c0f-f483-48a0-9e7c-a48ea5b31251" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /nonexistentfile001.txt [d1287c83-2bde-4962-9098-b8cab3a4fa0e][2016-11-10T14:56:50.0607406-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /nonexistentfile001.txt [c17da41f-b8b1-4ff9-abb4-915f3f00b725][2017-03-27T11:04:33.1324237-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "243" @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:56:49 GMT" + "Mon, 27 Mar 2017 18:04:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d1287c83-2bde-4962-9098-b8cab3a4fa0e" + "c17da41f-b8b1-4ff9-abb4-915f3f00b725" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -790,9 +783,9 @@ ], "Names": { ".ctor": [ - "datalakerg13549", - "testdatalake19601", - "testadlfs15987" + "datalakerg13039", + "testdatalake16981", + "testadlfs195" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemListFolderContents.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemListFolderContents.json index dcf4bfbbb120..f0d18c3fed98 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemListFolderContents.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemListFolderContents.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68684b8c-4cb0-419c-8496-4dd60e22b834" + "de8992f4-100d-44b2-9ec0-270b30e3c86e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:53 GMT" + "Mon, 27 Mar 2017 18:19:51 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1192" ], "x-ms-request-id": [ - "eda56cad-3dc0-48c5-a585-189d3f30477e" + "e3ba586f-1571-4c66-86b0-ec807325f5c7" ], "x-ms-correlation-request-id": [ - "eda56cad-3dc0-48c5-a585-189d3f30477e" + "e3ba586f-1571-4c66-86b0-ec807325f5c7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225854Z:eda56cad-3dc0-48c5-a585-189d3f30477e" + "WESTUS2:20170327T181951Z:e3ba586f-1571-4c66-86b0-ec807325f5c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86528df9-59af-40f2-b11b-4028c538d07c" + "10449b83-9dc1-46ab-ade2-652cc60c75e6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:53 GMT" + "Mon, 27 Mar 2017 18:19:51 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14984" ], "x-ms-request-id": [ - "98212652-e91e-4c0d-9f8d-05b8466ba111" + "9c3af2de-ac21-4c0d-945e-4780672bfd6e" ], "x-ms-correlation-request-id": [ - "98212652-e91e-4c0d-9f8d-05b8466ba111" + "9c3af2de-ac21-4c0d-945e-4780672bfd6e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225854Z:98212652-e91e-4c0d-9f8d-05b8466ba111" + "WESTUS2:20170327T181951Z:9c3af2de-ac21-4c0d-945e-4780672bfd6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e453b6a-a445-45fe-9e0a-678f5aff8759" + "fb43824b-cdb6-499f-b492-deda48bc817c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:54 GMT" + "Mon, 27 Mar 2017 18:19:52 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1191" ], "x-ms-request-id": [ - "b5b7c0a0-1def-478c-bdcc-a38f8ae6cd4b" + "48e9715b-0d14-4233-b9f7-399e6da46077" ], "x-ms-correlation-request-id": [ - "b5b7c0a0-1def-478c-bdcc-a38f8ae6cd4b" + "48e9715b-0d14-4233-b9f7-399e6da46077" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225854Z:b5b7c0a0-1def-478c-bdcc-a38f8ae6cd4b" + "WESTUS2:20170327T181952Z:48e9715b-0d14-4233-b9f7-399e6da46077" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a05d374e-ba08-4c0c-ba88-1728fa3e6e72" + "87a01d51-d760-417f-b9a4-eb25a23c4b21" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:54 GMT" + "Mon, 27 Mar 2017 18:19:52 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14983" ], "x-ms-request-id": [ - "91720ea6-91ba-41ef-92fe-cb6986817608" + "c4da9f21-0002-4194-a152-8d4096acf7b1" ], "x-ms-correlation-request-id": [ - "91720ea6-91ba-41ef-92fe-cb6986817608" + "c4da9f21-0002-4194-a152-8d4096acf7b1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225854Z:91720ea6-91ba-41ef-92fe-cb6986817608" + "WESTUS2:20170327T181952Z:c4da9f21-0002-4194-a152-8d4096acf7b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14309?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDMwOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13977?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzk3Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6de67984-66e3-48ca-96c9-37ffe393528c" + "eda35e3b-0fba-413d-b609-08759751af1c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14309' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13977' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:54 GMT" + "Mon, 27 Mar 2017 18:19:52 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14982" ], "x-ms-request-id": [ - "578e2303-55b8-44a6-b033-051f50c6dd68" + "848b2fc3-4a76-4489-9559-cceff319f0db" ], "x-ms-correlation-request-id": [ - "578e2303-55b8-44a6-b033-051f50c6dd68" + "848b2fc3-4a76-4489-9559-cceff319f0db" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225855Z:578e2303-55b8-44a6-b033-051f50c6dd68" + "WESTUS2:20170327T181952Z:848b2fc3-4a76-4489-9559-cceff319f0db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14309?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDMwOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13977?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzk3Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd241fbd-a9b5-4ca4-9340-da3675140f6a" + "eaedca70-3427-43ac-8f69-db4d0ee52e86" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309\",\r\n \"name\": \"datalakerg14309\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977\",\r\n \"name\": \"datalakerg13977\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:54 GMT" + "Mon, 27 Mar 2017 18:19:53 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14981" ], "x-ms-request-id": [ - "3099e69e-9a28-407b-a74b-485cd710da06" + "b94cc817-0a63-4d87-9bef-11889be31b06" ], "x-ms-correlation-request-id": [ - "3099e69e-9a28-407b-a74b-485cd710da06" + "b94cc817-0a63-4d87-9bef-11889be31b06" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225855Z:3099e69e-9a28-407b-a74b-485cd710da06" + "WESTUS2:20170327T181954Z:b94cc817-0a63-4d87-9bef-11889be31b06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14309?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDMwOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13977?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzk3Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "628d3538-75af-4140-ab00-8815b91aa92f" + "4ea2983c-b920-412e-91ac-48e9a5b6912a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309\",\r\n \"name\": \"datalakerg14309\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977\",\r\n \"name\": \"datalakerg13977\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:54 GMT" + "Mon, 27 Mar 2017 18:19:53 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1190" ], "x-ms-request-id": [ - "ec4b2220-cc71-4e14-8357-49de7f9acc55" + "a4b25918-8966-450d-8755-fc6f2c785416" ], "x-ms-correlation-request-id": [ - "ec4b2220-cc71-4e14-8357-49de7f9acc55" + "a4b25918-8966-450d-8755-fc6f2c785416" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225855Z:ec4b2220-cc71-4e14-8357-49de7f9acc55" + "WESTUS2:20170327T181954Z:a4b25918-8966-450d-8755-fc6f2c785416" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg1NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzk3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44fc7e84-ece5-4595-849e-2a4f8e2dac20" + "b0e35700-68c1-49ab-89ca-3300822c0102" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18564' under resource group 'datalakerg14309' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11493' under resource group 'datalakerg13977' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:58:55 GMT" + "Mon, 27 Mar 2017 18:19:53 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "ed9f3463-4401-4adb-ba65-cc56949ef415" + "ec46a009-ddb0-49eb-a2d0-3bc159e696af" ], "x-ms-correlation-request-id": [ - "ed9f3463-4401-4adb-ba65-cc56949ef415" + "ec46a009-ddb0-49eb-a2d0-3bc159e696af" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225855Z:ed9f3463-4401-4adb-ba65-cc56949ef415" + "WESTUS2:20170327T181954Z:ec46a009-ddb0-49eb-a2d0-3bc159e696af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg1NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzk3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18564.azuredatalakestore.net\",\r\n \"accountId\": \"624469d2-37f0-4406-be56-488f32f9edaf\",\r\n \"creationTime\": \"2016-11-10T22:59:01.143642Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:59:01.143642Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564\",\r\n \"name\": \"testadlfs18564\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11493.azuredatalakestore.net\",\r\n \"accountId\": \"ab438df2-c03e-4fab-b265-a1e8a8b26525\",\r\n \"creationTime\": \"2017-03-27T18:19:56.2741945Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:19:56.2741945Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493\",\r\n \"name\": \"testadlfs11493\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:59:27 GMT" + "Mon, 27 Mar 2017 18:20:27 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e20303b8-28ee-4518-bae4-0faf9c6c5a43" + "6b6cfc3c-42bf-4035-90de-e24ae19b95cd" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-correlation-request-id": [ - "8f4c608c-46a9-453c-b4c1-25d430814cf7" + "d1054569-d5ba-49a0-87f9-06411c3bfe27" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225927Z:8f4c608c-46a9-453c-b4c1-25d430814cf7" + "WESTUS2:20170327T182027Z:d1054569-d5ba-49a0-87f9-06411c3bfe27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg1NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzk3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd7684d4-1790-4704-9be2-42fbd5fe4d6c" + "e2260e7b-48e9-452c-a5e6-a4e33bbbe94d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18564.azuredatalakestore.net\",\r\n \"accountId\": \"624469d2-37f0-4406-be56-488f32f9edaf\",\r\n \"creationTime\": \"2016-11-10T22:59:01.143642Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:59:01.143642Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564\",\r\n \"name\": \"testadlfs18564\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11493.azuredatalakestore.net\",\r\n \"accountId\": \"ab438df2-c03e-4fab-b265-a1e8a8b26525\",\r\n \"creationTime\": \"2017-03-27T18:19:56.2741945Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:19:56.2741945Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493\",\r\n \"name\": \"testadlfs11493\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:59:27 GMT" + "Mon, 27 Mar 2017 18:20:28 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "26c290f2-7b73-42d4-9f10-260cb10e96ac" + "4cd034d5-7f29-4d84-bdd7-27d34551968e" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14986" ], "x-ms-correlation-request-id": [ - "d73b51dd-6acd-4c49-853c-817133e47d94" + "550e47d5-4b96-4bb6-bc87-cfa559d2bbe9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225928Z:d73b51dd-6acd-4c49-853c-817133e47d94" + "WESTUS2:20170327T182028Z:550e47d5-4b96-4bb6-bc87-cfa559d2bbe9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDMwOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg1NjQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzk3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE0OTM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "944bfa62-c74c-4daa-979a-f9d316c601f7" + "f10e16f2-b561-4980-b5dd-c05b146100c0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"624469d2-37f0-4406-be56-488f32f9edaf\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564\",\r\n \"name\": \"testadlfs18564\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"ab438df2-c03e-4fab-b265-a1e8a8b26525\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493\",\r\n \"name\": \"testadlfs11493\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:58:56 GMT" + "Mon, 27 Mar 2017 18:19:56 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14309/providers/Microsoft.DataLakeStore/accounts/testadlfs18564/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13977/providers/Microsoft.DataLakeStore/accounts/testadlfs11493/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/624469d2-37f0-4406-be56-488f32f9edaf0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ab438df2-c03e-4fab-b265-a1e8a8b265250?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "2e96346c-8e67-41a3-9f71-5ce9962cf233" + "7a45915d-56eb-497d-a036-caeb0b68eab2" ], "X-Content-Type-Options": [ "nosniff" @@ -657,10 +652,10 @@ "1191" ], "x-ms-correlation-request-id": [ - "eca36dda-3e00-4a88-afe2-346f6510248b" + "10b245db-82a6-4ce0-ad17-43149b8f22e8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225856Z:eca36dda-3e00-4a88-afe2-346f6510248b" + "WESTUS2:20170327T181956Z:10b245db-82a6-4ce0-ad17-43149b8f22e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/624469d2-37f0-4406-be56-488f32f9edaf0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzYyNDQ2OWQyLTM3ZjAtNDQwNi1iZTU2LTQ4OGYzMmY5ZWRhZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ab438df2-c03e-4fab-b265-a1e8a8b265250?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2FiNDM4ZGYyLWMwM2UtNGZhYi1iMjY1LWExZThhOGIyNjUyNTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:59:26 GMT" + "Mon, 27 Mar 2017 18:20:26 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0625a52d-e52e-4e59-ac47-9100e4f0faaa" + "73847811-2a4a-43db-a0fb-15e5fbdaaeaa" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14986" ], "x-ms-correlation-request-id": [ - "50b7ac23-b573-46c0-8c80-a1894ca8ec19" + "57bd457b-c6b1-4387-82d4-cb333d807a3e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225927Z:50b7ac23-b573-46c0-8c80-a1894ca8ec19" + "WESTUS2:20170327T182027Z:57bd457b-c6b1-4387-82d4-cb333d807a3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,20 +727,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder016477?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ3Nz9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01224?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0P29wPU1LRElSUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70a4b138-5df4-425a-9c87-bc8a7ffcc437" + "d11d23ad-a478-451a-88b4-d6acff919e8d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:59:29 GMT" + "Mon, 27 Mar 2017 18:20:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3af9fbe4-129a-4fb4-b1d7-b092ae301d3a" + "6febafd9-58ca-4920-b293-f470c27851fb" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -788,26 +781,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder016477?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ3Nz9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01224?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21475d41-1837-418a-b07d-22635e31f7b4" + "22d2204b-e1d8-4671-ac4f-f73d11d898ba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1478818769807,\r\n \"modificationTime\": 1478818769807,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1490638831855,\r\n \"modificationTime\": 1490638831855,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "265" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,16 +811,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:59:29 GMT" + "Mon, 27 Mar 2017 18:20:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "6ab8f39e-7103-4d94-8cc9-b84ba92e7716" + "5bbfe3bc-e43f-48c6-b178-88fbb3880711" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -843,8 +835,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder016477%2FSDKTestFile01.txt3565?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ3NyUyRlNES1Rlc3RGaWxlMDEudHh0MzU2NT9zeW5jRmxhZz1EQVRBJm9wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01224%2FSDKTestFile01.txt3953?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0JTJGU0RLVGVzdEZpbGUwMS50eHQzOTUzP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -855,14 +847,13 @@ "0" ], "x-ms-client-request-id": [ - "ae5e6586-6ccc-4935-96de-97cc84bb33bf" + "efaf02fb-92b8-4bce-9161-477cc828f151" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -877,22 +868,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:59:29 GMT" + "Mon, 27 Mar 2017 18:20:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs18564.azuredatalakestore.net/webhdfs/v1/SDKTestFolder016477/SDKTestFile01.txt3565?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11493.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01224/SDKTestFile01.txt3953?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "858c24ef-e598-4a0f-b9f1-67a5a1aa9fc9" + "0e9a95f9-e553-4adb-90c7-cc45cb779b5a" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -907,26 +898,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder016477%2FSDKTestFile01.txt3565?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ3NyUyRlNES1Rlc3RGaWxlMDEudHh0MzU2NT9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01224%2FSDKTestFile01.txt3953?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0JTJGU0RLVGVzdEZpbGUwMS50eHQzOTUzP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "317bcbb8-6211-4209-9bb5-dc913c53d8d2" + "78ad57ba-019f-4000-b4bb-24d7d3524a01" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818770019,\r\n \"modificationTime\": 1478818770019,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638832067,\r\n \"modificationTime\": 1490638832067,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -938,16 +928,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:59:29 GMT" + "Mon, 27 Mar 2017 18:20:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "27531489-628c-474b-97d7-f9a421a3657b" + "8901098d-3268-43dd-be94-7a6bd0479cf1" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -962,26 +952,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder016477?op=MSLISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNjQ3Nz9vcD1NU0xJU1RTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01224?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjI0P29wPUxJU1RTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2e7e7a7-b2f5-4d56-8686-04772ce81e23" + "29abe11c-4586-4504-b261-5bd7d25bed98" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 0,\r\n \"pathSuffix\": \"SDKTestFile01.txt3565\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818770019,\r\n \"modificationTime\": 1478818770019,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 0,\r\n \"pathSuffix\": \"SDKTestFile01.txt3953\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638832067,\r\n \"modificationTime\": 1490638832067,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "327" + "344" ], "Content-Type": [ "application/json; charset=utf-8" @@ -993,16 +982,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:59:30 GMT" + "Mon, 27 Mar 2017 18:20:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7e84f061-407b-4581-9636-f9531a52405e" + "baf25232-830a-4e04-99f3-9c633c36ed8e" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1019,15 +1008,15 @@ ], "Names": { ".ctor": [ - "datalakerg14309", - "testdatalake15597", - "testadlfs18564" + "datalakerg13977", + "testdatalake18226", + "testadlfs11493" ], "CreateFolder": [ - "SDKTestFolder016477" + "SDKTestFolder01224" ], "CreateFile": [ - "SDKTestFolder016477/SDKTestFile01.txt3565" + "SDKTestFolder01224/SDKTestFile01.txt3953" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMoveFileAndFolder.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMoveFileAndFolder.json index 6f7ce75886a4..2cc18c46b568 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMoveFileAndFolder.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMoveFileAndFolder.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99cc605a-f6ac-41bd-b89b-21c10d7b70e3" + "c64b51cf-1854-4c76-963f-b4a4300447a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:36 GMT" + "Mon, 27 Mar 2017 18:23:36 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "dbb62554-a962-4bb9-a34a-703f44f6865e" + "e88753a3-f406-46ab-9d51-70aadcc34055" ], "x-ms-correlation-request-id": [ - "dbb62554-a962-4bb9-a34a-703f44f6865e" + "e88753a3-f406-46ab-9d51-70aadcc34055" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230136Z:dbb62554-a962-4bb9-a34a-703f44f6865e" + "CENTRALUS:20170327T182337Z:e88753a3-f406-46ab-9d51-70aadcc34055" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba9b5c77-aa0c-48a9-9bce-82f27bcd5c59" + "2040b3c0-61b2-47d4-9c18-9b5d2d670cfb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:36 GMT" + "Mon, 27 Mar 2017 18:23:37 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14997" ], "x-ms-request-id": [ - "d6c97ce2-ee07-4938-94e2-0dace077da4d" + "1f46b788-05d8-42a1-94a8-5e3a4a1f76e8" ], "x-ms-correlation-request-id": [ - "d6c97ce2-ee07-4938-94e2-0dace077da4d" + "1f46b788-05d8-42a1-94a8-5e3a4a1f76e8" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230136Z:d6c97ce2-ee07-4938-94e2-0dace077da4d" + "CENTRALUS:20170327T182337Z:1f46b788-05d8-42a1-94a8-5e3a4a1f76e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0300c84-0883-4e66-8fb0-97b70794e08f" + "1c14348f-a40e-4f4e-a559-b11854832880" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:37 GMT" + "Mon, 27 Mar 2017 18:23:37 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "e6730cc4-9378-4522-ae23-7e54e157926c" + "7c310980-3b92-4c62-89c5-27e49f5c4fa4" ], "x-ms-correlation-request-id": [ - "e6730cc4-9378-4522-ae23-7e54e157926c" + "7c310980-3b92-4c62-89c5-27e49f5c4fa4" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230137Z:e6730cc4-9378-4522-ae23-7e54e157926c" + "CENTRALUS:20170327T182337Z:7c310980-3b92-4c62-89c5-27e49f5c4fa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec328be5-2f66-4b9b-8b9d-52a1b88ca2ee" + "b4ee1251-d16c-44e4-a736-80f421987839" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:37 GMT" + "Mon, 27 Mar 2017 18:23:37 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14996" ], "x-ms-request-id": [ - "78efcc4f-9919-480a-940f-df40de5eabc5" + "65afcdef-eb55-4138-9ec0-59c79e1ffca2" ], "x-ms-correlation-request-id": [ - "78efcc4f-9919-480a-940f-df40de5eabc5" + "65afcdef-eb55-4138-9ec0-59c79e1ffca2" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230137Z:78efcc4f-9919-480a-940f-df40de5eabc5" + "CENTRALUS:20170327T182337Z:65afcdef-eb55-4138-9ec0-59c79e1ffca2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14066?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDA2Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12776?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjc3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bda42542-25dd-441b-aa09-dda4409f120c" + "158fece0-5a68-49e3-9b75-9d7eb32d6e2e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg14066' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg12776' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:37 GMT" + "Mon, 27 Mar 2017 18:23:37 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14995" ], "x-ms-request-id": [ - "f37e5e85-5346-417a-9ca0-a75ff58e5600" + "07488bb6-867c-4706-b507-70790b43a740" ], "x-ms-correlation-request-id": [ - "f37e5e85-5346-417a-9ca0-a75ff58e5600" + "07488bb6-867c-4706-b507-70790b43a740" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230137Z:f37e5e85-5346-417a-9ca0-a75ff58e5600" + "CENTRALUS:20170327T182337Z:07488bb6-867c-4706-b507-70790b43a740" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14066?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDA2Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12776?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjc3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece738fa-1c1c-4907-8523-3bd2c805933d" + "b0d1d267-d336-433e-893c-2c7e13623e27" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066\",\r\n \"name\": \"datalakerg14066\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776\",\r\n \"name\": \"datalakerg12776\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:39 GMT" + "Mon, 27 Mar 2017 18:23:38 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14994" ], "x-ms-request-id": [ - "ce4a761f-a0d4-4cfc-945f-08fb97c6f02a" + "a17fa7a8-eea1-4c6b-884d-8ab2dae10974" ], "x-ms-correlation-request-id": [ - "ce4a761f-a0d4-4cfc-945f-08fb97c6f02a" + "a17fa7a8-eea1-4c6b-884d-8ab2dae10974" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230140Z:ce4a761f-a0d4-4cfc-945f-08fb97c6f02a" + "CENTRALUS:20170327T182338Z:a17fa7a8-eea1-4c6b-884d-8ab2dae10974" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14066?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDA2Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12776?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMjc3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "2702ff84-3d2f-4520-aa18-9c85701a7597" + "2401fd00-583a-4446-beae-f3175d3068b3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066\",\r\n \"name\": \"datalakerg14066\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776\",\r\n \"name\": \"datalakerg12776\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:39 GMT" + "Mon, 27 Mar 2017 18:23:38 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-request-id": [ - "34d55c28-64a0-448a-bb4a-cc93263e796e" + "ba97c063-739f-4759-a772-a563c507d81e" ], "x-ms-correlation-request-id": [ - "34d55c28-64a0-448a-bb4a-cc93263e796e" + "ba97c063-739f-4759-a772-a563c507d81e" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230140Z:34d55c28-64a0-448a-bb4a-cc93263e796e" + "CENTRALUS:20170327T182338Z:ba97c063-739f-4759-a772-a563c507d81e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDA2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjc3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1441ba79-77f0-40f7-9738-d04402d1d04d" + "5264d2fa-e92e-47fa-8cb3-443172a32bca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1158' under resource group 'datalakerg14066' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11929' under resource group 'datalakerg12776' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:01:40 GMT" + "Mon, 27 Mar 2017 18:23:41 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "c2784051-5964-4054-bc36-20240df8eef6" + "a8e49a6a-81e1-486c-9e67-bdb57ade6d2f" ], "x-ms-correlation-request-id": [ - "c2784051-5964-4054-bc36-20240df8eef6" + "a8e49a6a-81e1-486c-9e67-bdb57ade6d2f" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230140Z:c2784051-5964-4054-bc36-20240df8eef6" + "CENTRALUS:20170327T182342Z:a8e49a6a-81e1-486c-9e67-bdb57ade6d2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDA2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjc3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1158.azuredatalakestore.net\",\r\n \"accountId\": \"f0318f0e-a9d2-43d1-bff7-7b9c75ff1bfa\",\r\n \"creationTime\": \"2016-11-10T23:01:58.3400492Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:01:58.3400492Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158\",\r\n \"name\": \"testadlfs1158\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11929.azuredatalakestore.net\",\r\n \"accountId\": \"fcf95b9b-8c2d-4553-9c1c-677dd4379f09\",\r\n \"creationTime\": \"2017-03-27T18:23:43.8508058Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:23:43.8508058Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929\",\r\n \"name\": \"testadlfs11929\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:02:13 GMT" + "Mon, 27 Mar 2017 18:24:13 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d6b952f3-462b-4c99-b28c-080ecb7215d4" + "9e19e39d-0059-423e-8535-fd9bd7dc12c2" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14992" ], "x-ms-correlation-request-id": [ - "1293c374-ae0f-4562-b4b0-1642a3155055" + "49b77f36-3f01-4027-a84d-ad1016c8d817" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230214Z:1293c374-ae0f-4562-b4b0-1642a3155055" + "CENTRALUS:20170327T182414Z:49b77f36-3f01-4027-a84d-ad1016c8d817" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDA2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjc3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f96b73d-ef9c-4299-840c-182beee9d4df" + "fe467a72-69a8-400b-b3c5-77521f2659bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1158.azuredatalakestore.net\",\r\n \"accountId\": \"f0318f0e-a9d2-43d1-bff7-7b9c75ff1bfa\",\r\n \"creationTime\": \"2016-11-10T23:01:58.3400492Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:01:58.3400492Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158\",\r\n \"name\": \"testadlfs1158\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11929.azuredatalakestore.net\",\r\n \"accountId\": \"fcf95b9b-8c2d-4553-9c1c-677dd4379f09\",\r\n \"creationTime\": \"2017-03-27T18:23:43.8508058Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:23:43.8508058Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929\",\r\n \"name\": \"testadlfs11929\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:02:14 GMT" + "Mon, 27 Mar 2017 18:24:14 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bbab1491-a5e9-432e-ad0d-837547cba8d3" + "33d62345-61e8-485c-9e92-7af534386e59" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14997" ], "x-ms-correlation-request-id": [ - "d748577e-73d9-4e13-a0f8-bb0318850f13" + "ae8789c9-514a-4680-bf3c-42b6e1ea9bc6" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230214Z:d748577e-73d9-4e13-a0f8-bb0318850f13" + "CENTRALUS:20170327T182415Z:ae8789c9-514a-4680-bf3c-42b6e1ea9bc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDA2Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE1OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMjc3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTE5Mjk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "65140830-c8e2-4970-b052-be3890de6f5a" + "f86add8b-7167-456a-8dd9-29e936d83d70" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f0318f0e-a9d2-43d1-bff7-7b9c75ff1bfa\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158\",\r\n \"name\": \"testadlfs1158\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"fcf95b9b-8c2d-4553-9c1c-677dd4379f09\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929\",\r\n \"name\": \"testadlfs11929\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "418" + "420" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:01:42 GMT" + "Mon, 27 Mar 2017 18:23:42 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg14066/providers/Microsoft.DataLakeStore/accounts/testadlfs1158/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg12776/providers/Microsoft.DataLakeStore/accounts/testadlfs11929/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f0318f0e-a9d2-43d1-bff7-7b9c75ff1bfa0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fcf95b9b-8c2d-4553-9c1c-677dd4379f090?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "38904c79-229b-496a-91cf-7d3e2de0a9fc" + "3bd4efa4-5a14-4bdf-9002-528f060fe73b" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "0dbd621e-e69e-4244-a6aa-5390f848b19e" + "7ad014c1-4c4e-4308-81a7-a71fd426cead" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230142Z:0dbd621e-e69e-4244-a6aa-5390f848b19e" + "CENTRALUS:20170327T182343Z:7ad014c1-4c4e-4308-81a7-a71fd426cead" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f0318f0e-a9d2-43d1-bff7-7b9c75ff1bfa0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2YwMzE4ZjBlLWE5ZDItNDNkMS1iZmY3LTdiOWM3NWZmMWJmYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/fcf95b9b-8c2d-4553-9c1c-677dd4379f090?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2ZjZjk1YjliLThjMmQtNDU1My05YzFjLTY3N2RkNDM3OWYwOTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:02:12 GMT" + "Mon, 27 Mar 2017 18:24:13 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "8c84825f-c854-477c-8eac-bb154f5110a1" + "deaf721a-a9e6-49fc-be9b-73b89c4c6bf1" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "1b31763a-d1ae-4735-9ae0-1f9df88a82ee" + "a6b23a88-6282-4b90-aac0-d1c5b3a94ea8" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T230213Z:1b31763a-d1ae-4735-9ae0-1f9df88a82ee" + "CENTRALUS:20170327T182414Z:a6b23a88-6282-4b90-aac0-d1c5b3a94ea8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7750?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NzUwP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5451?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDUxP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "d1d8ce6a-860f-4c34-9e7e-b15afd30dc5a" + "dd2e06c2-c8ff-4d69-85e4-338037f5d750" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:16 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs1158.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7750?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs11929.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt5451?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "1e412e90-8f3e-4da0-bf19-e9a955c4e0d7" + "23a3bc03-5ccc-4e46-a9c0-9be883913aa2" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7750?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NzUwP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5451?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDUxP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71a52689-aa60-4239-bdcc-93a15f986c08" + "4c3fa349-d0e7-4389-8a5d-3bec068758c9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818936188,\r\n \"modificationTime\": 1478818936246,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490639064256,\r\n \"modificationTime\": 1490639064289,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:16 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a0f3253f-56fe-4104-8f21-6c89e8b12d72" + "b89e53c7-5e1c-4b13-887b-8415fc5f616f" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,23 +844,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7750?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NzUwP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5451?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDUxP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76f0c254-6478-4401-a756-c718b81eec17" + "b78d0fc5-c6cf-4f5f-80fd-7a0f350be91a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt7750 [11f75e31-538b-4bb5-848a-ff088271dd6d][2016-11-10T15:02:17.2021939-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt5451 [47b1166c-d30a-4ae7-bfc6-a5dc55400da0][2017-03-27T11:24:24.9754616-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:17 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "11f75e31-538b-4bb5-848a-ff088271dd6d" + "47b1166c-d30a-4ae7-bfc6-a5dc55400da0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -907,20 +898,19 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017430?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzQzMD9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder015003?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAwMz9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20447c92-5193-4967-b0ae-9be4416c55d3" + "af7ea475-0acd-4802-845c-949b2178b8be" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -938,16 +928,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:16 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "7c0b696e-60ee-481b-887f-38118c96af30" + "d21633ea-5239-4055-a656-ee9673bac414" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -962,20 +952,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7750?destination=SDKTestFolder017430%2FSDKTestMoveFile01.txt&op=RENAME&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NzUwP2Rlc3RpbmF0aW9uPVNES1Rlc3RGb2xkZXIwMTc0MzAlMkZTREtUZXN0TW92ZUZpbGUwMS50eHQmb3A9UkVOQU1FJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5451?destination=SDKTestFolder015003%2FSDKTestMoveFile01.txt&op=RENAME&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1NDUxP2Rlc3RpbmF0aW9uPVNES1Rlc3RGb2xkZXIwMTUwMDMlMkZTREtUZXN0TW92ZUZpbGUwMS50eHQmb3A9UkVOQU1FJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70543ee6-b714-4c08-aac1-381cab581b6d" + "7cd7b056-0b07-483f-a0b1-2b8136501cff" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -993,16 +982,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:16 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2815f751-09df-4f45-8865-5e74d45ff804" + "da43e98c-e77b-420f-aec5-2e6902418006" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1017,26 +1006,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017430%2FSDKTestMoveFile01.txt?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzQzMCUyRlNES1Rlc3RNb3ZlRmlsZTAxLnR4dD9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder015003%2FSDKTestMoveFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAwMyUyRlNES1Rlc3RNb3ZlRmlsZTAxLnR4dD9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "162b629a-a779-4492-9132-9fc4417dee89" + "c1beddf1-ac91-45d5-944b-ca285e2cbc8f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818936188,\r\n \"modificationTime\": 1478818936246,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490639064256,\r\n \"modificationTime\": 1490639064289,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1048,16 +1036,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:17 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "54ffd69e-10e5-44ec-94e9-f01e0c3647f8" + "1fb49a53-b0f5-4507-9c3b-3a294777dddf" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1072,20 +1060,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017430?destination=SDKTestMoveFolder016315&op=RENAME&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzQzMD9kZXN0aW5hdGlvbj1TREtUZXN0TW92ZUZvbGRlcjAxNjMxNSZvcD1SRU5BTUUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder015003?destination=SDKTestMoveFolder017643&op=RENAME&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAwMz9kZXN0aW5hdGlvbj1TREtUZXN0TW92ZUZvbGRlcjAxNzY0MyZvcD1SRU5BTUUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f2d5871-0cac-4bc4-8904-0f6463138a6d" + "3ade9e94-2599-4413-8662-aba4b949e886" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -1103,16 +1090,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:17 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b92c26fa-bcce-4ed5-9165-ea223857e70d" + "7b64a9a4-1978-4cd0-ab31-2c2f2807ddaf" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1127,26 +1114,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestMoveFolder016315?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdE1vdmVGb2xkZXIwMTYzMTU/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestMoveFolder017643?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdE1vdmVGb2xkZXIwMTc2NDM/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bc904ce-417f-41a0-ab83-5f64cc9a9d67" + "0201e07c-7621-428f-8f59-01cdc4b8a85f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1478818936904,\r\n \"modificationTime\": 1478818937017,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"DIRECTORY\",\r\n \"blockSize\": 0,\r\n \"accessTime\": 1490639064645,\r\n \"modificationTime\": 1490639064768,\r\n \"replication\": 0,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "265" + "280" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1158,16 +1144,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:17 GMT" + "Mon, 27 Mar 2017 18:24:24 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b5b5166b-14af-4051-aa36-e0b21f19f161" + "47e39021-63c0-44be-ab0a-6b9f814a400d" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1182,26 +1168,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestMoveFolder016315?op=MSLISTSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdE1vdmVGb2xkZXIwMTYzMTU/b3A9TVNMSVNUU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestMoveFolder017643?op=LISTSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdE1vdmVGb2xkZXIwMTc2NDM/b3A9TElTVFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cab858e-0d54-47ae-9e4d-bc90165197e7" + "bf2955ce-e92a-4094-aa26-99c33dfd2866" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestMoveFile01.txt\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818936188,\r\n \"modificationTime\": 1478818936246,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatuses\": {\r\n \"FileStatus\": [\r\n {\r\n \"length\": 42,\r\n \"pathSuffix\": \"SDKTestMoveFile01.txt\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490639064256,\r\n \"modificationTime\": 1490639064289,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "328" + "345" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1213,16 +1198,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:17 GMT" + "Mon, 27 Mar 2017 18:24:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a86795d0-f38d-45a8-ad56-f30cbafb09e8" + "2e640f4f-309a-42b8-8b34-1f90cd8ff864" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1237,23 +1222,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder017430?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNzQzMD9vcD1NU0dFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder015003?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxNTAwMz9vcD1HRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9eead8ea-753b-4a79-889c-d4d2c9460977" + "2949cc2d-fca7-4f4d-acf7-21779796509f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder017430 [8fbec3a0-c073-47df-89d0-479f97d1a568][2016-11-10T15:02:17.6240583-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder015003 [c9944d76-33ed-4fd2-a8cf-7c34dedcdbb7][2017-03-27T11:24:25.4754379-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "240" @@ -1268,16 +1252,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:02:17 GMT" + "Mon, 27 Mar 2017 18:24:25 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8fbec3a0-c073-47df-89d0-479f97d1a568" + "c9944d76-33ed-4fd2-a8cf-7c34dedcdbb7" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1294,18 +1278,18 @@ ], "Names": { ".ctor": [ - "datalakerg14066", - "testdatalake17602", - "testadlfs1158" + "datalakerg12776", + "testdatalake14538", + "testadlfs11929" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt7750" + "SDKTestFolder01/SDKTestFile01.txt5451" ], "CreateFolder": [ - "SDKTestFolder017430" + "SDKTestFolder015003" ], "DataLakeStoreFileSystemMoveFileAndFolder": [ - "SDKTestMoveFolder016315" + "SDKTestMoveFolder017643" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatDeleteDir.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatDeleteDir.json index 1b0d2bec52b6..b8557d4dfd50 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatDeleteDir.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatDeleteDir.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c051b36a-3d4a-42f9-9e74-6022fdec4ecc" + "112a35c4-6541-45ad-8409-49f04c9b5fc7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:58 GMT" + "Mon, 27 Mar 2017 18:06:32 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "220c3b1d-28d2-42c3-bdb6-ec616da991c9" + "c1bb9c50-bf2e-4974-be75-c1b659bfc2b1" ], "x-ms-correlation-request-id": [ - "220c3b1d-28d2-42c3-bdb6-ec616da991c9" + "c1bb9c50-bf2e-4974-be75-c1b659bfc2b1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223659Z:220c3b1d-28d2-42c3-bdb6-ec616da991c9" + "WESTUS2:20170327T180633Z:c1bb9c50-bf2e-4974-be75-c1b659bfc2b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3166770a-b795-4126-af69-b1d96848e00c" + "b46cf2cf-6dbd-4c9a-906d-e11674faf1ae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:58 GMT" + "Mon, 27 Mar 2017 18:06:32 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14994" ], "x-ms-request-id": [ - "ba4a5563-768a-4680-8bbc-722c2b3e0732" + "614ae20b-2032-4a23-b7a9-6e7bc9355981" ], "x-ms-correlation-request-id": [ - "ba4a5563-768a-4680-8bbc-722c2b3e0732" + "614ae20b-2032-4a23-b7a9-6e7bc9355981" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223659Z:ba4a5563-768a-4680-8bbc-722c2b3e0732" + "WESTUS2:20170327T180633Z:614ae20b-2032-4a23-b7a9-6e7bc9355981" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e898b799-efeb-4835-a3fe-2e84634f9570" + "827e8bf5-5a98-4dcd-9633-2891732a05e5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:59 GMT" + "Mon, 27 Mar 2017 18:06:32 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "ba042492-00f6-4661-bfdc-02eb54667e36" + "08d08cd0-d4ea-47a7-9fa4-b4a8cb864816" ], "x-ms-correlation-request-id": [ - "ba042492-00f6-4661-bfdc-02eb54667e36" + "08d08cd0-d4ea-47a7-9fa4-b4a8cb864816" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223700Z:ba042492-00f6-4661-bfdc-02eb54667e36" + "WESTUS2:20170327T180633Z:08d08cd0-d4ea-47a7-9fa4-b4a8cb864816" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "394ee7ef-1dfb-43f3-86c0-5c2aa7d7ce0f" + "7d4d7952-a2df-40ad-9592-60944f325a7a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:59 GMT" + "Mon, 27 Mar 2017 18:06:32 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14993" ], "x-ms-request-id": [ - "cd0e0f24-0af7-4a9e-803b-bb8173eae228" + "9df88a4c-a67c-4c14-8549-bff8c45e1bd5" ], "x-ms-correlation-request-id": [ - "cd0e0f24-0af7-4a9e-803b-bb8173eae228" + "9df88a4c-a67c-4c14-8549-bff8c45e1bd5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223700Z:cd0e0f24-0af7-4a9e-803b-bb8173eae228" + "WESTUS2:20170327T180633Z:9df88a4c-a67c-4c14-8549-bff8c45e1bd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18899?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODg5OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11679?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75626a6b-c082-4fc8-816b-4bb3c5e5a862" + "26d078bb-5126-47bd-b6c9-6ffb42040c66" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg18899' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11679' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:59 GMT" + "Mon, 27 Mar 2017 18:06:33 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14992" ], "x-ms-request-id": [ - "f27e02ae-9756-4943-9663-0ca231672947" + "8b72fe97-bbb3-4756-a110-efd2e335a413" ], "x-ms-correlation-request-id": [ - "f27e02ae-9756-4943-9663-0ca231672947" + "8b72fe97-bbb3-4756-a110-efd2e335a413" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223700Z:f27e02ae-9756-4943-9663-0ca231672947" + "WESTUS2:20170327T180633Z:8b72fe97-bbb3-4756-a110-efd2e335a413" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18899?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODg5OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11679?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1135432-c2aa-4a68-b618-3bef95b898e5" + "6a7d39ee-5887-497a-82da-721d328187a2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899\",\r\n \"name\": \"datalakerg18899\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679\",\r\n \"name\": \"datalakerg11679\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:59 GMT" + "Mon, 27 Mar 2017 18:06:34 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14991" ], "x-ms-request-id": [ - "318caa73-07ec-40db-abec-4749a1f8cdf2" + "1030a2a7-ee34-428e-a276-cdce2f65f651" ], "x-ms-correlation-request-id": [ - "318caa73-07ec-40db-abec-4749a1f8cdf2" + "1030a2a7-ee34-428e-a276-cdce2f65f651" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223700Z:318caa73-07ec-40db-abec-4749a1f8cdf2" + "WESTUS2:20170327T180634Z:1030a2a7-ee34-428e-a276-cdce2f65f651" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18899?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxODg5OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11679?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "26336ff0-6e1e-4e42-9981-e503ea0ccfbf" + "e223afde-1305-4685-adf9-bd342052f947" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899\",\r\n \"name\": \"datalakerg18899\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679\",\r\n \"name\": \"datalakerg11679\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:36:59 GMT" + "Mon, 27 Mar 2017 18:06:33 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "c0e81c34-5a4b-4242-b471-3376fbf82131" + "70a8ae0b-3f7f-4ebe-8b55-8ffba6d20923" ], "x-ms-correlation-request-id": [ - "c0e81c34-5a4b-4242-b471-3376fbf82131" + "70a8ae0b-3f7f-4ebe-8b55-8ffba6d20923" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223700Z:c0e81c34-5a4b-4242-b471-3376fbf82131" + "WESTUS2:20170327T180634Z:70a8ae0b-3f7f-4ebe-8b55-8ffba6d20923" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyNzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQwNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6af5c55-1114-4944-a5c5-9ee204e60163" + "54d5a8f7-5459-40ba-b4cf-381fb0e7e52c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18272' under resource group 'datalakerg18899' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs14042' under resource group 'datalakerg11679' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:37:00 GMT" + "Mon, 27 Mar 2017 18:06:35 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "f253497f-1bb2-425d-b610-163c325e576b" + "ccea031d-699a-4d13-95d1-22cfabc1404f" ], "x-ms-correlation-request-id": [ - "f253497f-1bb2-425d-b610-163c325e576b" + "ccea031d-699a-4d13-95d1-22cfabc1404f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223700Z:f253497f-1bb2-425d-b610-163c325e576b" + "WESTUS2:20170327T180635Z:ccea031d-699a-4d13-95d1-22cfabc1404f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyNzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQwNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18272.azuredatalakestore.net\",\r\n \"accountId\": \"3d9302ef-eeaf-4e88-8d70-8995eaa34b66\",\r\n \"creationTime\": \"2016-11-10T22:37:05.9538265Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:37:05.9538265Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272\",\r\n \"name\": \"testadlfs18272\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14042.azuredatalakestore.net\",\r\n \"accountId\": \"11637310-f861-4853-8274-457dac625adc\",\r\n \"creationTime\": \"2017-03-27T18:06:36.88723Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:06:36.88723Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042\",\r\n \"name\": \"testadlfs14042\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:37:32 GMT" + "Mon, 27 Mar 2017 18:07:07 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bb756421-75b3-46d2-ba5d-f9273ad0a0b7" + "dfdc8dd6-cc96-4a95-9535-bbd253ca5ef1" ], "X-Content-Type-Options": [ "nosniff" @@ -502,10 +499,10 @@ "14999" ], "x-ms-correlation-request-id": [ - "9aa27344-9122-4c84-8b61-bf03620266d6" + "1b079c49-887c-4e48-81b2-d15e8d385d9f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223732Z:9aa27344-9122-4c84-8b61-bf03620266d6" + "WESTUS2:20170327T180708Z:1b079c49-887c-4e48-81b2-d15e8d385d9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyNzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQwNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a6342da-a16f-4e02-bc53-71d722d80c4e" + "cd246778-f1c2-407f-9561-b1bc7350906f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18272.azuredatalakestore.net\",\r\n \"accountId\": \"3d9302ef-eeaf-4e88-8d70-8995eaa34b66\",\r\n \"creationTime\": \"2016-11-10T22:37:05.9538265Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:37:05.9538265Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272\",\r\n \"name\": \"testadlfs18272\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14042.azuredatalakestore.net\",\r\n \"accountId\": \"11637310-f861-4853-8274-457dac625adc\",\r\n \"creationTime\": \"2017-03-27T18:06:36.88723Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:06:36.88723Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042\",\r\n \"name\": \"testadlfs14042\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:37:32 GMT" + "Mon, 27 Mar 2017 18:07:08 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1dbf510c-b5cb-4a1c-952f-95896dad96a4" + "b5e25a5e-a5c0-4203-b0f1-386f02d68683" ], "X-Content-Type-Options": [ "nosniff" @@ -572,10 +568,10 @@ "14994" ], "x-ms-correlation-request-id": [ - "bb8fbb54-57a3-48c5-b7af-8b8d79e88373" + "df2df093-c5ce-43fa-8ff7-6cc1fa51e032" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223733Z:bb8fbb54-57a3-48c5-b7af-8b8d79e88373" + "WESTUS2:20170327T180708Z:df2df093-c5ce-43fa-8ff7-6cc1fa51e032" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxODg5OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTgyNzI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQwNDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "4311918f-be61-4559-ac06-83c0ee6c32cf" + "b1d8f0c6-19f9-4896-a645-42675c79e7f2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3d9302ef-eeaf-4e88-8d70-8995eaa34b66\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272\",\r\n \"name\": \"testadlfs18272\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"11637310-f861-4853-8274-457dac625adc\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042\",\r\n \"name\": \"testadlfs14042\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:37:01 GMT" + "Mon, 27 Mar 2017 18:06:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg18899/providers/Microsoft.DataLakeStore/accounts/testadlfs18272/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11679/providers/Microsoft.DataLakeStore/accounts/testadlfs14042/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3d9302ef-eeaf-4e88-8d70-8995eaa34b660?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/11637310-f861-4853-8274-457dac625adc0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "ebeefcc6-56a1-430e-ba8e-b1d3a7ebac53" + "216eca94-2cd4-4be9-850b-9d43456cdf36" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "3a210429-27dc-4fe9-872e-fc54599d746d" + "9eb1dd72-805e-47c6-94e2-69ee9a3bad91" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223701Z:3a210429-27dc-4fe9-872e-fc54599d746d" + "WESTUS2:20170327T180637Z:9eb1dd72-805e-47c6-94e2-69ee9a3bad91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3d9302ef-eeaf-4e88-8d70-8995eaa34b660?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNkOTMwMmVmLWVlYWYtNGU4OC04ZDcwLTg5OTVlYWEzNGI2NjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/11637310-f861-4853-8274-457dac625adc0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzExNjM3MzEwLWY4NjEtNDg1My04Mjc0LTQ1N2RhYzYyNWFkYzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:37:31 GMT" + "Mon, 27 Mar 2017 18:07:06 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "7db81dff-72b9-432d-8c24-91644c2b5c04" + "448aea7a-21d2-49c9-b758-6eb6d6fb27af" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "cd208fee-cdbd-410a-9c27-ffc05750382d" + "37cea37a-c990-47d6-92b0-d1b87b0a3f30" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223732Z:cd208fee-cdbd-410a-9c27-ffc05750382d" + "WESTUS2:20170327T180707Z:37cea37a-c990-47d6-92b0-d1b87b0a3f30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6286?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDYyODY/b3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6843?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDY4NDM/b3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "f7271c29-decd-4023-a69c-ef4c126586f0" + "3427b49c-8093-4c77-bad7-b2bfc4719560" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:39 GMT" + "Mon, 27 Mar 2017 18:07:11 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs18272.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6286?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs14042.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6843?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "56fc0e05-68b4-47a1-a484-db74c1ad190a" + "6c6b41ee-aef0-49f9-997b-8a45dacab91b" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6286?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDYyODY/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6843?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDY4NDM/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81311b92-8b00-47ff-8823-54367bbbcf4a" + "4db5dab1-710e-46fd-b9ca-a8b53e602645" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817458855,\r\n \"modificationTime\": 1478817458984,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638030882,\r\n \"modificationTime\": 1490638030931,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:39 GMT" + "Mon, 27 Mar 2017 18:07:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3b0c5462-e527-46ef-817e-c907c24d4692" + "5a9051b2-1d91-4f27-b097-5015b04c50c5" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,23 +844,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6286?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDYyODY/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt6843?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDY4NDM/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da2cbe57-7ce8-449c-ab3e-168b70c8cc34" + "495eb0f1-94e5-4b91-ad60-9b21163edb56" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6286 [90d044a2-0841-4eb1-9a9d-2fd8c66b49e2][2016-11-10T14:37:40.6018309-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6843 [556455d1-9671-4cd3-a66a-f606caae1891][2017-03-27T11:07:12.6059012-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "273" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:40 GMT" + "Mon, 27 Mar 2017 18:07:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "90d044a2-0841-4eb1-9a9d-2fd8c66b49e2" + "556455d1-9671-4cd3-a66a-f606caae1891" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -907,8 +898,8 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt7451?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDc0NTE/b3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt2462?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDI0NjI/b3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -919,14 +910,13 @@ "42" ], "x-ms-client-request-id": [ - "35656915-288c-47e7-91ec-c96189366e07" + "0911d6ae-8e48-4ed4-8657-d41c1cd5a77f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -941,22 +931,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:39 GMT" + "Mon, 27 Mar 2017 18:07:11 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs18272.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/msconcatFolder/SDKTestFile01.txt7451?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs14042.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/msconcatFolder/SDKTestFile01.txt2462?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "612a5640-fa2a-4dc5-ba25-209bf680c50a" + "61971e58-9fbb-482b-b98e-5e87f1695284" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -971,26 +961,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt7451?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDc0NTE/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt2462?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDI0NjI/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28c0fbed-e0ae-4616-ae0d-cc2a5270a0d6" + "9e2e509d-253e-4a7c-8454-2c1d3f8686bb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817459589,\r\n \"modificationTime\": 1478817459642,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638031382,\r\n \"modificationTime\": 1490638031473,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1002,16 +991,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:39 GMT" + "Mon, 27 Mar 2017 18:07:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "8181b1da-f80d-4111-b589-77fd5bc263b5" + "6d38dec3-1071-44ef-9b50-2ad21351cfe7" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1026,23 +1015,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt7451?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDc0NTE/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder%2FSDKTestFile01.txt2462?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXIlMkZTREtUZXN0RmlsZTAxLnR4dDI0NjI/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a283406-760c-4ae6-a86f-7fc725100efe" + "5bc28079-6d4d-475a-9278-da801341677e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder/SDKTestFile01.txt7451 [5e9ad7fa-6895-42aa-b3a0-b150a066bcd0][2016-11-10T14:37:40.7268102-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder/SDKTestFile01.txt2462 [b9e07c01-b8a9-4c58-a070-3ac14c28c080][2017-03-27T11:07:12.7465079-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "273" @@ -1057,16 +1045,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:40 GMT" + "Mon, 27 Mar 2017 18:07:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5e9ad7fa-6895-42aa-b3a0-b150a066bcd0" + "b9e07c01-b8a9-4c58-a070-3ac14c28c080" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1081,20 +1069,19 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder012806?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjgwNj9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder019066?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA2Nj9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61693a34-6e03-4588-a65f-cee598c1ad76" + "f16e3684-db6e-4536-83b7-5e4152f61b18" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -1112,16 +1099,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:39 GMT" + "Mon, 27 Mar 2017 18:07:11 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1187f88a-608e-4478-ab46-f42d8e573c3d" + "8a7e01e7-4a92-4cc5-b3a5-7e66c58bf2df" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1136,10 +1123,10 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder012806%2FSDKTestConcatFile01.txt?deleteSourceDirectory=true&op=MSCONCAT&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjgwNiUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P2RlbGV0ZVNvdXJjZURpcmVjdG9yeT10cnVlJm9wPU1TQ09OQ0FUJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder019066%2FSDKTestConcatFile01.txt?deleteSourceDirectory=true&op=MSCONCAT&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA2NiUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P2RlbGV0ZVNvdXJjZURpcmVjdG9yeT10cnVlJm9wPU1TQ09OQ0FUJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "sources=SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6286,SDKTestFolder01/msconcatFolder/SDKTestFile01.txt7451", + "RequestBody": "sources=SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6843,SDKTestFolder01/msconcatFolder/SDKTestFile01.txt2462", "RequestHeaders": { "Content-Type": [ "application/octet-stream" @@ -1148,14 +1135,13 @@ "113" ], "x-ms-client-request-id": [ - "ef11f59e-4a3d-4539-9809-ff5824642505" + "64d2a9ba-b695-4ae9-9c9d-f73b62d72968" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1170,16 +1156,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:40 GMT" + "Mon, 27 Mar 2017 18:07:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0f3c9cf3-6b30-48fe-beb7-21f082bae27e" + "b5e15fa8-9386-4f32-b9db-3e152d77f758" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1194,26 +1180,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder012806%2FSDKTestConcatFile01.txt?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMjgwNiUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder019066%2FSDKTestConcatFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxOTA2NiUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb834ca1-6970-47b1-a19b-07802a2d376a" + "68d6d5ab-5923-4fe2-9d91-166c9d896f71" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817460320,\r\n \"modificationTime\": 1478817460351,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638032303,\r\n \"modificationTime\": 1490638032335,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1225,16 +1210,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:40 GMT" + "Mon, 27 Mar 2017 18:07:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cd10463a-5155-4f79-a22d-458414ee4612" + "5b362a5b-cc55-42f5-9596-5e14c4a1f850" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1249,23 +1234,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXI/b3A9TVNHRVRGSUxFU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FmsconcatFolder?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGbXNjb25jYXRGb2xkZXI/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9ccab2d-e5ff-49f6-aadb-3be579669be9" + "c5af4b01-34f7-4c59-8c56-b357f0007e12" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder [23caee9f-084b-425b-98cc-57287c261134][2016-11-10T14:37:40.8518430-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/msconcatFolder [1a2e882a-53c7-403d-b430-dd7c91464850][2017-03-27T11:07:12.8715311-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "251" @@ -1280,16 +1264,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:37:40 GMT" + "Mon, 27 Mar 2017 18:07:12 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "23caee9f-084b-425b-98cc-57287c261134" + "1a2e882a-53c7-403d-b430-dd7c91464850" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1306,16 +1290,16 @@ ], "Names": { ".ctor": [ - "datalakerg18899", - "testdatalake15495", - "testadlfs18272" + "datalakerg11679", + "testdatalake15445", + "testadlfs14042" ], "CreateFile": [ - "SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6286", - "SDKTestFolder01/msconcatFolder/SDKTestFile01.txt7451" + "SDKTestFolder01/msconcatFolder/SDKTestFile01.txt6843", + "SDKTestFolder01/msconcatFolder/SDKTestFile01.txt2462" ], "CreateFolder": [ - "SDKTestFolder012806" + "SDKTestFolder019066" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatenateFiles.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatenateFiles.json index 811ae57edf24..a1b94f6315e2 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatenateFiles.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemMsConcatenateFiles.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96236008-52b8-4184-8390-15923f4c0f77" + "29919c23-63e1-4bec-8ff0-2b472fc8593f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:02 GMT" + "Mon, 27 Mar 2017 18:43:14 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-request-id": [ - "c40d2486-1ecb-4c9b-89dc-d2597cde6281" + "aed14a85-8a7a-4de1-9101-915b2c906be4" ], "x-ms-correlation-request-id": [ - "c40d2486-1ecb-4c9b-89dc-d2597cde6281" + "aed14a85-8a7a-4de1-9101-915b2c906be4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230303Z:c40d2486-1ecb-4c9b-89dc-d2597cde6281" + "CENTRALUS:20170327T184314Z:aed14a85-8a7a-4de1-9101-915b2c906be4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2dff39a-ea63-4993-bdbc-02c74ec959d9" + "67116321-1338-4f64-8610-6620ff4cce42" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:02 GMT" + "Mon, 27 Mar 2017 18:43:14 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14990" ], "x-ms-request-id": [ - "39056e6f-3d41-4314-b3d5-9bd2aeda4aed" + "4f6f2902-c2b1-436f-a9eb-bcaa8d314a73" ], "x-ms-correlation-request-id": [ - "39056e6f-3d41-4314-b3d5-9bd2aeda4aed" + "4f6f2902-c2b1-436f-a9eb-bcaa8d314a73" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230303Z:39056e6f-3d41-4314-b3d5-9bd2aeda4aed" + "CENTRALUS:20170327T184315Z:4f6f2902-c2b1-436f-a9eb-bcaa8d314a73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2f1e012-c09f-4303-8525-7986101f634a" + "6e4b6bb8-37bc-46f8-b1ad-536fee441c47" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:04 GMT" + "Mon, 27 Mar 2017 18:43:14 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-request-id": [ - "46ac43ed-113b-430a-9e3b-3b2ad155edb7" + "bd2346ff-2e24-4454-bf66-23eb60318a90" ], "x-ms-correlation-request-id": [ - "46ac43ed-113b-430a-9e3b-3b2ad155edb7" + "bd2346ff-2e24-4454-bf66-23eb60318a90" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230304Z:46ac43ed-113b-430a-9e3b-3b2ad155edb7" + "CENTRALUS:20170327T184315Z:bd2346ff-2e24-4454-bf66-23eb60318a90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b98ba880-72e7-4ce1-b645-a9c88dcbb6da" + "e015b4e7-c044-4620-8a2f-762da456a535" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:04 GMT" + "Mon, 27 Mar 2017 18:43:15 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14989" ], "x-ms-request-id": [ - "a538e120-5d40-42a2-8354-309167aa3e75" + "88f1423e-7517-4a4f-92a4-09f64337e03c" ], "x-ms-correlation-request-id": [ - "a538e120-5d40-42a2-8354-309167aa3e75" + "88f1423e-7517-4a4f-92a4-09f64337e03c" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230304Z:a538e120-5d40-42a2-8354-309167aa3e75" + "CENTRALUS:20170327T184315Z:88f1423e-7517-4a4f-92a4-09f64337e03c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11771?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTc3MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13347?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzM0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7bc0f734-9fff-4298-bcb2-db6d747e846b" + "55843cbe-c272-40a9-8f11-5064836f28bc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11771' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13347' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:04 GMT" + "Mon, 27 Mar 2017 18:43:15 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14988" ], "x-ms-request-id": [ - "8923e0f5-705d-454a-a4af-ad339b5a3712" + "7f5cda58-d551-42ac-a944-962d4ccf1ae9" ], "x-ms-correlation-request-id": [ - "8923e0f5-705d-454a-a4af-ad339b5a3712" + "7f5cda58-d551-42ac-a944-962d4ccf1ae9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230304Z:8923e0f5-705d-454a-a4af-ad339b5a3712" + "CENTRALUS:20170327T184315Z:7f5cda58-d551-42ac-a944-962d4ccf1ae9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11771?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTc3MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13347?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzM0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f79a4371-b3d6-43de-a35f-39b3ea779df0" + "5c0646aa-4d8e-42b1-b2e3-8c0126017b5e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771\",\r\n \"name\": \"datalakerg11771\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347\",\r\n \"name\": \"datalakerg13347\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:05 GMT" + "Mon, 27 Mar 2017 18:43:16 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14987" ], "x-ms-request-id": [ - "306ada3b-1ee9-4364-846a-94a8fbc102d0" + "e9b3e7aa-2a07-437e-90a0-57d95887e13e" ], "x-ms-correlation-request-id": [ - "306ada3b-1ee9-4364-846a-94a8fbc102d0" + "e9b3e7aa-2a07-437e-90a0-57d95887e13e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230305Z:306ada3b-1ee9-4364-846a-94a8fbc102d0" + "CENTRALUS:20170327T184316Z:e9b3e7aa-2a07-437e-90a0-57d95887e13e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11771?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTc3MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13347?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzM0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "77532d45-d0be-4dc4-b422-465cb62a4a76" + "e1fce4af-d548-497a-ab92-4411864f0aa1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771\",\r\n \"name\": \"datalakerg11771\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347\",\r\n \"name\": \"datalakerg13347\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:05 GMT" + "Mon, 27 Mar 2017 18:43:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-request-id": [ - "c182b184-8961-4e6a-8848-fa358ec30cdc" + "ccfba5d1-3ba5-4926-8217-c2826d41fd9e" ], "x-ms-correlation-request-id": [ - "c182b184-8961-4e6a-8848-fa358ec30cdc" + "ccfba5d1-3ba5-4926-8217-c2826d41fd9e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230305Z:c182b184-8961-4e6a-8848-fa358ec30cdc" + "CENTRALUS:20170327T184316Z:ccfba5d1-3ba5-4926-8217-c2826d41fd9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTc3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY0NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1NDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33989578-131e-4f2e-aebf-f19116c284ed" + "5f6edd15-63f8-4447-9903-1bda948be666" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs16448' under resource group 'datalakerg11771' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs12542' under resource group 'datalakerg13347' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:03:05 GMT" + "Mon, 27 Mar 2017 18:43:17 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "fc1e6db4-3b29-4aaf-a602-a04d2b18816a" + "f87bdb0b-feb5-4faa-903e-75b4e9085d8b" ], "x-ms-correlation-request-id": [ - "fc1e6db4-3b29-4aaf-a602-a04d2b18816a" + "f87bdb0b-feb5-4faa-903e-75b4e9085d8b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230305Z:fc1e6db4-3b29-4aaf-a602-a04d2b18816a" + "CENTRALUS:20170327T184317Z:f87bdb0b-feb5-4faa-903e-75b4e9085d8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTc3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY0NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1NDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16448.azuredatalakestore.net\",\r\n \"accountId\": \"420bfacb-8731-4e7c-8d84-87addd9e5246\",\r\n \"creationTime\": \"2016-11-10T23:03:10.9511214Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:03:10.9511214Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448\",\r\n \"name\": \"testadlfs16448\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12542.azuredatalakestore.net\",\r\n \"accountId\": \"0caf8536-28ce-4b51-b2e6-ae66cd856474\",\r\n \"creationTime\": \"2017-03-27T18:43:19.6800697Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:43:19.6800697Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542\",\r\n \"name\": \"testadlfs12542\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:03:37 GMT" + "Mon, 27 Mar 2017 18:43:50 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "9a907584-a3e8-4e14-aa75-1c0e07575019" + "0de91aef-c1d9-439b-b098-0901c10ad51f" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "3c2db721-b036-46f6-b06f-b2f2a5cea16c" + "41f04180-6c89-4fec-88f7-ed0507e65f81" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230337Z:3c2db721-b036-46f6-b06f-b2f2a5cea16c" + "CENTRALUS:20170327T184350Z:41f04180-6c89-4fec-88f7-ed0507e65f81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTc3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY0NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1NDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0265006b-fda9-44d6-b40f-5f9caac80af9" + "33cdb3f6-d1e7-4b79-bebb-0b5e1c0f9de0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16448.azuredatalakestore.net\",\r\n \"accountId\": \"420bfacb-8731-4e7c-8d84-87addd9e5246\",\r\n \"creationTime\": \"2016-11-10T23:03:10.9511214Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:03:10.9511214Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448\",\r\n \"name\": \"testadlfs16448\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12542.azuredatalakestore.net\",\r\n \"accountId\": \"0caf8536-28ce-4b51-b2e6-ae66cd856474\",\r\n \"creationTime\": \"2017-03-27T18:43:19.6800697Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:43:19.6800697Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542\",\r\n \"name\": \"testadlfs12542\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:03:37 GMT" + "Mon, 27 Mar 2017 18:43:49 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "1910fb7e-f717-420d-b3c8-96e247ef5899" + "62850000-c821-4207-89a3-349a86e60c17" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14986" ], "x-ms-correlation-request-id": [ - "14b5bf76-edc8-4938-9752-896044170d9a" + "d1ad6000-3c83-412b-b3e9-db27f88e36d1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230338Z:14b5bf76-edc8-4938-9752-896044170d9a" + "CENTRALUS:20170327T184350Z:d1ad6000-3c83-412b-b3e9-db27f88e36d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTc3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY0NDg/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTI1NDI/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "87eee3c6-c60c-4ddf-a548-045c944d6501" + "61a47cc2-5496-4d69-90b6-c9f4165fab69" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"420bfacb-8731-4e7c-8d84-87addd9e5246\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448\",\r\n \"name\": \"testadlfs16448\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"0caf8536-28ce-4b51-b2e6-ae66cd856474\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542\",\r\n \"name\": \"testadlfs12542\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:03:06 GMT" + "Mon, 27 Mar 2017 18:43:18 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11771/providers/Microsoft.DataLakeStore/accounts/testadlfs16448/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13347/providers/Microsoft.DataLakeStore/accounts/testadlfs12542/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/420bfacb-8731-4e7c-8d84-87addd9e52460?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0caf8536-28ce-4b51-b2e6-ae66cd8564740?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "d73f370d-3a16-45c2-9874-d1c788febb46" + "3b7c6e66-3939-4d24-9914-a0f3aac7776c" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "28aef5bc-cf6c-4b05-a539-84922fadc05f" + "23617e19-d227-453f-b9c7-86bf0811accf" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230306Z:28aef5bc-cf6c-4b05-a539-84922fadc05f" + "CENTRALUS:20170327T184318Z:23617e19-d227-453f-b9c7-86bf0811accf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/420bfacb-8731-4e7c-8d84-87addd9e52460?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzQyMGJmYWNiLTg3MzEtNGU3Yy04ZDg0LTg3YWRkZDllNTI0NjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0caf8536-28ce-4b51-b2e6-ae66cd8564740?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzBjYWY4NTM2LTI4Y2UtNGI1MS1iMmU2LWFlNjZjZDg1NjQ3NDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:03:36 GMT" + "Mon, 27 Mar 2017 18:43:48 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "54992273-c871-412e-acdb-561c1f9aa43d" + "7591948a-504f-4515-ae6f-463f3d53beb5" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "03366113-6684-46e3-a4aa-2fd0219b31ca" + "f1b0c63a-1a73-46c4-88e1-95ec9f9162ae" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230337Z:03366113-6684-46e3-a4aa-2fd0219b31ca" + "CENTRALUS:20170327T184349Z:f1b0c63a-1a73-46c4-88e1-95ec9f9162ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8911?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4OTExP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9567?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5NTY3P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "d04c4141-279d-4399-bb55-d3f211302cf8" + "67631ebc-8a5c-488b-88bd-df6804696c8d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:40 GMT" + "Mon, 27 Mar 2017 18:43:56 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16448.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt8911?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12542.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt9567?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "2be798fa-49eb-4183-8ed7-621364fb1cb2" + "76bad24c-1102-4325-89b4-1ff2c518af13" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8911?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4OTExP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9567?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5NTY3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f53f5cc9-5392-4296-a8d6-6218028eb4cf" + "6e8191e5-aec0-4911-b981-7bd4c833f81a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478819020087,\r\n \"modificationTime\": 1478819020136,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490640236540,\r\n \"modificationTime\": 1490640236605,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:40 GMT" + "Mon, 27 Mar 2017 18:43:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "327f8469-abdc-495b-8fec-8628e5a44fae" + "5c8f6fb2-4024-45b8-8e32-5037f9c82aad" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,23 +844,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt8911?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ4OTExP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt9567?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ5NTY3P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3263af75-a33b-47c5-9e36-70a0b9580795" + "2793d516-2e13-4832-aede-fd6672cceba1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt8911 [3f4b2a55-9b1a-4225-b2a0-a02a410eb94b][2016-11-10T15:03:41.5519462-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt9567 [3400f4a5-36e9-49c9-b3bf-ee002f4745b6][2017-03-27T11:43:58.0896336-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:41 GMT" + "Mon, 27 Mar 2017 18:43:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3f4b2a55-9b1a-4225-b2a0-a02a410eb94b" + "3400f4a5-36e9-49c9-b3bf-ee002f4745b6" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -907,8 +898,8 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5219?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1MjE5P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2924?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyOTI0P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -919,14 +910,13 @@ "42" ], "x-ms-client-request-id": [ - "b529f37b-09fb-4290-96ea-d05020e974d9" + "4943f721-0a07-473b-9e39-372c88418292" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -941,22 +931,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:40 GMT" + "Mon, 27 Mar 2017 18:43:56 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16448.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt5219?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs12542.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt2924?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "56cadeb4-2442-4f4e-8d17-4b18b37eb80b" + "f27d6061-cd0f-4a99-8fe2-a3efd1228d6b" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -971,26 +961,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5219?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1MjE5P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2924?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyOTI0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81ea2db5-fd41-425c-84fb-c8d3c8026f0f" + "155dddb8-4a13-4663-8f99-1bdbdc1f4051" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478819020651,\r\n \"modificationTime\": 1478819020725,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490640237081,\r\n \"modificationTime\": 1490640237127,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1002,16 +991,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:40 GMT" + "Mon, 27 Mar 2017 18:43:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "47d1d22f-7cde-4d74-a62e-b30161f65ac3" + "038e9053-890b-402f-aa70-171e22154cfe" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1026,23 +1015,22 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt5219?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1MjE5P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt2924?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQyOTI0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab8d6b7a-e6fd-4d6a-b41b-2d83c1a95877" + "384091bb-53c2-4350-8020-eb1d6ff4de04" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt5219 [0dfe32be-5834-49fd-ab49-1edff0fde82c][2016-11-10T15:03:41.6769296-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /SDKTestFolder01/SDKTestFile01.txt2924 [1ab81c23-203b-447d-bc4d-4566c791ec0b][2017-03-27T11:43:58.4021607-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "258" @@ -1057,16 +1045,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:41 GMT" + "Mon, 27 Mar 2017 18:43:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0dfe32be-5834-49fd-ab49-1edff0fde82c" + "1ab81c23-203b-447d-bc4d-4566c791ec0b" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -1081,20 +1069,19 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder011108?op=MKDIRS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTEwOD9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder018274?op=MKDIRS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxODI3ND9vcD1NS0RJUlMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f6a5303-79b6-4f3c-a92e-4808672b9fc7" + "9faafb60-b59a-4042-b662-99613e24277d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"boolean\": true\r\n}", @@ -1112,16 +1099,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:40 GMT" + "Mon, 27 Mar 2017 18:43:56 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "149da19f-5e9c-49cc-89c2-49d213e56f16" + "00b353a8-a994-4e9b-8d1e-37174f214a9d" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1136,10 +1123,10 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder011108%2FSDKTestConcatFile01.txt?op=MSCONCAT&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTEwOCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPU1TQ09OQ0FUJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder018274%2FSDKTestConcatFile01.txt?op=MSCONCAT&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxODI3NCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPU1TQ09OQ0FUJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "POST", - "RequestBody": "sources=SDKTestFolder01/SDKTestFile01.txt8911,SDKTestFolder01/SDKTestFile01.txt5219", + "RequestBody": "sources=SDKTestFolder01/SDKTestFile01.txt9567,SDKTestFolder01/SDKTestFile01.txt2924", "RequestHeaders": { "Content-Type": [ "application/octet-stream" @@ -1148,14 +1135,13 @@ "83" ], "x-ms-client-request-id": [ - "114454ad-c17d-432e-89e0-719fc3bf0a7c" + "00f17fed-48ad-4ee7-b507-64cd9f68827c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1170,16 +1156,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:41 GMT" + "Mon, 27 Mar 2017 18:43:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4d5c955e-1446-43bc-850d-d6366fa3e98c" + "7afefe66-0217-4ae8-b367-2cf51be8ca74" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1194,26 +1180,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder011108%2FSDKTestConcatFile01.txt?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxMTEwOCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder018274%2FSDKTestConcatFile01.txt?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxODI3NCUyRlNES1Rlc3RDb25jYXRGaWxlMDEudHh0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fea1200-02ed-45f3-823c-090c62775013" + "40a7429a-4805-4162-8719-31bda07e27ef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478819021204,\r\n \"modificationTime\": 1478819021251,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 84,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490640237672,\r\n \"modificationTime\": 1490640237766,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1225,16 +1210,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:03:41 GMT" + "Mon, 27 Mar 2017 18:43:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4751d20a-980e-4dda-832a-f9d3ee63c33e" + "d9d41571-e784-486c-807a-165663fd81a1" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1251,16 +1236,16 @@ ], "Names": { ".ctor": [ - "datalakerg11771", - "testdatalake16943", - "testadlfs16448" + "datalakerg13347", + "testdatalake19165", + "testadlfs12542" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt8911", - "SDKTestFolder01/SDKTestFile01.txt5219" + "SDKTestFolder01/SDKTestFile01.txt9567", + "SDKTestFolder01/SDKTestFile01.txt2924" ], "CreateFolder": [ - "SDKTestFolder011108" + "SDKTestFolder018274" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeConcurrentAppend.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeConcurrentAppend.json index 81982ddc3902..49b94cb11457 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeConcurrentAppend.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeConcurrentAppend.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80336bd7-84c4-4f5f-bfa0-fe3856af0f6c" + "a35db849-bf03-4ef5-beb6-70d18c668794" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:14 GMT" + "Mon, 27 Mar 2017 18:14:33 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-request-id": [ - "24b8b4da-55e8-4dd6-9765-c3cc81dc570e" + "6c8e1c50-bf70-4cb1-b33e-fe386b35029a" ], "x-ms-correlation-request-id": [ - "24b8b4da-55e8-4dd6-9765-c3cc81dc570e" + "6c8e1c50-bf70-4cb1-b33e-fe386b35029a" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224414Z:24b8b4da-55e8-4dd6-9765-c3cc81dc570e" + "WESTUS2:20170327T181433Z:6c8e1c50-bf70-4cb1-b33e-fe386b35029a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a95d5252-af56-46b4-9944-83c18ad622e4" + "b615b0fd-ce30-431d-ba23-0bee232d3776" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:14 GMT" + "Mon, 27 Mar 2017 18:14:33 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-request-id": [ - "58487dee-889a-4b22-a42b-d52d46f8f705" + "f9c3b714-d1a4-4131-9287-e0e8b9ce9631" ], "x-ms-correlation-request-id": [ - "58487dee-889a-4b22-a42b-d52d46f8f705" + "f9c3b714-d1a4-4131-9287-e0e8b9ce9631" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224414Z:58487dee-889a-4b22-a42b-d52d46f8f705" + "WESTUS2:20170327T181433Z:f9c3b714-d1a4-4131-9287-e0e8b9ce9631" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "084f6e85-b4a8-44ad-bfce-b08880ecaafc" + "414d98da-b4c6-4693-aeaf-f6ca5977f0eb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:14 GMT" + "Mon, 27 Mar 2017 18:14:34 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-request-id": [ - "ff718a40-3916-4df3-8a45-2d870e34d3e2" + "609a42bb-f30d-426b-bc3c-6c696d265e24" ], "x-ms-correlation-request-id": [ - "ff718a40-3916-4df3-8a45-2d870e34d3e2" + "609a42bb-f30d-426b-bc3c-6c696d265e24" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224415Z:ff718a40-3916-4df3-8a45-2d870e34d3e2" + "WESTUS2:20170327T181434Z:609a42bb-f30d-426b-bc3c-6c696d265e24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "878d57c4-8377-4c22-a561-954f0f432603" + "5ce8bcde-5847-4c0d-abe9-2b8d597166a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:14 GMT" + "Mon, 27 Mar 2017 18:14:34 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14994" ], "x-ms-request-id": [ - "0af081ca-c510-40db-82ce-d869d21ebb4b" + "e447539a-105b-4183-b26a-126b073c6eb1" ], "x-ms-correlation-request-id": [ - "0af081ca-c510-40db-82ce-d869d21ebb4b" + "e447539a-105b-4183-b26a-126b073c6eb1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224415Z:0af081ca-c510-40db-82ce-d869d21ebb4b" + "WESTUS2:20170327T181434Z:e447539a-105b-4183-b26a-126b073c6eb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11376?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11847?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa5b6178-aaa4-444f-9051-8093fbf5f717" + "c4efb741-8c48-4273-927d-651c0a9485a6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11376' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11847' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:15 GMT" + "Mon, 27 Mar 2017 18:14:34 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14993" ], "x-ms-request-id": [ - "4f6b3f56-d062-45a7-92da-abf0edd046ee" + "fa279fe7-b275-464a-b67f-97a1a15c3812" ], "x-ms-correlation-request-id": [ - "4f6b3f56-d062-45a7-92da-abf0edd046ee" + "fa279fe7-b275-464a-b67f-97a1a15c3812" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224415Z:4f6b3f56-d062-45a7-92da-abf0edd046ee" + "WESTUS2:20170327T181434Z:fa279fe7-b275-464a-b67f-97a1a15c3812" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11376?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11847?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0af9c5b-312c-45e8-a817-6eed14ff4fb1" + "b92d8a53-9b9f-49e3-9d21-c12aaff93063" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376\",\r\n \"name\": \"datalakerg11376\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847\",\r\n \"name\": \"datalakerg11847\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:15 GMT" + "Mon, 27 Mar 2017 18:14:35 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14992" ], "x-ms-request-id": [ - "5116c1bd-6809-4b84-bada-3c8dea89b289" + "34d5cb65-3d31-4747-a538-70723e612ed7" ], "x-ms-correlation-request-id": [ - "5116c1bd-6809-4b84-bada-3c8dea89b289" + "34d5cb65-3d31-4747-a538-70723e612ed7" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224416Z:5116c1bd-6809-4b84-bada-3c8dea89b289" + "WESTUS2:20170327T181435Z:34d5cb65-3d31-4747-a538-70723e612ed7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11376?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM3Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11847?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg0Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "c1ca13e9-49d8-4950-8f0d-119af3708952" + "eb77bdc6-9c77-4728-a7ed-a4fd6f925f72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376\",\r\n \"name\": \"datalakerg11376\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847\",\r\n \"name\": \"datalakerg11847\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:15 GMT" + "Mon, 27 Mar 2017 18:14:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-request-id": [ - "32e68216-4ba3-4127-9aee-54f112f5a8c6" + "bbd3bae3-113f-4abd-870c-e67a6d2fcc60" ], "x-ms-correlation-request-id": [ - "32e68216-4ba3-4127-9aee-54f112f5a8c6" + "bbd3bae3-113f-4abd-870c-e67a6d2fcc60" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224415Z:32e68216-4ba3-4127-9aee-54f112f5a8c6" + "WESTUS2:20170327T181435Z:bbd3bae3-113f-4abd-870c-e67a6d2fcc60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg0NjY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "455823aa-4024-493a-9a3a-078e75b95a88" + "3ced6b00-bcd5-47a3-8673-26235b30f598" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs18466' under resource group 'datalakerg11376' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17884' under resource group 'datalakerg11847' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:44:15 GMT" + "Mon, 27 Mar 2017 18:14:35 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "ae68ec9b-4cf4-476d-8c91-af9d87ce0d76" + "cc8d1436-93fe-4e80-937c-e0ed10e3539e" ], "x-ms-correlation-request-id": [ - "ae68ec9b-4cf4-476d-8c91-af9d87ce0d76" + "cc8d1436-93fe-4e80-937c-e0ed10e3539e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224416Z:ae68ec9b-4cf4-476d-8c91-af9d87ce0d76" + "WESTUS2:20170327T181435Z:cc8d1436-93fe-4e80-937c-e0ed10e3539e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg0NjY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18466.azuredatalakestore.net\",\r\n \"accountId\": \"68399479-5875-4bc6-8e76-15cadf53f8f8\",\r\n \"creationTime\": \"2016-11-10T22:44:22.4435169Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:44:22.4435169Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466\",\r\n \"name\": \"testadlfs18466\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17884.azuredatalakestore.net\",\r\n \"accountId\": \"4a7bbe4b-1f09-4a55-85d2-93ce7ebae1bb\",\r\n \"creationTime\": \"2017-03-27T18:14:37.6941788Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:14:37.6941788Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884\",\r\n \"name\": \"testadlfs17884\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:44:47 GMT" + "Mon, 27 Mar 2017 18:15:08 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "e05f3921-f9e5-4a4d-b187-b225dd99a8a3" + "09dddc95-1951-4c07-a169-d3f54a6da1bb" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14990" ], "x-ms-correlation-request-id": [ - "96e53ced-fcfa-4e77-b583-ba9d7ebf55d7" + "d96de745-081a-43b5-ab2c-d295793731c5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224448Z:96e53ced-fcfa-4e77-b583-ba9d7ebf55d7" + "WESTUS2:20170327T181509Z:d96de745-081a-43b5-ab2c-d295793731c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg0NjY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be9cf221-326d-4e56-a587-b0ab4035e629" + "96a698c4-3ff3-434d-981f-cf1881d384b4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs18466.azuredatalakestore.net\",\r\n \"accountId\": \"68399479-5875-4bc6-8e76-15cadf53f8f8\",\r\n \"creationTime\": \"2016-11-10T22:44:22.4435169Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:44:22.4435169Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466\",\r\n \"name\": \"testadlfs18466\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17884.azuredatalakestore.net\",\r\n \"accountId\": \"4a7bbe4b-1f09-4a55-85d2-93ce7ebae1bb\",\r\n \"creationTime\": \"2017-03-27T18:14:37.6941788Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:14:37.6941788Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884\",\r\n \"name\": \"testadlfs17884\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:44:48 GMT" + "Mon, 27 Mar 2017 18:15:09 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "367d9961-ee0d-4d31-ba4f-5150b26cb610" + "a737e5fb-c43a-47bc-8cd0-ce44d0944ea1" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14988" ], "x-ms-correlation-request-id": [ - "331b08d7-f722-4520-bc01-f033f33fdc8c" + "d5512e8f-80da-4ade-a0cf-25d6f38dee3f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224448Z:331b08d7-f722-4520-bc01-f033f33fdc8c" + "WESTUS2:20170327T181509Z:d5512e8f-80da-4ade-a0cf-25d6f38dee3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTg0NjY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4ODQ/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "71b0014b-b082-4894-b899-354d81999c28" + "0ba62dd4-f531-4e35-b858-354250dfc1b8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"68399479-5875-4bc6-8e76-15cadf53f8f8\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466\",\r\n \"name\": \"testadlfs18466\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"4a7bbe4b-1f09-4a55-85d2-93ce7ebae1bb\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884\",\r\n \"name\": \"testadlfs17884\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:44:16 GMT" + "Mon, 27 Mar 2017 18:14:37 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11376/providers/Microsoft.DataLakeStore/accounts/testadlfs18466/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11847/providers/Microsoft.DataLakeStore/accounts/testadlfs17884/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/68399479-5875-4bc6-8e76-15cadf53f8f80?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4a7bbe4b-1f09-4a55-85d2-93ce7ebae1bb0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "80526cb7-75bb-4e8e-b6e4-5e5a4f084bee" + "2b1c301d-7af6-450f-ad9f-92e652e8f20d" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1188" ], "x-ms-correlation-request-id": [ - "3035a9e0-622e-4489-b7bc-89031021686a" + "ebf71bfd-b539-475a-8517-b54c523016d5" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224417Z:3035a9e0-622e-4489-b7bc-89031021686a" + "WESTUS2:20170327T181437Z:ebf71bfd-b539-475a-8517-b54c523016d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/68399479-5875-4bc6-8e76-15cadf53f8f80?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzY4Mzk5NDc5LTU4NzUtNGJjNi04ZTc2LTE1Y2FkZjUzZjhmODA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/4a7bbe4b-1f09-4a55-85d2-93ce7ebae1bb0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzRhN2JiZTRiLTFmMDktNGE1NS04NWQyLTkzY2U3ZWJhZTFiYjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:44:47 GMT" + "Mon, 27 Mar 2017 18:15:08 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0f8191f2-9a97-415a-a4f6-8cdee32cddfd" + "f99dc898-c3dd-4d93-801a-ddc7cb018a14" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14985" ], "x-ms-correlation-request-id": [ - "d9e59359-9e52-4a8c-9420-89a578a5499a" + "2579aace-c6bb-40e0-b626-99ba89af662e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T224447Z:d9e59359-9e52-4a8c-9420-89a578a5499a" + "WESTUS2:20170327T181508Z:2579aace-c6bb-40e0-b626-99ba89af662e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt1892?appendMode=autocreate&op=CONCURRENTAPPEND&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODkyP2FwcGVuZE1vZGU9YXV0b2NyZWF0ZSZvcD1DT05DVVJSRU5UQVBQRU5EJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3301?appendMode=autocreate&op=CONCURRENTAPPEND&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzAxP2FwcGVuZE1vZGU9YXV0b2NyZWF0ZSZvcD1DT05DVVJSRU5UQVBQRU5EJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -742,7 +736,7 @@ "application/octet-stream" ], "x-ms-client-request-id": [ - "791d54e6-ca1c-4a42-83a0-0ded28e5cdbf" + "932777d5-3c88-4e41-bbd8-a13a9b31890d" ], "Transfer-Encoding": [ "chunked" @@ -751,14 +745,13 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "\"Appending succeeds.\"", + "ResponseBody": "\"Operation succeeded.\"", "ResponseHeaders": { "Content-Length": [ - "21" + "22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -770,13 +763,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:44:54 GMT" + "Mon, 27 Mar 2017 18:15:10 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "845012dd-e41f-4617-a001-0ddcfcce4428" + "4f4b60e9-8995-4d1c-86df-c06a354958ef" ], "X-Content-Type-Options": [ "nosniff" @@ -788,20 +781,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1892?op=OPEN&read=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODkyP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3301?op=OPEN&read=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzAxP29wPU9QRU4mcmVhZD10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c848ea5e-83a3-4172-a5d2-5f1a015d9a1a" + "e5bb326c-584e-43d1-869a-5f130a23b426" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "More test contents, that were appended!", @@ -816,7 +808,7 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:44:54 GMT" + "Mon, 27 Mar 2017 18:15:11 GMT" ], "Pragma": [ "no-cache" @@ -825,10 +817,10 @@ "chunked" ], "x-ms-request-id": [ - "9f1013ad-dfeb-430f-b97b-faea5a91df47" + "0ca08f95-ea5f-4b5d-b0f0-d6273d7aae5a" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -843,8 +835,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1892?op=APPEND&append=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxODkyP29wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3301?op=APPEND&append=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMzAxP29wPUFQUEVORCZhcHBlbmQ9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { @@ -855,20 +847,19 @@ "0" ], "x-ms-client-request-id": [ - "932437b3-1bfa-41d2-b769-831ebfc3e755" + "896d4229-2023-4533-95e8-b13b2d425d46" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"FsAppendStream failed with error 0x83090053 (Internal server error.). [84c66f64-85b3-4024-a2cf-55f43221a3a7][2016-11-10T14:45:15.2060995-08:00]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"APPEND failed with error 0x83090053 (Internal server error.). [6aed0b97-5240-4da5-8918-3081b160e17d][2017-03-27T11:15:31.7622421-07:00]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "253" + "245" ], "Content-Type": [ "application/json; charset=utf-8" @@ -880,16 +871,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:45:14 GMT" + "Mon, 27 Mar 2017 18:15:31 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "84c66f64-85b3-4024-a2cf-55f43221a3a7" + "6aed0b97-5240-4da5-8918-3081b160e17d" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x83090053" @@ -904,8 +895,8 @@ "StatusCode": 500 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6197?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MTk3P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7517?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NTE3P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -916,14 +907,13 @@ "42" ], "x-ms-client-request-id": [ - "f4cc980f-2c5f-4604-91d7-a5cd7120977a" + "fd497abc-79bf-4545-ad12-f9c7ac8b354e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -938,22 +928,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:45:15 GMT" + "Mon, 27 Mar 2017 18:15:31 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs18466.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt6197?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17884.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7517?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "eb44da1f-699b-4a8f-8a2c-338c56cb89e9" + "3c4372bd-b415-468b-a771-a4b2d8ce2d81" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -968,8 +958,8 @@ "StatusCode": 201 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt6197?op=CONCURRENTAPPEND&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MTk3P29wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7517?op=CONCURRENTAPPEND&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NTE3P29wPUNPTkNVUlJFTlRBUFBFTkQmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "POST", "RequestBody": "More test contents, that were appended!", "RequestHeaders": { @@ -977,7 +967,7 @@ "application/octet-stream" ], "x-ms-client-request-id": [ - "6c758db8-30bc-4081-b30b-fc80d8d2410e" + "5b813c88-c31b-46a0-8996-5b0eb11b4db0" ], "Transfer-Encoding": [ "chunked" @@ -986,11 +976,10 @@ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"The exception is unexpected. [0x83090053] [][2016-11-10T14:45:36.0032560-08:00]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"The exception is unexpected. [0x83090053] [][2017-03-27T11:15:52.6224573-07:00]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "189" @@ -1005,13 +994,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:45:35 GMT" + "Mon, 27 Mar 2017 18:15:52 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "86d51457-a9bd-45a9-ba56-4ea1396697b1" + "8b41c71d-1465-499c-87f7-7357495b11a7" ], "X-Content-Type-Options": [ "nosniff" @@ -1025,15 +1014,15 @@ ], "Names": { ".ctor": [ - "datalakerg11376", - "testdatalake17464", - "testadlfs18466" + "datalakerg11847", + "testdatalake12475", + "testadlfs17884" ], "DataLakeStoreFileSystemNegativeConcurrentAppend": [ - "SDKTestFolder01/SDKTestFile01.txt1892" + "SDKTestFolder01/SDKTestFile01.txt3301" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt6197" + "SDKTestFolder01/SDKTestFile01.txt7517" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeExpiry.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeExpiry.json index 0cbe5f39b90c..0a3f23a44551 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeExpiry.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemNegativeExpiry.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54286c45-5e1b-441c-8f03-45c98f699d7f" + "74a978cc-f87b-42ff-a476-090b663247d3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:38 GMT" + "Mon, 27 Mar 2017 18:17:21 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "f067e3d0-6512-4ff7-9405-dae6ac1171fa" + "75b7691a-bf18-4c3e-a4fe-e83df5f2f854" ], "x-ms-correlation-request-id": [ - "f067e3d0-6512-4ff7-9405-dae6ac1171fa" + "75b7691a-bf18-4c3e-a4fe-e83df5f2f854" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224739Z:f067e3d0-6512-4ff7-9405-dae6ac1171fa" + "CENTRALUS:20170327T181722Z:75b7691a-bf18-4c3e-a4fe-e83df5f2f854" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7bfa8cc-9b5f-4cf9-9455-937accce2017" + "19ffee86-85ac-4362-a609-eed164c1b7cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:38 GMT" + "Mon, 27 Mar 2017 18:17:21 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-request-id": [ - "f567983d-aac1-4433-b953-d756d9dfe26d" + "3cd61379-64d1-40d9-8bd2-480d0474b635" ], "x-ms-correlation-request-id": [ - "f567983d-aac1-4433-b953-d756d9dfe26d" + "3cd61379-64d1-40d9-8bd2-480d0474b635" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224739Z:f567983d-aac1-4433-b953-d756d9dfe26d" + "CENTRALUS:20170327T181722Z:3cd61379-64d1-40d9-8bd2-480d0474b635" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e37db60a-eb83-4469-8102-f079b1d230b0" + "f4b04657-928f-4939-83f2-ebff06f7d496" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:39 GMT" + "Mon, 27 Mar 2017 18:17:22 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-request-id": [ - "bca90a3a-527b-4787-8b35-4b071370b8e2" + "0d221c30-66cb-4117-9ed9-146754ea73d4" ], "x-ms-correlation-request-id": [ - "bca90a3a-527b-4787-8b35-4b071370b8e2" + "0d221c30-66cb-4117-9ed9-146754ea73d4" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224740Z:bca90a3a-527b-4787-8b35-4b071370b8e2" + "CENTRALUS:20170327T181723Z:0d221c30-66cb-4117-9ed9-146754ea73d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4504fd52-0577-4bfd-9063-cfce12e3a103" + "4d16eba6-20a5-4855-91e1-b74d9ef37254" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:39 GMT" + "Mon, 27 Mar 2017 18:17:22 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14994" ], "x-ms-request-id": [ - "6c526819-b2e8-438d-955b-61b793c99f43" + "f5e4ab3b-b2c9-49c4-920c-d009603dd3ec" ], "x-ms-correlation-request-id": [ - "6c526819-b2e8-438d-955b-61b793c99f43" + "f5e4ab3b-b2c9-49c4-920c-d009603dd3ec" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224740Z:6c526819-b2e8-438d-955b-61b793c99f43" + "CENTRALUS:20170327T181723Z:f5e4ab3b-b2c9-49c4-920c-d009603dd3ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11855?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11397?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM5Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "057c7f67-a10e-4337-b24e-d81616480251" + "c7c4d3a1-c0d8-464d-a14b-982a93d68d6e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11855' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11397' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:39 GMT" + "Mon, 27 Mar 2017 18:17:22 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-request-id": [ - "ffc292c6-4fe5-4473-864a-670a4f5c3270" + "64f6e1a8-c722-4c99-b1d3-b325b565ab9f" ], "x-ms-correlation-request-id": [ - "ffc292c6-4fe5-4473-864a-670a4f5c3270" + "64f6e1a8-c722-4c99-b1d3-b325b565ab9f" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224740Z:ffc292c6-4fe5-4473-864a-670a4f5c3270" + "CENTRALUS:20170327T181723Z:64f6e1a8-c722-4c99-b1d3-b325b565ab9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11855?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11397?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM5Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb8a2ccd-799f-43a9-baee-3fa0d02f09fd" + "7e8f41fd-aa46-470a-a952-0511caff255f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855\",\r\n \"name\": \"datalakerg11855\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397\",\r\n \"name\": \"datalakerg11397\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:41 GMT" + "Mon, 27 Mar 2017 18:17:23 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-request-id": [ - "c170c8ad-0cc4-4d9f-a99d-e1030ca7f34c" + "5d4263e7-5368-4fbc-954d-ae03f0ff9e13" ], "x-ms-correlation-request-id": [ - "c170c8ad-0cc4-4d9f-a99d-e1030ca7f34c" + "5d4263e7-5368-4fbc-954d-ae03f0ff9e13" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224741Z:c170c8ad-0cc4-4d9f-a99d-e1030ca7f34c" + "CENTRALUS:20170327T181724Z:5d4263e7-5368-4fbc-954d-ae03f0ff9e13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11855?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTg1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11397?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM5Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "c7d54ba6-9362-43fd-ab41-1433dc146ba7" + "3b1187b6-b913-4371-8166-a321fa795161" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855\",\r\n \"name\": \"datalakerg11855\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397\",\r\n \"name\": \"datalakerg11397\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:41 GMT" + "Mon, 27 Mar 2017 18:17:23 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-request-id": [ - "f69e4d5e-07ee-4607-be60-b0864d5bcaca" + "922829cd-f611-4a25-a7ef-ffcea16a0285" ], "x-ms-correlation-request-id": [ - "f69e4d5e-07ee-4607-be60-b0864d5bcaca" + "922829cd-f611-4a25-a7ef-ffcea16a0285" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224741Z:f69e4d5e-07ee-4607-be60-b0864d5bcaca" + "CENTRALUS:20170327T181724Z:922829cd-f611-4a25-a7ef-ffcea16a0285" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY1MDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYwMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "370601a5-cd2b-44cb-801a-0fc6fea73005" + "34b8ce06-381c-4c54-82af-261b5c1dda0d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs16509' under resource group 'datalakerg11855' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1602' under resource group 'datalakerg11397' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:47:41 GMT" + "Mon, 27 Mar 2017 18:17:24 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "6fdf38d1-8ef2-4221-bf5e-63106ffc5b9d" + "a8203f37-66b9-4bf4-9eb8-90878a4d3ccd" ], "x-ms-correlation-request-id": [ - "6fdf38d1-8ef2-4221-bf5e-63106ffc5b9d" + "a8203f37-66b9-4bf4-9eb8-90878a4d3ccd" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224742Z:6fdf38d1-8ef2-4221-bf5e-63106ffc5b9d" + "CENTRALUS:20170327T181724Z:a8203f37-66b9-4bf4-9eb8-90878a4d3ccd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY1MDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYwMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16509.azuredatalakestore.net\",\r\n \"accountId\": \"d2d25738-d5d0-4afa-8ed4-96c575d92446\",\r\n \"creationTime\": \"2016-11-10T22:47:49.3871464Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:47:49.3871464Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509\",\r\n \"name\": \"testadlfs16509\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1602.azuredatalakestore.net\",\r\n \"accountId\": \"0afdbf61-b299-49ad-9142-926e4a412ade\",\r\n \"creationTime\": \"2017-03-27T18:17:25.9189192Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:17:25.9189192Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602\",\r\n \"name\": \"testadlfs1602\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:48:15 GMT" + "Mon, 27 Mar 2017 18:17:56 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "3dc1355d-dad8-4f32-9342-5d51eb0c8f0c" + "7621b6a9-7be8-4dd2-a5c4-51439341c6b2" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "efa30843-5f61-4918-b3ac-105c0fc6d74f" + "ac66359e-2db5-43a5-8a24-5ee1afc7d53c" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224816Z:efa30843-5f61-4918-b3ac-105c0fc6d74f" + "CENTRALUS:20170327T181756Z:ac66359e-2db5-43a5-8a24-5ee1afc7d53c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY1MDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYwMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab18004d-989f-48c9-8756-9c30b8c2bacc" + "3230aa77-7056-4104-a454-55e343585f94" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs16509.azuredatalakestore.net\",\r\n \"accountId\": \"d2d25738-d5d0-4afa-8ed4-96c575d92446\",\r\n \"creationTime\": \"2016-11-10T22:47:49.3871464Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:47:49.3871464Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509\",\r\n \"name\": \"testadlfs16509\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1602.azuredatalakestore.net\",\r\n \"accountId\": \"0afdbf61-b299-49ad-9142-926e4a412ade\",\r\n \"creationTime\": \"2017-03-27T18:17:25.9189192Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:17:25.9189192Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602\",\r\n \"name\": \"testadlfs1602\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:48:16 GMT" + "Mon, 27 Mar 2017 18:17:57 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f0aa9c94-9ade-4e84-ac01-4c6411d5bd6d" + "bc66e847-8cc9-48f4-8a30-6733f991d076" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14999" ], "x-ms-correlation-request-id": [ - "304be8c9-828f-43d8-bd79-7b9d980d07c2" + "e78fe726-e626-41a4-95d9-32af8a455fd0" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224817Z:304be8c9-828f-43d8-bd79-7b9d980d07c2" + "CENTRALUS:20170327T181757Z:e78fe726-e626-41a4-95d9-32af8a455fd0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTg1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTY1MDk/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM5Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTYwMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "50cfc9f9-7e9b-47dd-b870-0a0eabf812a9" + "b5523999-2af4-4769-9253-bd00ab5a5ad8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"d2d25738-d5d0-4afa-8ed4-96c575d92446\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509\",\r\n \"name\": \"testadlfs16509\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"0afdbf61-b299-49ad-9142-926e4a412ade\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602\",\r\n \"name\": \"testadlfs1602\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "418" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:47:44 GMT" + "Mon, 27 Mar 2017 18:17:25 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11855/providers/Microsoft.DataLakeStore/accounts/testadlfs16509/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11397/providers/Microsoft.DataLakeStore/accounts/testadlfs1602/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/d2d25738-d5d0-4afa-8ed4-96c575d924460?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0afdbf61-b299-49ad-9142-926e4a412ade0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "ecdbedf5-6bd9-480a-8186-f146194de758" + "8683e161-bf31-490d-9fe8-5091260599d7" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "65c47cbd-65cd-49de-9bf9-1ac7ba4acc29" + "a64a12bb-f013-4e0d-bed5-00f2e7a7b104" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224744Z:65c47cbd-65cd-49de-9bf9-1ac7ba4acc29" + "CENTRALUS:20170327T181725Z:a64a12bb-f013-4e0d-bed5-00f2e7a7b104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/d2d25738-d5d0-4afa-8ed4-96c575d924460?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2QyZDI1NzM4LWQ1ZDAtNGFmYS04ZWQ0LTk2YzU3NWQ5MjQ0NjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0afdbf61-b299-49ad-9142-926e4a412ade0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzBhZmRiZjYxLWIyOTktNDlhZC05MTQyLTkyNmU0YTQxMmFkZTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:48:15 GMT" + "Mon, 27 Mar 2017 18:17:56 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "bd58def5-8dd1-48e4-a8c9-94e0975251e4" + "b2cf4b67-cc53-41ef-b269-c07cbc9a6764" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14997" ], "x-ms-correlation-request-id": [ - "f0e605ea-a047-4904-88b2-7c5ccc78884c" + "969cf41b-fdd0-4aa9-bc3f-8d62e5ec0080" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224815Z:f0e605ea-a047-4904-88b2-7c5ccc78884c" + "CENTRALUS:20170327T181756Z:969cf41b-fdd0-4aa9-bc3f-8d62e5ec0080" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3032?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMDMyP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt527?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/c3luY0ZsYWc9REFUQSZvcD1DUkVBVEUmd3JpdGU9dHJ1ZSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -745,14 +739,13 @@ "0" ], "x-ms-client-request-id": [ - "08973ec2-948c-478f-8ab0-458014ec7807" + "1bc7cb37-4763-44ef-a1c9-e35a68114683" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:48:18 GMT" + "Mon, 27 Mar 2017 18:18:06 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs16509.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3032?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs1602.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt527?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "b6b70ca1-3f36-4476-8f0a-f0596e5219bf" + "75d39d02-197e-4eb1-a92e-d69be5c0fca2" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3032?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMDMyP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt527?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcd0bec8-2476-40ea-9ed0-104e94264882" + "d4bf4c35-4786-4f8e-9ad8-788d714b489e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818099041,\r\n \"modificationTime\": 1478818099041,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638687042,\r\n \"modificationTime\": 1490638687042,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:48:19 GMT" + "Mon, 27 Mar 2017 18:18:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "0d20411e-aaa5-43bc-8b03-de2b98c237cd" + "6541275f-919e-44d7-9405-ecd9885ff426" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,26 +844,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3032?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMDMyP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt527?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61f720ab-ce0c-4159-ab22-8d70fa71ea31" + "40eae469-426b-4566-a48f-ee201dd424aa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818099041,\r\n \"modificationTime\": 1478818099041,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638687042,\r\n \"modificationTime\": 1490638687042,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:48:19 GMT" + "Mon, 27 Mar 2017 18:18:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "aff407ec-ef42-450a-927a-0ab10becc8c8" + "d3c736d3-875d-4feb-a7cd-46211acbc3fe" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -907,26 +898,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3032?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMDMyP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt527?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/b3A9R0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f53bb69a-d18a-40c2-b2d3-a251c56588bc" + "dacf420e-4d95-4672-adce-7b92a2f881dd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818099041,\r\n \"modificationTime\": 1478818099041,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638687042,\r\n \"modificationTime\": 1490638687042,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -938,16 +928,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:48:39 GMT" + "Mon, 27 Mar 2017 18:18:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1439175f-36d6-449f-aa3b-2699893f0e12" + "60c612f1-df1b-490b-9197-76e465d98954" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -962,26 +952,25 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3032?expiryOption=Absolute&expireTime=1478817979000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMDMyP2V4cGlyeU9wdGlvbj1BYnNvbHV0ZSZleHBpcmVUaW1lPTE0Nzg4MTc5NzkwMDAmb3A9U0VURVhQSVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt527?expiryOption=Absolute&expireTime=1490638567000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/ZXhwaXJ5T3B0aW9uPUFic29sdXRlJmV4cGlyZVRpbWU9MTQ5MDYzODU2NzAwMCZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26ba3c95-5c73-4383-a504-476cabb49184" + "09956673-f4d1-463c-8dd2-091341fcf26f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"IllegalArgumentException\",\r\n \"message\": \"Parameter expireTime is Invaild, Reason Invalid expireTime, PathAndQuery /WebHdfsExt/SDKTestFolder01/SDKTestFile01.txt3032?expiryOption=Absolute&expireTime=1478817979000&op=SETEXPIRY&api-version=2016-11-01, Method PUT [][2016-11-10T14:48:19.6851126-08:00]\",\r\n \"javaClassName\": \"java.lang.IllegalArgumentException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"IllegalArgumentException\",\r\n \"message\": \"Parameter expireTime is Invaild, Reason Invalid expireTime, PathAndQuery /WebHdfsExt/SDKTestFolder01/SDKTestFile01.txt527?expiryOption=Absolute&expireTime=1490638567000&op=SETEXPIRY&api-version=2016-11-01, Method PUT [][2017-03-27T11:18:07.3925410-07:00]\",\r\n \"javaClassName\": \"java.lang.IllegalArgumentException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "381" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -993,13 +982,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:48:19 GMT" + "Mon, 27 Mar 2017 18:18:06 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "a3d6af5d-a296-4c37-9633-fe9c418dc9d0" + "218f6c49-9fc4-4b60-abc2-e4ba68d79c56" ], "X-Content-Type-Options": [ "nosniff" @@ -1011,23 +1000,22 @@ "StatusCode": 400 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3032?expiryOption=Absolute&expireTime=253402300800000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMDMyP2V4cGlyeU9wdGlvbj1BYnNvbHV0ZSZleHBpcmVUaW1lPTI1MzQwMjMwMDgwMDAwMCZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt527?expiryOption=Absolute&expireTime=253402300800000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/ZXhwaXJ5T3B0aW9uPUFic29sdXRlJmV4cGlyZVRpbWU9MjUzNDAyMzAwODAwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73d550ab-16d4-4fc2-8155-b8802fd26b15" + "7eb25ba6-ea8e-4edb-a9c1-a80218f9159f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"The added or subtracted value results in an un-representable DateTime.\\r\\nParameter name: value [][2016-11-10T14:48:40.1486388-08:00]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"RuntimeException\",\r\n \"message\": \"The added or subtracted value results in an un-representable DateTime.\\r\\nParameter name: value [][2017-03-27T11:18:27.8771635-07:00]\",\r\n \"javaClassName\": \"java.lang.RuntimeException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "243" @@ -1042,13 +1030,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:48:39 GMT" + "Mon, 27 Mar 2017 18:18:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2779ac9b-7a91-4624-b027-f48515d6bc4c" + "c480b8f2-46e3-41d6-b176-76c918a1f2d4" ], "X-Content-Type-Options": [ "nosniff" @@ -1060,20 +1048,19 @@ "StatusCode": 500 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3032?expiryOption=NeverExpire&expireTime=400&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMDMyP2V4cGlyeU9wdGlvbj1OZXZlckV4cGlyZSZleHBpcmVUaW1lPTQwMCZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt527?expiryOption=NeverExpire&expireTime=400&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ1Mjc/ZXhwaXJ5T3B0aW9uPU5ldmVyRXhwaXJlJmV4cGlyZVRpbWU9NDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "730afbff-1a92-44b6-b83e-3df9d500a720" + "2b091773-4d5c-49d5-ac17-4bf2e7358bfd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1088,13 +1075,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:48:39 GMT" + "Mon, 27 Mar 2017 18:18:27 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "4258f0b4-d3a4-45c8-a806-30b36bbf0789" + "a434bc38-72e9-4dc6-a0fc-32a2f0a3a4e3" ], "X-Content-Type-Options": [ "nosniff" @@ -1108,16 +1095,16 @@ ], "Names": { ".ctor": [ - "datalakerg11855", - "testdatalake14505", - "testadlfs16509" + "datalakerg11397", + "testdatalake12837", + "testadlfs1602" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt3032" + "SDKTestFolder01/SDKTestFile01.txt527" ] }, "Variables": { "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f", - "absoluteNegativeTime": "11/10/2016 10:46:19 PM" + "absoluteNegativeTime": "3/27/2017 6:16:07 PM" } } \ No newline at end of file diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAcl.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAcl.json index 72beb349a150..b2bd2941d124 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAcl.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAcl.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9bb8533e-5c9a-46f2-8cd2-457bceea0f41" + "5f74b271-2946-4e69-9f81-428489a5a718" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:32 GMT" + "Mon, 27 Mar 2017 19:13:24 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-request-id": [ - "750529d6-819c-4fbf-8da3-94251911ed74" + "0d07a4cb-5330-4edf-a50b-2b47d0e1edeb" ], "x-ms-correlation-request-id": [ - "750529d6-819c-4fbf-8da3-94251911ed74" + "0d07a4cb-5330-4edf-a50b-2b47d0e1edeb" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225933Z:750529d6-819c-4fbf-8da3-94251911ed74" + "WESTUS2:20170327T191325Z:0d07a4cb-5330-4edf-a50b-2b47d0e1edeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2307becd-7761-4e00-8085-9ef4af75c662" + "23ffb6ae-f2d9-4f6b-b29c-a174170fb04e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:33 GMT" + "Mon, 27 Mar 2017 19:13:24 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14983" ], "x-ms-request-id": [ - "f9cbd92a-fe04-48ca-a4c2-0589a2786f05" + "e7a71471-4481-46ca-b351-c898fadebc32" ], "x-ms-correlation-request-id": [ - "f9cbd92a-fe04-48ca-a4c2-0589a2786f05" + "e7a71471-4481-46ca-b351-c898fadebc32" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225933Z:f9cbd92a-fe04-48ca-a4c2-0589a2786f05" + "WESTUS2:20170327T191325Z:e7a71471-4481-46ca-b351-c898fadebc32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91d71617-5150-4a9d-8614-9cb490e9f887" + "fe818cbc-aa52-40ac-9637-b0f3221e05fb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:34 GMT" + "Mon, 27 Mar 2017 19:13:25 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-request-id": [ - "e7611059-8462-45cf-a13d-d0e2276488d8" + "495c6627-786a-4413-9260-8f501ac2ad0b" ], "x-ms-correlation-request-id": [ - "e7611059-8462-45cf-a13d-d0e2276488d8" + "495c6627-786a-4413-9260-8f501ac2ad0b" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225934Z:e7611059-8462-45cf-a13d-d0e2276488d8" + "WESTUS2:20170327T191326Z:495c6627-786a-4413-9260-8f501ac2ad0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77c0ecdb-5dbc-4274-a1d8-f783abccbb86" + "de13bb86-fba0-40c6-acbe-72e59e83393f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:34 GMT" + "Mon, 27 Mar 2017 19:13:25 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14982" ], "x-ms-request-id": [ - "38d86f30-fc5c-4659-935c-bb1f08879eab" + "2074d591-f952-4183-a10a-4d546d069d0e" ], "x-ms-correlation-request-id": [ - "38d86f30-fc5c-4659-935c-bb1f08879eab" + "2074d591-f952-4183-a10a-4d546d069d0e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225934Z:38d86f30-fc5c-4659-935c-bb1f08879eab" + "WESTUS2:20170327T191326Z:2074d591-f952-4183-a10a-4d546d069d0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,26 +223,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17829?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzgyOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1488?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b358f37d-bc55-4f0e-976c-2d8d15e23107" + "c156f5c5-f301-4350-8725-07da0715dfca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17829' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1488' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:34 GMT" + "Mon, 27 Mar 2017 19:13:25 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14981" ], "x-ms-request-id": [ - "98618cac-dacf-416a-b6c6-5c5b8f268a7a" + "ffd9a375-dd17-4414-aced-917f98c91a3e" ], "x-ms-correlation-request-id": [ - "98618cac-dacf-416a-b6c6-5c5b8f268a7a" + "ffd9a375-dd17-4414-aced-917f98c91a3e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225934Z:98618cac-dacf-416a-b6c6-5c5b8f268a7a" + "WESTUS2:20170327T191326Z:ffd9a375-dd17-4414-aced-917f98c91a3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17829?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzgyOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1488?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10d64142-ef83-457d-b841-b61cb423bb84" + "e0876702-ac06-450c-91a6-7b2656e6eb0a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829\",\r\n \"name\": \"datalakerg17829\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488\",\r\n \"name\": \"datalakerg1488\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:35 GMT" + "Mon, 27 Mar 2017 19:13:26 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14980" ], "x-ms-request-id": [ - "abba0a17-7ac5-4732-802d-1570d4451fa1" + "a170dc1d-a1a9-43a1-8bd5-f01d9dd6a0fe" ], "x-ms-correlation-request-id": [ - "abba0a17-7ac5-4732-802d-1570d4451fa1" + "a170dc1d-a1a9-43a1-8bd5-f01d9dd6a0fe" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225935Z:abba0a17-7ac5-4732-802d-1570d4451fa1" + "WESTUS2:20170327T191326Z:a170dc1d-a1a9-43a1-8bd5-f01d9dd6a0fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17829?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzgyOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1488?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNDg4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,20 +346,19 @@ "31" ], "x-ms-client-request-id": [ - "e8a87434-2548-4fad-b7a7-ff4760589be8" + "f1103051-7f11-42ed-af7b-f33444ec8d72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829\",\r\n \"name\": \"datalakerg17829\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488\",\r\n \"name\": \"datalakerg1488\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "184" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:34 GMT" + "Mon, 27 Mar 2017 19:13:26 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1189" ], "x-ms-request-id": [ - "f330856f-a6c5-4b06-be36-70d3cef5caa5" + "6249d3b4-51d8-4f0a-9d42-29ca5e610f99" ], "x-ms-correlation-request-id": [ - "f330856f-a6c5-4b06-be36-70d3cef5caa5" + "6249d3b4-51d8-4f0a-9d42-29ca5e610f99" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225935Z:f330856f-a6c5-4b06-be36-70d3cef5caa5" + "WESTUS2:20170327T191326Z:6249d3b4-51d8-4f0a-9d42-29ca5e610f99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzgyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyNDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTExMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f41f39d9-f36e-4eff-8930-2eb5f908056e" + "e3a8e50c-c3f5-44f8-ae34-827b90e2b28f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11247' under resource group 'datalakerg17829' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15112' under resource group 'datalakerg1488' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:59:34 GMT" + "Mon, 27 Mar 2017 19:13:26 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "ffe011f5-8044-4846-9b7f-226edb8d9e51" + "a323bfd8-3635-41c8-8a5c-9a64e53c8359" ], "x-ms-correlation-request-id": [ - "ffe011f5-8044-4846-9b7f-226edb8d9e51" + "a323bfd8-3635-41c8-8a5c-9a64e53c8359" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225935Z:ffe011f5-8044-4846-9b7f-226edb8d9e51" + "WESTUS2:20170327T191327Z:a323bfd8-3635-41c8-8a5c-9a64e53c8359" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzgyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyNDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTExMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11247.azuredatalakestore.net\",\r\n \"accountId\": \"b157846f-ec9a-4609-9918-4d2148cb3c87\",\r\n \"creationTime\": \"2016-11-10T22:59:41.4181936Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:59:41.4181936Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247\",\r\n \"name\": \"testadlfs11247\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15112.azuredatalakestore.net\",\r\n \"accountId\": \"58dde239-b6a9-49c0-a888-5e564a471ee1\",\r\n \"creationTime\": \"2017-03-27T19:13:28.5216029Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:13:28.5216029Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112\",\r\n \"name\": \"testadlfs15112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:06 GMT" + "Mon, 27 Mar 2017 19:13:59 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "96dee7c6-69b4-450a-833f-54c1930e7ffd" + "3bd3dd15-d7a5-4629-b091-e274db5e0bff" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14979" ], "x-ms-correlation-request-id": [ - "061de657-efc6-4c5c-ba92-e310ce05e90f" + "659788d4-cea4-4e14-a088-5dd98a577de4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230007Z:061de657-efc6-4c5c-ba92-e310ce05e90f" + "WESTUS2:20170327T191359Z:659788d4-cea4-4e14-a088-5dd98a577de4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzgyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyNDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTExMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c8163cb-9caf-4ae7-ac9b-714ace2eff22" + "0a010956-061d-43f0-973e-e64326a8298b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11247.azuredatalakestore.net\",\r\n \"accountId\": \"b157846f-ec9a-4609-9918-4d2148cb3c87\",\r\n \"creationTime\": \"2016-11-10T22:59:41.4181936Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:59:41.4181936Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247\",\r\n \"name\": \"testadlfs11247\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15112.azuredatalakestore.net\",\r\n \"accountId\": \"58dde239-b6a9-49c0-a888-5e564a471ee1\",\r\n \"creationTime\": \"2017-03-27T19:13:28.5216029Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:13:28.5216029Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112\",\r\n \"name\": \"testadlfs15112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:07 GMT" + "Mon, 27 Mar 2017 19:13:59 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c90881b7-a063-4def-a350-284d62eb5430" + "49e21a4f-b144-4b3f-a61e-9bf18fec91a5" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14982" ], "x-ms-correlation-request-id": [ - "57cfb503-217f-43b5-a6c9-2d3287b2d905" + "735654b2-286f-4282-975e-34b2f55741df" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230007Z:57cfb503-217f-43b5-a6c9-2d3287b2d905" + "WESTUS2:20170327T191400Z:735654b2-286f-4282-975e-34b2f55741df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzgyOS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyNDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNDg4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNTExMj9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "5b7092b7-54c3-492e-9013-6a8ac2c24eca" + "e052af71-9cf3-4347-aae0-93c2df2c2581" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"b157846f-ec9a-4609-9918-4d2148cb3c87\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247\",\r\n \"name\": \"testadlfs11247\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"58dde239-b6a9-49c0-a888-5e564a471ee1\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112\",\r\n \"name\": \"testadlfs15112\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "419" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:59:35 GMT" + "Mon, 27 Mar 2017 19:13:28 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17829/providers/Microsoft.DataLakeStore/accounts/testadlfs11247/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1488/providers/Microsoft.DataLakeStore/accounts/testadlfs15112/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b157846f-ec9a-4609-9918-4d2148cb3c870?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/58dde239-b6a9-49c0-a888-5e564a471ee10?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "c0b593c5-a4f6-49ec-88ce-b27a99707711" + "14bec612-d33b-4463-843f-96a587edcf83" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1194" ], "x-ms-correlation-request-id": [ - "19c85041-5131-4c15-9be2-add5394feb6f" + "c320c10b-e49d-4c1e-a413-dcdb291ed72e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T225936Z:19c85041-5131-4c15-9be2-add5394feb6f" + "WESTUS2:20170327T191328Z:c320c10b-e49d-4c1e-a413-dcdb291ed72e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/b157846f-ec9a-4609-9918-4d2148cb3c870?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2IxNTc4NDZmLWVjOWEtNDYwOS05OTE4LTRkMjE0OGNiM2M4NzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/58dde239-b6a9-49c0-a888-5e564a471ee10?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzU4ZGRlMjM5LWI2YTktNDljMC1hODg4LTVlNTY0YTQ3MWVlMTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:06 GMT" + "Mon, 27 Mar 2017 19:13:58 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f3b51bbe-cf4b-4c02-9cc4-e47a0a8fa0e7" + "0cb6ebd1-c918-4e61-89f2-d463233bc010" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14990" ], "x-ms-correlation-request-id": [ - "5d5150d5-1f40-4c2f-b7d0-426116ab5cfd" + "1767f323-ddeb-4161-8efd-7a33dc647b29" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230006Z:5d5150d5-1f40-4c2f-b7d0-426116ab5cfd" + "WESTUS2:20170327T191359Z:1767f323-ddeb-4161-8efd-7a33dc647b29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,26 +727,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c98be746-da9c-4240-9dec-10bb12e0d2d5" + "c7db32e0-19b7-41a3-9223-59e454442df7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "196" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:00:09 GMT" + "Mon, 27 Mar 2017 19:14:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d8b8db8d-8154-4251-8e57-682653aae096" + "8739d2f5-0083-49a5-85f2-c8ddf5577726" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -788,26 +781,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "528375e4-b735-4d87-aa79-8e3c6826b9d9" + "5b2cfac5-9b46-4a4b-b3c3-73d2834b40fe" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx\",\r\n \"group::rwx\",\r\n \"mask::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx\",\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "256" + "219" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,16 +811,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:00:09 GMT" + "Mon, 27 Mar 2017 19:14:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3d6ecd06-f14a-41fe-9bdb-7a76cdaeb71c" + "fa71f658-d937-4aaf-8f40-7c81a760113a" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -843,20 +835,19 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?aclspec=user::rwx%2Cgroup::rwx%2Cother::---%2Cuser:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx&op=SETACL&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP2FjbHNwZWM9dXNlciUzQSUzQXJ3eCUyQ2dyb3VwJTNBJTNBcnd4JTJDb3RoZXIlM0ElM0EtLS0lMkN1c2VyJTNBMDI3YzI4ZDUtYzkxZC00OWYwLTk4YzUtZDEwMTM0YjE2OWIzJTNBcnd4Jm9wPVNFVEFDTCZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/%2F?aclspec=group::rwx%2Cuser::rwx%2Cother::---%2Cmask::rwx%2Cuser:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx&op=SETACL&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP2FjbHNwZWM9Z3JvdXAlM0ElM0Fyd3glMkN1c2VyJTNBJTNBcnd4JTJDb3RoZXIlM0ElM0EtLS0lMkNtYXNrJTNBJTNBcnd4JTJDdXNlciUzQTAyN2MyOGQ1LWM5MWQtNDlmMC05OGM1LWQxMDEzNGIxNjliMyUzQXJ3eCZvcD1TRVRBQ0wmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d712e83-6619-4783-a68f-6090188fe6a8" + "c4e08d9c-ad29-4e82-b101-dbf332e5ffb7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -871,19 +862,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:00:09 GMT" + "Mon, 27 Mar 2017 19:14:05 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "33820bca-fe2e-45a8-94fa-6a647b1044ab" + "8fbfbd0a-a3d8-4e26-83e6-9b3b9562ebe3" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -900,9 +891,9 @@ ], "Names": { ".ctor": [ - "datalakerg17829", - "testdatalake1116", - "testadlfs11247" + "datalakerg1488", + "testdatalake19929", + "testadlfs15112" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAndRemoveExpiry.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAndRemoveExpiry.json index 4198b31dae02..0c97f63b40a9 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAndRemoveExpiry.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetAndRemoveExpiry.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da0ad446-e8ef-4d81-8fbd-2ae423888cb0" + "e606a538-ea1d-4ce5-9d1c-d26c581d2b74" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:23 GMT" + "Mon, 27 Mar 2017 18:08:03 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "d40f348d-d8ac-436a-801f-eda92966d12d" + "b17b2c4c-8472-40d4-ba78-3b079cf8adce" ], "x-ms-correlation-request-id": [ - "d40f348d-d8ac-436a-801f-eda92966d12d" + "b17b2c4c-8472-40d4-ba78-3b079cf8adce" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223823Z:d40f348d-d8ac-436a-801f-eda92966d12d" + "CENTRALUS:20170327T180803Z:b17b2c4c-8472-40d4-ba78-3b079cf8adce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc2a8cce-642d-4d6f-8558-63a5254ae716" + "2f59cc2c-d5f2-4ffd-866d-a161eabe2907" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:23 GMT" + "Mon, 27 Mar 2017 18:08:03 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14999" ], "x-ms-request-id": [ - "525b43f6-8aee-46cb-9e74-7d9cb907c643" + "abc68f2b-21f7-4be3-b215-a40a85d574cc" ], "x-ms-correlation-request-id": [ - "525b43f6-8aee-46cb-9e74-7d9cb907c643" + "abc68f2b-21f7-4be3-b215-a40a85d574cc" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223823Z:525b43f6-8aee-46cb-9e74-7d9cb907c643" + "CENTRALUS:20170327T180803Z:abc68f2b-21f7-4be3-b215-a40a85d574cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6357ebab-6ece-4a30-8102-918eedbeaaab" + "1fa657c2-60d7-4932-9ed7-4e41596f7327" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:24 GMT" + "Mon, 27 Mar 2017 18:08:04 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-request-id": [ - "98df156f-8784-443b-87af-70bf58ded4da" + "5f1f7203-8da3-43e9-b6a4-ab8059393cfd" ], "x-ms-correlation-request-id": [ - "98df156f-8784-443b-87af-70bf58ded4da" + "5f1f7203-8da3-43e9-b6a4-ab8059393cfd" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223824Z:98df156f-8784-443b-87af-70bf58ded4da" + "CENTRALUS:20170327T180804Z:5f1f7203-8da3-43e9-b6a4-ab8059393cfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e54cd550-a456-4ca3-8e7f-22ad8a7ffada" + "6d41bca1-3556-42e3-93a2-febcfc74d969" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:24 GMT" + "Mon, 27 Mar 2017 18:08:04 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14998" ], "x-ms-request-id": [ - "a26d5345-5667-4694-ab38-8cf440f77301" + "42b69eb2-dc4e-41b8-b68d-69337e2065ca" ], "x-ms-correlation-request-id": [ - "a26d5345-5667-4694-ab38-8cf440f77301" + "42b69eb2-dc4e-41b8-b68d-69337e2065ca" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223824Z:a26d5345-5667-4694-ab38-8cf440f77301" + "CENTRALUS:20170327T180804Z:42b69eb2-dc4e-41b8-b68d-69337e2065ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17895?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzg5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13679?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "409110ea-cf74-4c9b-9358-017846c8ddbf" + "49c20109-179d-4db5-a89a-ec35cd83b931" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17895' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg13679' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:24 GMT" + "Mon, 27 Mar 2017 18:08:04 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14997" ], "x-ms-request-id": [ - "8dbad941-eeb8-45b9-80b9-bdbf68e8728a" + "9cc4c9c2-2672-465a-93b5-6ff99a9e66f1" ], "x-ms-correlation-request-id": [ - "8dbad941-eeb8-45b9-80b9-bdbf68e8728a" + "9cc4c9c2-2672-465a-93b5-6ff99a9e66f1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223824Z:8dbad941-eeb8-45b9-80b9-bdbf68e8728a" + "CENTRALUS:20170327T180804Z:9cc4c9c2-2672-465a-93b5-6ff99a9e66f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17895?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzg5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13679?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89518b15-d8f6-4b04-9398-d9f48703fb57" + "46d14e16-dc0e-413c-a86f-2cec8d4972f3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895\",\r\n \"name\": \"datalakerg17895\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679\",\r\n \"name\": \"datalakerg13679\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:24 GMT" + "Mon, 27 Mar 2017 18:08:05 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14996" ], "x-ms-request-id": [ - "f5c29907-b3b9-48e0-9677-8e6531f250bc" + "8c4adfe5-1f39-46b2-8e02-43def13c76d4" ], "x-ms-correlation-request-id": [ - "f5c29907-b3b9-48e0-9677-8e6531f250bc" + "8c4adfe5-1f39-46b2-8e02-43def13c76d4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223825Z:f5c29907-b3b9-48e0-9677-8e6531f250bc" + "CENTRALUS:20170327T180805Z:8c4adfe5-1f39-46b2-8e02-43def13c76d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17895?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzg5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13679?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMzY3OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "519dccf9-fbb4-4242-be6f-929a898f60c8" + "2d2272c6-66bb-4677-b7e2-fa3529955c72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895\",\r\n \"name\": \"datalakerg17895\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679\",\r\n \"name\": \"datalakerg13679\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:24 GMT" + "Mon, 27 Mar 2017 18:08:04 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-request-id": [ - "bdcae301-37d9-4308-8393-ac3cff794424" + "881fbd67-0751-455f-ac33-0d87c5fa3bb8" ], "x-ms-correlation-request-id": [ - "bdcae301-37d9-4308-8393-ac3cff794424" + "881fbd67-0751-455f-ac33-0d87c5fa3bb8" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223825Z:bdcae301-37d9-4308-8393-ac3cff794424" + "CENTRALUS:20170327T180805Z:881fbd67-0751-455f-ac33-0d87c5fa3bb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM3NzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwNDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a23cedc-d8d2-48e9-af39-1ac5c2936a93" + "a81a19ab-85fa-4003-a7ad-e830d566899a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13775' under resource group 'datalakerg17895' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13045' under resource group 'datalakerg13679' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:38:25 GMT" + "Mon, 27 Mar 2017 18:08:05 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "376d5946-13ca-4e77-b910-eb2c6ec57654" + "6c2eee77-f49e-41b7-bc78-f8e036bffa78" ], "x-ms-correlation-request-id": [ - "376d5946-13ca-4e77-b910-eb2c6ec57654" + "6c2eee77-f49e-41b7-bc78-f8e036bffa78" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223825Z:376d5946-13ca-4e77-b910-eb2c6ec57654" + "CENTRALUS:20170327T180806Z:6c2eee77-f49e-41b7-bc78-f8e036bffa78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM3NzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwNDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13775.azuredatalakestore.net\",\r\n \"accountId\": \"eff3e58f-5ab5-49f1-b73e-dae96ea68616\",\r\n \"creationTime\": \"2016-11-10T22:38:30.4661303Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:38:30.4661303Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775\",\r\n \"name\": \"testadlfs13775\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13045.azuredatalakestore.net\",\r\n \"accountId\": \"2f6486c2-99c5-43cd-b16b-ca605e7d61b2\",\r\n \"creationTime\": \"2017-03-27T18:08:06.6187539Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:08:06.6187539Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045\",\r\n \"name\": \"testadlfs13045\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:38:57 GMT" + "Mon, 27 Mar 2017 18:08:37 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "00284d38-e92a-4a61-a946-6711961dc335" + "5db1ba4e-f3b6-41a3-b15e-45535f74d5c2" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14994" ], "x-ms-correlation-request-id": [ - "e80206bb-e242-42c6-8e3a-299b88d0a558" + "527f7293-cf9c-423d-8a0a-94d572f7df72" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223857Z:e80206bb-e242-42c6-8e3a-299b88d0a558" + "CENTRALUS:20170327T180838Z:527f7293-cf9c-423d-8a0a-94d572f7df72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM3NzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwNDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27cec843-4851-4119-81b4-47801f5cd8e1" + "1be082d8-1f74-41d6-8dde-f55a5c6b3c90" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13775.azuredatalakestore.net\",\r\n \"accountId\": \"eff3e58f-5ab5-49f1-b73e-dae96ea68616\",\r\n \"creationTime\": \"2016-11-10T22:38:30.4661303Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:38:30.4661303Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775\",\r\n \"name\": \"testadlfs13775\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13045.azuredatalakestore.net\",\r\n \"accountId\": \"2f6486c2-99c5-43cd-b16b-ca605e7d61b2\",\r\n \"creationTime\": \"2017-03-27T18:08:06.6187539Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:08:06.6187539Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045\",\r\n \"name\": \"testadlfs13045\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:38:57 GMT" + "Mon, 27 Mar 2017 18:08:38 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4b989bf1-1ba7-4924-a7ef-dbc22cff7e75" + "3771397c-3677-43e0-b893-a155bc1e8647" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14999" ], "x-ms-correlation-request-id": [ - "2de152b0-083d-40b4-9516-5c9374e4ebea" + "c4b91ac8-d645-46cd-96c0-f93289a38fd9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223858Z:2de152b0-083d-40b4-9516-5c9374e4ebea" + "CENTRALUS:20170327T180839Z:c4b91ac8-d645-46cd-96c0-f93289a38fd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzg5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTM3NzU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMzY3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTMwNDU/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "54156f40-2451-43a2-8117-6ebcf211d0f7" + "9aa37bf7-147b-4bda-aec2-8dda4d4afcf9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"eff3e58f-5ab5-49f1-b73e-dae96ea68616\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775\",\r\n \"name\": \"testadlfs13775\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"2f6486c2-99c5-43cd-b16b-ca605e7d61b2\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045\",\r\n \"name\": \"testadlfs13045\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:38:26 GMT" + "Mon, 27 Mar 2017 18:08:07 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17895/providers/Microsoft.DataLakeStore/accounts/testadlfs13775/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg13679/providers/Microsoft.DataLakeStore/accounts/testadlfs13045/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/eff3e58f-5ab5-49f1-b73e-dae96ea686160?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2f6486c2-99c5-43cd-b16b-ca605e7d61b20?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "b9541d43-924b-4cbf-b5e0-99ca0e331fa7" + "9f66ce8c-769f-487f-89b7-678a494d7e3d" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "46aaf1ed-9399-4db3-9f65-cda9107b3150" + "d993ade0-7743-4cf9-a72d-62f02ac95719" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223826Z:46aaf1ed-9399-4db3-9f65-cda9107b3150" + "CENTRALUS:20170327T180807Z:d993ade0-7743-4cf9-a72d-62f02ac95719" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/eff3e58f-5ab5-49f1-b73e-dae96ea686160?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2VmZjNlNThmLTVhYjUtNDlmMS1iNzNlLWRhZTk2ZWE2ODYxNjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/2f6486c2-99c5-43cd-b16b-ca605e7d61b20?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzJmNjQ4NmMyLTk5YzUtNDNjZC1iMTZiLWNhNjA1ZTdkNjFiMjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:38:56 GMT" + "Mon, 27 Mar 2017 18:08:37 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2469844a-4a16-475f-80c5-1192dc9cfb49" + "9dfcc31a-9455-4a1a-8c28-b95369f2bc44" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "75064a41-3384-4e28-8113-f4e089e724a6" + "2659aaf3-c7ac-4464-924f-746e1361e163" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T223857Z:75064a41-3384-4e28-8113-f4e089e724a6" + "CENTRALUS:20170327T180838Z:2659aaf3-c7ac-4464-924f-746e1361e163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3258?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -745,14 +739,13 @@ "0" ], "x-ms-client-request-id": [ - "8857a3d7-519f-4c19-a4b1-fb4de2cfff6e" + "f0f22217-fcc3-426f-bf58-894cedf254bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:00 GMT" + "Mon, 27 Mar 2017 18:08:40 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs13775.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt3258?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs13045.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7894?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "c477dead-9f6f-431a-ba34-bb06895aefc7" + "435ca5ca-2948-4199-b340-afe6bf5cbddb" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3258?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11b8c27f-98c1-4f69-929e-3b475ac33ac5" + "8ce7f65d-4e0b-42af-8d4e-decfe50589ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817540762,\r\n \"modificationTime\": 1478817540762,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638121169,\r\n \"modificationTime\": 1490638121169,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:00 GMT" + "Mon, 27 Mar 2017 18:08:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "cf082162-97f0-480e-9573-e6795a35e860" + "a7987fe9-13dd-4bc0-b21f-d4b5002ccf82" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,26 +844,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3258?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "591f40c1-9871-4e9e-9fe5-14443ce54a79" + "0f8e5123-a64e-410f-ad93-2622461d8d44" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817540762,\r\n \"modificationTime\": 1478817540762,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638121169,\r\n \"modificationTime\": 1490638121169,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:00 GMT" + "Mon, 27 Mar 2017 18:08:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "80bf6d9a-704f-432d-a238-51a13c08dbb3" + "d8f0a93b-cae0-4fde-b970-8029fab1e512" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -907,26 +898,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3258?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae0d0a20-d41e-413c-ae43-5939fc8bb12a" + "cd62cf7b-dbab-40e4-aaef-8e3c5673c78f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817540762,\r\n \"modificationTime\": 1478817540762,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 1478817660000\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638121169,\r\n \"modificationTime\": 1490638121169,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 1490638241000,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "299" + "316" ], "Content-Type": [ "application/json; charset=utf-8" @@ -938,16 +928,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:00 GMT" + "Mon, 27 Mar 2017 18:08:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1dfa8a15-a4d9-4609-92af-71d17bcf255b" + "acb7140d-ff12-431f-9095-e496c507bbbc" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -962,26 +952,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3258?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36441d66-88a1-4edc-a4eb-3df9e70069d7" + "6780dac9-053a-41d2-9ac7-08f46f520f36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817540762,\r\n \"modificationTime\": 1478817540762,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 1478817661394\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638121169,\r\n \"modificationTime\": 1490638121169,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 1490638242322,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "299" + "316" ], "Content-Type": [ "application/json; charset=utf-8" @@ -993,16 +982,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:01 GMT" + "Mon, 27 Mar 2017 18:08:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d4925b67-3311-4006-b9af-ab4aaf1584d2" + "2fdb252e-c1a8-45d4-9410-b13b5d10c6b8" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1017,26 +1006,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3258?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72bcb0bd-7c32-420b-9fb0-1c191f7003ce" + "d032efd8-4309-49de-8b61-fafefcc6e024" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817540762,\r\n \"modificationTime\": 1478817540762,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 1478817660762\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638121169,\r\n \"modificationTime\": 1490638121169,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 1490638241169,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "299" + "316" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1048,16 +1036,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:01 GMT" + "Mon, 27 Mar 2017 18:08:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "3d013032-bb26-41a8-ba91-2959f51ff9c7" + "535a048f-90bd-47c5-8012-fa9f4b046495" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1072,26 +1060,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt3258?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7894?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "473382d5-d68d-4328-9a9d-dd77f5b942b0" + "b8bb7b75-828c-4e80-a854-a4e8649719bc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817540762,\r\n \"modificationTime\": 1478817540762,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638121169,\r\n \"modificationTime\": 1490638121169,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "287" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1103,16 +1090,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:01 GMT" + "Mon, 27 Mar 2017 18:08:43 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "b085e75e-899d-4d73-a374-ef7c3d510a9b" + "b2b8ff40-e076-4238-bda9-9a705c8bb009" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1127,20 +1114,19 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3258?expiryOption=Absolute&expireTime=1478817660000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P2V4cGlyeU9wdGlvbj1BYnNvbHV0ZSZleHBpcmVUaW1lPTE0Nzg4MTc2NjAwMDAmb3A9U0VURVhQSVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7894?expiryOption=Absolute&expireTime=1490638241000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P2V4cGlyeU9wdGlvbj1BYnNvbHV0ZSZleHBpcmVUaW1lPTE0OTA2MzgyNDEwMDAmb3A9U0VURVhQSVJZJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8aa4bf5-502a-4edf-a261-1d75a880c0fa" + "cd10e439-8588-4fce-888d-7045e7459d87" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1155,13 +1141,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:00 GMT" + "Mon, 27 Mar 2017 18:08:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ae4ad683-d8e4-47de-9992-08a9d7a55043" + "c5b4ab5a-761c-43b2-a535-69e77ec120e9" ], "X-Content-Type-Options": [ "nosniff" @@ -1173,20 +1159,19 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3258?expiryOption=RelativeToNow&expireTime=120000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P2V4cGlyeU9wdGlvbj1SZWxhdGl2ZVRvTm93JmV4cGlyZVRpbWU9MTIwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7894?expiryOption=RelativeToNow&expireTime=120000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P2V4cGlyeU9wdGlvbj1SZWxhdGl2ZVRvTm93JmV4cGlyZVRpbWU9MTIwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11e77dfe-9d2a-4e15-bd8a-f19850e6c672" + "05d9018f-9864-45c7-947f-eb902cd8cc40" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1201,13 +1186,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:01 GMT" + "Mon, 27 Mar 2017 18:08:41 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "256af612-96b5-4974-8878-f3326593bbcc" + "bdebc702-609f-41a3-8538-481d6ac4bae8" ], "X-Content-Type-Options": [ "nosniff" @@ -1219,20 +1204,19 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3258?expiryOption=RelativeToCreationDate&expireTime=120000&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P2V4cGlyeU9wdGlvbj1SZWxhdGl2ZVRvQ3JlYXRpb25EYXRlJmV4cGlyZVRpbWU9MTIwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7894?expiryOption=RelativeToCreationDate&expireTime=120000&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P2V4cGlyeU9wdGlvbj1SZWxhdGl2ZVRvQ3JlYXRpb25EYXRlJmV4cGlyZVRpbWU9MTIwMDAwJm9wPVNFVEVYUElSWSZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "769f659b-f627-4735-a489-509d0f3a58e6" + "87289b3d-f2c9-49b2-b20c-62e2fcdb9c46" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1247,13 +1231,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:01 GMT" + "Mon, 27 Mar 2017 18:08:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c488d910-011e-4dc7-bd95-14d8b41aa69d" + "9b5fe3a1-bc46-46d2-b21c-bcc9516e7d33" ], "X-Content-Type-Options": [ "nosniff" @@ -1265,20 +1249,19 @@ "StatusCode": 200 }, { - "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt3258?expiryOption=NeverExpire&op=SETEXPIRY&api-version=2016-11-01", - "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQzMjU4P2V4cGlyeU9wdGlvbj1OZXZlckV4cGlyZSZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/WebHdfsExt/SDKTestFolder01%2FSDKTestFile01.txt7894?expiryOption=NeverExpire&op=SETEXPIRY&api-version=2016-11-01", + "EncodedRequestUri": "L1dlYkhkZnNFeHQvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3ODk0P2V4cGlyeU9wdGlvbj1OZXZlckV4cGlyZSZvcD1TRVRFWFBJUlkmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4658717d-9fc1-444e-9508-232e6e6e1dca" + "9a2fe838-4171-48bd-ac21-de9f19db62ed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -1293,13 +1276,13 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:39:01 GMT" + "Mon, 27 Mar 2017 18:08:42 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "1da82038-870b-4ebc-b0b9-cf13c0ab9fd4" + "7155c7e5-8a75-4a1a-b9c7-60a6480d17ef" ], "X-Content-Type-Options": [ "nosniff" @@ -1313,17 +1296,17 @@ ], "Names": { ".ctor": [ - "datalakerg17895", - "testdatalake12027", - "testadlfs13775" + "datalakerg13679", + "testdatalake12576", + "testadlfs13045" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt3258" + "SDKTestFolder01/SDKTestFile01.txt7894" ] }, "Variables": { "SubscriptionId": "53d9063d-87ae-4ea8-be90-3686c3b8669f", - "absoluteTime": "11/10/2016 10:41:00 PM", - "relativeTime": "11/10/2016 10:41:01 PM" + "absoluteTime": "3/27/2017 6:10:41 PM", + "relativeTime": "3/27/2017 6:10:41 PM" } } \ No newline at end of file diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetDeleteAclEntry.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetDeleteAclEntry.json index 3045789b935e..66609da10c85 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetDeleteAclEntry.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetDeleteAclEntry.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3bd246b-f151-4bc4-9693-3cf3801ee76a" + "e804d64a-7af3-4133-9c47-af65af5e330c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:31 GMT" + "Mon, 27 Mar 2017 19:12:42 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-request-id": [ - "5df5be90-55b3-4444-8064-fa3701558484" + "fe3188e4-03c2-4482-8b8c-86870f4385bb" ], "x-ms-correlation-request-id": [ - "5df5be90-55b3-4444-8064-fa3701558484" + "fe3188e4-03c2-4482-8b8c-86870f4385bb" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224031Z:5df5be90-55b3-4444-8064-fa3701558484" + "WESTUS2:20170327T191242Z:fe3188e4-03c2-4482-8b8c-86870f4385bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68c13b72-086c-423e-a367-9bd7822c866d" + "194ec3e0-7494-4530-9964-c2dc3cee6f53" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:32 GMT" + "Mon, 27 Mar 2017 19:12:42 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14987" ], "x-ms-request-id": [ - "0614cacc-bb4e-4238-91cd-673b2f5b7cfc" + "814f3630-50aa-4d19-8e12-2f20cd8c7b2d" ], "x-ms-correlation-request-id": [ - "0614cacc-bb4e-4238-91cd-673b2f5b7cfc" + "814f3630-50aa-4d19-8e12-2f20cd8c7b2d" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224032Z:0614cacc-bb4e-4238-91cd-673b2f5b7cfc" + "WESTUS2:20170327T191242Z:814f3630-50aa-4d19-8e12-2f20cd8c7b2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b92ba76e-f8d4-4774-8420-3a3ebea2d597" + "ffdef342-4b82-44da-a3d4-0f0089b3b44a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:32 GMT" + "Mon, 27 Mar 2017 19:12:44 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-request-id": [ - "6a347707-59c2-4d05-ba6b-188c212152a7" + "cfe26491-de19-4cfb-8d75-12910c377724" ], "x-ms-correlation-request-id": [ - "6a347707-59c2-4d05-ba6b-188c212152a7" + "cfe26491-de19-4cfb-8d75-12910c377724" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224033Z:6a347707-59c2-4d05-ba6b-188c212152a7" + "WESTUS2:20170327T191244Z:cfe26491-de19-4cfb-8d75-12910c377724" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fc725a4-25ea-490b-a943-3bd74953d4c2" + "301c3cf7-8495-4f66-a217-6846a9df4ec8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:33 GMT" + "Mon, 27 Mar 2017 19:12:44 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14986" ], "x-ms-request-id": [ - "86c3eee4-e42c-4be6-bbe2-eca03d2267aa" + "82fcf4b0-a8be-47de-af39-ab354b142f59" ], "x-ms-correlation-request-id": [ - "86c3eee4-e42c-4be6-bbe2-eca03d2267aa" + "82fcf4b0-a8be-47de-af39-ab354b142f59" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224033Z:86c3eee4-e42c-4be6-bbe2-eca03d2267aa" + "WESTUS2:20170327T191244Z:82fcf4b0-a8be-47de-af39-ab354b142f59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,26 +223,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1989?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTg5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19346?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTM0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b61c33bb-d504-4339-a15a-c149e8533768" + "d1c2202b-fd61-478d-9c19-a490989d10ea" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1989' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg19346' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "106" + "107" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:33 GMT" + "Mon, 27 Mar 2017 19:12:44 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14985" ], "x-ms-request-id": [ - "3bfc533f-da6e-44d1-bb19-714dae4bf9fa" + "e0c1fcc3-dff0-40bf-8bd7-a905bdb9ffff" ], "x-ms-correlation-request-id": [ - "3bfc533f-da6e-44d1-bb19-714dae4bf9fa" + "e0c1fcc3-dff0-40bf-8bd7-a905bdb9ffff" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224033Z:3bfc533f-da6e-44d1-bb19-714dae4bf9fa" + "WESTUS2:20170327T191244Z:e0c1fcc3-dff0-40bf-8bd7-a905bdb9ffff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1989?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTg5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19346?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTM0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d68cd259-7581-4229-bf52-bd6bc432e194" + "55644b64-0932-4493-8c9e-697387e289e8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989\",\r\n \"name\": \"datalakerg1989\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346\",\r\n \"name\": \"datalakerg19346\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:34 GMT" + "Mon, 27 Mar 2017 19:12:45 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14984" ], "x-ms-request-id": [ - "e2bb3539-b9b1-4def-84b5-f337701f94d2" + "05764321-4830-4fbc-8f33-087c71373318" ], "x-ms-correlation-request-id": [ - "e2bb3539-b9b1-4def-84b5-f337701f94d2" + "05764321-4830-4fbc-8f33-087c71373318" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224034Z:e2bb3539-b9b1-4def-84b5-f337701f94d2" + "WESTUS2:20170327T191245Z:05764321-4830-4fbc-8f33-087c71373318" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1989?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTg5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19346?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxOTM0Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,20 +346,19 @@ "31" ], "x-ms-client-request-id": [ - "612294be-98a6-446c-89ad-0efb72c53602" + "cab031d6-a9dc-4b83-bf06-ecd2954b3bfd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989\",\r\n \"name\": \"datalakerg1989\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346\",\r\n \"name\": \"datalakerg19346\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "182" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:34 GMT" + "Mon, 27 Mar 2017 19:12:45 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-request-id": [ - "a3a3b08e-30e5-4188-a167-628dd15853cb" + "4909e90f-5723-4e54-8745-25651a51b64a" ], "x-ms-correlation-request-id": [ - "a3a3b08e-30e5-4188-a167-628dd15853cb" + "4909e90f-5723-4e54-8745-25651a51b64a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224034Z:a3a3b08e-30e5-4188-a167-628dd15853cb" + "WESTUS2:20170327T191245Z:4909e90f-5723-4e54-8745-25651a51b64a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMzI1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTM0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1MzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72a08454-3dd9-4b8d-af68-dce845ab1ea8" + "92f82a5e-e25e-498c-a776-d72badc5a567" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs13253' under resource group 'datalakerg1989' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17533' under resource group 'datalakerg19346' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:40:34 GMT" + "Mon, 27 Mar 2017 19:12:45 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "abd136f6-e141-40f4-a6c2-7b5737ab3152" + "c10ef177-ca22-4122-9976-cd39798eb5c9" ], "x-ms-correlation-request-id": [ - "abd136f6-e141-40f4-a6c2-7b5737ab3152" + "c10ef177-ca22-4122-9976-cd39798eb5c9" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224034Z:abd136f6-e141-40f4-a6c2-7b5737ab3152" + "WESTUS2:20170327T191246Z:c10ef177-ca22-4122-9976-cd39798eb5c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,21 +448,17 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMzI1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTM0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1MzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13253.azuredatalakestore.net\",\r\n \"accountId\": \"3c7e0818-3018-4e08-93f2-ffa372e919c7\",\r\n \"creationTime\": \"2016-11-10T22:40:41.3547637Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:40:41.3547637Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253\",\r\n \"name\": \"testadlfs13253\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17533.azuredatalakestore.net\",\r\n \"accountId\": \"0fada2a7-924e-445d-aaf6-907b5f1e0b0f\",\r\n \"creationTime\": \"2017-03-27T19:12:48.9602721Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:12:48.9602721Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533\",\r\n \"name\": \"testadlfs17533\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "690" - ], "Content-Type": [ "application/json" ], @@ -478,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:41:07 GMT" + "Mon, 27 Mar 2017 19:13:19 GMT" ], "Pragma": [ "no-cache" @@ -486,8 +480,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "3d1441c0-e7c5-4444-9517-60e87bd23a2c" + "4ca90cff-88bf-469e-86ec-afbc32c40bf2" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14992" ], "x-ms-correlation-request-id": [ - "6ef35b68-dd64-432f-a27f-63415b5656ce" + "8ee08450-5215-462c-bead-3eb2dcf67821" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224107Z:6ef35b68-dd64-432f-a27f-63415b5656ce" + "WESTUS2:20170327T191319Z:8ee08450-5215-462c-bead-3eb2dcf67821" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMzI1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTM0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1MzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1f320f6-d193-4c7b-8fb4-ed2eacf08684" + "d7833581-7009-447b-bfc8-6b5d4c89aba8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs13253.azuredatalakestore.net\",\r\n \"accountId\": \"3c7e0818-3018-4e08-93f2-ffa372e919c7\",\r\n \"creationTime\": \"2016-11-10T22:40:41.3547637Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:40:41.3547637Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253\",\r\n \"name\": \"testadlfs13253\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17533.azuredatalakestore.net\",\r\n \"accountId\": \"0fada2a7-924e-445d-aaf6-907b5f1e0b0f\",\r\n \"creationTime\": \"2017-03-27T19:12:48.9602721Z\",\r\n \"lastModifiedTime\": \"2017-03-27T19:12:48.9602721Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533\",\r\n \"name\": \"testadlfs17533\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:41:09 GMT" + "Mon, 27 Mar 2017 19:13:19 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "73837718-7768-40d8-9858-20c3ad6656ba" + "75f108d8-fdd8-4376-9dcd-c85b6c84e3d4" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14993" ], "x-ms-correlation-request-id": [ - "c0e81e3b-e7bb-43cb-b97b-b81acfa6f5eb" + "c29ffc37-6608-49fe-9149-6d72466966de" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224109Z:c0e81e3b-e7bb-43cb-b97b-b81acfa6f5eb" + "WESTUS2:20170327T191320Z:c29ffc37-6608-49fe-9149-6d72466966de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTg5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxMzI1Mz9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxOTM0Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc1MzM/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "41b3538c-2585-460a-88d3-8ab643b87eda" + "d2acedba-ec84-4579-a886-773e12a7baa0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"3c7e0818-3018-4e08-93f2-ffa372e919c7\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253\",\r\n \"name\": \"testadlfs13253\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"0fada2a7-924e-445d-aaf6-907b5f1e0b0f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533\",\r\n \"name\": \"testadlfs17533\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "419" + "420" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:40:35 GMT" + "Mon, 27 Mar 2017 19:12:48 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1989/providers/Microsoft.DataLakeStore/accounts/testadlfs13253/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg19346/providers/Microsoft.DataLakeStore/accounts/testadlfs17533/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3c7e0818-3018-4e08-93f2-ffa372e919c70?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0fada2a7-924e-445d-aaf6-907b5f1e0b0f0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "1fd54808-6d65-4ea1-aaa9-f3662d839a65" + "dbdbdf72-ae91-4256-9df5-b1655a6f956b" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1189" ], "x-ms-correlation-request-id": [ - "e37ff923-b44a-4d84-a280-c80f8c981fba" + "f9c8143e-5176-4b34-92b6-85ede6339c7f" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224036Z:e37ff923-b44a-4d84-a280-c80f8c981fba" + "WESTUS2:20170327T191248Z:f9c8143e-5176-4b34-92b6-85ede6339c7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,21 +664,17 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/3c7e0818-3018-4e08-93f2-ffa372e919c70?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzNjN2UwODE4LTMwMTgtNGUwOC05M2YyLWZmYTM3MmU5MTljNzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/0fada2a7-924e-445d-aaf6-907b5f1e0b0f0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzBmYWRhMmE3LTkyNGUtNDQ1ZC1hYWY2LTkwN2I1ZjFlMGIwZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "22" - ], "Content-Type": [ "application/json" ], @@ -697,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:41:06 GMT" + "Mon, 27 Mar 2017 19:13:18 GMT" ], "Pragma": [ "no-cache" @@ -705,8 +696,11 @@ "Server": [ "Microsoft-IIS/8.5" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-request-id": [ - "00aceb4c-b280-40a6-9e0b-7503a64bd4fe" + "606cfb13-0cf5-43a8-89de-ee72eaba80a1" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14989" ], "x-ms-correlation-request-id": [ - "9303596b-8f23-4188-b8a6-23cb6b7207ac" + "94902934-c8ad-474a-a29e-3c134552284a" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224107Z:9303596b-8f23-4188-b8a6-23cb6b7207ac" + "WESTUS2:20170327T191319Z:94902934-c8ad-474a-a29e-3c134552284a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,26 +727,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2ad0614-a339-4e95-b459-e262efb6e6b0" + "15ce505d-a7e0-4399-ac56-06e18f628366" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "196" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:41:11 GMT" + "Mon, 27 Mar 2017 19:13:21 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "51ce7d3c-5315-49bc-80c8-4e719e87af5d" + "4546c71b-8605-4da3-8493-75db2465e80b" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -788,26 +781,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0471dc7c-6ef5-491f-ba68-92f46f272153" + "7bc6ee8e-aae1-4d48-9bf3-680d51351eb1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx\",\r\n \"group::rwx\",\r\n \"mask::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user:027c28d5-c91d-49f0-98c5-d10134b169b3:rwx\",\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "256" + "219" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,16 +811,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:41:11 GMT" + "Mon, 27 Mar 2017 19:13:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "c013b053-1e41-4919-a680-ac980b61b2b9" + "958314a5-1520-4c03-bbb8-93e7864ba7a9" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -843,26 +835,25 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/%2F?op=MSGETACLSTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPU1TR0VUQUNMU1RBVFVTJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/%2F?op=GETACLSTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvJTJGP29wPUdFVEFDTFNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33cfbc79-3a48-4cba-ab26-0e7f820aa955" + "ed555acb-3c2b-4b0f-b919-8801e9d41212" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"user::rwx\",\r\n \"group::rwx\",\r\n \"mask::rwx\",\r\n \"other::---\"\r\n ],\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"AclStatus\": {\r\n \"entries\": [\r\n \"group::rwx\"\r\n ],\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"permission\": \"770\",\r\n \"stickyBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "208" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -874,16 +865,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:41:11 GMT" + "Mon, 27 Mar 2017 19:13:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "2f261812-9188-4cd6-ba0c-aa5e1f007b8c" + "21a15ce0-0293-430d-80f6-1c5781ffd892" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -904,14 +895,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "404a3b86-64bc-4682-b515-b9c13eebefc3" + "c444285d-e4f3-4d76-b60b-a43f6818032b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -926,19 +916,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:41:11 GMT" + "Mon, 27 Mar 2017 19:13:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "68f09fc6-5f42-4a0f-8192-8ef59fc5cc31" + "948c1cc1-c311-4f61-a176-93d89ec1e910" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -959,14 +949,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "deb00eb9-2c55-4512-94b5-61782615b2fb" + "1d7a7663-2501-4fb6-ac90-a78ab8f0e86b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -981,19 +970,19 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:41:11 GMT" + "Mon, 27 Mar 2017 19:13:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "ab711c31-d8d6-49e9-b09c-7b80ca0099a9" + "fb6a8e21-fa9c-44ca-acf9-70d7aec03d6f" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -1010,9 +999,9 @@ ], "Names": { ".ctor": [ - "datalakerg1989", - "testdatalake11763", - "testadlfs13253" + "datalakerg19346", + "testdatalake17911", + "testadlfs17533" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetFileProperties.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetFileProperties.json index 63fefc6ea117..4a4f2e02a640 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetFileProperties.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemSetFileProperties.json @@ -7,21 +7,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adaecdd2-ac57-4a4a-90c1-f3e7603c4ec7" + "d38068b3-75b6-4a72-901b-46af04116108" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -32,22 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:30 GMT" + "Mon, 27 Mar 2017 18:13:47 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1196" ], "x-ms-request-id": [ - "672ee8d5-f54f-4da2-9129-0df06d0a8c59" + "d7e408e9-f380-4038-9172-99c85ea38474" ], "x-ms-correlation-request-id": [ - "672ee8d5-f54f-4da2-9129-0df06d0a8c59" + "d7e408e9-f380-4038-9172-99c85ea38474" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224330Z:672ee8d5-f54f-4da2-9129-0df06d0a8c59" + "WESTUS2:20170327T181347Z:d7e408e9-f380-4038-9172-99c85ea38474" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,21 +64,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1919c638-4c6e-4995-94a1-48e01be1e769" + "a198f238-9b39-424d-aca7-b30e6a6699ca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1194" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -87,22 +85,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:30 GMT" + "Mon, 27 Mar 2017 18:13:47 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14995" ], "x-ms-request-id": [ - "bfeeef08-63de-4984-8dd1-774c73ac5c4b" + "bb209fcc-7542-49bf-b825-e8b9e798f327" ], "x-ms-correlation-request-id": [ - "bfeeef08-63de-4984-8dd1-774c73ac5c4b" + "bb209fcc-7542-49bf-b825-e8b9e798f327" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224330Z:bfeeef08-63de-4984-8dd1-774c73ac5c4b" + "WESTUS2:20170327T181347Z:bb209fcc-7542-49bf-b825-e8b9e798f327" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,21 +118,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d58bf32f-499e-4832-8efa-f9b7388c2459" + "64643e19-e708-4a2d-93a3-72d40cecac87" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -142,22 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:30 GMT" + "Mon, 27 Mar 2017 18:13:48 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1195" ], "x-ms-request-id": [ - "065e01b0-8004-4590-9108-abc4516535a5" + "520d0004-f017-4eb2-a40a-5d6313f5c9cc" ], "x-ms-correlation-request-id": [ - "065e01b0-8004-4590-9108-abc4516535a5" + "520d0004-f017-4eb2-a40a-5d6313f5c9cc" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224331Z:065e01b0-8004-4590-9108-abc4516535a5" + "WESTUS2:20170327T181348Z:520d0004-f017-4eb2-a40a-5d6313f5c9cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,21 +175,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a966e4f1-77d4-411c-b0c4-1059908e4211" + "aab2bf30-5122-491d-9571-53ae8b4fe7b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1940" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -197,22 +196,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:30 GMT" + "Mon, 27 Mar 2017 18:13:48 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14994" ], "x-ms-request-id": [ - "85921fa6-b4e4-4b7a-a2f4-2ed9a5538d37" + "048611c6-99d6-424c-8640-d4c368d80384" ], "x-ms-correlation-request-id": [ - "85921fa6-b4e4-4b7a-a2f4-2ed9a5538d37" + "048611c6-99d6-424c-8640-d4c368d80384" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224331Z:85921fa6-b4e4-4b7a-a2f4-2ed9a5538d37" + "WESTUS2:20170327T181348Z:048611c6-99d6-424c-8640-d4c368d80384" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17356?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzM1Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16455?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2128f050-2726-4e7b-a12e-04fc3aa9932d" + "cfeaac91-a4fb-41eb-97c6-40503f251694" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17356' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg16455' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:30 GMT" + "Mon, 27 Mar 2017 18:13:48 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14993" ], "x-ms-request-id": [ - "68bdba98-bbe7-402e-8ac8-ffcce3b601cc" + "b5d7ce47-0fa5-4459-a6e8-f758b62e6023" ], "x-ms-correlation-request-id": [ - "68bdba98-bbe7-402e-8ac8-ffcce3b601cc" + "b5d7ce47-0fa5-4459-a6e8-f758b62e6023" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224331Z:68bdba98-bbe7-402e-8ac8-ffcce3b601cc" + "WESTUS2:20170327T181348Z:b5d7ce47-0fa5-4459-a6e8-f758b62e6023" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,27 +280,23 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17356?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzM1Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16455?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7127e037-cf47-49d3-8f75-f16f69eb05f7" + "9e609bcd-2b51-4247-b9ab-20b047b09a83" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356\",\r\n \"name\": \"datalakerg17356\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455\",\r\n \"name\": \"datalakerg16455\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "184" - ], "Content-Type": [ "application/json; charset=utf-8" ], @@ -310,22 +307,25 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:31 GMT" + "Mon, 27 Mar 2017 18:13:49 GMT" ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14992" ], "x-ms-request-id": [ - "902f48f9-5d75-432f-a33d-a072851af3c4" + "9d8f5f8c-6239-46bf-b589-1b6981b7ce8d" ], "x-ms-correlation-request-id": [ - "902f48f9-5d75-432f-a33d-a072851af3c4" + "9d8f5f8c-6239-46bf-b589-1b6981b7ce8d" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224331Z:902f48f9-5d75-432f-a33d-a072851af3c4" + "WESTUS2:20170327T181349Z:9d8f5f8c-6239-46bf-b589-1b6981b7ce8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17356?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzM1Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16455?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNjQ1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "47998352-a3eb-442f-8c19-e10e714c895f" + "6f04c302-93a3-4e6e-aebf-5e4fd1a5c1c4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356\",\r\n \"name\": \"datalakerg17356\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455\",\r\n \"name\": \"datalakerg16455\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:31 GMT" + "Mon, 27 Mar 2017 18:13:49 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1194" ], "x-ms-request-id": [ - "4d9bc2c3-941e-4c27-898b-af650b3e9631" + "ad9bbbb4-3cfe-4f6b-897d-d197b34355f3" ], "x-ms-correlation-request-id": [ - "4d9bc2c3-941e-4c27-898b-af650b3e9631" + "ad9bbbb4-3cfe-4f6b-897d-d197b34355f3" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224331Z:4d9bc2c3-941e-4c27-898b-af650b3e9631" + "WESTUS2:20170327T181349Z:ad9bbbb4-3cfe-4f6b-897d-d197b34355f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,23 +394,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzM1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyMDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1Mjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1393b8bd-924e-4df6-9796-e1894e8b004e" + "1304a8c1-5fa1-47cb-a167-d469ee9017c0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs11207' under resource group 'datalakerg17356' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs15527' under resource group 'datalakerg16455' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 22:43:35 GMT" + "Mon, 27 Mar 2017 18:13:49 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "34618124-0556-4df8-b5b6-d2f8e450efd1" + "3211424f-86b9-457e-a4b3-68721ee91440" ], "x-ms-correlation-request-id": [ - "34618124-0556-4df8-b5b6-d2f8e450efd1" + "3211424f-86b9-457e-a4b3-68721ee91440" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224334Z:34618124-0556-4df8-b5b6-d2f8e450efd1" + "WESTUS2:20170327T181350Z:3211424f-86b9-457e-a4b3-68721ee91440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzM1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyMDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1Mjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11207.azuredatalakestore.net\",\r\n \"accountId\": \"5c914133-8141-434a-b702-652b1d118d92\",\r\n \"creationTime\": \"2016-11-10T22:43:40.7295243Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:43:40.7295243Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207\",\r\n \"name\": \"testadlfs11207\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15527.azuredatalakestore.net\",\r\n \"accountId\": \"94302fab-b105-4124-8c6f-101a2dcd7224\",\r\n \"creationTime\": \"2017-03-27T18:13:52.415611Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:13:52.415611Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527\",\r\n \"name\": \"testadlfs15527\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:44:08 GMT" + "Mon, 27 Mar 2017 18:14:22 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "0debf366-7e95-4bb1-8805-f05fe9d6a3d8" + "e342f864-0565-439c-9694-cb081fd1cc39" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14996" ], "x-ms-correlation-request-id": [ - "addad2b7-97f9-41a0-a195-2ddbc373ccdf" + "f32ef63f-1fed-4cb6-b956-5495659ea1e3" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224408Z:addad2b7-97f9-41a0-a195-2ddbc373ccdf" + "WESTUS2:20170327T181423Z:f32ef63f-1fed-4cb6-b956-5495659ea1e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzM1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyMDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1Mjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7133e382-44ea-464f-817a-6d654cabf867" + "8d925458-f60e-4a55-80ba-da2ca6240c69" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs11207.azuredatalakestore.net\",\r\n \"accountId\": \"5c914133-8141-434a-b702-652b1d118d92\",\r\n \"creationTime\": \"2016-11-10T22:43:40.7295243Z\",\r\n \"lastModifiedTime\": \"2016-11-10T22:43:40.7295243Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207\",\r\n \"name\": \"testadlfs11207\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs15527.azuredatalakestore.net\",\r\n \"accountId\": \"94302fab-b105-4124-8c6f-101a2dcd7224\",\r\n \"creationTime\": \"2017-03-27T18:13:52.415611Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:13:52.415611Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527\",\r\n \"name\": \"testadlfs15527\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:44:09 GMT" + "Mon, 27 Mar 2017 18:14:24 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "2b74dc57-e789-4521-a92a-2a150727846d" + "0148d41c-d71a-4628-87dc-ac340b6c8253" ], "X-Content-Type-Options": [ "nosniff" @@ -569,13 +565,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14980" ], "x-ms-correlation-request-id": [ - "6d053715-a083-466a-93eb-748fabf647cd" + "4d42d83c-1eaa-4b8d-b730-6de294092fe0" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224409Z:6d053715-a083-466a-93eb-748fabf647cd" + "WESTUS2:20170327T181424Z:4d42d83c-1eaa-4b8d-b730-6de294092fe0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzM1Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTEyMDc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNjQ1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTU1Mjc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,17 +592,16 @@ "31" ], "x-ms-client-request-id": [ - "f31bba9d-01d4-474a-bd28-5b967b7d64bd" + "d390fe1d-09d7-4c26-a840-bf445c72bda6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"5c914133-8141-434a-b702-652b1d118d92\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207\",\r\n \"name\": \"testadlfs11207\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"94302fab-b105-4124-8c6f-101a2dcd7224\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527\",\r\n \"name\": \"testadlfs15527\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ "420" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:43:37 GMT" + "Mon, 27 Mar 2017 18:13:51 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17356/providers/Microsoft.DataLakeStore/accounts/testadlfs11207/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg16455/providers/Microsoft.DataLakeStore/accounts/testadlfs15527/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5c914133-8141-434a-b702-652b1d118d920?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/94302fab-b105-4124-8c6f-101a2dcd72240?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "4bdbf504-dc16-47cf-98d9-64bde694a467" + "0d30e6bb-873a-4fee-8bc8-05bdf71d52fa" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1192" ], "x-ms-correlation-request-id": [ - "bff753c4-b661-4faa-8d3f-4f0a67b481b8" + "ce68d829-4bd6-47d1-a7bc-95e4699c464d" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224337Z:bff753c4-b661-4faa-8d3f-4f0a67b481b8" + "WESTUS2:20170327T181352Z:ce68d829-4bd6-47d1-a7bc-95e4699c464d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/5c914133-8141-434a-b702-652b1d118d920?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzVjOTE0MTMzLTgxNDEtNDM0YS1iNzAyLTY1MmIxZDExOGQ5MjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/94302fab-b105-4124-8c6f-101a2dcd72240?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzk0MzAyZmFiLWIxMDUtNDEyNC04YzZmLTEwMWEyZGNkNzIyNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 22:44:07 GMT" + "Mon, 27 Mar 2017 18:14:22 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "16ac8729-2f31-42a8-ac87-bd84bade0d58" + "b31418b1-d551-4aa6-8ead-49a6a3b36b60" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14987" ], "x-ms-correlation-request-id": [ - "76a1a613-beaa-4a4d-9fd1-c25af7edaa39" + "5a96c589-0cda-4738-afea-8cf72cdf1bfb" ], "x-ms-routing-request-id": [ - "WESTUS:20161110T224408Z:76a1a613-beaa-4a4d-9fd1-c25af7edaa39" + "WESTUS2:20170327T181423Z:5a96c589-0cda-4738-afea-8cf72cdf1bfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,8 +727,8 @@ "StatusCode": 200 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6161?op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MTYxP29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1239?op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxMjM5P29wPUNSRUFURSZ3cml0ZT10cnVlJmFwaS12ZXJzaW9uPTIwMTYtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "These are some random test contents 1234!@", "RequestHeaders": { @@ -745,14 +739,13 @@ "42" ], "x-ms-client-request-id": [ - "356acc36-fc33-46e8-a139-2552b5f63542" + "2d1f99a7-267e-49b0-a30f-4553dc271e2f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -767,22 +760,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:44:11 GMT" + "Mon, 27 Mar 2017 18:14:28 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs11207.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt6161?op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs15527.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt1239?op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "634adc4c-a268-40bc-85c7-6459c531d4d1" + "aec318fd-6d12-46d8-b408-17efe5cd4dbc" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -797,26 +790,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt6161?op=MSGETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ2MTYxP29wPU1TR0VURklMRVNUQVRVUyZhcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt1239?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQxMjM5P29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf4c45a8-2f85-4d27-9d3b-8a2e8bb99c5b" + "0198db08-5e89-440f-83ce-beb750f9ae73" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478817851144,\r\n \"modificationTime\": 1478817851223,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"expirationTime\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 42,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638469558,\r\n \"modificationTime\": 1490638469613,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "305" ], "Content-Type": [ "application/json; charset=utf-8" @@ -828,16 +820,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 22:44:11 GMT" + "Mon, 27 Mar 2017 18:14:28 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "d143f79a-b57e-4692-bce2-92ffc6be2f24" + "c0c028a2-b8b2-421a-a10c-030696e0dcb0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -854,12 +846,12 @@ ], "Names": { ".ctor": [ - "datalakerg17356", - "testdatalake1349", - "testadlfs11207" + "datalakerg16455", + "testdatalake11017", + "testadlfs15527" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt6161" + "SDKTestFolder01/SDKTestFile01.txt1239" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemTestFile.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemTestFile.json index 73247bb2b7a0..b43932f36625 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemTestFile.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemTestFile.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5343f466-3663-46d9-80b2-3458a8eb99ea" + "7bd2a539-8d9b-499c-9a38-7df637e4ec0a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:14 GMT" + "Mon, 27 Mar 2017 18:21:21 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "b14df9cc-ff28-448e-992a-7e5363a6215a" + "9585316f-e371-4e3a-b6a3-2f264c8b3138" ], "x-ms-correlation-request-id": [ - "b14df9cc-ff28-448e-992a-7e5363a6215a" + "9585316f-e371-4e3a-b6a3-2f264c8b3138" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230014Z:b14df9cc-ff28-448e-992a-7e5363a6215a" + "CENTRALUS:20170327T182121Z:9585316f-e371-4e3a-b6a3-2f264c8b3138" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fecc336e-30b8-44e2-95b9-43bd53188ba9" + "57229503-ad28-469f-b666-3af810ec67cf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:14 GMT" + "Mon, 27 Mar 2017 18:21:21 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14991" ], "x-ms-request-id": [ - "2b04caaf-5c36-41ea-b71e-40fc41b3bef9" + "98041e7f-5713-4ac6-89f7-bff0ad4098d4" ], "x-ms-correlation-request-id": [ - "2b04caaf-5c36-41ea-b71e-40fc41b3bef9" + "98041e7f-5713-4ac6-89f7-bff0ad4098d4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230014Z:2b04caaf-5c36-41ea-b71e-40fc41b3bef9" + "CENTRALUS:20170327T182121Z:98041e7f-5713-4ac6-89f7-bff0ad4098d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ddbb7a82-b849-4452-848a-0ea777cde2fb" + "b851766b-d702-484d-876f-7be643f39f84" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:15 GMT" + "Mon, 27 Mar 2017 18:21:22 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-request-id": [ - "7ecdc8bd-1cf6-4cb9-b345-68a383069688" + "05217c53-607a-4bb6-8065-ec1d73bc01ce" ], "x-ms-correlation-request-id": [ - "7ecdc8bd-1cf6-4cb9-b345-68a383069688" + "05217c53-607a-4bb6-8065-ec1d73bc01ce" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230015Z:7ecdc8bd-1cf6-4cb9-b345-68a383069688" + "CENTRALUS:20170327T182122Z:05217c53-607a-4bb6-8065-ec1d73bc01ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e401c139-8bcb-4527-b0a9-61cebe73f5d5" + "f6e41a82-edd1-48c1-aa0b-451cf46fa4f8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:15 GMT" + "Mon, 27 Mar 2017 18:21:22 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14990" ], "x-ms-request-id": [ - "5ac647c7-701a-4cef-a9f4-d89f9d8a002f" + "75eca704-aa3e-461d-bb78-ba420bf8ea13" ], "x-ms-correlation-request-id": [ - "5ac647c7-701a-4cef-a9f4-d89f9d8a002f" + "75eca704-aa3e-461d-bb78-ba420bf8ea13" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230015Z:5ac647c7-701a-4cef-a9f4-d89f9d8a002f" + "CENTRALUS:20170327T182122Z:75eca704-aa3e-461d-bb78-ba420bf8ea13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,23 +223,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17932?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzkzMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11151?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTE1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45df617f-2288-42b7-9877-1ce108b378d4" + "4ce198c8-30e4-4a00-aa51-8efaf969cd36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg17932' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11151' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "107" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:15 GMT" + "Mon, 27 Mar 2017 18:21:22 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14989" ], "x-ms-request-id": [ - "c00b0699-7b15-4b90-833b-76fa9b3c063f" + "e7bc578d-0082-42a0-941f-8004b3f457ef" ], "x-ms-correlation-request-id": [ - "c00b0699-7b15-4b90-833b-76fa9b3c063f" + "e7bc578d-0082-42a0-941f-8004b3f457ef" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230015Z:c00b0699-7b15-4b90-833b-76fa9b3c063f" + "CENTRALUS:20170327T182122Z:e7bc578d-0082-42a0-941f-8004b3f457ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17932?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzkzMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11151?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTE1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b657e7b-7217-4636-a281-278e8b8c6756" + "7a21daca-4a07-4acd-ab89-07c5107b2ea9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932\",\r\n \"name\": \"datalakerg17932\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151\",\r\n \"name\": \"datalakerg11151\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:16 GMT" + "Mon, 27 Mar 2017 18:21:22 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14988" ], "x-ms-request-id": [ - "40de6eab-daf1-4eda-b3d7-6b6c4c8422d0" + "53e5fa41-72fd-4180-ba2e-41c28ce29a07" ], "x-ms-correlation-request-id": [ - "40de6eab-daf1-4eda-b3d7-6b6c4c8422d0" + "53e5fa41-72fd-4180-ba2e-41c28ce29a07" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230017Z:40de6eab-daf1-4eda-b3d7-6b6c4c8422d0" + "CENTRALUS:20170327T182122Z:53e5fa41-72fd-4180-ba2e-41c28ce29a07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17932?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxNzkzMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11151?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTE1MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,17 +346,16 @@ "31" ], "x-ms-client-request-id": [ - "4384e561-9df8-4ba0-91c3-0698649b8b48" + "769b9013-6455-49ba-8a5f-30da87b4c10a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932\",\r\n \"name\": \"datalakerg17932\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151\",\r\n \"name\": \"datalakerg11151\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:16 GMT" + "Mon, 27 Mar 2017 18:21:22 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-request-id": [ - "af44e8aa-920d-4ae1-84fc-83b3e005b3b6" + "b21a5521-e36e-4de5-9f0a-faaa94a00585" ], "x-ms-correlation-request-id": [ - "af44e8aa-920d-4ae1-84fc-83b3e005b3b6" + "b21a5521-e36e-4de5-9f0a-faaa94a00585" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230016Z:af44e8aa-920d-4ae1-84fc-83b3e005b3b6" + "CENTRALUS:20170327T182122Z:b21a5521-e36e-4de5-9f0a-faaa94a00585" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzkzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ2OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTE1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f78eef69-7de2-4fdd-9365-0ed37d395402" + "c11255ac-beff-48ae-ae45-196a6853d480" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs1468' under resource group 'datalakerg17932' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs17806' under resource group 'datalakerg11151' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "166" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:16 GMT" + "Mon, 27 Mar 2017 18:21:22 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "2f5da4ad-20e7-4abd-8de8-c09cf5dc3c37" + "bbe1950c-c6e4-47e0-8b8f-f383fa05cbb9" ], "x-ms-correlation-request-id": [ - "2f5da4ad-20e7-4abd-8de8-c09cf5dc3c37" + "bbe1950c-c6e4-47e0-8b8f-f383fa05cbb9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230017Z:2f5da4ad-20e7-4abd-8de8-c09cf5dc3c37" + "CENTRALUS:20170327T182123Z:bbe1950c-c6e4-47e0-8b8f-f383fa05cbb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzkzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ2OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTE1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1468.azuredatalakestore.net\",\r\n \"accountId\": \"e2045804-5ed0-4631-8b15-da7039d3d62a\",\r\n \"creationTime\": \"2016-11-10T23:00:22.4478878Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:00:22.4478878Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468\",\r\n \"name\": \"testadlfs1468\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17806.azuredatalakestore.net\",\r\n \"accountId\": \"ce955246-0e54-4ec4-ae00-cb42e71b9614\",\r\n \"creationTime\": \"2017-03-27T18:21:24.4836377Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:21:24.4836377Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806\",\r\n \"name\": \"testadlfs17806\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:48 GMT" + "Mon, 27 Mar 2017 18:21:54 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c20ce091-6851-44e3-8d4f-a7ef2ddd363d" + "92809765-ac97-4f62-a175-ee7714017480" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14995" ], "x-ms-correlation-request-id": [ - "92b2a682-6e95-4e62-b93a-5de079fea8eb" + "e009d333-a771-4456-828e-096380eb3444" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230049Z:92b2a682-6e95-4e62-b93a-5de079fea8eb" + "CENTRALUS:20170327T182155Z:e009d333-a771-4456-828e-096380eb3444" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzkzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ2OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTE1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1aa15ffb-5ca9-4ea2-b581-7791bb24e0c9" + "3cac7c68-e357-4f97-8201-44b0c0947f37" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs1468.azuredatalakestore.net\",\r\n \"accountId\": \"e2045804-5ed0-4631-8b15-da7039d3d62a\",\r\n \"creationTime\": \"2016-11-10T23:00:22.4478878Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:00:22.4478878Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468\",\r\n \"name\": \"testadlfs1468\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs17806.azuredatalakestore.net\",\r\n \"accountId\": \"ce955246-0e54-4ec4-ae00-cb42e71b9614\",\r\n \"creationTime\": \"2017-03-27T18:21:24.4836377Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:21:24.4836377Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806\",\r\n \"name\": \"testadlfs17806\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:49 GMT" + "Mon, 27 Mar 2017 18:21:56 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "c3a7b87c-317e-4262-915c-4db13b4dbf63" + "bbb7af78-8aeb-4979-8b9d-9532bb906ccd" ], "X-Content-Type-Options": [ "nosniff" @@ -572,10 +568,10 @@ "14994" ], "x-ms-correlation-request-id": [ - "b6f61f74-a868-4952-a89f-c0af960d33dc" + "45347af8-6ba6-4a6c-89f4-238995f5ad3e" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230049Z:b6f61f74-a868-4952-a89f-c0af960d33dc" + "CENTRALUS:20170327T182156Z:45347af8-6ba6-4a6c-89f4-238995f5ad3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxNzkzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTQ2OD9hcGktdmVyc2lvbj0yMDE2LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTE1MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTc4MDY/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "2dc89d35-2b05-42a0-9f52-430367c65c2c" + "4acb3e48-8a69-4d34-892f-0b9854403595" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"e2045804-5ed0-4631-8b15-da7039d3d62a\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468\",\r\n \"name\": \"testadlfs1468\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"ce955246-0e54-4ec4-ae00-cb42e71b9614\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806\",\r\n \"name\": \"testadlfs17806\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "418" + "420" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:17 GMT" + "Mon, 27 Mar 2017 18:21:24 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg17932/providers/Microsoft.DataLakeStore/accounts/testadlfs1468/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11151/providers/Microsoft.DataLakeStore/accounts/testadlfs17806/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e2045804-5ed0-4631-8b15-da7039d3d62a0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ce955246-0e54-4ec4-ae00-cb42e71b96140?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "0568ef81-e4ea-4a0a-aa1c-017b73047e19" + "685e148e-6639-4bb0-b1b4-2afa5808de33" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-correlation-request-id": [ - "c8d04072-1d2c-4f06-ad89-ea561ea51fc9" + "a91da9d1-b197-462e-9b85-d578e24030f4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230018Z:c8d04072-1d2c-4f06-ad89-ea561ea51fc9" + "CENTRALUS:20170327T182124Z:a91da9d1-b197-462e-9b85-d578e24030f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/e2045804-5ed0-4631-8b15-da7039d3d62a0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2UyMDQ1ODA0LTVlZDAtNDYzMS04YjE1LWRhNzAzOWQzZDYyYTA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/ce955246-0e54-4ec4-ae00-cb42e71b96140?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2NlOTU1MjQ2LTBlNTQtNGVjNC1hZTAwLWNiNDJlNzFiOTYxNDA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:48 GMT" + "Mon, 27 Mar 2017 18:21:54 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "d7c5865c-16ee-485e-8201-eab6539e2748" + "5a8d5da9-cd14-46fb-8256-74d680c4f8bb" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14998" ], "x-ms-correlation-request-id": [ - "0f26aae3-3c4d-4df6-9446-33bac5f3eaf0" + "b67fc1bb-9ae1-4cdf-852a-83654388a945" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230048Z:0f26aae3-3c4d-4df6-9446-33bac5f3eaf0" + "CENTRALUS:20170327T182154Z:b67fc1bb-9ae1-4cdf-852a-83654388a945" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -739,17 +733,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b19202e-b6b1-4374-9d9c-8950cefd8784" + "ef09eedf-ec9a-424d-826b-5cfa4ab3d6de" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /nonexistentfile [58fbf437-0808-4497-a191-e5bb57360958][2016-11-10T15:00:51.6144321-08:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"RemoteException\": {\r\n \"exception\": \"FileNotFoundException\",\r\n \"message\": \"File/Folder does not exist: /nonexistentfile [9c20fd20-8dd3-46fa-9d9c-285e54c7c9c0][2017-03-27T11:22:01.7471746-07:00]\",\r\n \"javaClassName\": \"java.io.FileNotFoundException\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "236" @@ -764,16 +757,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:00:51 GMT" + "Mon, 27 Mar 2017 18:22:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "58fbf437-0808-4497-a191-e5bb57360958" + "9c20fd20-8dd3-46fa-9d9c-285e54c7c9c0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x8309000A" @@ -788,8 +781,8 @@ "StatusCode": 404 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7712?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NzEyP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4722?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzIyP3N5bmNGbGFnPURBVEEmb3A9Q1JFQVRFJndyaXRlPXRydWUmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { @@ -800,14 +793,13 @@ "0" ], "x-ms-client-request-id": [ - "f9b8b78c-fd73-4b86-bb49-bf57f507162d" + "bc11037e-68c7-454a-811d-3348a73744ca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, "ResponseBody": "", @@ -822,22 +814,22 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:00:51 GMT" + "Mon, 27 Mar 2017 18:22:02 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testadlfs1468.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt7712?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" + "https://testadlfs17806.azuredatalakestore.net/webhdfs/v1/SDKTestFolder01/SDKTestFile01.txt4722?syncFlag=DATA&op=CREATE&write=true&api-version=2016-11-01" ], "x-ms-request-id": [ - "75d2b26c-2aca-4d27-a926-0a0af64b334f" + "22127853-91fb-46da-9441-574bbfc1c5e0" ], "ContentLength": [ "0" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -852,26 +844,25 @@ "StatusCode": 201 }, { - "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt7712?op=GETFILESTATUS&api-version=2016-11-01", - "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ3NzEyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/webhdfs/v1/SDKTestFolder01%2FSDKTestFile01.txt4722?op=GETFILESTATUS&api-version=2016-11-01", + "EncodedRequestUri": "L3dlYmhkZnMvdjEvU0RLVGVzdEZvbGRlcjAxJTJGU0RLVGVzdEZpbGUwMS50eHQ0NzIyP29wPUdFVEZJTEVTVEFUVVMmYXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cabd7c65-412f-4ff0-bc15-13f6a8ae4593" + "089d0978-9d51-47b1-8ef8-06a9a9872410" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreFileSystemManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1478818851733,\r\n \"modificationTime\": 1478818851733,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"2e6c02d2-a364-4530-9137-d17403996cbf\",\r\n \"group\": \"2e6c02d2-a364-4530-9137-d17403996cbf\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"FileStatus\": {\r\n \"length\": 0,\r\n \"pathSuffix\": \"\",\r\n \"type\": \"FILE\",\r\n \"blockSize\": 268435456,\r\n \"accessTime\": 1490638922220,\r\n \"modificationTime\": 1490638922220,\r\n \"replication\": 1,\r\n \"permission\": \"770\",\r\n \"owner\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"group\": \"60f8591c-0d86-4d3a-8c42-9858fc01f7fb\",\r\n \"msExpirationTime\": 0,\r\n \"aclBit\": false\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "268" + "304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -883,16 +874,16 @@ "no-store, no-cache, max-age=0" ], "Date": [ - "Thu, 10 Nov 2016 23:00:51 GMT" + "Mon, 27 Mar 2017 18:22:02 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "5ae4765e-f630-49fd-950e-8befebd597b8" + "a70ae079-42c4-4a59-b849-59415a4e4a4a" ], "x-ms-webhdfs-version": [ - "16.07.18.01" + "16.12.19.00" ], "Status": [ "0x0" @@ -909,12 +900,12 @@ ], "Names": { ".ctor": [ - "datalakerg17932", - "testdatalake17929", - "testadlfs1468" + "datalakerg11151", + "testdatalake16385", + "testadlfs17806" ], "CreateFile": [ - "SDKTestFolder01/SDKTestFile01.txt7712" + "SDKTestFolder01/SDKTestFile01.txt4722" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemValidateDefaultTimeout.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemValidateDefaultTimeout.json index 5b287454e5f2..515a9c350732 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemValidateDefaultTimeout.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/SessionRecords/DataLakeStore.Tests.FileSystemOperationTests/DataLakeStoreFileSystemValidateDefaultTimeout.json @@ -7,17 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12efbcae-f412-4af2-9c0d-bf1bc064e918" + "c5c3b415-1c84-4dbb-9df5-3820634900ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +28,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:54 GMT" + "Mon, 27 Mar 2017 18:22:13 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1197" ], "x-ms-request-id": [ - "2ee0b501-a2d2-4c32-904c-55cfaa75c95b" + "609769d4-7859-4eca-8fe4-a4aef74552c3" ], "x-ms-correlation-request-id": [ - "2ee0b501-a2d2-4c32-904c-55cfaa75c95b" + "609769d4-7859-4eca-8fe4-a4aef74552c3" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230054Z:2ee0b501-a2d2-4c32-904c-55cfaa75c95b" + "CENTRALUS:20170327T182213Z:609769d4-7859-4eca-8fe4-a4aef74552c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,17 +64,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa5089b9-ca8d-4b3f-89f1-c91ca916d65c" + "2e599455-abbc-48bd-bed4-10ba5b6c3cf2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +85,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:54 GMT" + "Mon, 27 Mar 2017 18:22:13 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +94,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14993" ], "x-ms-request-id": [ - "3cad9ca1-5ee9-4295-8ada-de4d4e8b0321" + "34e1b6cf-1510-42c8-88a9-5ce5c8578637" ], "x-ms-correlation-request-id": [ - "3cad9ca1-5ee9-4295-8ada-de4d4e8b0321" + "34e1b6cf-1510-42c8-88a9-5ce5c8578637" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230054Z:3cad9ca1-5ee9-4295-8ada-de4d4e8b0321" + "CENTRALUS:20170327T182213Z:34e1b6cf-1510-42c8-88a9-5ce5c8578637" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +118,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64058e8c-13d7-4c8e-a446-13a6f49bc58d" + "9a687a48-ba0f-47a8-a350-d1d03aac7ea4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -139,25 +139,28 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:55 GMT" + "Mon, 27 Mar 2017 18:22:14 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1196" ], "x-ms-request-id": [ - "076361b4-cd71-403d-9e5a-14b319dcc20f" + "8ee63ecd-1fe3-49a8-a6e7-54259d170684" ], "x-ms-correlation-request-id": [ - "076361b4-cd71-403d-9e5a-14b319dcc20f" + "8ee63ecd-1fe3-49a8-a6e7-54259d170684" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230055Z:076361b4-cd71-403d-9e5a-14b319dcc20f" + "CENTRALUS:20170327T182214Z:8ee63ecd-1fe3-49a8-a6e7-54259d170684" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -172,17 +175,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd9237eb-8f54-4eec-9287-28401697383e" + "f7cb5eca-9160-4f77-b5c6-c32bffebe64f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorization\": {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +196,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:55 GMT" + "Mon, 27 Mar 2017 18:22:14 GMT" ], "Pragma": [ "no-cache" @@ -203,16 +205,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14992" ], "x-ms-request-id": [ - "d373293d-5361-4638-bfcb-41430c27bcc3" + "73900d57-4626-4f04-90b2-8818fb387268" ], "x-ms-correlation-request-id": [ - "d373293d-5361-4638-bfcb-41430c27bcc3" + "73900d57-4626-4f04-90b2-8818fb387268" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230055Z:d373293d-5361-4638-bfcb-41430c27bcc3" + "CENTRALUS:20170327T182214Z:73900d57-4626-4f04-90b2-8818fb387268" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -221,26 +223,25 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11045?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTA0NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1138?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6232c34c-16db-4638-acb3-d3368d785d9a" + "bd284a41-aacd-420c-887b-15753f6e383e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg11045' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'datalakerg1138' could not be found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "107" + "106" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:55 GMT" + "Mon, 27 Mar 2017 18:22:14 GMT" ], "Pragma": [ "no-cache" @@ -261,16 +262,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14991" ], "x-ms-request-id": [ - "a275b571-5d02-423f-8945-812ceece7ede" + "178b538b-ada8-46f9-a5c0-4e0c8cae93ca" ], "x-ms-correlation-request-id": [ - "a275b571-5d02-423f-8945-812ceece7ede" + "178b538b-ada8-46f9-a5c0-4e0c8cae93ca" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230056Z:a275b571-5d02-423f-8945-812ceece7ede" + "CENTRALUS:20170327T182214Z:178b538b-ada8-46f9-a5c0-4e0c8cae93ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -279,23 +280,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11045?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTA0NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1138?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "966d7be4-cce6-4f62-ad2c-ebeaf0b44d6e" + "1e75c586-cfd2-410f-9a06-2639651df46e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045\",\r\n \"name\": \"datalakerg11045\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138\",\r\n \"name\": \"datalakerg1138\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -307,7 +307,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:56 GMT" + "Mon, 27 Mar 2017 18:22:15 GMT" ], "Pragma": [ "no-cache" @@ -316,16 +316,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14990" ], "x-ms-request-id": [ - "319bb9b7-297b-4bdf-b4a6-3df1e944e48c" + "9fa4f4ab-9bd5-470d-9a52-2dceaeb523a9" ], "x-ms-correlation-request-id": [ - "319bb9b7-297b-4bdf-b4a6-3df1e944e48c" + "9fa4f4ab-9bd5-470d-9a52-2dceaeb523a9" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230057Z:319bb9b7-297b-4bdf-b4a6-3df1e944e48c" + "CENTRALUS:20170327T182215Z:9fa4f4ab-9bd5-470d-9a52-2dceaeb523a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -334,8 +334,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11045?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTA0NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1138?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlZ3JvdXBzL2RhdGFsYWtlcmcxMTM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -346,20 +346,19 @@ "31" ], "x-ms-client-request-id": [ - "0fc36067-ac67-43a2-8e2a-9d0212b7b547" + "9ccae088-4fc1-428c-a6de-edc390378ad1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045\",\r\n \"name\": \"datalakerg11045\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138\",\r\n \"name\": \"datalakerg1138\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "184" + "182" ], "Content-Type": [ "application/json; charset=utf-8" @@ -371,22 +370,22 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:56 GMT" + "Mon, 27 Mar 2017 18:22:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1195" ], "x-ms-request-id": [ - "32bcd387-81af-49e2-9dab-5a8338d2e5bb" + "2ba887ca-0c3d-402a-bf44-5cf3d407b7a1" ], "x-ms-correlation-request-id": [ - "32bcd387-81af-49e2-9dab-5a8338d2e5bb" + "2ba887ca-0c3d-402a-bf44-5cf3d407b7a1" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230056Z:32bcd387-81af-49e2-9dab-5a8338d2e5bb" + "CENTRALUS:20170327T182215Z:2ba887ca-0c3d-402a-bf44-5cf3d407b7a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -395,26 +394,25 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTIyNTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDY4ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a6f058e-6cb1-448f-8514-468fec13fd70" + "51ccbd44-fbae-4a2e-be52-82bcf93663ca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs12257' under resource group 'datalakerg11045' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.DataLakeStore/accounts/testadlfs14684' under resource group 'datalakerg1138' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "166" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -426,7 +424,7 @@ "no-cache" ], "Date": [ - "Thu, 10 Nov 2016 23:00:57 GMT" + "Mon, 27 Mar 2017 18:22:15 GMT" ], "Pragma": [ "no-cache" @@ -435,13 +433,13 @@ "gateway" ], "x-ms-request-id": [ - "8187b030-1776-43cf-83fd-6ef557a14d33" + "77ce08dd-5f54-41d4-aef7-339e0a2df6ff" ], "x-ms-correlation-request-id": [ - "8187b030-1776-43cf-83fd-6ef557a14d33" + "77ce08dd-5f54-41d4-aef7-339e0a2df6ff" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230057Z:8187b030-1776-43cf-83fd-6ef557a14d33" + "CENTRALUS:20170327T182216Z:77ce08dd-5f54-41d4-aef7-339e0a2df6ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,17 +448,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTIyNTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDY4ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12257.azuredatalakestore.net\",\r\n \"accountId\": \"1d0a7297-6091-4d72-8792-c6d31033d29f\",\r\n \"creationTime\": \"2016-11-10T23:01:04.2385774Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:01:04.2385774Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257\",\r\n \"name\": \"testadlfs12257\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14684.azuredatalakestore.net\",\r\n \"accountId\": \"f7c409b3-833c-4cdb-9bae-966a68325a8c\",\r\n \"creationTime\": \"2017-03-27T18:22:16.3667479Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:22:16.3667479Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684\",\r\n \"name\": \"testadlfs14684\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -475,7 +472,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:01:28 GMT" + "Mon, 27 Mar 2017 18:22:47 GMT" ], "Pragma": [ "no-cache" @@ -487,7 +484,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "800d0243-ba12-464e-8528-556a80decb11" + "92860acc-1d2d-4ad5-b382-2d93f6b02b81" ], "X-Content-Type-Options": [ "nosniff" @@ -499,13 +496,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14996" ], "x-ms-correlation-request-id": [ - "7189bc51-929c-4fbe-b81c-98a691bf2d8a" + "46e77fce-ce8f-4b22-82af-d370d046a48f" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230129Z:7189bc51-929c-4fbe-b81c-98a691bf2d8a" + "CENTRALUS:20170327T182248Z:46e77fce-ce8f-4b22-82af-d370d046a48f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -514,23 +511,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTIyNTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDY4ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b10ef548-9e07-4f7f-9542-47c21903788d" + "f99c14c4-9811-4a8d-96f3-dc42674b2c7a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs12257.azuredatalakestore.net\",\r\n \"accountId\": \"1d0a7297-6091-4d72-8792-c6d31033d29f\",\r\n \"creationTime\": \"2016-11-10T23:01:04.2385774Z\",\r\n \"lastModifiedTime\": \"2016-11-10T23:01:04.2385774Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257\",\r\n \"name\": \"testadlfs12257\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"firewallState\": \"Disabled\",\r\n \"firewallRules\": [],\r\n \"trustedIdProviderState\": \"Disabled\",\r\n \"trustedIdProviders\": [],\r\n \"encryptionState\": \"Enabled\",\r\n \"encryptionConfig\": {\r\n \"type\": \"ServiceManaged\"\r\n },\r\n \"currentTier\": \"Consumption\",\r\n \"newTier\": \"Consumption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"state\": \"Active\",\r\n \"endpoint\": \"testadlfs14684.azuredatalakestore.net\",\r\n \"accountId\": \"f7c409b3-833c-4cdb-9bae-966a68325a8c\",\r\n \"creationTime\": \"2017-03-27T18:22:16.3667479Z\",\r\n \"lastModifiedTime\": \"2017-03-27T18:22:16.3667479Z\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684\",\r\n \"name\": \"testadlfs14684\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -545,7 +541,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:01:28 GMT" + "Mon, 27 Mar 2017 18:22:47 GMT" ], "Pragma": [ "no-cache" @@ -557,7 +553,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "31058c52-1d69-479b-8bff-6bb79e050453" + "470a3e11-4ecb-4590-b8d2-9cf607797396" ], "X-Content-Type-Options": [ "nosniff" @@ -572,10 +568,10 @@ "14998" ], "x-ms-correlation-request-id": [ - "15e73770-614d-454c-b27c-124e8dbce6c0" + "3df6d8b9-1b09-4a89-8d86-08144a53f677" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230129Z:15e73770-614d-454c-b27c-124e8dbce6c0" + "CENTRALUS:20170327T182248Z:3df6d8b9-1b09-4a89-8d86-08144a53f677" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,8 +580,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257?api-version=2016-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTA0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFMYWtlU3RvcmUvYWNjb3VudHMvdGVzdGFkbGZzMTIyNTc/YXBpLXZlcnNpb249MjAxNi0xMS0wMQ==", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684?api-version=2016-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Jlc291cmNlR3JvdXBzL2RhdGFsYWtlcmcxMTM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9hY2NvdW50cy90ZXN0YWRsZnMxNDY4ND9hcGktdmVyc2lvbj0yMDE2LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { @@ -596,20 +592,19 @@ "31" ], "x-ms-client-request-id": [ - "fb7f9403-460e-463a-b6e4-755eb8a63a97" + "43131419-2a7a-49de-a984-82dfad8abb72" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"1d0a7297-6091-4d72-8792-c6d31033d29f\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257\",\r\n \"name\": \"testadlfs12257\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"state\": null,\r\n \"endpoint\": null,\r\n \"accountId\": \"f7c409b3-833c-4cdb-9bae-966a68325a8c\",\r\n \"creationTime\": null,\r\n \"lastModifiedTime\": null\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourceGroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684\",\r\n \"name\": \"testadlfs14684\",\r\n \"type\": \"Microsoft.DataLakeStore/accounts\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "420" + "419" ], "Content-Type": [ "application/json" @@ -624,13 +619,13 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:00:57 GMT" + "Mon, 27 Mar 2017 18:22:16 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg11045/providers/Microsoft.DataLakeStore/accounts/testadlfs12257/operationresults/0?api-version=2016-11-01" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/resourcegroups/datalakerg1138/providers/Microsoft.DataLakeStore/accounts/testadlfs14684/operationresults/0?api-version=2016-11-01" ], "Retry-After": [ "10" @@ -639,10 +634,10 @@ "Microsoft-IIS/8.5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1d0a7297-6091-4d72-8792-c6d31033d29f0?api-version=2016-11-01&expanded=true" + "https://management.azure.com/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f7c409b3-833c-4cdb-9bae-966a68325a8c0?api-version=2016-11-01&expanded=true" ], "x-ms-request-id": [ - "c6b13bc1-ac80-49ad-82ea-88370b8d2abc" + "fae42f11-cd55-4c3d-ab99-2c519f594be2" ], "X-Content-Type-Options": [ "nosniff" @@ -654,13 +649,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-correlation-request-id": [ - "865c1623-66fb-4122-bef0-8d88646e7fa6" + "902929eb-7bab-4b40-a0fb-ecc533fdc080" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230058Z:865c1623-66fb-4122-bef0-8d88646e7fa6" + "CENTRALUS:20170327T182217Z:902929eb-7bab-4b40-a0fb-ecc533fdc080" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,14 +664,13 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/1d0a7297-6091-4d72-8792-c6d31033d29f0?api-version=2016-11-01&expanded=true", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzLzFkMGE3Mjk3LTYwOTEtNGQ3Mi04NzkyLWM2ZDMxMDMzZDI5ZjA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", + "RequestUri": "/subscriptions/53d9063d-87ae-4ea8-be90-3686c3b8669f/providers/Microsoft.DataLakeStore/locations/EastUS2/operationResults/f7c409b3-833c-4cdb-9bae-966a68325a8c0?api-version=2016-11-01&expanded=true", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTNkOTA2M2QtODdhZS00ZWE4LWJlOTAtMzY4NmMzYjg2NjlmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUxha2VTdG9yZS9sb2NhdGlvbnMvRWFzdFVTMi9vcGVyYXRpb25SZXN1bHRzL2Y3YzQwOWIzLTgzM2MtNGNkYi05YmFlLTk2NmE2ODMyNWE4YzA/YXBpLXZlcnNpb249MjAxNi0xMS0wMSZleHBhbmRlZD10cnVl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/1.0.0" + "Microsoft.Azure.Management.DataLake.Store.DataLakeStoreAccountManagementClient/2.1.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", @@ -694,7 +688,7 @@ "close" ], "Date": [ - "Thu, 10 Nov 2016 23:01:27 GMT" + "Mon, 27 Mar 2017 18:22:47 GMT" ], "Pragma": [ "no-cache" @@ -706,7 +700,7 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "70d54f25-e454-4137-9089-828270aa2675" + "26abcfe2-f295-41bc-8766-d06eb9cb801e" ], "X-Content-Type-Options": [ "nosniff" @@ -718,13 +712,13 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14998" ], "x-ms-correlation-request-id": [ - "8e08d565-3b17-4eda-88ee-fd7ba77805ca" + "a1539817-b34b-4fb2-ba02-7c49e508b8c4" ], "x-ms-routing-request-id": [ - "NORTHCENTRALUS:20161110T230128Z:8e08d565-3b17-4eda-88ee-fd7ba77805ca" + "CENTRALUS:20170327T182247Z:a1539817-b34b-4fb2-ba02-7c49e508b8c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -735,9 +729,9 @@ ], "Names": { ".ctor": [ - "datalakerg11045", - "testdatalake16446", - "testadlfs12257" + "datalakerg1138", + "testdatalake18796", + "testadlfs14684" ] }, "Variables": { diff --git a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/project.json b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/project.json index 42b80c217648..06aa188a0d5c 100644 --- a/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/project.json +++ b/src/ResourceManagement/DataLake.Store/DataLakeStore.Tests/project.json @@ -33,8 +33,8 @@ "type": "platform", "version": "1.0.0" }, - "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", + "Microsoft.Azure.Test.HttpRecorder": "[1.7.0,2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.6.0,2.0.0)", "Microsoft.Rest.ClientRuntime.Azure": "[3.3.2,4.0.0)", "Microsoft.Rest.ClientRuntime": "[2.3.2,3.0)" , "Microsoft.Azure.ResourceManager": "1.0.0-preview", diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataLakeStoreCustomizationHelper.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataLakeStoreCustomizationHelper.cs index 5d649e78b2ec..e8e33489ff76 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataLakeStoreCustomizationHelper.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataLakeStoreCustomizationHelper.cs @@ -14,7 +14,7 @@ internal static class DataLakeStoreCustomizationHelper /// This constant is used as the default package version to place in the user agent. /// It should mirror the package version in the project.json file. /// - internal const string PackageVersion = "2.0.1-preview"; + internal const string PackageVersion = "2.1.1-preview"; internal const string DefaultAdlsFileSystemDnsSuffix = "azuredatalakestore.net"; diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataTransfer/Common/StringExtensions.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataTransfer/Common/StringExtensions.cs index 359d784e5306..5436f69d54f9 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataTransfer/Common/StringExtensions.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Customizations/DataTransfer/Common/StringExtensions.cs @@ -5,7 +5,7 @@ namespace Microsoft.Azure.Management.DataLake.Store { - internal static class StringExtensions + public static class StringExtensions { /// diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperations.cs index 2df08c7b97bc..608dc6f56698 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperations.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -207,9 +204,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -224,6 +221,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -271,7 +270,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -308,7 +307,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -401,9 +400,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -418,6 +417,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -455,11 +456,19 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -593,9 +602,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -610,6 +619,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -657,7 +668,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -694,7 +705,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -801,9 +812,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -818,6 +829,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -865,7 +878,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -902,7 +915,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1012,9 +1025,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -1029,6 +1042,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1046,7 +1061,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -1082,7 +1097,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1119,7 +1134,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1137,7 +1152,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1239,9 +1254,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1256,6 +1271,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1273,7 +1290,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -1309,7 +1326,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1346,7 +1363,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1364,7 +1381,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1455,9 +1472,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + 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) @@ -1472,6 +1489,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1509,11 +1528,19 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204 && (int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -1601,9 +1628,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1618,6 +1645,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1665,7 +1694,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1702,7 +1731,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1773,9 +1802,9 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1790,6 +1819,8 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1837,7 +1868,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1874,7 +1905,7 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1893,5 +1924,3 @@ internal AccountOperations(DataLakeStoreAccountManagementClient client) } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperationsExtensions.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperationsExtensions.cs index b952a9ffde4c..431d6a2818eb 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/AccountOperationsExtensions.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Threading; using System.Threading.Tasks; @@ -158,7 +155,7 @@ public static void Delete(this IAccountOperations operations, string resourceGro /// public static async Task DeleteAsync(this IAccountOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -243,7 +240,7 @@ public static void EnableKeyVault(this IAccountOperations operations, string res /// public static async Task EnableKeyVaultAsync(this IAccountOperations operations, string resourceGroupName, string accountName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.EnableKeyVaultWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false); + (await operations.EnableKeyVaultWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -494,7 +491,7 @@ public static void BeginDelete(this IAccountOperations operations, string resour /// public static async Task BeginDeleteAsync(this IAccountOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false); + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -571,5 +568,3 @@ public static IPage ListNext(this IAccountOperations opera } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreAccountManagementClient.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreAccountManagementClient.cs index 730274f56bf1..be259547b6ea 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreAccountManagementClient.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreAccountManagementClient.cs @@ -2,23 +2,20 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Rest.Serialization; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -38,12 +35,12 @@ public partial class DataLakeStoreAccountManagementClient : ServiceClient /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. @@ -100,7 +97,7 @@ public partial class DataLakeStoreAccountManagementClient : ServiceClient /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeStoreAccountManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected DataLakeStoreAccountManagementClient(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } @@ -114,7 +111,7 @@ protected DataLakeStoreAccountManagementClient(params System.Net.Http.Delegating /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeStoreAccountManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected DataLakeStoreAccountManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } @@ -131,7 +128,7 @@ protected DataLakeStoreAccountManagementClient(System.Net.Http.HttpClientHandler /// /// Thrown when a required parameter is null /// - protected DataLakeStoreAccountManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + protected DataLakeStoreAccountManagementClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -155,7 +152,7 @@ protected DataLakeStoreAccountManagementClient(System.Uri baseUri, params System /// /// Thrown when a required parameter is null /// - protected DataLakeStoreAccountManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + protected DataLakeStoreAccountManagementClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -176,7 +173,7 @@ protected DataLakeStoreAccountManagementClient(System.Uri baseUri, System.Net.Ht /// /// Thrown when a required parameter is null /// - internal DataLakeStoreAccountManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + internal DataLakeStoreAccountManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -204,7 +201,7 @@ internal DataLakeStoreAccountManagementClient(ServiceClientCredentials credentia /// /// Thrown when a required parameter is null /// - internal DataLakeStoreAccountManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + internal DataLakeStoreAccountManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { @@ -232,7 +229,7 @@ internal DataLakeStoreAccountManagementClient(ServiceClientCredentials credentia /// /// Thrown when a required parameter is null /// - internal DataLakeStoreAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + internal DataLakeStoreAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -268,7 +265,7 @@ internal DataLakeStoreAccountManagementClient(System.Uri baseUri, ServiceClientC /// /// Thrown when a required parameter is null /// - internal DataLakeStoreAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + internal DataLakeStoreAccountManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -303,7 +300,7 @@ private void Initialize() AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, @@ -311,20 +308,20 @@ private void Initialize() NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } }; SerializationSettings.Converters.Add(new TransformationJsonConverter()); - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } @@ -335,5 +332,3 @@ private void Initialize() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreFileSystemManagementClient.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreFileSystemManagementClient.cs index 0b44c7d599b5..63699708626b 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreFileSystemManagementClient.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/DataLakeStoreFileSystemManagementClient.cs @@ -2,18 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; - using Rest.Serialization; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; using Models; using Newtonsoft.Json; using System.Collections; @@ -35,12 +35,12 @@ public partial class DataLakeStoreFileSystemManagementClient : ServiceClient /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. @@ -85,7 +85,7 @@ public partial class DataLakeStoreFileSystemManagementClient : ServiceClient /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeStoreFileSystemManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected DataLakeStoreFileSystemManagementClient(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } @@ -99,7 +99,7 @@ protected DataLakeStoreFileSystemManagementClient(params System.Net.Http.Delegat /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected DataLakeStoreFileSystemManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected DataLakeStoreFileSystemManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } @@ -116,7 +116,7 @@ protected DataLakeStoreFileSystemManagementClient(System.Net.Http.HttpClientHand /// /// Thrown when a required parameter is null /// - internal DataLakeStoreFileSystemManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + internal DataLakeStoreFileSystemManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -144,7 +144,7 @@ internal DataLakeStoreFileSystemManagementClient(ServiceClientCredentials creden /// /// Thrown when a required parameter is null /// - internal DataLakeStoreFileSystemManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + internal DataLakeStoreFileSystemManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { @@ -173,7 +173,7 @@ private void Initialize() AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, @@ -181,19 +181,19 @@ private void Initialize() NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } }; - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, ContractResolver = new ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + Converters = new List { new Iso8601TimeSpanConverter() } @@ -205,4 +205,3 @@ private void Initialize() } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperations.cs index e10935541c16..0fde8372335e 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperations.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; using System.Collections; @@ -171,9 +171,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -196,6 +196,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -216,7 +218,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } if (streamContents != null && streamContents != Stream.Null) { - _httpRequest.Content = new System.Net.Http.StreamContent(streamContents); + _httpRequest.Content = new StreamContent(streamContents); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/octet-stream"); } // Set Credentials @@ -251,7 +253,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -385,9 +387,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -402,6 +404,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -448,7 +452,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -512,7 +516,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task CheckAccessWithHttpMessagesAsync(string accountName, string path, string fsaction = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CheckAccessWithHttpMessagesAsync(string accountName, string path, string fsaction, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -526,6 +530,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "path"); } + if (fsaction == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "fsaction"); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -569,9 +577,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -586,6 +594,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -632,7 +642,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -673,6 +683,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The Data Lake Store path (starting with '/') of the directory to create. /// + /// + /// Optional octal permission with which the directory should be created. + /// /// /// Headers that will be added to request. /// @@ -694,7 +707,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> MkdirsWithHttpMessagesAsync(string accountName, string path, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> MkdirsWithHttpMessagesAsync(string accountName, string path, int? permission = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -722,6 +735,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); tracingParameters.Add("path", path); + tracingParameters.Add("permission", permission); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Mkdirs", tracingParameters); @@ -733,6 +747,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); _url = _url.Replace("{path}", System.Uri.EscapeDataString(path)); List _queryParameters = new List(); + if (permission != null) + { + _queryParameters.Add(string.Format("permission={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(permission, Client.SerializationSettings).Trim('"')))); + } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); @@ -746,9 +764,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -763,6 +781,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -809,7 +829,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -842,7 +862,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -871,7 +891,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// resulting from the concatenation. /// /// - /// A list of comma seperated Data Lake Store paths (starting with '/') of the + /// A list of comma separated Data Lake Store paths (starting with '/') of the /// files to concatenate, in the order in which they should be concatenated. /// /// @@ -953,9 +973,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -970,6 +990,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1016,7 +1038,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1155,9 +1177,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -1172,6 +1194,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1192,7 +1216,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } if (streamContents != null && streamContents != Stream.Null) { - _httpRequest.Content = new System.Net.Http.StreamContent(streamContents); + _httpRequest.Content = new StreamContent(streamContents); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/octet-stream"); } // Set Credentials @@ -1227,7 +1251,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1283,6 +1307,11 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// listBefore='d' will return 'a','b', and a listBefore='c' will also return /// 'a','b'. Optional. /// + /// + /// An optional switch to return friendly names in place of owner and group. + /// tooid=false returns friendly names instead of the AAD Object ID. Default + /// value is true, returning AAD object IDs. + /// /// /// Headers that will be added to request. /// @@ -1304,7 +1333,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListFileStatusWithHttpMessagesAsync(string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListFileStatusWithHttpMessagesAsync(string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -1322,7 +1351,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - string op = "MSLISTSTATUS"; + string op = "LISTSTATUS"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1335,6 +1364,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) tracingParameters.Add("listSize", listSize); tracingParameters.Add("listAfter", listAfter); tracingParameters.Add("listBefore", listBefore); + tracingParameters.Add("tooId", tooId); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListFileStatus", tracingParameters); @@ -1358,6 +1388,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _queryParameters.Add(string.Format("listBefore={0}", System.Uri.EscapeDataString(listBefore))); } + if (tooId != null) + { + _queryParameters.Add(string.Format("tooId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(tooId, Client.SerializationSettings).Trim('"')))); + } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); @@ -1371,9 +1405,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1388,6 +1422,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1434,7 +1470,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1467,7 +1503,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1567,9 +1603,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1584,6 +1620,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1630,7 +1668,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1663,7 +1701,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1690,6 +1728,11 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// The Data Lake Store path (starting with '/') of the file or directory for /// which to retrieve the status. /// + /// + /// An optional switch to return friendly names in place of owner and group. + /// tooid=false returns friendly names instead of the AAD Object ID. Default + /// value is true, returning AAD object IDs. + /// /// /// Headers that will be added to request. /// @@ -1711,7 +1754,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetFileStatusWithHttpMessagesAsync(string accountName, string getFilePath, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetFileStatusWithHttpMessagesAsync(string accountName, string getFilePath, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -1729,7 +1772,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - string op = "MSGETFILESTATUS"; + string op = "GETFILESTATUS"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1739,6 +1782,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); tracingParameters.Add("getFilePath", getFilePath); + tracingParameters.Add("tooId", tooId); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GetFileStatus", tracingParameters); @@ -1750,6 +1794,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); _url = _url.Replace("{getFilePath}", System.Uri.EscapeDataString(getFilePath)); List _queryParameters = new List(); + if (tooId != null) + { + _queryParameters.Add(string.Format("tooId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(tooId, Client.SerializationSettings).Trim('"')))); + } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); @@ -1763,9 +1811,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1780,6 +1828,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1826,7 +1876,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1859,7 +1909,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1877,10 +1927,11 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } /// - /// Appends to the specified file. NOTE: The target must not contain data added - /// by ConcurrentAppend. ConcurrentAppend and Append cannot be used - /// interchangeably; once a target file has been modified using either of these - /// append options, the other append option cannot be used on the target file. + /// Used for serial appends to the specified file. NOTE: The target must not + /// contain data added by ConcurrentAppend. ConcurrentAppend and Append cannot + /// be used interchangeably; once a target file has been modified using either + /// of these append options, the other append option cannot be used on the + /// target file. /// /// /// The Azure Data Lake Store account to execute filesystem operations on. @@ -1903,6 +1954,16 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// that both the stream and metadata should be refreshed upon append /// completion. Possible values include: 'DATA', 'METADATA', 'CLOSE' /// + /// + /// Optional unique GUID per file to ensure single writer semantics, meaning + /// that only clients that append to the file with the same leaseId will be + /// allowed to do so. + /// + /// + /// Optional unique GUID per file indicating all the appends with the same + /// fileSessionId are from the same client and same session. This will give a + /// performance benefit when syncFlag is DATA or METADATA. + /// /// /// Headers that will be added to request. /// @@ -1921,7 +1982,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task AppendWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task AppendWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), System.Guid? fileSessionId = default(System.Guid?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -1957,6 +2018,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) tracingParameters.Add("streamContents", streamContents); tracingParameters.Add("offset", offset); tracingParameters.Add("syncFlag", syncFlag); + tracingParameters.Add("leaseId", leaseId); + tracingParameters.Add("fileSessionId", fileSessionId); tracingParameters.Add("op", op); tracingParameters.Add("append", append); tracingParameters.Add("cancellationToken", cancellationToken); @@ -1977,6 +2040,14 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _queryParameters.Add(string.Format("syncFlag={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(syncFlag, Client.SerializationSettings).Trim('"')))); } + if (leaseId != null) + { + _queryParameters.Add(string.Format("leaseId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(leaseId, Client.SerializationSettings).Trim('"')))); + } + if (fileSessionId != null) + { + _queryParameters.Add(string.Format("fileSessionId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(fileSessionId, Client.SerializationSettings).Trim('"')))); + } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); @@ -1994,9 +2065,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + 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) @@ -2011,6 +2082,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2031,7 +2104,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } if (streamContents != null && streamContents != Stream.Null) { - _httpRequest.Content = new System.Net.Http.StreamContent(streamContents); + _httpRequest.Content = new StreamContent(streamContents); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/octet-stream"); } // Set Credentials @@ -2066,7 +2139,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2119,9 +2192,19 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// Optionally indicates what to do after completion of the append. DATA /// indicates more data is coming so no sync takes place, METADATA indicates a /// sync should be done to refresh metadata of the file only. CLOSE indicates - /// that both the stream and metadata should be refreshed upon append + /// that both the stream and metadata should be refreshed upon create /// completion. Possible values include: 'DATA', 'METADATA', 'CLOSE' /// + /// + /// Optional unique GUID per file to ensure single writer semantics, meaning + /// that only clients that append to the file with the same leaseId will be + /// allowed to do so. + /// + /// + /// The octal representation of the unnamed user, mask and other permissions + /// that should be set for the file when created. If not specified, it inherits + /// these from the container. + /// /// /// Headers that will be added to request. /// @@ -2140,7 +2223,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task CreateWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task CreateWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), int? permission = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -2172,6 +2255,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) tracingParameters.Add("streamContents", streamContents); tracingParameters.Add("overwrite", overwrite); tracingParameters.Add("syncFlag", syncFlag); + tracingParameters.Add("leaseId", leaseId); + tracingParameters.Add("permission", permission); tracingParameters.Add("op", op); tracingParameters.Add("write", write); tracingParameters.Add("cancellationToken", cancellationToken); @@ -2192,6 +2277,14 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _queryParameters.Add(string.Format("syncFlag={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(syncFlag, Client.SerializationSettings).Trim('"')))); } + if (leaseId != null) + { + _queryParameters.Add(string.Format("leaseId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(leaseId, Client.SerializationSettings).Trim('"')))); + } + if (permission != null) + { + _queryParameters.Add(string.Format("permission={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(permission, Client.SerializationSettings).Trim('"')))); + } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); @@ -2209,9 +2302,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -2226,6 +2319,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2242,7 +2337,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) string _requestContent = null; if (streamContents != null && streamContents != Stream.Null) { - _httpRequest.Content = new System.Net.Http.StreamContent(streamContents); + _httpRequest.Content = new StreamContent(streamContents); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/octet-stream"); } // Set Credentials @@ -2277,7 +2372,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2325,6 +2420,11 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// The byte offset to start reading data from. /// + /// + /// Optional unique GUID per file indicating all the reads with the same + /// fileSessionId are from the same client and same session. This will give a + /// performance benefit. + /// /// /// Headers that will be added to request. /// @@ -2346,7 +2446,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> OpenWithHttpMessagesAsync(string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> OpenWithHttpMessagesAsync(string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?), System.Guid? fileSessionId = default(System.Guid?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -2377,6 +2477,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) tracingParameters.Add("directFilePath", directFilePath); tracingParameters.Add("length", length); tracingParameters.Add("offset", offset); + tracingParameters.Add("fileSessionId", fileSessionId); tracingParameters.Add("op", op); tracingParameters.Add("read", read); tracingParameters.Add("cancellationToken", cancellationToken); @@ -2397,6 +2498,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _queryParameters.Add(string.Format("offset={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(offset, Client.SerializationSettings).Trim('"')))); } + if (fileSessionId != null) + { + _queryParameters.Add(string.Format("fileSessionId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(fileSessionId, Client.SerializationSettings).Trim('"')))); + } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); @@ -2414,9 +2519,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -2431,6 +2536,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2478,7 +2585,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2612,9 +2719,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -2629,6 +2736,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2675,7 +2784,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2800,9 +2909,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -2817,6 +2926,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -2863,7 +2974,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -2988,9 +3099,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -3005,6 +3116,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3051,7 +3164,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3164,9 +3277,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -3181,6 +3294,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3227,7 +3342,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3340,9 +3455,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -3357,6 +3472,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3403,7 +3520,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3445,6 +3562,11 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// The Data Lake Store path (starting with '/') of the file or directory for /// which to get the ACL. /// + /// + /// An optional switch to return friendly names in place of object ID for ACL + /// entries. tooid=false returns friendly names instead of the AAD Object ID. + /// Default value is true, returning AAD object IDs. + /// /// /// Headers that will be added to request. /// @@ -3466,7 +3588,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetAclStatusWithHttpMessagesAsync(string accountName, string aclFilePath, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAclStatusWithHttpMessagesAsync(string accountName, string aclFilePath, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (accountName == null) { @@ -3484,7 +3606,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - string op = "MSGETACLSTATUS"; + string op = "GETACLSTATUS"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3494,6 +3616,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("accountName", accountName); tracingParameters.Add("aclFilePath", aclFilePath); + tracingParameters.Add("tooId", tooId); tracingParameters.Add("op", op); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GetAclStatus", tracingParameters); @@ -3505,6 +3628,10 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url = _url.Replace("{adlsFileSystemDnsSuffix}", Client.AdlsFileSystemDnsSuffix); _url = _url.Replace("{aclFilePath}", System.Uri.EscapeDataString(aclFilePath)); List _queryParameters = new List(); + if (tooId != null) + { + _queryParameters.Add(string.Format("tooId={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(tooId, Client.SerializationSettings).Trim('"')))); + } if (op != null) { _queryParameters.Add(string.Format("op={0}", System.Uri.EscapeDataString(op))); @@ -3518,9 +3645,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -3535,6 +3662,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3581,7 +3710,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3614,7 +3743,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3722,9 +3851,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + 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) @@ -3739,6 +3868,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3785,7 +3916,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -3818,7 +3949,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -3930,9 +4061,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -3947,6 +4078,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -3993,7 +4126,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4026,7 +4159,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -4141,9 +4274,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -4158,6 +4291,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4204,7 +4339,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4325,9 +4460,9 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -4342,6 +4477,8 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -4388,7 +4525,7 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -4422,4 +4559,3 @@ internal FileSystemOperations(DataLakeStoreFileSystemManagementClient client) } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperationsExtensions.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperationsExtensions.cs index 4914c8837628..cfe5e43ed4c8 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FileSystemOperationsExtensions.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -105,7 +105,7 @@ public static partial class FileSystemOperationsExtensions /// public static async Task ConcurrentAppendAsync(this IFileSystemOperations operations, string accountName, string filePath, Stream streamContents, AppendModeType? appendMode = default(AppendModeType?), SyncFlag? syncFlag = default(SyncFlag?), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.ConcurrentAppendWithHttpMessagesAsync(accountName, filePath, streamContents, appendMode, syncFlag, null, cancellationToken).ConfigureAwait(false); + (await operations.ConcurrentAppendWithHttpMessagesAsync(accountName, filePath, streamContents, appendMode, syncFlag, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -174,7 +174,7 @@ public static partial class FileSystemOperationsExtensions /// public static async Task SetFileExpiryAsync(this IFileSystemOperations operations, string accountName, string filePath, ExpiryOptionType expiryOption, long? expireTime = default(long?), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.SetFileExpiryWithHttpMessagesAsync(accountName, filePath, expiryOption, expireTime, null, cancellationToken).ConfigureAwait(false); + (await operations.SetFileExpiryWithHttpMessagesAsync(accountName, filePath, expiryOption, expireTime, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -194,7 +194,7 @@ public static partial class FileSystemOperationsExtensions /// File system operation read/write/execute in string form, matching regex /// pattern '[rwx-]{3}' /// - public static void CheckAccess(this IFileSystemOperations operations, string accountName, string path, string fsaction = default(string)) + public static void CheckAccess(this IFileSystemOperations operations, string accountName, string path, string fsaction) { operations.CheckAccessAsync(accountName, path, fsaction).GetAwaiter().GetResult(); } @@ -219,9 +219,9 @@ public static partial class FileSystemOperationsExtensions /// /// The cancellation token. /// - public static async Task CheckAccessAsync(this IFileSystemOperations operations, string accountName, string path, string fsaction = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CheckAccessAsync(this IFileSystemOperations operations, string accountName, string path, string fsaction, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.CheckAccessWithHttpMessagesAsync(accountName, path, fsaction, null, cancellationToken).ConfigureAwait(false); + (await operations.CheckAccessWithHttpMessagesAsync(accountName, path, fsaction, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -236,9 +236,12 @@ public static partial class FileSystemOperationsExtensions /// /// The Data Lake Store path (starting with '/') of the directory to create. /// - public static FileOperationResult Mkdirs(this IFileSystemOperations operations, string accountName, string path) + /// + /// Optional octal permission with which the directory should be created. + /// + public static FileOperationResult Mkdirs(this IFileSystemOperations operations, string accountName, string path, int? permission = default(int?)) { - return operations.MkdirsAsync(accountName, path).GetAwaiter().GetResult(); + return operations.MkdirsAsync(accountName, path, permission).GetAwaiter().GetResult(); } /// @@ -253,12 +256,15 @@ public static FileOperationResult Mkdirs(this IFileSystemOperations operations, /// /// The Data Lake Store path (starting with '/') of the directory to create. /// + /// + /// Optional octal permission with which the directory should be created. + /// /// /// The cancellation token. /// - public static async Task MkdirsAsync(this IFileSystemOperations operations, string accountName, string path, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task MkdirsAsync(this IFileSystemOperations operations, string accountName, string path, int? permission = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.MkdirsWithHttpMessagesAsync(accountName, path, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.MkdirsWithHttpMessagesAsync(accountName, path, permission, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -279,7 +285,7 @@ public static FileOperationResult Mkdirs(this IFileSystemOperations operations, /// resulting from the concatenation. /// /// - /// A list of comma seperated Data Lake Store paths (starting with '/') of the + /// A list of comma separated Data Lake Store paths (starting with '/') of the /// files to concatenate, in the order in which they should be concatenated. /// public static void Concat(this IFileSystemOperations operations, string accountName, string destinationPath, IList sources) @@ -302,7 +308,7 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// resulting from the concatenation. /// /// - /// A list of comma seperated Data Lake Store paths (starting with '/') of the + /// A list of comma separated Data Lake Store paths (starting with '/') of the /// files to concatenate, in the order in which they should be concatenated. /// /// @@ -310,7 +316,7 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// public static async Task ConcatAsync(this IFileSystemOperations operations, string accountName, string destinationPath, IList sources, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.ConcatWithHttpMessagesAsync(accountName, destinationPath, sources, null, cancellationToken).ConfigureAwait(false); + (await operations.ConcatWithHttpMessagesAsync(accountName, destinationPath, sources, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -383,7 +389,7 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// public static async Task MsConcatAsync(this IFileSystemOperations operations, string accountName, string msConcatDestinationPath, Stream streamContents, bool? deleteSourceDirectory = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.MsConcatWithHttpMessagesAsync(accountName, msConcatDestinationPath, streamContents, deleteSourceDirectory, null, cancellationToken).ConfigureAwait(false); + (await operations.MsConcatWithHttpMessagesAsync(accountName, msConcatDestinationPath, streamContents, deleteSourceDirectory, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -413,9 +419,14 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// listBefore='d' will return 'a','b', and a listBefore='c' will also return /// 'a','b'. Optional. /// - public static FileStatusesResult ListFileStatus(this IFileSystemOperations operations, string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string)) + /// + /// An optional switch to return friendly names in place of owner and group. + /// tooid=false returns friendly names instead of the AAD Object ID. Default + /// value is true, returning AAD object IDs. + /// + public static FileStatusesResult ListFileStatus(this IFileSystemOperations operations, string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), bool? tooId = default(bool?)) { - return operations.ListFileStatusAsync(accountName, listFilePath, listSize, listAfter, listBefore).GetAwaiter().GetResult(); + return operations.ListFileStatusAsync(accountName, listFilePath, listSize, listAfter, listBefore, tooId).GetAwaiter().GetResult(); } /// @@ -445,12 +456,17 @@ public static void Concat(this IFileSystemOperations operations, string accountN /// listBefore='d' will return 'a','b', and a listBefore='c' will also return /// 'a','b'. Optional. /// + /// + /// An optional switch to return friendly names in place of owner and group. + /// tooid=false returns friendly names instead of the AAD Object ID. Default + /// value is true, returning AAD object IDs. + /// /// /// The cancellation token. /// - public static async Task ListFileStatusAsync(this IFileSystemOperations operations, string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListFileStatusAsync(this IFileSystemOperations operations, string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), bool? tooId = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListFileStatusWithHttpMessagesAsync(accountName, listFilePath, listSize, listAfter, listBefore, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListFileStatusWithHttpMessagesAsync(accountName, listFilePath, listSize, listAfter, listBefore, tooId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -511,9 +527,14 @@ public static ContentSummaryResult GetContentSummary(this IFileSystemOperations /// The Data Lake Store path (starting with '/') of the file or directory for /// which to retrieve the status. /// - public static FileStatusResult GetFileStatus(this IFileSystemOperations operations, string accountName, string getFilePath) + /// + /// An optional switch to return friendly names in place of owner and group. + /// tooid=false returns friendly names instead of the AAD Object ID. Default + /// value is true, returning AAD object IDs. + /// + public static FileStatusResult GetFileStatus(this IFileSystemOperations operations, string accountName, string getFilePath, bool? tooId = default(bool?)) { - return operations.GetFileStatusAsync(accountName, getFilePath).GetAwaiter().GetResult(); + return operations.GetFileStatusAsync(accountName, getFilePath, tooId).GetAwaiter().GetResult(); } /// @@ -529,22 +550,28 @@ public static FileStatusResult GetFileStatus(this IFileSystemOperations operatio /// The Data Lake Store path (starting with '/') of the file or directory for /// which to retrieve the status. /// + /// + /// An optional switch to return friendly names in place of owner and group. + /// tooid=false returns friendly names instead of the AAD Object ID. Default + /// value is true, returning AAD object IDs. + /// /// /// The cancellation token. /// - public static async Task GetFileStatusAsync(this IFileSystemOperations operations, string accountName, string getFilePath, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetFileStatusAsync(this IFileSystemOperations operations, string accountName, string getFilePath, bool? tooId = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetFileStatusWithHttpMessagesAsync(accountName, getFilePath, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetFileStatusWithHttpMessagesAsync(accountName, getFilePath, tooId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Appends to the specified file. NOTE: The target must not contain data added - /// by ConcurrentAppend. ConcurrentAppend and Append cannot be used - /// interchangeably; once a target file has been modified using either of these - /// append options, the other append option cannot be used on the target file. + /// Used for serial appends to the specified file. NOTE: The target must not + /// contain data added by ConcurrentAppend. ConcurrentAppend and Append cannot + /// be used interchangeably; once a target file has been modified using either + /// of these append options, the other append option cannot be used on the + /// target file. /// /// /// The operations group for this extension method. @@ -570,16 +597,27 @@ public static FileStatusResult GetFileStatus(this IFileSystemOperations operatio /// that both the stream and metadata should be refreshed upon append /// completion. Possible values include: 'DATA', 'METADATA', 'CLOSE' /// - public static void Append(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?)) + /// + /// Optional unique GUID per file to ensure single writer semantics, meaning + /// that only clients that append to the file with the same leaseId will be + /// allowed to do so. + /// + /// + /// Optional unique GUID per file indicating all the appends with the same + /// fileSessionId are from the same client and same session. This will give a + /// performance benefit when syncFlag is DATA or METADATA. + /// + public static void Append(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), System.Guid? fileSessionId = default(System.Guid?)) { - operations.AppendAsync(accountName, directFilePath, streamContents, offset, syncFlag).GetAwaiter().GetResult(); + operations.AppendAsync(accountName, directFilePath, streamContents, offset, syncFlag, leaseId, fileSessionId).GetAwaiter().GetResult(); } /// - /// Appends to the specified file. NOTE: The target must not contain data added - /// by ConcurrentAppend. ConcurrentAppend and Append cannot be used - /// interchangeably; once a target file has been modified using either of these - /// append options, the other append option cannot be used on the target file. + /// Used for serial appends to the specified file. NOTE: The target must not + /// contain data added by ConcurrentAppend. ConcurrentAppend and Append cannot + /// be used interchangeably; once a target file has been modified using either + /// of these append options, the other append option cannot be used on the + /// target file. /// /// /// The operations group for this extension method. @@ -605,12 +643,22 @@ public static FileStatusResult GetFileStatus(this IFileSystemOperations operatio /// that both the stream and metadata should be refreshed upon append /// completion. Possible values include: 'DATA', 'METADATA', 'CLOSE' /// + /// + /// Optional unique GUID per file to ensure single writer semantics, meaning + /// that only clients that append to the file with the same leaseId will be + /// allowed to do so. + /// + /// + /// Optional unique GUID per file indicating all the appends with the same + /// fileSessionId are from the same client and same session. This will give a + /// performance benefit when syncFlag is DATA or METADATA. + /// /// /// The cancellation token. /// - public static async Task AppendAsync(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task AppendAsync(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), System.Guid? fileSessionId = default(System.Guid?), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.AppendWithHttpMessagesAsync(accountName, directFilePath, streamContents, offset, syncFlag, null, cancellationToken).ConfigureAwait(false); + (await operations.AppendWithHttpMessagesAsync(accountName, directFilePath, streamContents, offset, syncFlag, leaseId, fileSessionId, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -637,12 +685,22 @@ public static FileStatusResult GetFileStatus(this IFileSystemOperations operatio /// Optionally indicates what to do after completion of the append. DATA /// indicates more data is coming so no sync takes place, METADATA indicates a /// sync should be done to refresh metadata of the file only. CLOSE indicates - /// that both the stream and metadata should be refreshed upon append + /// that both the stream and metadata should be refreshed upon create /// completion. Possible values include: 'DATA', 'METADATA', 'CLOSE' /// - public static void Create(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?)) + /// + /// Optional unique GUID per file to ensure single writer semantics, meaning + /// that only clients that append to the file with the same leaseId will be + /// allowed to do so. + /// + /// + /// The octal representation of the unnamed user, mask and other permissions + /// that should be set for the file when created. If not specified, it inherits + /// these from the container. + /// + public static void Create(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), int? permission = default(int?)) { - operations.CreateAsync(accountName, directFilePath, streamContents, overwrite, syncFlag).GetAwaiter().GetResult(); + operations.CreateAsync(accountName, directFilePath, streamContents, overwrite, syncFlag, leaseId, permission).GetAwaiter().GetResult(); } /// @@ -669,15 +727,25 @@ public static FileStatusResult GetFileStatus(this IFileSystemOperations operatio /// Optionally indicates what to do after completion of the append. DATA /// indicates more data is coming so no sync takes place, METADATA indicates a /// sync should be done to refresh metadata of the file only. CLOSE indicates - /// that both the stream and metadata should be refreshed upon append + /// that both the stream and metadata should be refreshed upon create /// completion. Possible values include: 'DATA', 'METADATA', 'CLOSE' /// + /// + /// Optional unique GUID per file to ensure single writer semantics, meaning + /// that only clients that append to the file with the same leaseId will be + /// allowed to do so. + /// + /// + /// The octal representation of the unnamed user, mask and other permissions + /// that should be set for the file when created. If not specified, it inherits + /// these from the container. + /// /// /// The cancellation token. /// - public static async Task CreateAsync(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateAsync(this IFileSystemOperations operations, string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), int? permission = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.CreateWithHttpMessagesAsync(accountName, directFilePath, streamContents, overwrite, syncFlag, null, cancellationToken).ConfigureAwait(false); + (await operations.CreateWithHttpMessagesAsync(accountName, directFilePath, streamContents, overwrite, syncFlag, leaseId, permission, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -699,9 +767,14 @@ public static FileStatusResult GetFileStatus(this IFileSystemOperations operatio /// /// The byte offset to start reading data from. /// - public static Stream Open(this IFileSystemOperations operations, string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?)) + /// + /// Optional unique GUID per file indicating all the reads with the same + /// fileSessionId are from the same client and same session. This will give a + /// performance benefit. + /// + public static Stream Open(this IFileSystemOperations operations, string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?), System.Guid? fileSessionId = default(System.Guid?)) { - return operations.OpenAsync(accountName, directFilePath, length, offset).GetAwaiter().GetResult(); + return operations.OpenAsync(accountName, directFilePath, length, offset, fileSessionId).GetAwaiter().GetResult(); } /// @@ -723,12 +796,17 @@ public static FileStatusResult GetFileStatus(this IFileSystemOperations operatio /// /// The byte offset to start reading data from. /// + /// + /// Optional unique GUID per file indicating all the reads with the same + /// fileSessionId are from the same client and same session. This will give a + /// performance benefit. + /// /// /// The cancellation token. /// - public static async Task OpenAsync(this IFileSystemOperations operations, string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task OpenAsync(this IFileSystemOperations operations, string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?), System.Guid? fileSessionId = default(System.Guid?), CancellationToken cancellationToken = default(CancellationToken)) { - var _result = await operations.OpenWithHttpMessagesAsync(accountName, directFilePath, length, offset, null, cancellationToken).ConfigureAwait(false); + var _result = await operations.OpenWithHttpMessagesAsync(accountName, directFilePath, length, offset, fileSessionId, null, cancellationToken).ConfigureAwait(false); _result.Request.Dispose(); return _result.Body; } @@ -777,7 +855,7 @@ public static void SetAcl(this IFileSystemOperations operations, string accountN /// public static async Task SetAclAsync(this IFileSystemOperations operations, string accountName, string setAclFilePath, string aclspec, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.SetAclWithHttpMessagesAsync(accountName, setAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false); + (await operations.SetAclWithHttpMessagesAsync(accountName, setAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -824,7 +902,7 @@ public static void ModifyAclEntries(this IFileSystemOperations operations, strin /// public static async Task ModifyAclEntriesAsync(this IFileSystemOperations operations, string accountName, string modifyAclFilePath, string aclspec, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.ModifyAclEntriesWithHttpMessagesAsync(accountName, modifyAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false); + (await operations.ModifyAclEntriesWithHttpMessagesAsync(accountName, modifyAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -871,7 +949,7 @@ public static void RemoveAclEntries(this IFileSystemOperations operations, strin /// public static async Task RemoveAclEntriesAsync(this IFileSystemOperations operations, string accountName, string removeAclFilePath, string aclspec, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.RemoveAclEntriesWithHttpMessagesAsync(accountName, removeAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false); + (await operations.RemoveAclEntriesWithHttpMessagesAsync(accountName, removeAclFilePath, aclspec, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -912,7 +990,7 @@ public static void RemoveDefaultAcl(this IFileSystemOperations operations, strin /// public static async Task RemoveDefaultAclAsync(this IFileSystemOperations operations, string accountName, string defaultAclFilePath, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.RemoveDefaultAclWithHttpMessagesAsync(accountName, defaultAclFilePath, null, cancellationToken).ConfigureAwait(false); + (await operations.RemoveDefaultAclWithHttpMessagesAsync(accountName, defaultAclFilePath, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -953,7 +1031,7 @@ public static void RemoveAcl(this IFileSystemOperations operations, string accou /// public static async Task RemoveAclAsync(this IFileSystemOperations operations, string accountName, string aclFilePath, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.RemoveAclWithHttpMessagesAsync(accountName, aclFilePath, null, cancellationToken).ConfigureAwait(false); + (await operations.RemoveAclWithHttpMessagesAsync(accountName, aclFilePath, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -969,9 +1047,14 @@ public static void RemoveAcl(this IFileSystemOperations operations, string accou /// The Data Lake Store path (starting with '/') of the file or directory for /// which to get the ACL. /// - public static AclStatusResult GetAclStatus(this IFileSystemOperations operations, string accountName, string aclFilePath) + /// + /// An optional switch to return friendly names in place of object ID for ACL + /// entries. tooid=false returns friendly names instead of the AAD Object ID. + /// Default value is true, returning AAD object IDs. + /// + public static AclStatusResult GetAclStatus(this IFileSystemOperations operations, string accountName, string aclFilePath, bool? tooId = default(bool?)) { - return operations.GetAclStatusAsync(accountName, aclFilePath).GetAwaiter().GetResult(); + return operations.GetAclStatusAsync(accountName, aclFilePath, tooId).GetAwaiter().GetResult(); } /// @@ -987,12 +1070,17 @@ public static AclStatusResult GetAclStatus(this IFileSystemOperations operations /// The Data Lake Store path (starting with '/') of the file or directory for /// which to get the ACL. /// + /// + /// An optional switch to return friendly names in place of object ID for ACL + /// entries. tooid=false returns friendly names instead of the AAD Object ID. + /// Default value is true, returning AAD object IDs. + /// /// /// The cancellation token. /// - public static async Task GetAclStatusAsync(this IFileSystemOperations operations, string accountName, string aclFilePath, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAclStatusAsync(this IFileSystemOperations operations, string accountName, string aclFilePath, bool? tooId = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAclStatusWithHttpMessagesAsync(accountName, aclFilePath, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAclStatusWithHttpMessagesAsync(accountName, aclFilePath, tooId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1146,7 +1234,7 @@ public static FileOperationResult Rename(this IFileSystemOperations operations, /// public static async Task SetOwnerAsync(this IFileSystemOperations operations, string accountName, string setOwnerFilePath, string owner = default(string), string group = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.SetOwnerWithHttpMessagesAsync(accountName, setOwnerFilePath, owner, group, null, cancellationToken).ConfigureAwait(false); + (await operations.SetOwnerWithHttpMessagesAsync(accountName, setOwnerFilePath, owner, group, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -1193,9 +1281,8 @@ public static FileOperationResult Rename(this IFileSystemOperations operations, /// public static async Task SetPermissionAsync(this IFileSystemOperations operations, string accountName, string setPermissionFilePath, string permission = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - await operations.SetPermissionWithHttpMessagesAsync(accountName, setPermissionFilePath, permission, null, cancellationToken).ConfigureAwait(false); + (await operations.SetPermissionWithHttpMessagesAsync(accountName, setPermissionFilePath, permission, null, cancellationToken).ConfigureAwait(false)).Dispose(); } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperations.cs index 87c380600a12..4b3f5261f84f 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -154,9 +151,9 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -171,6 +168,8 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -188,7 +187,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -224,7 +223,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -261,7 +260,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -369,9 +368,9 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -386,6 +385,8 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -403,7 +404,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -439,7 +440,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -476,7 +477,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -578,9 +579,9 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + 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) @@ -595,6 +596,8 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -632,11 +635,19 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -757,9 +768,9 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -774,6 +785,8 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -821,7 +834,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -858,7 +871,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -954,9 +967,9 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -971,6 +984,8 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1018,7 +1033,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1055,7 +1070,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1126,9 +1141,9 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1143,6 +1158,8 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1190,7 +1207,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1227,7 +1244,7 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1246,5 +1263,3 @@ internal FirewallRulesOperations(DataLakeStoreAccountManagementClient client) } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperationsExtensions.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperationsExtensions.cs index 1c6a89668694..9e2df8799b99 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/FirewallRulesOperationsExtensions.cs @@ -2,21 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; - using Rest; - using Rest.Azure; using System.Threading; using System.Threading.Tasks; @@ -185,7 +182,7 @@ public static void Delete(this IFirewallRulesOperations operations, string resou /// public static async Task DeleteAsync(this IFirewallRulesOperations operations, string resourceGroupName, string accountName, string firewallRuleName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, firewallRuleName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, firewallRuleName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -322,5 +319,3 @@ public static IPage ListByAccountNext(this IFirewallRulesOperation } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IAccountOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IAccountOperations.cs index 09d04931ed84..84a113a129b2 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IAccountOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IAccountOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Azure.OData; using Models; - using Rest; - using Rest.Azure; - using Rest.Azure.OData; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -47,13 +44,13 @@ public partial interface IAccountOperations /// /// 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> CreateWithHttpMessagesAsync(string resourceGroupName, string name, DataLakeStoreAccount parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -76,13 +73,13 @@ public partial interface IAccountOperations /// /// 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string name, DataLakeStoreAccountUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -102,10 +99,10 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -125,13 +122,13 @@ public partial interface IAccountOperations /// /// 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 name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -153,10 +150,10 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task EnableKeyVaultWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -188,13 +185,13 @@ public partial interface IAccountOperations /// /// 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -221,13 +218,13 @@ public partial interface IAccountOperations /// /// 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(ODataQuery odataQuery = default(ODataQuery), string select = default(string), bool? count = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -250,13 +247,13 @@ public partial interface IAccountOperations /// /// 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> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, DataLakeStoreAccount parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -279,13 +276,13 @@ public partial interface IAccountOperations /// /// 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> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string name, DataLakeStoreAccountUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -305,10 +302,10 @@ public partial interface IAccountOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -326,13 +323,13 @@ public partial interface IAccountOperations /// /// 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>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -349,17 +346,15 @@ public partial interface IAccountOperations /// /// 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/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreAccountManagementClient.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreAccountManagementClient.cs index bd589cc7847c..d96696944a30 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreAccountManagementClient.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreAccountManagementClient.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; /// /// Creates an Azure Data Lake Store account management client. @@ -32,12 +29,12 @@ public partial interface IDataLakeStoreAccountManagementClient : System.IDisposa /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. @@ -91,5 +88,3 @@ public partial interface IDataLakeStoreAccountManagementClient : System.IDisposa } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreFileSystemManagementClient.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreFileSystemManagementClient.cs index 3b8c0f602ecd..8f72e357abff 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreFileSystemManagementClient.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IDataLakeStoreFileSystemManagementClient.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; @@ -28,12 +28,12 @@ public partial interface IDataLakeStoreFileSystemManagementClient : System.IDisp /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. @@ -75,4 +75,3 @@ public partial interface IDataLakeStoreFileSystemManagementClient : System.IDisp } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFileSystemOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFileSystemOperations.cs index e1ac99e86c48..151b180ac41f 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFileSystemOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFileSystemOperations.cs @@ -2,17 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using Management; - using DataLake; - using Rest; - using Rest.Azure; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using System.Collections; using System.Collections.Generic; @@ -142,7 +142,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task CheckAccessWithHttpMessagesAsync(string accountName, string path, string fsaction = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task CheckAccessWithHttpMessagesAsync(string accountName, string path, string fsaction, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates a directory. /// @@ -154,6 +154,10 @@ public partial interface IFileSystemOperations /// The Data Lake Store path (starting with '/') of the directory to /// create. /// + /// + /// Optional octal permission with which the directory should be + /// created. + /// /// /// The headers that will be added to request. /// @@ -169,7 +173,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> MkdirsWithHttpMessagesAsync(string accountName, string path, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> MkdirsWithHttpMessagesAsync(string accountName, string path, int? permission = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Concatenates the list of source files into the destination file, /// removing all source files upon success. @@ -183,7 +187,7 @@ public partial interface IFileSystemOperations /// file resulting from the concatenation. /// /// - /// A list of comma seperated Data Lake Store paths (starting with '/') + /// A list of comma separated Data Lake Store paths (starting with '/') /// of the files to concatenate, in the order in which they should be /// concatenated. /// @@ -270,6 +274,11 @@ public partial interface IFileSystemOperations /// listBefore='d' will return 'a','b', and a listBefore='c' will also /// return 'a','b'. Optional. /// + /// + /// An optional switch to return friendly names in place of owner and + /// group. tooid=false returns friendly names instead of the AAD Object + /// ID. Default value is true, returning AAD object IDs. + /// /// /// The headers that will be added to request. /// @@ -285,7 +294,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> ListFileStatusWithHttpMessagesAsync(string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListFileStatusWithHttpMessagesAsync(string accountName, string listFilePath, int? listSize = default(int?), string listAfter = default(string), string listBefore = default(string), bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the file content summary object specified by the file path. /// @@ -324,6 +333,11 @@ public partial interface IFileSystemOperations /// The Data Lake Store path (starting with '/') of the file or /// directory for which to retrieve the status. /// + /// + /// An optional switch to return friendly names in place of owner and + /// group. tooid=false returns friendly names instead of the AAD Object + /// ID. Default value is true, returning AAD object IDs. + /// /// /// The headers that will be added to request. /// @@ -339,13 +353,13 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> GetFileStatusWithHttpMessagesAsync(string accountName, string getFilePath, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetFileStatusWithHttpMessagesAsync(string accountName, string getFilePath, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Appends to the specified file. NOTE: The target must not contain - /// data added by ConcurrentAppend. ConcurrentAppend and Append cannot - /// be used interchangeably; once a target file has been modified using - /// either of these append options, the other append option cannot be - /// used on the target file. + /// Used for serial appends to the specified file. NOTE: The target + /// must not contain data added by ConcurrentAppend. ConcurrentAppend + /// and Append cannot be used interchangeably; once a target file has + /// been modified using either of these append options, the other + /// append option cannot be used on the target file. /// /// /// The Azure Data Lake Store account to execute filesystem operations @@ -370,6 +384,16 @@ public partial interface IFileSystemOperations /// refreshed upon append completion. Possible values include: 'DATA', /// 'METADATA', 'CLOSE' /// + /// + /// Optional unique GUID per file to ensure single writer semantics, + /// meaning that only clients that append to the file with the same + /// leaseId will be allowed to do so. + /// + /// + /// Optional unique GUID per file indicating all the appends with the + /// same fileSessionId are from the same client and same session. This + /// will give a performance benefit when syncFlag is DATA or METADATA. + /// /// /// The headers that will be added to request. /// @@ -382,7 +406,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task AppendWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task AppendWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents, long? offset = default(long?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), System.Guid? fileSessionId = default(System.Guid?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates a file with optionally specified content. NOTE: If content /// is provided, the resulting file cannot be modified using @@ -407,9 +431,19 @@ public partial interface IFileSystemOperations /// DATA indicates more data is coming so no sync takes place, METADATA /// indicates a sync should be done to refresh metadata of the file /// only. CLOSE indicates that both the stream and metadata should be - /// refreshed upon append completion. Possible values include: 'DATA', + /// refreshed upon create completion. Possible values include: 'DATA', /// 'METADATA', 'CLOSE' /// + /// + /// Optional unique GUID per file to ensure single writer semantics, + /// meaning that only clients that append to the file with the same + /// leaseId will be allowed to do so. + /// + /// + /// The octal representation of the unnamed user, mask and other + /// permissions that should be set for the file when created. If not + /// specified, it inherits these from the container. + /// /// /// The headers that will be added to request. /// @@ -422,7 +456,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task CreateWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task CreateWithHttpMessagesAsync(string accountName, string directFilePath, Stream streamContents = default(Stream), bool? overwrite = default(bool?), SyncFlag? syncFlag = default(SyncFlag?), System.Guid? leaseId = default(System.Guid?), int? permission = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Opens and reads from the specified file. /// @@ -440,6 +474,11 @@ public partial interface IFileSystemOperations /// /// The byte offset to start reading data from. /// + /// + /// Optional unique GUID per file indicating all the reads with the + /// same fileSessionId are from the same client and same session. This + /// will give a performance benefit. + /// /// /// The headers that will be added to request. /// @@ -455,7 +494,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> OpenWithHttpMessagesAsync(string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> OpenWithHttpMessagesAsync(string accountName, string directFilePath, long? length = default(long?), long? offset = default(long?), System.Guid? fileSessionId = default(System.Guid?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Sets the Access Control List (ACL) for a file or folder. /// @@ -604,6 +643,11 @@ public partial interface IFileSystemOperations /// The Data Lake Store path (starting with '/') of the file or /// directory for which to get the ACL. /// + /// + /// An optional switch to return friendly names in place of object ID + /// for ACL entries. tooid=false returns friendly names instead of the + /// AAD Object ID. Default value is true, returning AAD object IDs. + /// /// /// The headers that will be added to request. /// @@ -619,7 +663,7 @@ public partial interface IFileSystemOperations /// /// Thrown when a required parameter is null /// - Task> GetAclStatusWithHttpMessagesAsync(string accountName, string aclFilePath, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAclStatusWithHttpMessagesAsync(string accountName, string aclFilePath, bool? tooId = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes the requested file or directory, optionally recursively. /// @@ -742,4 +786,3 @@ public partial interface IFileSystemOperations Task SetPermissionWithHttpMessagesAsync(string accountName, string setPermissionFilePath, string permission = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFirewallRulesOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFirewallRulesOperations.cs index 0c9929d5cdbc..b769ea835717 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFirewallRulesOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/IFirewallRulesOperations.cs @@ -2,21 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; - using Rest; - using Rest.Azure; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -52,13 +49,13 @@ public partial interface IFirewallRulesOperations /// /// 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 accountName, string firewallRuleName, FirewallRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -85,13 +82,13 @@ public partial interface IFirewallRulesOperations /// /// 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string firewallRuleName, UpdateFirewallRuleParameters parameters = default(UpdateFirewallRuleParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -116,10 +113,10 @@ public partial interface IFirewallRulesOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -143,13 +140,13 @@ public partial interface IFirewallRulesOperations /// /// 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 accountName, string firewallRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -171,13 +168,13 @@ public partial interface IFirewallRulesOperations /// /// 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>> ListByAccountWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -194,17 +191,15 @@ public partial interface IFirewallRulesOperations /// /// 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>> ListByAccountNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/ITrustedIdProvidersOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/ITrustedIdProvidersOperations.cs index e83dd273db92..554eb7134a26 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/ITrustedIdProvidersOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/ITrustedIdProvidersOperations.cs @@ -2,21 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; - using Rest; - using Rest.Azure; using System.Collections; using System.Collections.Generic; using System.Threading; @@ -54,13 +51,13 @@ public partial interface ITrustedIdProvidersOperations /// /// 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 accountName, string trustedIdProviderName, TrustedIdProvider parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -88,13 +85,13 @@ public partial interface ITrustedIdProvidersOperations /// /// 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string trustedIdProviderName, UpdateTrustedIdProviderParameters parameters = default(UpdateTrustedIdProviderParameters), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -119,10 +116,10 @@ public partial interface ITrustedIdProvidersOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// - /// + /// /// Thrown when a required parameter is null /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string accountName, string trustedIdProviderName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -146,13 +143,13 @@ public partial interface ITrustedIdProvidersOperations /// /// 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 accountName, string trustedIdProviderName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -174,13 +171,13 @@ public partial interface ITrustedIdProvidersOperations /// /// 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>> ListByAccountWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); @@ -197,17 +194,15 @@ public partial interface ITrustedIdProvidersOperations /// /// 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>> ListByAccountNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatus.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatus.cs index 6e10b4b05e13..0779c3e15866 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatus.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatus.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class AclStatus /// /// Initializes a new instance of the AclStatus class. /// - public AclStatus() { } + public AclStatus() + { + CustomInit(); + } /// /// Initializes a new instance of the AclStatus class. @@ -45,8 +48,14 @@ public AclStatus() { } Owner = owner; Permission = permission; StickyBit = stickyBit; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the list of ACLSpec entries on a file or directory. /// @@ -76,8 +85,7 @@ public AclStatus() { } /// Gets the indicator of whether the sticky bit is on or off. /// [JsonProperty(PropertyName = "stickyBit")] - public bool? StickyBit { get; protected set; } + public bool? StickyBit { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatusResult.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatusResult.cs index 70ce9e958f7f..e226d0674a0b 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatusResult.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AclStatusResult.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class AclStatusResult /// /// Initializes a new instance of the AclStatusResult class. /// - public AclStatusResult() { } + public AclStatusResult() + { + CustomInit(); + } /// /// Initializes a new instance of the AclStatusResult class. @@ -33,8 +36,14 @@ public AclStatusResult() { } public AclStatusResult(AclStatus aclStatus = default(AclStatus)) { AclStatus = aclStatus; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the AclStatus object for a given file or directory. /// @@ -43,4 +52,3 @@ public AclStatusResult() { } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsAccessControlException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsAccessControlException.cs index 458b9af1790f..f0a99bc0782a 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsAccessControlException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsAccessControlException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -26,7 +26,10 @@ public partial class AdlsAccessControlException : AdlsRemoteException /// /// Initializes a new instance of the AdlsAccessControlException class. /// - public AdlsAccessControlException() { } + public AdlsAccessControlException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsAccessControlException class. @@ -40,8 +43,13 @@ public AdlsAccessControlException() { } public AdlsAccessControlException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsBadOffsetException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsBadOffsetException.cs index 85d07fb1adf3..337665854c7e 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsBadOffsetException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsBadOffsetException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -26,7 +26,10 @@ public partial class AdlsBadOffsetException : AdlsRemoteException /// /// Initializes a new instance of the AdlsBadOffsetException class. /// - public AdlsBadOffsetException() { } + public AdlsBadOffsetException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsBadOffsetException class. @@ -40,8 +43,13 @@ public AdlsBadOffsetException() { } public AdlsBadOffsetException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsError.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsError.cs index 4d47bdfc84d9..5fa550c58061 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsError.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsError.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -24,7 +24,10 @@ public partial class AdlsError /// /// Initializes a new instance of the AdlsError class. /// - public AdlsError() { } + public AdlsError() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsError class. @@ -34,15 +37,20 @@ public AdlsError() { } public AdlsError(AdlsRemoteException remoteException = default(AdlsRemoteException)) { RemoteException = remoteException; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the object representing the actual WebHDFS exception being /// returned. /// [JsonProperty(PropertyName = "RemoteException")] - public AdlsRemoteException RemoteException { get; protected set; } + public AdlsRemoteException RemoteException { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsErrorException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsErrorException.cs index 68daaece0ef7..e26ca6ea3cf9 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsErrorException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsErrorException.cs @@ -2,25 +2,22 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; - using Rest; - using System.Runtime; - using System.Runtime.Serialization; - using System.Security; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; /// /// Exception thrown for an invalid response with AdlsError information. /// -#if !PORTABLE +#if LEGACY [System.Serializable] #endif public class AdlsErrorException : RestException @@ -66,13 +63,13 @@ public AdlsErrorException(string message, System.Exception innerException) { } -#if !PORTABLE +#if LEGACY /// /// Initializes a new instance of the AdlsErrorException class. /// /// Serialization info. /// Streaming context. - protected AdlsErrorException(SerializationInfo info, StreamingContext context) + protected AdlsErrorException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } @@ -86,7 +83,7 @@ protected AdlsErrorException(SerializationInfo info, StreamingContext context) /// Thrown when a required parameter is null /// [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter = true)] - public override void GetObjectData(SerializationInfo info, StreamingContext context) + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); if (info == null) @@ -101,4 +98,3 @@ public override void GetObjectData(SerializationInfo info, StreamingContext cont #endif } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileAlreadyExistsException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileAlreadyExistsException.cs index 96eafc30f215..d4aaae8937e3 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileAlreadyExistsException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileAlreadyExistsException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -26,7 +26,10 @@ public partial class AdlsFileAlreadyExistsException : AdlsRemoteException /// Initializes a new instance of the AdlsFileAlreadyExistsException /// class. /// - public AdlsFileAlreadyExistsException() { } + public AdlsFileAlreadyExistsException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsFileAlreadyExistsException @@ -41,8 +44,13 @@ public AdlsFileAlreadyExistsException() { } public AdlsFileAlreadyExistsException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileNotFoundException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileNotFoundException.cs index 056c52393161..d3e2044b5010 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileNotFoundException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsFileNotFoundException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -25,7 +25,10 @@ public partial class AdlsFileNotFoundException : AdlsRemoteException /// /// Initializes a new instance of the AdlsFileNotFoundException class. /// - public AdlsFileNotFoundException() { } + public AdlsFileNotFoundException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsFileNotFoundException class. @@ -39,8 +42,13 @@ public AdlsFileNotFoundException() { } public AdlsFileNotFoundException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIOException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIOException.cs index 7d995d6096f1..4c9e23764fbb 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIOException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIOException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -25,7 +25,10 @@ public partial class AdlsIOException : AdlsRemoteException /// /// Initializes a new instance of the AdlsIOException class. /// - public AdlsIOException() { } + public AdlsIOException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsIOException class. @@ -39,8 +42,13 @@ public AdlsIOException() { } public AdlsIOException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIllegalArgumentException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIllegalArgumentException.cs index 2c6eb3efe4e0..70d2d56cc2a1 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIllegalArgumentException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsIllegalArgumentException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -27,7 +27,10 @@ public partial class AdlsIllegalArgumentException : AdlsRemoteException /// Initializes a new instance of the AdlsIllegalArgumentException /// class. /// - public AdlsIllegalArgumentException() { } + public AdlsIllegalArgumentException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsIllegalArgumentException @@ -42,8 +45,13 @@ public AdlsIllegalArgumentException() { } public AdlsIllegalArgumentException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRemoteException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRemoteException.cs index c0967666886b..7e94e24a05e0 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRemoteException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRemoteException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -24,7 +24,10 @@ public partial class AdlsRemoteException /// /// Initializes a new instance of the AdlsRemoteException class. /// - public AdlsRemoteException() { } + public AdlsRemoteException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsRemoteException class. @@ -39,22 +42,27 @@ public AdlsRemoteException() { } { JavaClassName = javaClassName; Message = message; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the full class package name for the exception thrown, such as /// 'java.lang.IllegalArgumentException'. /// [JsonProperty(PropertyName = "javaClassName")] - public string JavaClassName { get; protected set; } + public string JavaClassName { get; private set; } /// /// Gets the message associated with the exception that was thrown, /// such as 'Invalid value for webhdfs parameter "permission":...'. /// [JsonProperty(PropertyName = "message")] - public string Message { get; protected set; } + public string Message { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRuntimeException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRuntimeException.cs index c40e33615e1d..fa54cfe166c9 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRuntimeException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsRuntimeException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -26,7 +26,10 @@ public partial class AdlsRuntimeException : AdlsRemoteException /// /// Initializes a new instance of the AdlsRuntimeException class. /// - public AdlsRuntimeException() { } + public AdlsRuntimeException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsRuntimeException class. @@ -40,8 +43,13 @@ public AdlsRuntimeException() { } public AdlsRuntimeException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsSecurityException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsSecurityException.cs index 06a8f2447d2d..e10f5d78a4b9 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsSecurityException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsSecurityException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -25,7 +25,10 @@ public partial class AdlsSecurityException : AdlsRemoteException /// /// Initializes a new instance of the AdlsSecurityException class. /// - public AdlsSecurityException() { } + public AdlsSecurityException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsSecurityException class. @@ -39,8 +42,13 @@ public AdlsSecurityException() { } public AdlsSecurityException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsThrottledException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsThrottledException.cs index ee20029fcff1..94fe75569886 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsThrottledException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsThrottledException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -26,7 +26,10 @@ public partial class AdlsThrottledException : AdlsRemoteException /// /// Initializes a new instance of the AdlsThrottledException class. /// - public AdlsThrottledException() { } + public AdlsThrottledException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsThrottledException class. @@ -40,8 +43,13 @@ public AdlsThrottledException() { } public AdlsThrottledException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsUnsupportedOperationException.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsUnsupportedOperationException.cs index 953dba2daabd..a766ec07bc6d 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsUnsupportedOperationException.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AdlsUnsupportedOperationException.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -27,7 +27,10 @@ public partial class AdlsUnsupportedOperationException : AdlsRemoteException /// Initializes a new instance of the AdlsUnsupportedOperationException /// class. /// - public AdlsUnsupportedOperationException() { } + public AdlsUnsupportedOperationException() + { + CustomInit(); + } /// /// Initializes a new instance of the AdlsUnsupportedOperationException @@ -42,8 +45,13 @@ public AdlsUnsupportedOperationException() { } public AdlsUnsupportedOperationException(string javaClassName = default(string), string message = default(string)) : base(javaClassName, message) { + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AppendModeType.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AppendModeType.cs index 98d8cdcb8617..10a73a5c0a7f 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AppendModeType.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/AppendModeType.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -20,11 +20,10 @@ namespace Microsoft.Azure.Management.DataLake.Store.Models /// /// Defines values for AppendModeType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum AppendModeType { [EnumMember(Value = "autocreate")] Autocreate } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummary.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummary.cs index 4ec6550e4c4d..3c0d5844c991 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummary.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummary.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class ContentSummary /// /// Initializes a new instance of the ContentSummary class. /// - public ContentSummary() { } + public ContentSummary() + { + CustomInit(); + } /// /// Initializes a new instance of the ContentSummary class. @@ -40,32 +43,37 @@ public ContentSummary() { } FileCount = fileCount; Length = length; SpaceConsumed = spaceConsumed; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the number of directories. /// [JsonProperty(PropertyName = "directoryCount")] - public long? DirectoryCount { get; protected set; } + public long? DirectoryCount { get; private set; } /// /// Gets the number of files. /// [JsonProperty(PropertyName = "fileCount")] - public long? FileCount { get; protected set; } + public long? FileCount { get; private set; } /// /// Gets the number of bytes used by the content. /// [JsonProperty(PropertyName = "length")] - public long? Length { get; protected set; } + public long? Length { get; private set; } /// /// Gets the disk space consumed by the content. /// [JsonProperty(PropertyName = "spaceConsumed")] - public long? SpaceConsumed { get; protected set; } + public long? SpaceConsumed { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummaryResult.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummaryResult.cs index 42604afa2371..82cbaf375a28 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummaryResult.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ContentSummaryResult.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class ContentSummaryResult /// /// Initializes a new instance of the ContentSummaryResult class. /// - public ContentSummaryResult() { } + public ContentSummaryResult() + { + CustomInit(); + } /// /// Initializes a new instance of the ContentSummaryResult class. @@ -33,14 +36,19 @@ public ContentSummaryResult() { } public ContentSummaryResult(ContentSummary contentSummary = default(ContentSummary)) { ContentSummary = contentSummary; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the content summary for the specified path /// [JsonProperty(PropertyName = "ContentSummary")] - public ContentSummary ContentSummary { get; protected set; } + public ContentSummary ContentSummary { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccount.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccount.cs index 7d54f9eeb77a..130c0873ccc2 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccount.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccount.cs @@ -2,23 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; - using Store; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -26,7 +22,7 @@ namespace Microsoft.Azure.Management.DataLake.Store.Models /// /// Data Lake Store account information /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class DataLakeStoreAccount : Resource { /// @@ -34,6 +30,7 @@ public partial class DataLakeStoreAccount : Resource /// public DataLakeStoreAccount() { + CustomInit(); } /// @@ -109,8 +106,14 @@ public DataLakeStoreAccount() NewTier = newTier; CurrentTier = currentTier; FirewallAllowAzureIps = firewallAllowAzureIps; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the Key vault encryption identity, if any. /// @@ -124,20 +127,20 @@ public DataLakeStoreAccount() /// 'Deleting', 'Deleted' /// [JsonProperty(PropertyName = "properties.provisioningState")] - public DataLakeStoreAccountStatus? ProvisioningState { get; protected set; } + public DataLakeStoreAccountStatus? ProvisioningState { get; private set; } /// /// Gets the status of the Data Lake Store account after provisioning /// has completed. Possible values include: 'Active', 'Suspended' /// [JsonProperty(PropertyName = "properties.state")] - public DataLakeStoreAccountState? State { get; protected set; } + public DataLakeStoreAccountState? State { get; private set; } /// /// Gets the account creation time. /// [JsonProperty(PropertyName = "properties.creationTime")] - public System.DateTime? CreationTime { get; protected set; } + public System.DateTime? CreationTime { get; private set; } /// /// Gets or sets the current state of encryption for this Data Lake @@ -152,7 +155,7 @@ public DataLakeStoreAccount() /// 'Succeeded' /// [JsonProperty(PropertyName = "properties.encryptionProvisioningState")] - public EncryptionProvisioningState? EncryptionProvisioningState { get; protected set; } + public EncryptionProvisioningState? EncryptionProvisioningState { get; private set; } /// /// Gets or sets the Key vault encryption configuration. @@ -194,13 +197,13 @@ public DataLakeStoreAccount() /// Gets the account last modified time. /// [JsonProperty(PropertyName = "properties.lastModifiedTime")] - public System.DateTime? LastModifiedTime { get; protected set; } + public System.DateTime? LastModifiedTime { get; private set; } /// /// Gets the gateway host. /// [JsonProperty(PropertyName = "properties.endpoint")] - public string Endpoint { get; protected set; } + public string Endpoint { get; private set; } /// /// Gets or sets the default owner group for all new folders and files @@ -225,7 +228,7 @@ public DataLakeStoreAccount() /// 'Commitment_5PB' /// [JsonProperty(PropertyName = "properties.currentTier")] - public TierType? CurrentTier { get; protected set; } + public TierType? CurrentTier { get; private set; } /// /// Gets or sets the current state of allowing or disallowing IPs @@ -272,5 +275,3 @@ public override void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountState.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountState.cs index cc9df6e1b1a6..60cba1935e41 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountState.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountState.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for DataLakeStoreAccountState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum DataLakeStoreAccountState { [EnumMember(Value = "Active")] @@ -33,5 +29,3 @@ public enum DataLakeStoreAccountState Suspended } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountStatus.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountStatus.cs index 9fec8614a040..681797e54388 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountStatus.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountStatus.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for DataLakeStoreAccountStatus. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum DataLakeStoreAccountStatus { [EnumMember(Value = "Failed")] @@ -47,5 +43,3 @@ public enum DataLakeStoreAccountStatus Deleted } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountUpdateParameters.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountUpdateParameters.cs index 9fbaf04e384b..4adbb57a30a9 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountUpdateParameters.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/DataLakeStoreAccountUpdateParameters.cs @@ -2,23 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; - using Store; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -26,14 +22,17 @@ namespace Microsoft.Azure.Management.DataLake.Store.Models /// /// Data Lake Store account information to update /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class DataLakeStoreAccountUpdateParameters { /// /// Initializes a new instance of the /// DataLakeStoreAccountUpdateParameters class. /// - public DataLakeStoreAccountUpdateParameters() { } + public DataLakeStoreAccountUpdateParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the @@ -68,8 +67,14 @@ public DataLakeStoreAccountUpdateParameters() { } DefaultGroup = defaultGroup; NewTier = newTier; FirewallAllowAzureIps = firewallAllowAzureIps; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets resource tags /// @@ -122,5 +127,3 @@ public DataLakeStoreAccountUpdateParameters() { } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfig.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfig.cs index 772f63ffa585..8a028d2dbcc4 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfig.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfig.cs @@ -2,21 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; - using Store; using System.Linq; /// @@ -27,7 +23,10 @@ public partial class EncryptionConfig /// /// Initializes a new instance of the EncryptionConfig class. /// - public EncryptionConfig() { } + public EncryptionConfig() + { + CustomInit(); + } /// /// Initializes a new instance of the EncryptionConfig class. @@ -42,8 +41,14 @@ public EncryptionConfig() { } { Type = type; KeyVaultMetaInfo = keyVaultMetaInfo; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the type of encryption configuration being used. /// Currently the only supported types are 'UserManaged' and @@ -75,5 +80,3 @@ public virtual void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfigType.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfigType.cs index 903e1003c32a..9fad3c547332 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfigType.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionConfigType.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for EncryptionConfigType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum EncryptionConfigType { [EnumMember(Value = "UserManaged")] @@ -33,5 +29,3 @@ public enum EncryptionConfigType ServiceManaged } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionIdentity.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionIdentity.cs index 5e541285cadd..e9c71417a1f5 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionIdentity.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionIdentity.cs @@ -2,21 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; - using Store; using System.Linq; /// @@ -27,7 +23,10 @@ public partial class EncryptionIdentity /// /// Initializes a new instance of the EncryptionIdentity class. /// - public EncryptionIdentity() { } + public EncryptionIdentity() + { + CustomInit(); + } /// /// Initializes a new instance of the EncryptionIdentity class. @@ -40,6 +39,7 @@ public EncryptionIdentity() { } { PrincipalId = principalId; TenantId = tenantId; + CustomInit(); } /// /// Static constructor for EncryptionIdentity class. @@ -49,17 +49,22 @@ static EncryptionIdentity() Type = "SystemAssigned"; } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the principal identifier associated with the encryption. /// [JsonProperty(PropertyName = "principalId")] - public System.Guid? PrincipalId { get; protected set; } + public System.Guid? PrincipalId { get; private set; } /// /// Gets the tenant identifier associated with the encryption. /// [JsonProperty(PropertyName = "tenantId")] - public System.Guid? TenantId { get; protected set; } + public System.Guid? TenantId { get; private set; } /// /// The type of encryption being used. Currently the only supported @@ -70,5 +75,3 @@ static EncryptionIdentity() } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionProvisioningState.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionProvisioningState.cs index 1269982b9126..b8dccd3ee914 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionProvisioningState.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionProvisioningState.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for EncryptionProvisioningState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum EncryptionProvisioningState { [EnumMember(Value = "Creating")] @@ -33,5 +29,3 @@ public enum EncryptionProvisioningState Succeeded } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionState.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionState.cs index 3a1bdb867c72..e664ef153a95 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionState.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/EncryptionState.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for EncryptionState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum EncryptionState { [EnumMember(Value = "Enabled")] @@ -33,5 +29,3 @@ public enum EncryptionState Disabled } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ErrorDetails.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ErrorDetails.cs index e6afd6a069a8..2127b2dccc1e 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ErrorDetails.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ErrorDetails.cs @@ -2,21 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; - using Store; using System.Linq; /// @@ -27,7 +23,10 @@ public partial class ErrorDetails /// /// Initializes a new instance of the ErrorDetails class. /// - public ErrorDetails() { } + public ErrorDetails() + { + CustomInit(); + } /// /// Initializes a new instance of the ErrorDetails class. @@ -43,28 +42,32 @@ public ErrorDetails() { } Code = code; Message = message; Target = target; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the HTTP status code or error code associated with this error /// [JsonProperty(PropertyName = "code")] - public string Code { get; protected set; } + public string Code { get; private set; } /// /// Gets the error message localized based on Accept-Language /// [JsonProperty(PropertyName = "message")] - public string Message { get; protected set; } + public string Message { get; private set; } /// /// Gets the target of the particular error (for example, the name of /// the property in error). /// [JsonProperty(PropertyName = "target")] - public string Target { get; protected set; } + public string Target { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ExpiryOptionType.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ExpiryOptionType.cs index 64eb079d8d24..4d46f8ff69bf 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ExpiryOptionType.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/ExpiryOptionType.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Store.Models /// /// Defines values for ExpiryOptionType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum ExpiryOptionType { [EnumMember(Value = "NeverExpire")] @@ -33,4 +33,3 @@ public enum ExpiryOptionType Absolute } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileOperationResult.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileOperationResult.cs index 7c4676bedf6a..8c53cfed36b1 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileOperationResult.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileOperationResult.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class FileOperationResult /// /// Initializes a new instance of the FileOperationResult class. /// - public FileOperationResult() { } + public FileOperationResult() + { + CustomInit(); + } /// /// Initializes a new instance of the FileOperationResult class. @@ -33,14 +36,19 @@ public FileOperationResult() { } public FileOperationResult(bool? operationResult = default(bool?)) { OperationResult = operationResult; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the result of the operation or request. /// [JsonProperty(PropertyName = "boolean")] - public bool? OperationResult { get; protected set; } + public bool? OperationResult { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusProperties.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusProperties.cs index e4e2c4debdd0..d30db70dde65 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusProperties.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusProperties.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class FileStatusProperties /// /// Initializes a new instance of the FileStatusProperties class. /// - public FileStatusProperties() { } + public FileStatusProperties() + { + CustomInit(); + } /// /// Initializes a new instance of the FileStatusProperties class. @@ -46,7 +49,9 @@ public FileStatusProperties() { } /// string. /// the type of the path object. Possible values /// include: 'FILE', 'DIRECTORY' - public FileStatusProperties(long? accessTime = default(long?), long? blockSize = default(long?), long? childrenNum = default(long?), long? expirationTime = default(long?), string group = default(string), long? length = default(long?), long? modificationTime = default(long?), string owner = default(string), string pathSuffix = default(string), string permission = default(string), FileType? type = default(FileType?)) + /// flag to indicate if extended acls are enabled + /// + public FileStatusProperties(long? accessTime = default(long?), long? blockSize = default(long?), long? childrenNum = default(long?), long? expirationTime = default(long?), string group = default(string), long? length = default(long?), long? modificationTime = default(long?), string owner = default(string), string pathSuffix = default(string), string permission = default(string), FileType? type = default(FileType?), bool? aclBit = default(bool?)) { AccessTime = accessTime; BlockSize = blockSize; @@ -59,76 +64,88 @@ public FileStatusProperties() { } PathSuffix = pathSuffix; Permission = permission; Type = type; + AclBit = aclBit; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the last access time as ticks since the epoch. /// [JsonProperty(PropertyName = "accessTime")] - public long? AccessTime { get; protected set; } + public long? AccessTime { get; private set; } /// /// Gets the block size for the file. /// [JsonProperty(PropertyName = "blockSize")] - public long? BlockSize { get; protected set; } + public long? BlockSize { get; private set; } /// /// Gets the number of children in the directory. /// [JsonProperty(PropertyName = "childrenNum")] - public long? ChildrenNum { get; protected set; } + public long? ChildrenNum { get; private set; } /// /// Gets the expiration time, if any, as ticks since the epoch. If the /// value is 0 or DateTime.MaxValue there is no expiration. /// - [JsonProperty(PropertyName = "expirationTime")] - public long? ExpirationTime { get; protected set; } + [JsonProperty(PropertyName = "msExpirationTime")] + public long? ExpirationTime { get; private set; } /// /// Gets the group owner. /// [JsonProperty(PropertyName = "group")] - public string Group { get; protected set; } + public string Group { get; private set; } /// /// Gets the number of bytes in a file. /// [JsonProperty(PropertyName = "length")] - public long? Length { get; protected set; } + public long? Length { get; private set; } /// /// Gets the modification time as ticks since the epoch. /// [JsonProperty(PropertyName = "modificationTime")] - public long? ModificationTime { get; protected set; } + public long? ModificationTime { get; private set; } /// /// Gets the user who is the owner. /// [JsonProperty(PropertyName = "owner")] - public string Owner { get; protected set; } + public string Owner { get; private set; } /// /// Gets the path suffix. /// [JsonProperty(PropertyName = "pathSuffix")] - public string PathSuffix { get; protected set; } + public string PathSuffix { get; private set; } /// /// Gets the permission represented as an string. /// [JsonProperty(PropertyName = "permission")] - public string Permission { get; protected set; } + public string Permission { get; private set; } /// /// Gets the type of the path object. Possible values include: 'FILE', /// 'DIRECTORY' /// [JsonProperty(PropertyName = "type")] - public FileType? Type { get; protected set; } + public FileType? Type { get; private set; } + + /// + /// Gets flag to indicate if extended acls are enabled + /// + [JsonProperty(PropertyName = "aclBit")] + public bool? AclBit { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusResult.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusResult.cs index 12ed6982a93c..a81e6b514658 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusResult.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusResult.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class FileStatusResult /// /// Initializes a new instance of the FileStatusResult class. /// - public FileStatusResult() { } + public FileStatusResult() + { + CustomInit(); + } /// /// Initializes a new instance of the FileStatusResult class. @@ -33,14 +36,19 @@ public FileStatusResult() { } public FileStatusResult(FileStatusProperties fileStatus = default(FileStatusProperties)) { FileStatus = fileStatus; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the file status object associated with the specified path. /// [JsonProperty(PropertyName = "FileStatus")] - public FileStatusProperties FileStatus { get; protected set; } + public FileStatusProperties FileStatus { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatuses.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatuses.cs index cbeda6e57e42..595a0d955c46 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatuses.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatuses.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -25,7 +25,10 @@ public partial class FileStatuses /// /// Initializes a new instance of the FileStatuses class. /// - public FileStatuses() { } + public FileStatuses() + { + CustomInit(); + } /// /// Initializes a new instance of the FileStatuses class. @@ -35,14 +38,19 @@ public FileStatuses() { } public FileStatuses(IList fileStatus = default(IList)) { FileStatus = fileStatus; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the object containing the list of properties of the files. /// [JsonProperty(PropertyName = "FileStatus")] - public IList FileStatus { get; protected set; } + public IList FileStatus { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusesResult.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusesResult.cs index f884fafc7af7..1226ddd355d5 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusesResult.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileStatusesResult.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using System.Linq; @@ -23,7 +23,10 @@ public partial class FileStatusesResult /// /// Initializes a new instance of the FileStatusesResult class. /// - public FileStatusesResult() { } + public FileStatusesResult() + { + CustomInit(); + } /// /// Initializes a new instance of the FileStatusesResult class. @@ -33,14 +36,19 @@ public FileStatusesResult() { } public FileStatusesResult(FileStatuses fileStatuses = default(FileStatuses)) { FileStatuses = fileStatuses; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the object representing the list of file statuses. /// [JsonProperty(PropertyName = "FileStatuses")] - public FileStatuses FileStatuses { get; protected set; } + public FileStatuses FileStatuses { get; private set; } } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileType.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileType.cs index 9ab06e0cdfbd..79d98c66b2b7 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileType.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FileType.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Store.Models /// /// Defines values for FileType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum FileType { [EnumMember(Value = "FILE")] @@ -29,4 +29,3 @@ public enum FileType DIRECTORY } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallAllowAzureIpsState.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallAllowAzureIpsState.cs index 0fbe18473e8e..2ba241e66d62 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallAllowAzureIpsState.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallAllowAzureIpsState.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for FirewallAllowAzureIpsState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum FirewallAllowAzureIpsState { [EnumMember(Value = "Enabled")] @@ -33,5 +29,3 @@ public enum FirewallAllowAzureIpsState Disabled } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallRule.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallRule.cs index 34b33eceab31..2f7ee35faf1b 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallRule.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallRule.cs @@ -2,35 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; - using Store; using System.Linq; /// /// Data Lake Store firewall rule information /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class FirewallRule : SubResource { /// /// Initializes a new instance of the FirewallRule class. /// - public FirewallRule() { } + public FirewallRule() + { + CustomInit(); + } /// /// Initializes a new instance of the FirewallRule class. @@ -49,8 +48,14 @@ public FirewallRule() { } { StartIpAddress = startIpAddress; EndIpAddress = endIpAddress; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the start IP address for the firewall rule. This can /// be either ipv4 or ipv6. Start and End should be in the same @@ -85,5 +90,3 @@ public virtual void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallState.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallState.cs index f41647777e4c..3e10a9ca3135 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallState.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/FirewallState.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for FirewallState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum FirewallState { [EnumMember(Value = "Enabled")] @@ -33,5 +29,3 @@ public enum FirewallState Disabled } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/KeyVaultMetaInfo.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/KeyVaultMetaInfo.cs index f5d40364b925..6fdd32a048fa 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/KeyVaultMetaInfo.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/KeyVaultMetaInfo.cs @@ -2,22 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; using Newtonsoft.Json; - using Rest; - using Store; using System.Linq; /// @@ -28,7 +24,10 @@ public partial class KeyVaultMetaInfo /// /// Initializes a new instance of the KeyVaultMetaInfo class. /// - public KeyVaultMetaInfo() { } + public KeyVaultMetaInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the KeyVaultMetaInfo class. @@ -44,8 +43,14 @@ public KeyVaultMetaInfo(string keyVaultResourceId, string encryptionKeyName, str KeyVaultResourceId = keyVaultResourceId; EncryptionKeyName = encryptionKeyName; EncryptionKeyVersion = encryptionKeyVersion; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the resource identifier for the user managed Key Vault /// being used to encrypt. @@ -88,5 +93,3 @@ public virtual void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Page.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Page.cs index c237b43b6102..bbd3e2469a2a 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Page.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Page.cs @@ -2,23 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Store; using System.Collections; using System.Collections.Generic; @@ -57,5 +53,3 @@ IEnumerator IEnumerable.GetEnumerator() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Resource.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Resource.cs index d974dc661663..181dafcf7771 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Resource.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/Resource.cs @@ -2,23 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Newtonsoft.Json; - using Rest; - using Rest.Azure; - using Store; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -31,7 +27,10 @@ public partial class Resource : IResource /// /// Initializes a new instance of the Resource class. /// - public Resource() { } + public Resource() + { + CustomInit(); + } /// /// Initializes a new instance of the Resource class. @@ -48,25 +47,31 @@ public Resource() { } Type = type; Location = location; Tags = tags; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets resource Id /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } + public string Id { get; private set; } /// /// Gets resource name /// [JsonProperty(PropertyName = "name")] - public string Name { get; protected set; } + public string Name { get; private set; } /// /// Gets resource type /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } /// /// Gets or sets resource location @@ -95,5 +100,3 @@ public virtual void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SubResource.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SubResource.cs index e665536ab27a..6a4163ffe7c2 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SubResource.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SubResource.cs @@ -2,21 +2,17 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; - using Store; using System.Linq; /// @@ -27,7 +23,10 @@ public partial class SubResource /// /// Initializes a new instance of the SubResource class. /// - public SubResource() { } + public SubResource() + { + CustomInit(); + } /// /// Initializes a new instance of the SubResource class. @@ -40,13 +39,19 @@ public SubResource() { } Id = id; Name = name; Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets resource Id /// [JsonProperty(PropertyName = "id")] - public string Id { get; protected set; } + public string Id { get; private set; } /// /// Gets or sets resource name @@ -58,9 +63,7 @@ public SubResource() { } /// Gets resource type /// [JsonProperty(PropertyName = "type")] - public string Type { get; protected set; } + public string Type { get; private set; } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SyncFlag.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SyncFlag.cs index a0b806c66191..c8f9b802b373 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SyncFlag.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/SyncFlag.cs @@ -2,16 +2,16 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using System.Runtime; @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Management.DataLake.Store.Models /// /// Defines values for SyncFlag. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum SyncFlag { [EnumMember(Value = "DATA")] @@ -31,4 +31,3 @@ public enum SyncFlag CLOSE } } - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TierType.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TierType.cs index d9f8d4b1b73f..77da6ab7a5d6 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TierType.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TierType.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for TierType. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum TierType { [EnumMember(Value = "Consumption")] @@ -43,5 +39,3 @@ public enum TierType Commitment5PB } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProvider.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProvider.cs index af4d2ff72ccd..11cf94839dc9 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProvider.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProvider.cs @@ -2,35 +2,34 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; - using Store; using System.Linq; /// /// Data Lake Store Trusted Identity Provider information /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class TrustedIdProvider : SubResource { /// /// Initializes a new instance of the TrustedIdProvider class. /// - public TrustedIdProvider() { } + public TrustedIdProvider() + { + CustomInit(); + } /// /// Initializes a new instance of the TrustedIdProvider class. @@ -44,8 +43,14 @@ public TrustedIdProvider() { } : base(id, name, type) { IdProvider = idProvider; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the URL of this trusted identity provider /// @@ -67,5 +72,3 @@ public virtual void Validate() } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProviderState.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProviderState.cs index 8033f31891b9..0bc4dfd1b0cb 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProviderState.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/TrustedIdProviderState.cs @@ -2,29 +2,25 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; using Newtonsoft.Json; using Newtonsoft.Json.Converters; - using Store; using System.Runtime; using System.Runtime.Serialization; /// /// Defines values for TrustedIdProviderState. /// - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(StringEnumConverter))] public enum TrustedIdProviderState { [EnumMember(Value = "Enabled")] @@ -33,5 +29,3 @@ public enum TrustedIdProviderState Disabled } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateFirewallRuleParameters.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateFirewallRuleParameters.cs index d19be0aae0f8..87e4b670213f 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateFirewallRuleParameters.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateFirewallRuleParameters.cs @@ -2,36 +2,35 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; - using Store; using System.Linq; /// /// Data Lake Analytics firewall rule update parameters /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class UpdateFirewallRuleParameters { /// /// Initializes a new instance of the UpdateFirewallRuleParameters /// class. /// - public UpdateFirewallRuleParameters() { } + public UpdateFirewallRuleParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the UpdateFirewallRuleParameters @@ -47,8 +46,14 @@ public UpdateFirewallRuleParameters() { } { StartIpAddress = startIpAddress; EndIpAddress = endIpAddress; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the start IP address for the firewall rule. This can /// be either ipv4 or ipv6. Start and End should be in the same @@ -66,5 +71,3 @@ public UpdateFirewallRuleParameters() { } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateTrustedIdProviderParameters.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateTrustedIdProviderParameters.cs index b042b9748e1a..5943afb8ea37 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateTrustedIdProviderParameters.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/Models/UpdateTrustedIdProviderParameters.cs @@ -2,36 +2,35 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store.Models { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; - using Store; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Azure.Management.DataLake.Store; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using Rest; - using Rest.Serialization; - using Store; using System.Linq; /// /// Data Lake Store Trusted Identity Provider update parameters /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class UpdateTrustedIdProviderParameters { /// /// Initializes a new instance of the UpdateTrustedIdProviderParameters /// class. /// - public UpdateTrustedIdProviderParameters() { } + public UpdateTrustedIdProviderParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the UpdateTrustedIdProviderParameters @@ -42,8 +41,14 @@ public UpdateTrustedIdProviderParameters() { } public UpdateTrustedIdProviderParameters(string idProvider = default(string)) { IdProvider = idProvider; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the URL of this trusted identity provider /// @@ -52,5 +57,3 @@ public UpdateTrustedIdProviderParameters() { } } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperations.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperations.cs index 51025d2bde72..ae9b2f35f94f 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperations.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperations.cs @@ -2,22 +2,19 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; using Newtonsoft.Json; - using Rest; - using Rest.Azure; using System.Collections; using System.Collections.Generic; using System.Linq; @@ -156,9 +153,9 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + 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) @@ -173,6 +170,8 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -190,7 +189,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -226,7 +225,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -263,7 +262,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -372,9 +371,9 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -389,6 +388,8 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -406,7 +407,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien if(parameters != null) { _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _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 @@ -442,7 +443,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -479,7 +480,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -581,9 +582,9 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + 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) @@ -598,6 +599,8 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -635,11 +638,19 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -760,9 +771,9 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -777,6 +788,8 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -824,7 +837,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -861,7 +874,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -957,9 +970,9 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -974,6 +987,8 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1021,7 +1036,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1058,7 +1073,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1129,9 +1144,9 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - var _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + 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) @@ -1146,6 +1161,8 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien } _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1193,7 +1210,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } @@ -1230,7 +1247,7 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien { _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) @@ -1249,5 +1266,3 @@ internal TrustedIdProvidersOperations(DataLakeStoreAccountManagementClient clien } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperationsExtensions.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperationsExtensions.cs index fc2f1bf19ca0..ea94575eaabc 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperationsExtensions.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Generated/TrustedIdProvidersOperationsExtensions.cs @@ -2,21 +2,18 @@ // Licensed under the MIT License. See License.txt in the project root for // license information. // -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.DataLake.Store { - using Azure; - using DataLake; - using Management; - using Azure; - using Management; - using DataLake; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.DataLake; + using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; - using Rest; - using Rest.Azure; using System.Threading; using System.Threading.Tasks; @@ -191,7 +188,7 @@ public static void Delete(this ITrustedIdProvidersOperations operations, string /// public static async Task DeleteAsync(this ITrustedIdProvidersOperations operations, string resourceGroupName, string accountName, string trustedIdProviderName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, trustedIdProviderName, null, cancellationToken).ConfigureAwait(false); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, accountName, trustedIdProviderName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// @@ -328,5 +325,3 @@ public static IPage ListByAccountNext(this ITrustedIdProvider } } - - diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Properties/AssemblyInfo.cs b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Properties/AssemblyInfo.cs index 089e10c11e8e..e262103bf3b4 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Provides Microsoft Azure Data Lake Store management operations including account and filesystem management.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.1.0.0")] +[assembly: AssemblyFileVersion("2.1.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/generate.cmd b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/generate.cmd index 8af6195104f6..ca130520d5f3 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/generate.cmd +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/generate.cmd @@ -5,18 +5,16 @@ @echo off setlocal -set autoRestVersion=1.0.0-Nightly20170104 -set source=-Source https://www.myget.org/F/autorest/api/v2 -set accountSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ae749b979d3a333de9eb76f726dad06223f455f/arm-datalake-store/account/2016-11-01/swagger/account.json" -set filesystemSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ae749b979d3a333de9eb76f726dad06223f455f/arm-datalake-store/filesystem/2016-11-01/swagger/filesystem.json" +set accountSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ade6547eff89bab427eb400ebc5da870f2c5bd0/arm-datalake-store/account/2016-11-01/swagger/account.json" +set filesystemSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/0ade6547eff89bab427eb400ebc5da870f2c5bd0/arm-datalake-store/filesystem/2016-11-01/swagger/filesystem.json" set repoRoot=%~dp0..\..\..\.. set generateFolder=%~dp0Generated if exist %generateFolder% rd /S /Q %generateFolder% -call "%repoRoot%\tools\autorest.gen.cmd" %accountSpecFile% Microsoft.Azure.Management.DataLake.Store %autoRestVersion% %generateFolder% -call "%repoRoot%\tools\autorest.gen.cmd" %filesystemSpecFile% Microsoft.Azure.Management.DataLake.Store %autoRestVersion% %generateFolder% +call autorest --latest -CodeGenerator Azure.CSharp -Input %accountSpecFile% -Namespace Microsoft.Azure.Management.DataLake.Store -outputDirectory %generateFolder% -Header MICROSOFT_MIT %~5 +call autorest --latest -CodeGenerator Azure.CSharp -Input %filesystemSpecFile% -Namespace Microsoft.Azure.Management.DataLake.Store -outputDirectory %generateFolder% -Header MICROSOFT_MIT %~5 endlocal \ No newline at end of file diff --git a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json index 4beccefbad1e..5d7b267dae69 100644 --- a/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json +++ b/src/ResourceManagement/DataLake.Store/Microsoft.Azure.Management.DataLake.Store/project.json @@ -1,5 +1,5 @@ { - "version": "2.1.0-preview", + "version": "2.1.1-preview", "description": "Provides Data Lake Store account and filesystem management capabilities for Microsoft Azure.", "authors": [ "Microsoft" ], From 962c71a5aa5f2cd741f56907b6a0c2e702a4651a Mon Sep 17 00:00:00 2001 From: begoldsm Date: Thu, 30 Mar 2017 10:30:14 -0700 Subject: [PATCH 49/56] Update changelog for the current version. --- .../DataLake.Analytics/changelog.md | 26 +++++----- .../DataLake.Store/changelog.md | 48 +++++++++++-------- 2 files changed, 44 insertions(+), 30 deletions(-) diff --git a/src/ResourceManagement/DataLake.Analytics/changelog.md b/src/ResourceManagement/DataLake.Analytics/changelog.md index 4f0f5ca60765..a33044a20497 100644 --- a/src/ResourceManagement/DataLake.Analytics/changelog.md +++ b/src/ResourceManagement/DataLake.Analytics/changelog.md @@ -1,5 +1,9 @@ ## Microsoft.Azure.Management.DataLake.Analytics release notes +### Changes in 2.1.1-preview +- Update underlying AutoRest framework to the latest. This cleans up a lot of the generated code, making it easier to read. +- The property `FirewallAllowAzureIps` in the Account object is currently ignored by the service and will not have a value when calling get. This property will be enabled and honored by the service in a future update. + ### Changes in 2.0.1-preview - Add support for firewall rule management in Data Lake Analytics - Remove minimum value requirements for Job parallelism. If a value < 1 is specified, it will use 1. @@ -7,14 +11,14 @@ ### Changes in 2.0.0 - As the first official stable release of the `Microsoft.Azure.Management.DataLake.Analytics` package, changes between this version and the preview version are enumerated below. - - All nested properties have been flattened down into their containing objects. For example: `myAccount.Properties.DefaultDataLakeStoreAccount` is now: `myAccount.DefaultDataLakeStoreAccount` - - Reorganized account management operations into three distinct operation groups: `Account`, `StorageAccounts` and `DataLakeStoreAccounts`. This results in changes to how certain operations are reached. For example, to get firewall rules previously this would be called: `myClient.Account.GetStorageAccount()`. Now: `myClient.StorageAccounts.Get()`. - - All object properties have been updated to reflect whether they are required, optional or read-only (un-settable). This more explicitly helps the caller understand what they need to pass in and what they cannot pass in. As a result, there are some read-only properties that previously were not, and will need to be removed from object initialization. - - Updates to include default values for some optional properties for objects. Please see class documentation for details on these defaults. - - Added billing support for account creation and updates - - Added support for CRUD of catalog credentials and initiated deprecation warnings for catalog secret CRUD, which will be removed in a future release. - - As part of credential CRUD, added cascading delete support for a given credential, which will delete all other catalog resources dependent on the credential automatically. - - Removed unsupported OData query options - - Added new `SeverityType` enum values - - Added deprecation warnings for `CreateSecret`,`UpdateSecret` and `DeleteSecret` - - Fixed the return type for `UpdateSecret` to properly reflect that nothing is returned. + - All nested properties have been flattened down into their containing objects. For example: `myAccount.Properties.DefaultDataLakeStoreAccount` is now: `myAccount.DefaultDataLakeStoreAccount` + - Reorganized account management operations into three distinct operation groups: `Account`, `StorageAccounts` and `DataLakeStoreAccounts`. This results in changes to how certain operations are reached. For example, to get firewall rules previously this would be called: `myClient.Account.GetStorageAccount()`. Now: `myClient.StorageAccounts.Get()`. + - All object properties have been updated to reflect whether they are required, optional or read-only (un-settable). This more explicitly helps the caller understand what they need to pass in and what they cannot pass in. As a result, there are some read-only properties that previously were not, and will need to be removed from object initialization. + - Updates to include default values for some optional properties for objects. Please see class documentation for details on these defaults. + - Added billing support for account creation and updates + - Added support for CRUD of catalog credentials and initiated deprecation warnings for catalog secret CRUD, which will be removed in a future release. + - As part of credential CRUD, added cascading delete support for a given credential, which will delete all other catalog resources dependent on the credential automatically. + - Removed unsupported OData query options + - Added new `SeverityType` enum values + - Added deprecation warnings for `CreateSecret`,`UpdateSecret` and `DeleteSecret` + - Fixed the return type for `UpdateSecret` to properly reflect that nothing is returned. diff --git a/src/ResourceManagement/DataLake.Store/changelog.md b/src/ResourceManagement/DataLake.Store/changelog.md index 48622c7a74d4..be643b30eb42 100644 --- a/src/ResourceManagement/DataLake.Store/changelog.md +++ b/src/ResourceManagement/DataLake.Store/changelog.md @@ -1,5 +1,15 @@ ## Microsoft.Azure.Management.DataLake.Store release notes +### Changes in 2.1.1-preview +- Update underlying AutoRest framework to the latest. This cleans up a lot of the generated code, making it easier to read. +- Filesystem client updates to further bring the client in line with WebHDFS standards: + - When calling `CheckAccess` the fsaction parameter is now required. + - The `Mkdirs` and `Create` methods now optionally accept a permission parameter to change the permissions on the created folder or file + - For `ListFileStatus`, `GetFileStatus` and `GetAclStatus` an optional tooId parameter has been added. This allows the caller to try and get a friendly name for users and groups back from the server instead of object ID. + - There was a slight change in how `GetAclStatus` returns ACL entries. The un-named entries are no longer returned as specific ACL entries. Instead they are part of the `permission` property. + - Add optional parameters to file read/write methods (`Create`, `Open` and `Append`): leaseId and fileSessionId. When used properly, these can increase the performance of reads and writes within a single session. + - The aclBit boolean value is now populated when calling `GetAclStatus` + ### Changes in 2.0.1-preview - Integrate DataLake.StoreUploader functionality into this package. - As of this release, the DataLake.StoreUploader package is deprecated and should not be used. @@ -16,24 +26,24 @@ ### Changes in 1.0.3 - As the first official stable release of the `Microsoft.Azure.Management.DataLake.Store` package, changes between this version and the preview version are enumerated below. - - All nested properties have been flattened down into their containing objects. For example: `myAccount.Properties.DefaultGroup` is now: `myAccount.DefaultGroup` + - All nested properties have been flattened down into their containing objects. For example: `myAccount.Properties.DefaultGroup` is now: `myAccount.DefaultGroup` - Reorganized account management operations into three distinct operation groups: `Account`, `FirewallRules` and `TrustedIdProviders`. This results in changes to how certain operations are reached. For example, to get firewall rules previously this would be called: `myClient.Account.GetFirewallRules()`. Now: `myClient.FirewallRules.Get()`. - - All object properties have been updated to reflect whether they are required, optional or read-only (un-settable). This more explicitly helps the caller understand what they need to pass in and what they cannot pass in. As a result, there are some read-only properties that previously were not, and will need to be removed from object initialization. - - Updates to include default values for some optional properties for objects. Please see class documentation for details on these defaults. - - Added encryption support to account creation - - Added billing support for account creation and updates - - Added SyncFlag support for Create, Append and ConcurrentAppend calls in the filesystem. This allows granular control of when the stream on the server side is flushed and metadata about the stream is updated. - - Added support for removal of full and default ACLs on files and folders, respectively. This does not remove system computed ACL entries (such as mask). - - Added support for setting the expiration time for a file, as well as retrieving the expiration time when getting a file. - - Added some new `AdlsErrorException` class types for exceptions thrown by the filesystem (which can be accessed under `myCaughException.Body.RemoteException`): - - AdlsIllegalArgumentException - - AdlsUnsupportedOperationException - - AdlsSecurityException - - AdlsIOException - - AdlsFileNotFoundException - - AdlsFileAlreadyExistsException - - AdlsBadOffsetException - - AdlsRuntimeException - - AdlsAccessControlException - - AdlsRemoteException + - All object properties have been updated to reflect whether they are required, optional or read-only (un-settable). This more explicitly helps the caller understand what they need to pass in and what they cannot pass in. As a result, there are some read-only properties that previously were not, and will need to be removed from object initialization. + - Updates to include default values for some optional properties for objects. Please see class documentation for details on these defaults. + - Added encryption support to account creation + - Added billing support for account creation and updates + - Added SyncFlag support for Create, Append and ConcurrentAppend calls in the filesystem. This allows granular control of when the stream on the server side is flushed and metadata about the stream is updated. + - Added support for removal of full and default ACLs on files and folders, respectively. This does not remove system computed ACL entries (such as mask). + - Added support for setting the expiration time for a file, as well as retrieving the expiration time when getting a file. + - Added some new `AdlsErrorException` class types for exceptions thrown by the filesystem (which can be accessed under `myCaughException.Body.RemoteException`): + - AdlsIllegalArgumentException + - AdlsUnsupportedOperationException + - AdlsSecurityException + - AdlsIOException + - AdlsFileNotFoundException + - AdlsFileAlreadyExistsException + - AdlsBadOffsetException + - AdlsRuntimeException + - AdlsAccessControlException + - AdlsRemoteException - AdlsThrottledException From 897d1e8bab30b24ffda771f899e2658e804eeda2 Mon Sep 17 00:00:00 2001 From: Ajit Navasare Date: Fri, 31 Mar 2017 17:09:31 -0700 Subject: [PATCH 50/56] Relay SDK Draft (#2998) * Adding Relay SDK Draft * Swagger Updates. * Method name corrected --- .../Generated/HybridConnectionsOperations.cs | 2821 ++++++++++++++ .../HybridConnectionsOperationsExtensions.cs | 594 +++ .../Generated/IHybridConnectionsOperations.cs | 369 ++ .../Generated/INamespacesOperations.cs | 484 +++ .../Generated/IOperations.cs | 69 + .../Generated/IRelayManagementClient.cs | 96 + .../Generated/IWCFRelaysOperations.cs | 368 ++ .../Generated/Models/AccessRights.cs | 25 + .../Generated/Models/AuthorizationRule.cs | 73 + .../Generated/Models/AuthorizationRuleKeys.cs | 85 + .../Generated/Models/CheckNameAvailability.cs | 64 + .../Models/CheckNameAvailabilityResult.cs | 73 + .../Generated/Models/ErrorResponse.cs | 54 + .../Models/ErrorResponseException.cs | 104 + .../Generated/Models/HybridConnection.cs | 113 + .../Generated/Models/Operation.cs | 54 + .../Generated/Models/OperationDisplay.cs | 62 + .../Generated/Models/Page.cs | 55 + .../Generated/Models/PolicyKey.cs | 24 + .../Models/RegenerateKeysParameters.cs | 46 + .../Generated/Models/RelayNamespace.cs | 115 + .../Models/RelayNamespaceUpdateParameter.cs | 63 + .../Generated/Models/Relaytype.cs | 24 + .../Generated/Models/Resource.cs | 62 + .../Generated/Models/Sku.cs | 50 + .../Generated/Models/TrackedResource.cs | 72 + .../Generated/Models/UnavailableReason.cs | 39 + .../Generated/Models/WcfRelay.cs | 123 + .../Generated/NamespacesOperations.cs | 3438 +++++++++++++++++ .../NamespacesOperationsExtensions.cs | 765 ++++ .../Generated/Operations.cs | 391 ++ .../Generated/OperationsExtensions.cs | 88 + .../Generated/RelayManagementClient.cs | 341 ++ .../Generated/WCFRelaysOperations.cs | 2815 ++++++++++++++ .../WCFRelaysOperationsExtensions.cs | 590 +++ .../Microsoft.Azure.Management.Relay.xproj | 18 + .../Properties/AssemblyInfo.cs | 19 + .../generate.cmd | 17 + .../project.json | 54 + .../Helpers/RecordedDelegatingHandler.cs | 88 + .../Helpers/RelayManagementTestUtilities.cs | 134 + .../Relay.Tests/Properties/AssemblyInfo.cs | 20 + .../Relay/Relay.Tests/Relay.Tests.xproj | 21 + .../CheckNameAvailability.json | 580 +++ ...ybridConnectionsCreateGetUpdateDelete.json | 1095 ++++++ ...eateGetUpdateDeleteAuthorizationRules.json | 1500 +++++++ .../NamespaceCreateGetUpdateDelete.json | 834 ++++ ...eateGetUpdateDeleteAuthorizationRules.json | 1168 ++++++ .../OperationList.json | 73 + .../WCFRelayCreateGetUpdateDelete.json | 959 +++++ ...eateGetUpdateDeleteAuthorizationRules.json | 1500 +++++++ .../ScenarioTests.CheckNameAvailability.cs | 95 + ...enarioTests.HybridConnectionsTests.CRUD.cs | 145 + ...ConnectionsTests.CRUDAuthorizationRules.cs | 213 + .../ScenarioTests.NamespaceTests.CRUD.cs | 133 + ...s.NamespaceTests.CRUDAuthorizationRules.cs | 178 + .../Tests/ScenarioTests.OperationList.cs | 44 + .../Tests/ScenarioTests.WCFRelayTests.CRUD.cs | 148 + ...ts.WCFRelayTests.CRUDAuthorizationRules.cs | 215 ++ .../Relay/Relay.Tests/Tests/ScenarioTests.cs | 68 + .../Relay/Relay.Tests/project.json | 40 + src/ResourceManagement/Relay/Relay.sln | 58 + src/ResourceManagement/Relay/global.json | 3 + 63 files changed, 24029 insertions(+) create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/HybridConnectionsOperations.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/HybridConnectionsOperationsExtensions.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IHybridConnectionsOperations.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/INamespacesOperations.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IOperations.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IRelayManagementClient.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IWCFRelaysOperations.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/AccessRights.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/AuthorizationRule.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/AuthorizationRuleKeys.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/CheckNameAvailability.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/CheckNameAvailabilityResult.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/ErrorResponse.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/ErrorResponseException.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/HybridConnection.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Operation.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/OperationDisplay.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Page.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/PolicyKey.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/RegenerateKeysParameters.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/RelayNamespace.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/RelayNamespaceUpdateParameter.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Relaytype.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Resource.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Sku.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/TrackedResource.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/UnavailableReason.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/WcfRelay.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/NamespacesOperations.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/NamespacesOperationsExtensions.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Operations.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/OperationsExtensions.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/RelayManagementClient.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/WCFRelaysOperations.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/WCFRelaysOperationsExtensions.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Microsoft.Azure.Management.Relay.xproj create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/generate.cmd create mode 100644 src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/project.json create mode 100644 src/ResourceManagement/Relay/Relay.Tests/Helpers/RecordedDelegatingHandler.cs create mode 100644 src/ResourceManagement/Relay/Relay.Tests/Helpers/RelayManagementTestUtilities.cs create mode 100644 src/ResourceManagement/Relay/Relay.Tests/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManagement/Relay/Relay.Tests/Relay.Tests.xproj create mode 100644 src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/CheckNameAvailability.json create mode 100644 src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/HybridConnectionsCreateGetUpdateDelete.json create mode 100644 src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/HybridConnectionsCreateGetUpdateDeleteAuthorizationRules.json create mode 100644 src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/NamespaceCreateGetUpdateDelete.json create mode 100644 src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/NamespaceCreateGetUpdateDeleteAuthorizationRules.json create mode 100644 src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/OperationList.json create mode 100644 src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/WCFRelayCreateGetUpdateDelete.json create mode 100644 src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/WCFRelayCreateGetUpdateDeleteAuthorizationRules.json create mode 100644 src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.CheckNameAvailability.cs create mode 100644 src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.HybridConnectionsTests.CRUD.cs create mode 100644 src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.HybridConnectionsTests.CRUDAuthorizationRules.cs create mode 100644 src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.NamespaceTests.CRUD.cs create mode 100644 src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.NamespaceTests.CRUDAuthorizationRules.cs create mode 100644 src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.OperationList.cs create mode 100644 src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.WCFRelayTests.CRUD.cs create mode 100644 src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.WCFRelayTests.CRUDAuthorizationRules.cs create mode 100644 src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.cs create mode 100644 src/ResourceManagement/Relay/Relay.Tests/project.json create mode 100644 src/ResourceManagement/Relay/Relay.sln create mode 100644 src/ResourceManagement/Relay/global.json diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/HybridConnectionsOperations.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/HybridConnectionsOperations.cs new file mode 100644 index 000000000000..d9217c50f000 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/HybridConnectionsOperations.cs @@ -0,0 +1,2821 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay +{ + using Azure; + using Management; + using Rest; + using 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; + + /// + /// HybridConnectionsOperations operations. + /// + internal partial class HybridConnectionsOperations : IServiceOperations, IHybridConnectionsOperations + { + /// + /// Initializes a new instance of the HybridConnectionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal HybridConnectionsOperations(RelayManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RelayManagementClient + /// + public RelayManagementClient Client { get; private set; } + + /// + /// Lists the HybridConnection within the namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace 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>> ListByNamespaceWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByNamespace", 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.Relay/namespaces/{namespaceName}/HybridConnections").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 service HybridConnection. This operation is + /// idempotent. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// Parameters supplied to create a HybridConnection. + /// + /// + /// 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> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string hybridConnectionName, HybridConnection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (hybridConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hybridConnectionName"); + } + if (hybridConnectionName != null) + { + if (hybridConnectionName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "hybridConnectionName", 50); + } + if (hybridConnectionName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "hybridConnectionName", 1); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("hybridConnectionName", hybridConnectionName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", 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.Relay/namespaces/{namespaceName}/HybridConnections/{hybridConnectionName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{hybridConnectionName}", System.Uri.EscapeDataString(hybridConnectionName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.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 != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 a HybridConnection . + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string hybridConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (hybridConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hybridConnectionName"); + } + if (hybridConnectionName != null) + { + if (hybridConnectionName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "hybridConnectionName", 50); + } + if (hybridConnectionName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "hybridConnectionName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("hybridConnectionName", hybridConnectionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", 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.Relay/namespaces/{namespaceName}/HybridConnections/{hybridConnectionName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{hybridConnectionName}", System.Uri.EscapeDataString(hybridConnectionName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 != 200 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Returns the description for the specified HybridConnection. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection 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 namespaceName, string hybridConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (hybridConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hybridConnectionName"); + } + if (hybridConnectionName != null) + { + if (hybridConnectionName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "hybridConnectionName", 50); + } + if (hybridConnectionName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "hybridConnectionName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("hybridConnectionName", hybridConnectionName); + 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.Relay/namespaces/{namespaceName}/HybridConnections/{hybridConnectionName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{hybridConnectionName}", System.Uri.EscapeDataString(hybridConnectionName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Authorization rules for a HybridConnection. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection 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>> ListAuthorizationRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string hybridConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (hybridConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hybridConnectionName"); + } + if (hybridConnectionName != null) + { + if (hybridConnectionName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "hybridConnectionName", 50); + } + if (hybridConnectionName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "hybridConnectionName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("hybridConnectionName", hybridConnectionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAuthorizationRules", 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.Relay/namespaces/{namespaceName}/HybridConnections/{hybridConnectionName}/authorizationRules").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{hybridConnectionName}", System.Uri.EscapeDataString(hybridConnectionName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 an authorization rule for a HybridConnection + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + /// + /// The authorization rule parameters + /// + /// + /// 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> CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, AuthorizationRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (hybridConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hybridConnectionName"); + } + if (hybridConnectionName != null) + { + if (hybridConnectionName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "hybridConnectionName", 50); + } + if (hybridConnectionName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "hybridConnectionName", 1); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("hybridConnectionName", hybridConnectionName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateAuthorizationRule", 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.Relay/namespaces/{namespaceName}/HybridConnections/{hybridConnectionName}/authorizationRules/{authorizationRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{hybridConnectionName}", System.Uri.EscapeDataString(hybridConnectionName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.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 != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 a HybridConnection authorization rule + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + /// + /// 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 DeleteAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (hybridConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hybridConnectionName"); + } + if (hybridConnectionName != null) + { + if (hybridConnectionName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "hybridConnectionName", 50); + } + if (hybridConnectionName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "hybridConnectionName", 1); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("hybridConnectionName", hybridConnectionName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DeleteAuthorizationRule", 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.Relay/namespaces/{namespaceName}/HybridConnections/{hybridConnectionName}/authorizationRules/{authorizationRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{hybridConnectionName}", System.Uri.EscapeDataString(hybridConnectionName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 != 200 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// HybridConnection authorizationRule for a HybridConnection by name. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule 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> GetAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (hybridConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hybridConnectionName"); + } + if (hybridConnectionName != null) + { + if (hybridConnectionName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "hybridConnectionName", 50); + } + if (hybridConnectionName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "hybridConnectionName", 1); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("hybridConnectionName", hybridConnectionName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetAuthorizationRule", 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.Relay/namespaces/{namespaceName}/HybridConnections/{hybridConnectionName}/authorizationRules/{authorizationRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{hybridConnectionName}", System.Uri.EscapeDataString(hybridConnectionName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Primary and Secondary ConnectionStrings to the HybridConnection. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule 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> ListKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (hybridConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hybridConnectionName"); + } + if (hybridConnectionName != null) + { + if (hybridConnectionName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "hybridConnectionName", 50); + } + if (hybridConnectionName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "hybridConnectionName", 1); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("hybridConnectionName", hybridConnectionName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListKeys", 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.Relay/namespaces/{namespaceName}/HybridConnections/{hybridConnectionName}/authorizationRules/{authorizationRuleName}/ListKeys").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{hybridConnectionName}", System.Uri.EscapeDataString(hybridConnectionName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Regenerates the Primary or Secondary ConnectionStrings to the + /// HybridConnection + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + /// + /// Parameters supplied to regenerate Auth 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> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, RegenerateKeysParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (hybridConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hybridConnectionName"); + } + if (hybridConnectionName != null) + { + if (hybridConnectionName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "hybridConnectionName", 50); + } + if (hybridConnectionName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "hybridConnectionName", 1); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("hybridConnectionName", hybridConnectionName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "RegenerateKeys", 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.Relay/namespaces/{namespaceName}/HybridConnections/{hybridConnectionName}/authorizationRules/{authorizationRuleName}/regenerateKeys").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{hybridConnectionName}", System.Uri.EscapeDataString(hybridConnectionName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.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 != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Lists the HybridConnection within the namespace. + /// + /// + /// 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>> ListByNamespaceNextWithHttpMessagesAsync(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, "ListByNamespaceNext", 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Authorization rules for a HybridConnection. + /// + /// + /// 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>> ListAuthorizationRulesNextWithHttpMessagesAsync(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, "ListAuthorizationRulesNext", 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/HybridConnectionsOperationsExtensions.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/HybridConnectionsOperationsExtensions.cs new file mode 100644 index 000000000000..9e2f65992eb8 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/HybridConnectionsOperationsExtensions.cs @@ -0,0 +1,594 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for HybridConnectionsOperations. + /// + public static partial class HybridConnectionsOperationsExtensions + { + /// + /// Lists the HybridConnection within the namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + public static IPage ListByNamespace(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName) + { + return operations.ListByNamespaceAsync(resourceGroupName, namespaceName).GetAwaiter().GetResult(); + } + + /// + /// Lists the HybridConnection within the namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The cancellation token. + /// + public static async Task> ListByNamespaceAsync(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByNamespaceWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or Updates a service HybridConnection. This operation is + /// idempotent. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// Parameters supplied to create a HybridConnection. + /// + public static HybridConnection CreateOrUpdate(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, HybridConnection parameters) + { + return operations.CreateOrUpdateAsync(resourceGroupName, namespaceName, hybridConnectionName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or Updates a service HybridConnection. This operation is + /// idempotent. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// Parameters supplied to create a HybridConnection. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, HybridConnection parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, namespaceName, hybridConnectionName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a HybridConnection . + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + public static void Delete(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName) + { + operations.DeleteAsync(resourceGroupName, namespaceName, hybridConnectionName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a HybridConnection . + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, namespaceName, hybridConnectionName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Returns the description for the specified HybridConnection. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + public static HybridConnection Get(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName) + { + return operations.GetAsync(resourceGroupName, namespaceName, hybridConnectionName).GetAwaiter().GetResult(); + } + + /// + /// Returns the description for the specified HybridConnection. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, namespaceName, hybridConnectionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Authorization rules for a HybridConnection. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + public static IPage ListAuthorizationRules(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName) + { + return operations.ListAuthorizationRulesAsync(resourceGroupName, namespaceName, hybridConnectionName).GetAwaiter().GetResult(); + } + + /// + /// Authorization rules for a HybridConnection. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAuthorizationRulesAsync(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAuthorizationRulesWithHttpMessagesAsync(resourceGroupName, namespaceName, hybridConnectionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or Updates an authorization rule for a HybridConnection + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + /// + /// The authorization rule parameters + /// + public static AuthorizationRule CreateOrUpdateAuthorizationRule(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, AuthorizationRule parameters) + { + return operations.CreateOrUpdateAuthorizationRuleAsync(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or Updates an authorization rule for a HybridConnection + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + /// + /// The authorization rule parameters + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAuthorizationRuleAsync(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, AuthorizationRule parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a HybridConnection authorization rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + public static void DeleteAuthorizationRule(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName) + { + operations.DeleteAuthorizationRuleAsync(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a HybridConnection authorization rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAuthorizationRuleAsync(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// HybridConnection authorizationRule for a HybridConnection by name. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + public static AuthorizationRule GetAuthorizationRule(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName) + { + return operations.GetAuthorizationRuleAsync(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName).GetAwaiter().GetResult(); + } + + /// + /// HybridConnection authorizationRule for a HybridConnection by name. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + /// + /// The cancellation token. + /// + public static async Task GetAuthorizationRuleAsync(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Primary and Secondary ConnectionStrings to the HybridConnection. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + public static AuthorizationRuleKeys ListKeys(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName) + { + return operations.ListKeysAsync(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName).GetAwaiter().GetResult(); + } + + /// + /// Primary and Secondary ConnectionStrings to the HybridConnection. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + /// + /// The cancellation token. + /// + public static async Task ListKeysAsync(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Regenerates the Primary or Secondary ConnectionStrings to the + /// HybridConnection + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + /// + /// Parameters supplied to regenerate Auth Rule. + /// + public static AuthorizationRuleKeys RegenerateKeys(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, RegenerateKeysParameters parameters) + { + return operations.RegenerateKeysAsync(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Regenerates the Primary or Secondary ConnectionStrings to the + /// HybridConnection + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + /// + /// Parameters supplied to regenerate Auth Rule. + /// + /// + /// The cancellation token. + /// + public static async Task RegenerateKeysAsync(this IHybridConnectionsOperations operations, string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, RegenerateKeysParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.RegenerateKeysWithHttpMessagesAsync(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists the HybridConnection within the namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByNamespaceNext(this IHybridConnectionsOperations operations, string nextPageLink) + { + return operations.ListByNamespaceNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists the HybridConnection within the namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByNamespaceNextAsync(this IHybridConnectionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByNamespaceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Authorization rules for a HybridConnection. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListAuthorizationRulesNext(this IHybridConnectionsOperations operations, string nextPageLink) + { + return operations.ListAuthorizationRulesNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Authorization rules for a HybridConnection. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAuthorizationRulesNextAsync(this IHybridConnectionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAuthorizationRulesNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IHybridConnectionsOperations.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IHybridConnectionsOperations.cs new file mode 100644 index 000000000000..a767eeb419c1 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IHybridConnectionsOperations.cs @@ -0,0 +1,369 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// HybridConnectionsOperations operations. + /// + public partial interface IHybridConnectionsOperations + { + /// + /// Lists the HybridConnection within the namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace 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>> ListByNamespaceWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or Updates a service HybridConnection. This operation is + /// idempotent. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// Parameters supplied to create a HybridConnection. + /// + /// + /// 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 namespaceName, string hybridConnectionName, HybridConnection parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a HybridConnection . + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// 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 namespaceName, string hybridConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Returns the description for the specified HybridConnection. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection 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 namespaceName, string hybridConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Authorization rules for a HybridConnection. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection 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>> ListAuthorizationRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string hybridConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or Updates an authorization rule for a HybridConnection + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + /// + /// The authorization rule parameters + /// + /// + /// 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> CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, AuthorizationRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a HybridConnection authorization rule + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + /// + /// 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 DeleteAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// HybridConnection authorizationRule for a HybridConnection by name. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule 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> GetAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Primary and Secondary ConnectionStrings to the HybridConnection. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule 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> ListKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Regenerates the Primary or Secondary ConnectionStrings to the + /// HybridConnection + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The hybrid connection name. + /// + /// + /// The authorizationRule name. + /// + /// + /// Parameters supplied to regenerate Auth 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> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string hybridConnectionName, string authorizationRuleName, RegenerateKeysParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists the HybridConnection within the namespace. + /// + /// + /// 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>> ListByNamespaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Authorization rules for a HybridConnection. + /// + /// + /// 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>> ListAuthorizationRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/INamespacesOperations.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/INamespacesOperations.cs new file mode 100644 index 000000000000..395961fbafc1 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/INamespacesOperations.cs @@ -0,0 +1,484 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// NamespacesOperations operations. + /// + public partial interface INamespacesOperations + { + /// + /// Check the give namespace name availability. + /// + /// + /// Parameters to check availability of the given namespace 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> CheckNameAvailabilityMethodWithHttpMessagesAsync(CheckNameAvailability parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all the available namespaces within the subscription + /// irrespective of the resourceGroups. + /// + /// + /// 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(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all the available namespaces within the ResourceGroup. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create Azure Relay namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// Parameters supplied to create a Namespace Resource. + /// + /// + /// 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 namespaceName, RelayNamespace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes an existing namespace. This operation also removes all + /// associated resources under the namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// 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 namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Returns the description for the specified namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace 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 namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates a namespace. Once created, this namespace's + /// resource manifest is immutable. This operation is idempotent. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// Parameters for updating a namespace resource. + /// + /// + /// 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, RelayNamespaceUpdateParameter parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Authorization rules for a namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace 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>> ListAuthorizationRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or Updates an authorization rule for a namespace + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + /// + /// The authorization rule parameters + /// + /// + /// 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> CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, AuthorizationRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a namespace authorization rule + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + /// + /// 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 DeleteAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Authorization rule for a namespace by name. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule 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> GetAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Primary and Secondary ConnectionStrings to the namespace + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule 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> ListKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Regenerates the Primary or Secondary ConnectionStrings to the + /// namespace + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + /// + /// Parameters supplied to regenerate Auth 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> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, RegenerateKeysParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create Azure Relay namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// Parameters supplied to create a Namespace Resource. + /// + /// + /// 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 namespaceName, RelayNamespace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes an existing namespace. This operation also removes all + /// associated resources under the namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// 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 namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all the available namespaces within the subscription + /// irrespective of the resourceGroups. + /// + /// + /// 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)); + /// + /// Lists all the available namespaces within the ResourceGroup. + /// + /// + /// 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>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Authorization rules for a namespace. + /// + /// + /// 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>> ListAuthorizationRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IOperations.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IOperations.cs new file mode 100644 index 000000000000..869511362f68 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IOperations.cs @@ -0,0 +1,69 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Operations operations. + /// + public partial interface IOperations + { + /// + /// Lists all of the available Relay REST API operations. + /// + /// + /// 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(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the available Relay REST API operations. + /// + /// + /// 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/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IRelayManagementClient.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IRelayManagementClient.cs new file mode 100644 index 000000000000..aa9f642dd609 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IRelayManagementClient.cs @@ -0,0 +1,96 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using Newtonsoft.Json; + + /// + /// Use these API to manage Azure Relay resources through Azure Resources + /// Manager. + /// + public partial interface IRelayManagementClient : System.IDisposable + { + /// + /// The base URI of the service. + /// + System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + JsonSerializerSettings SerializationSettings { get; } + + /// + /// Gets or sets json deserialization settings. + /// + JsonSerializerSettings DeserializationSettings { get; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + ServiceClientCredentials Credentials { get; } + + /// + /// Subscription credentials which uniquely identify Microsoft Azure + /// subscription. The subscription ID forms part of the URI for every + /// service call. + /// + string SubscriptionId { get; set; } + + /// + /// Client Api Version. + /// + string ApiVersion { get; } + + /// + /// Gets or sets the preferred language for the response. + /// + string AcceptLanguage { get; set; } + + /// + /// Gets or sets the retry timeout in seconds for Long Running + /// Operations. Default value is 30. + /// + int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// When set to true a unique x-ms-client-request-id value is generated + /// and included in each request. Default is true. + /// + bool? GenerateClientRequestId { get; set; } + + + /// + /// Gets the IOperations. + /// + IOperations Operations { get; } + + /// + /// Gets the INamespacesOperations. + /// + INamespacesOperations Namespaces { get; } + + /// + /// Gets the IHybridConnectionsOperations. + /// + IHybridConnectionsOperations HybridConnections { get; } + + /// + /// Gets the IWCFRelaysOperations. + /// + IWCFRelaysOperations WCFRelays { get; } + + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IWCFRelaysOperations.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IWCFRelaysOperations.cs new file mode 100644 index 000000000000..c1ebbea09567 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/IWCFRelaysOperations.cs @@ -0,0 +1,368 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// WCFRelaysOperations operations. + /// + public partial interface IWCFRelaysOperations + { + /// + /// Lists the WCFRelays within the namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace 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>> ListByNamespaceWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or Updates a WCFRelay. This operation is idempotent. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// Parameters supplied to create a WCFRelays. + /// + /// + /// 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 namespaceName, string relayName, WcfRelay parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a WCFRelays . + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// 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 namespaceName, string relayName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Returns the description for the specified WCFRelays. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay 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 namespaceName, string relayName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Authorization rules for a WCFRelays. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay 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>> ListAuthorizationRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string relayName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or Updates an authorization rule for a WCFRelays + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + /// + /// The authorization rule parameters. + /// + /// + /// 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> CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, AuthorizationRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a WCFRelays authorization rule + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + /// + /// 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 DeleteAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get authorizationRule for a WCFRelays by name. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule 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> GetAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Primary and Secondary ConnectionStrings to the WCFRelays. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule 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> ListKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Regenerates the Primary or Secondary ConnectionStrings to the + /// WCFRelays + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + /// + /// Parameters supplied to regenerate Auth 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> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, RegenerateKeysParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists the WCFRelays within the namespace. + /// + /// + /// 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>> ListByNamespaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Authorization rules for a WCFRelays. + /// + /// + /// 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>> ListAuthorizationRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/AccessRights.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/AccessRights.cs new file mode 100644 index 000000000000..6e8a415fbbde --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/AccessRights.cs @@ -0,0 +1,25 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + + /// + /// Defines values for AccessRights. + /// + public static class AccessRights + { + public const string Manage = "Manage"; + public const string Send = "Send"; + public const string Listen = "Listen"; + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/AuthorizationRule.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/AuthorizationRule.cs new file mode 100644 index 000000000000..328527998235 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/AuthorizationRule.cs @@ -0,0 +1,73 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Description of a Namespace AuthorizationRules. + /// + [JsonTransformation] + public partial class AuthorizationRule : Resource + { + /// + /// Initializes a new instance of the AuthorizationRule class. + /// + public AuthorizationRule() { } + + /// + /// Initializes a new instance of the AuthorizationRule class. + /// + /// The rights associated with the rule. + /// Resource Id + /// Resource name + /// Resource type + public AuthorizationRule(IList rights, string id = default(string), string name = default(string), string type = default(string)) + : base(id, name, type) + { + Rights = rights; + } + + /// + /// Gets or sets the rights associated with the rule. + /// + [JsonProperty(PropertyName = "properties.rights")] + public IList Rights { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Rights == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Rights"); + } + if (Rights != null) + { + if (Rights.Count != Rights.Distinct().Count()) + { + throw new ValidationException(ValidationRules.UniqueItems, "Rights"); + } + } + } + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/AuthorizationRuleKeys.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/AuthorizationRuleKeys.cs new file mode 100644 index 000000000000..5f32967b21c8 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/AuthorizationRuleKeys.cs @@ -0,0 +1,85 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Namespace/Relay Connection String + /// + public partial class AuthorizationRuleKeys + { + /// + /// Initializes a new instance of the AuthorizationRuleKeys class. + /// + public AuthorizationRuleKeys() { } + + /// + /// Initializes a new instance of the AuthorizationRuleKeys class. + /// + /// PrimaryConnectionString of + /// the created Namespace AuthorizationRule. + /// SecondaryConnectionString + /// of the created Namespace AuthorizationRule + /// A base64-encoded 256-bit primary key for + /// signing and validating the SAS token + /// A base64-encoded 256-bit secondary key + /// for signing and validating the SAS token + /// A string that describes the authorization + /// rule + public AuthorizationRuleKeys(string primaryConnectionString = default(string), string secondaryConnectionString = default(string), string primaryKey = default(string), string secondaryKey = default(string), string keyName = default(string)) + { + PrimaryConnectionString = primaryConnectionString; + SecondaryConnectionString = secondaryConnectionString; + PrimaryKey = primaryKey; + SecondaryKey = secondaryKey; + KeyName = keyName; + } + + /// + /// Gets or sets primaryConnectionString of the created Namespace + /// AuthorizationRule. + /// + [JsonProperty(PropertyName = "primaryConnectionString")] + public string PrimaryConnectionString { get; set; } + + /// + /// Gets or sets secondaryConnectionString of the created Namespace + /// AuthorizationRule + /// + [JsonProperty(PropertyName = "secondaryConnectionString")] + public string SecondaryConnectionString { get; set; } + + /// + /// Gets or sets a base64-encoded 256-bit primary key for signing and + /// validating the SAS token + /// + [JsonProperty(PropertyName = "primaryKey")] + public string PrimaryKey { get; set; } + + /// + /// Gets or sets a base64-encoded 256-bit secondary key for signing and + /// validating the SAS token + /// + [JsonProperty(PropertyName = "secondaryKey")] + public string SecondaryKey { get; set; } + + /// + /// Gets or sets a string that describes the authorization rule + /// + [JsonProperty(PropertyName = "keyName")] + public string KeyName { get; set; } + + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/CheckNameAvailability.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/CheckNameAvailability.cs new file mode 100644 index 000000000000..3df0f7dc1272 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/CheckNameAvailability.cs @@ -0,0 +1,64 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Description of a Check Name availability request properties. + /// + public partial class CheckNameAvailability + { + /// + /// Initializes a new instance of the CheckNameAvailability class. + /// + public CheckNameAvailability() { } + + /// + /// Initializes a new instance of the CheckNameAvailability class. + /// + /// The Name to check the namespce name availability + /// and The namespace name can contain only letters, numbers, and + /// hyphens. The namespace must start with a letter, and it must end + /// with a letter or number. + public CheckNameAvailability(string name) + { + Name = name; + } + + /// + /// Gets or sets the Name to check the namespce name availability and + /// The namespace name can contain only letters, numbers, and hyphens. + /// The namespace must start with a letter, and it must end with a + /// letter or number. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + } + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/CheckNameAvailabilityResult.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/CheckNameAvailabilityResult.cs new file mode 100644 index 000000000000..8ec64b3da192 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/CheckNameAvailabilityResult.cs @@ -0,0 +1,73 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Description of a Check Name availability request properties. + /// + public partial class CheckNameAvailabilityResult + { + /// + /// Initializes a new instance of the CheckNameAvailabilityResult + /// class. + /// + public CheckNameAvailabilityResult() { } + + /// + /// Initializes a new instance of the CheckNameAvailabilityResult + /// class. + /// + /// Value indicating namespace is + /// availability, true if the namespace is available; otherwise, + /// false. + /// The reason for unavailability of a namespace. + /// Possible values include: 'None', 'InvalidName', + /// 'SubscriptionIsDisabled', 'NameInUse', 'NameInLockdown', + /// 'TooManyNamespaceInCurrentSubscription' + /// The detailed info regarding the reason + /// associated with the namespace. + public CheckNameAvailabilityResult(bool? nameAvailable = default(bool?), UnavailableReason? reason = default(UnavailableReason?), string message = default(string)) + { + NameAvailable = nameAvailable; + Reason = reason; + Message = message; + } + + /// + /// Gets or sets value indicating namespace is availability, true if + /// the namespace is available; otherwise, false. + /// + [JsonProperty(PropertyName = "nameAvailable")] + public bool? NameAvailable { get; set; } + + /// + /// Gets or sets the reason for unavailability of a namespace. Possible + /// values include: 'None', 'InvalidName', 'SubscriptionIsDisabled', + /// 'NameInUse', 'NameInLockdown', + /// 'TooManyNamespaceInCurrentSubscription' + /// + [JsonProperty(PropertyName = "reason")] + public UnavailableReason? Reason { get; set; } + + /// + /// Gets the detailed info regarding the reason associated with the + /// namespace. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; protected set; } + + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/ErrorResponse.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/ErrorResponse.cs new file mode 100644 index 000000000000..9678754d4844 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/ErrorResponse.cs @@ -0,0 +1,54 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Error reponse indicates Relay service is not able to process the + /// incoming request. The reason is provided in the error message. + /// + public partial class ErrorResponse + { + /// + /// Initializes a new instance of the ErrorResponse class. + /// + public ErrorResponse() { } + + /// + /// Initializes a new instance of the ErrorResponse class. + /// + /// Error code. + /// Error message indicating why the operation + /// failed. + public ErrorResponse(string code = default(string), string message = default(string)) + { + Code = code; + Message = message; + } + + /// + /// Gets or sets error code. + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; set; } + + /// + /// Gets or sets error message indicating why the operation failed. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; set; } + + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/ErrorResponseException.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/ErrorResponseException.cs new file mode 100644 index 000000000000..de537298069d --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/ErrorResponseException.cs @@ -0,0 +1,104 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Rest; + using System.Runtime; + using System.Runtime.Serialization; + using System.Security; + + /// + /// Exception thrown for an invalid response with ErrorResponse + /// information. + /// +#if !PORTABLE + [System.Serializable] +#endif + public class ErrorResponseException : RestException + { + /// + /// Gets information about the associated HTTP request. + /// + public HttpRequestMessageWrapper Request { get; set; } + + /// + /// Gets information about the associated HTTP response. + /// + public HttpResponseMessageWrapper Response { get; set; } + + /// + /// Gets or sets the body object. + /// + public ErrorResponse Body { get; set; } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + public ErrorResponseException() + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + public ErrorResponseException(string message) + : this(message, null) + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + /// Inner exception. + public ErrorResponseException(string message, System.Exception innerException) + : base(message, innerException) + { + } + +#if !PORTABLE + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// Serialization info. + /// Streaming context. + protected ErrorResponseException(SerializationInfo info, StreamingContext context) + : base(info, context) + { + } + + /// + /// Serializes content of the exception. + /// + /// Serialization info. + /// Streaming context. + /// + /// Thrown when a required parameter is null + /// + [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter = true)] + public override void GetObjectData(SerializationInfo info, StreamingContext context) + { + base.GetObjectData(info, context); + if (info == null) + { + throw new System.ArgumentNullException("info"); + } + + info.AddValue("Request", Request); + info.AddValue("Response", Response); + info.AddValue("Body", Body); + } +#endif + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/HybridConnection.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/HybridConnection.cs new file mode 100644 index 000000000000..c4bbc5851555 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/HybridConnection.cs @@ -0,0 +1,113 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Description of HybridConnection Resource. + /// + [JsonTransformation] + public partial class HybridConnection : Resource + { + /// + /// Initializes a new instance of the HybridConnection class. + /// + public HybridConnection() { } + + /// + /// Initializes a new instance of the HybridConnection class. + /// + /// Resource Id + /// Resource name + /// Resource type + /// The time the HybridConnection was + /// created. + /// The time the namespace was updated. + /// The number of listeners for this + /// HybridConnection. min : 1 and max:25 supported + /// true if client + /// authorization is needed for this HybridConnection; otherwise, + /// false. + /// usermetadata is a placeholder to store + /// user-defined string data for the HybridConnection endpoint.e.g. it + /// can be used to store descriptive data, such as list of teams and + /// their contact information also user-defined configuration settings + /// can be stored. + public HybridConnection(string id = default(string), string name = default(string), string type = default(string), System.DateTime? createdAt = default(System.DateTime?), System.DateTime? updatedAt = default(System.DateTime?), int? listenerCount = default(int?), bool? requiresClientAuthorization = default(bool?), string userMetadata = default(string)) + : base(id, name, type) + { + CreatedAt = createdAt; + UpdatedAt = updatedAt; + ListenerCount = listenerCount; + RequiresClientAuthorization = requiresClientAuthorization; + UserMetadata = userMetadata; + } + + /// + /// Gets the time the HybridConnection was created. + /// + [JsonProperty(PropertyName = "properties.createdAt")] + public System.DateTime? CreatedAt { get; protected set; } + + /// + /// Gets the time the namespace was updated. + /// + [JsonProperty(PropertyName = "properties.updatedAt")] + public System.DateTime? UpdatedAt { get; protected set; } + + /// + /// Gets the number of listeners for this HybridConnection. min : 1 and + /// max:25 supported + /// + [JsonProperty(PropertyName = "properties.listenerCount")] + public int? ListenerCount { get; protected set; } + + /// + /// Gets or sets true if client authorization is needed for this + /// HybridConnection; otherwise, false. + /// + [JsonProperty(PropertyName = "properties.requiresClientAuthorization")] + public bool? RequiresClientAuthorization { get; set; } + + /// + /// Gets or sets usermetadata is a placeholder to store user-defined + /// string data for the HybridConnection endpoint.e.g. it can be used + /// to store descriptive data, such as list of teams and their contact + /// information also user-defined configuration settings can be stored. + /// + [JsonProperty(PropertyName = "properties.userMetadata")] + public string UserMetadata { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (ListenerCount > 25) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "ListenerCount", 25); + } + if (ListenerCount < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "ListenerCount", 1); + } + } + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Operation.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Operation.cs new file mode 100644 index 000000000000..3bf423501500 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Operation.cs @@ -0,0 +1,54 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Newtonsoft.Json; + using System.Linq; + + /// + /// A EventHub REST API operation + /// + public partial class Operation + { + /// + /// Initializes a new instance of the Operation class. + /// + public Operation() { } + + /// + /// Initializes a new instance of the Operation class. + /// + /// Operation name: + /// {provider}/{resource}/{operation} + /// The object that represents the + /// operation. + public Operation(string name = default(string), OperationDisplay display = default(OperationDisplay)) + { + Name = name; + Display = display; + } + + /// + /// Gets operation name: {provider}/{resource}/{operation} + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; protected set; } + + /// + /// Gets or sets the object that represents the operation. + /// + [JsonProperty(PropertyName = "display")] + public OperationDisplay Display { get; set; } + + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/OperationDisplay.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/OperationDisplay.cs new file mode 100644 index 000000000000..7ad5fda37c47 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/OperationDisplay.cs @@ -0,0 +1,62 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The object that represents the operation. + /// + public partial class OperationDisplay + { + /// + /// Initializes a new instance of the OperationDisplay class. + /// + public OperationDisplay() { } + + /// + /// Initializes a new instance of the OperationDisplay class. + /// + /// Service provider: Microsoft.EventHub + /// Resource on which the operation is + /// performed: Invoice, etc. + /// Operation type: Read, write, delete, + /// etc. + public OperationDisplay(string provider = default(string), string resource = default(string), string operation = default(string)) + { + Provider = provider; + Resource = resource; + Operation = operation; + } + + /// + /// Gets service provider: Microsoft.EventHub + /// + [JsonProperty(PropertyName = "provider")] + public string Provider { get; protected set; } + + /// + /// Gets resource on which the operation is performed: Invoice, etc. + /// + [JsonProperty(PropertyName = "resource")] + public string Resource { get; protected set; } + + /// + /// Gets operation type: Read, write, delete, etc. + /// + [JsonProperty(PropertyName = "operation")] + public string Operation { get; protected set; } + + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Page.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Page.cs new file mode 100644 index 000000000000..a93374cd37e9 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Page.cs @@ -0,0 +1,55 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [JsonObject] + public class Page : IPage + { + /// + /// Gets the link to the next page. + /// + [JsonProperty("nextLink")] + public string NextPageLink { get; private set; } + + [JsonProperty("value")] + private IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public IEnumerator GetEnumerator() + { + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/PolicyKey.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/PolicyKey.cs new file mode 100644 index 000000000000..3a08c4e9d983 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/PolicyKey.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 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + + /// + /// Defines values for PolicyKey. + /// + public static class PolicyKey + { + public const string PrimaryKey = "PrimaryKey"; + public const string SecondaryKey = "SecondaryKey"; + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/RegenerateKeysParameters.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/RegenerateKeysParameters.cs new file mode 100644 index 000000000000..e593d7290847 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/RegenerateKeysParameters.cs @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Parameters supplied to the Regenerate Authorization Rule operation. + /// + public partial class RegenerateKeysParameters + { + /// + /// Initializes a new instance of the RegenerateKeysParameters class. + /// + public RegenerateKeysParameters() { } + + /// + /// Initializes a new instance of the RegenerateKeysParameters class. + /// + /// Key that needs to be regenerated. Possible + /// values include: 'PrimaryKey', 'SecondaryKey' + public RegenerateKeysParameters(string policyKey = default(string)) + { + PolicyKey = policyKey; + } + + /// + /// Gets or sets key that needs to be regenerated. Possible values + /// include: 'PrimaryKey', 'SecondaryKey' + /// + [JsonProperty(PropertyName = "policyKey")] + public string PolicyKey { get; set; } + + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/RelayNamespace.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/RelayNamespace.cs new file mode 100644 index 000000000000..8cfe0d0ad82b --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/RelayNamespace.cs @@ -0,0 +1,115 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Description of a Namespace resource. + /// + [JsonTransformation] + public partial class RelayNamespace : TrackedResource + { + /// + /// Initializes a new instance of the RelayNamespace class. + /// + public RelayNamespace() + { + } + + /// + /// Initializes a new instance of the RelayNamespace class. + /// + /// Resource location + /// Resource Id + /// Resource name + /// Resource type + /// Resource tags + /// Provisioning state of the + /// namespace. + /// The time the namespace was created. + /// The time the namespace was updated. + /// Endpoint you can use to perform + /// Service Bus operations. + /// Identifier for Azure Insights + /// metrics + public RelayNamespace(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), System.DateTime? createdAt = default(System.DateTime?), System.DateTime? updatedAt = default(System.DateTime?), string serviceBusEndpoint = default(string), string metricId = default(string)) + : base(location, id, name, type, tags) + { + ProvisioningState = provisioningState; + CreatedAt = createdAt; + UpdatedAt = updatedAt; + ServiceBusEndpoint = serviceBusEndpoint; + MetricId = metricId; + } + /// + /// Static constructor for RelayNamespace class. + /// + static RelayNamespace() + { + Sku = new Sku(); + } + + /// + /// Gets provisioning state of the namespace. + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; protected set; } + + /// + /// Gets the time the namespace was created. + /// + [JsonProperty(PropertyName = "properties.createdAt")] + public System.DateTime? CreatedAt { get; protected set; } + + /// + /// Gets the time the namespace was updated. + /// + [JsonProperty(PropertyName = "properties.updatedAt")] + public System.DateTime? UpdatedAt { get; protected set; } + + /// + /// Gets endpoint you can use to perform Service Bus operations. + /// + [JsonProperty(PropertyName = "properties.serviceBusEndpoint")] + public string ServiceBusEndpoint { get; protected set; } + + /// + /// Gets identifier for Azure Insights metrics + /// + [JsonProperty(PropertyName = "properties.metricId")] + public string MetricId { get; protected set; } + + /// + /// Sku of the Namespace. + /// + [JsonProperty(PropertyName = "sku")] + public static Sku Sku { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/RelayNamespaceUpdateParameter.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/RelayNamespaceUpdateParameter.cs new file mode 100644 index 000000000000..9ce614fc29c3 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/RelayNamespaceUpdateParameter.cs @@ -0,0 +1,63 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Parameters supplied to the Patch Namespace operation. + /// + public partial class RelayNamespaceUpdateParameter + { + /// + /// Initializes a new instance of the RelayNamespaceUpdateParameter + /// class. + /// + public RelayNamespaceUpdateParameter() + { + } + + /// + /// Initializes a new instance of the RelayNamespaceUpdateParameter + /// class. + /// + /// Resource tags + public RelayNamespaceUpdateParameter(IDictionary tags = default(IDictionary)) + { + Tags = tags; + } + /// + /// Static constructor for RelayNamespaceUpdateParameter class. + /// + static RelayNamespaceUpdateParameter() + { + Sku = new Sku(); + } + + /// + /// Gets or sets resource tags + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// The sku of the created namespace + /// + [JsonProperty(PropertyName = "sku")] + public static Sku Sku { get; private set; } + + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Relaytype.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Relaytype.cs new file mode 100644 index 000000000000..eb29e4a654eb --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Relaytype.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 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + + /// + /// Defines values for Relaytype. + /// + public static class Relaytype + { + public const string NetTcp = "NetTcp"; + public const string Http = "Http"; + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Resource.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Resource.cs new file mode 100644 index 000000000000..460cefd3e0cf --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Resource.cs @@ -0,0 +1,62 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Rest; + using Rest.Azure; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The Resource definition + /// + public partial class Resource : IResource + { + /// + /// Initializes a new instance of the Resource class. + /// + public Resource() { } + + /// + /// Initializes a new instance of the Resource class. + /// + /// Resource Id + /// Resource name + /// Resource type + public Resource(string id = default(string), string name = default(string), string type = default(string)) + { + Id = id; + Name = name; + Type = type; + } + + /// + /// Gets resource Id + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; protected set; } + + /// + /// Gets resource name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; protected set; } + + /// + /// Gets resource type + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; protected set; } + + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Sku.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Sku.cs new file mode 100644 index 000000000000..817412b6771a --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/Sku.cs @@ -0,0 +1,50 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Sku of the Namespace. + /// + public partial class Sku + { + /// + /// Initializes a new instance of the Sku class. + /// + public Sku() { } + + /// + /// Static constructor for Sku class. + /// + static Sku() + { + Name = "Standard"; + Tier = "Standard"; + } + + /// + /// Name of this Sku + /// + [JsonProperty(PropertyName = "name")] + public static string Name { get; private set; } + + /// + /// The tier of this particular SKU + /// + [JsonProperty(PropertyName = "tier")] + public static string Tier { get; private set; } + + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/TrackedResource.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/TrackedResource.cs new file mode 100644 index 000000000000..33554ff781b2 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/TrackedResource.cs @@ -0,0 +1,72 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Definition of Resource + /// + public partial class TrackedResource : Resource + { + /// + /// Initializes a new instance of the TrackedResource class. + /// + public TrackedResource() { } + + /// + /// Initializes a new instance of the TrackedResource class. + /// + /// Resource location + /// Resource Id + /// Resource name + /// Resource type + /// Resource tags + public TrackedResource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) + : base(id, name, type) + { + Location = location; + Tags = tags; + } + + /// + /// Gets or sets resource location + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets or sets resource tags + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); + } + } + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/UnavailableReason.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/UnavailableReason.cs new file mode 100644 index 000000000000..7c20a557eecf --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/UnavailableReason.cs @@ -0,0 +1,39 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for UnavailableReason. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum UnavailableReason + { + [EnumMember(Value = "None")] + None, + [EnumMember(Value = "InvalidName")] + InvalidName, + [EnumMember(Value = "SubscriptionIsDisabled")] + SubscriptionIsDisabled, + [EnumMember(Value = "NameInUse")] + NameInUse, + [EnumMember(Value = "NameInLockdown")] + NameInLockdown, + [EnumMember(Value = "TooManyNamespaceInCurrentSubscription")] + TooManyNamespaceInCurrentSubscription + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/WcfRelay.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/WcfRelay.cs new file mode 100644 index 000000000000..8488f6b15441 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Models/WcfRelay.cs @@ -0,0 +1,123 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay.Models +{ + using Azure; + using Management; + using Relay; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Description of WcfRelays Resource. + /// + [JsonTransformation] + public partial class WcfRelay : Resource + { + /// + /// Initializes a new instance of the WcfRelay class. + /// + public WcfRelay() { } + + /// + /// Initializes a new instance of the WcfRelay class. + /// + /// Resource Id + /// Resource name + /// Resource type + /// WCFRelay Type. Possible values include: + /// 'NetTcp', 'Http' + /// The time the WCFRelay was created. + /// The time the namespace was updated. + /// The number of listeners for this relay. + /// min : 1 and max:25 supported + /// true if client + /// authorization is needed for this relay; otherwise, false. + /// true if transport security + /// is needed for this relay; otherwise, false. + /// true if the relay is dynamic; otherwise, + /// false. + /// usermetadata is a placeholder to store + /// user-defined string data for the HybridConnection endpoint.e.g. it + /// can be used to store descriptive data, such as list of teams and + /// their contact information also user-defined configuration settings + /// can be stored. + public WcfRelay(string id = default(string), string name = default(string), string type = default(string), string relayType = default(string), System.DateTime? createdAt = default(System.DateTime?), System.DateTime? updatedAt = default(System.DateTime?), int? listenerCount = default(int?), bool? requiresClientAuthorization = default(bool?), bool? requiresTransportSecurity = default(bool?), bool? isDynamic = default(bool?), string userMetadata = default(string)) + : base(id, name, type) + { + RelayType = relayType; + CreatedAt = createdAt; + UpdatedAt = updatedAt; + ListenerCount = listenerCount; + RequiresClientAuthorization = requiresClientAuthorization; + RequiresTransportSecurity = requiresTransportSecurity; + IsDynamic = isDynamic; + UserMetadata = userMetadata; + } + + /// + /// Gets or sets wCFRelay Type. Possible values include: 'NetTcp', + /// 'Http' + /// + [JsonProperty(PropertyName = "properties.relayType")] + public string RelayType { get; set; } + + /// + /// Gets the time the WCFRelay was created. + /// + [JsonProperty(PropertyName = "properties.createdAt")] + public System.DateTime? CreatedAt { get; protected set; } + + /// + /// Gets the time the namespace was updated. + /// + [JsonProperty(PropertyName = "properties.updatedAt")] + public System.DateTime? UpdatedAt { get; protected set; } + + /// + /// Gets the number of listeners for this relay. min : 1 and max:25 + /// supported + /// + [JsonProperty(PropertyName = "properties.listenerCount")] + public int? ListenerCount { get; protected set; } + + /// + /// Gets or sets true if client authorization is needed for this relay; + /// otherwise, false. + /// + [JsonProperty(PropertyName = "properties.requiresClientAuthorization")] + public bool? RequiresClientAuthorization { get; set; } + + /// + /// Gets or sets true if transport security is needed for this relay; + /// otherwise, false. + /// + [JsonProperty(PropertyName = "properties.requiresTransportSecurity")] + public bool? RequiresTransportSecurity { get; set; } + + /// + /// Gets true if the relay is dynamic; otherwise, false. + /// + [JsonProperty(PropertyName = "properties.isDynamic")] + public bool? IsDynamic { get; protected set; } + + /// + /// Gets or sets usermetadata is a placeholder to store user-defined + /// string data for the HybridConnection endpoint.e.g. it can be used + /// to store descriptive data, such as list of teams and their contact + /// information also user-defined configuration settings can be stored. + /// + [JsonProperty(PropertyName = "properties.userMetadata")] + public string UserMetadata { get; set; } + + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/NamespacesOperations.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/NamespacesOperations.cs new file mode 100644 index 000000000000..1a5cadd270e9 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/NamespacesOperations.cs @@ -0,0 +1,3438 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay +{ + using Azure; + using Management; + using Rest; + using 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; + + /// + /// NamespacesOperations operations. + /// + internal partial class NamespacesOperations : IServiceOperations, INamespacesOperations + { + /// + /// Initializes a new instance of the NamespacesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal NamespacesOperations(RelayManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RelayManagementClient + /// + public RelayManagementClient Client { get; private set; } + + /// + /// Check the give namespace name availability. + /// + /// + /// Parameters to check availability of the given namespace 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> CheckNameAvailabilityMethodWithHttpMessagesAsync(CheckNameAvailability parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailabilityMethod", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Relay/CheckNameAvailability").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.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 != 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; + } + + /// + /// Lists all the available namespaces within the subscription irrespective of + /// the resourceGroups. + /// + /// + /// 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(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + 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.Relay/Namespaces").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Lists all the available namespaces within the ResourceGroup. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", 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.Relay/Namespaces").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Create Azure Relay namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// Parameters supplied to create a Namespace Resource. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, RelayNamespace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, namespaceName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes an existing namespace. This operation also removes all associated + /// resources under the namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, namespaceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Returns the description for the specified namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace 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 namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + 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.Relay/namespaces/{namespaceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 namespace. Once created, this namespace's resource + /// manifest is immutable. This operation is idempotent. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// Parameters for updating a namespace resource. + /// + /// + /// 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, RelayNamespaceUpdateParameter parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (parameters == null) + { + parameters = new RelayNamespaceUpdateParameter(); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Update", 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.Relay/namespaces/{namespaceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + _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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.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 != 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; + } + + /// + /// Authorization rules for a namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace 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>> ListAuthorizationRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAuthorizationRules", 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.Relay/namespaces/{namespaceName}/AuthorizationRules").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 an authorization rule for a namespace + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + /// + /// The authorization rule parameters + /// + /// + /// 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> CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, AuthorizationRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateAuthorizationRule", 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.Relay/namespaces/{namespaceName}/AuthorizationRules/{authorizationRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.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 != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 a namespace authorization rule + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + /// + /// 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 DeleteAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DeleteAuthorizationRule", 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.Relay/namespaces/{namespaceName}/AuthorizationRules/{authorizationRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 != 200 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Authorization rule for a namespace by name. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule 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> GetAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetAuthorizationRule", 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.Relay/namespaces/{namespaceName}/AuthorizationRules/{authorizationRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Primary and Secondary ConnectionStrings to the namespace + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule 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> ListKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListKeys", 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.Relay/namespaces/{namespaceName}/AuthorizationRules/{authorizationRuleName}/listKeys").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Regenerates the Primary or Secondary ConnectionStrings to the namespace + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + /// + /// Parameters supplied to regenerate Auth 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> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, RegenerateKeysParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "RegenerateKeys", 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.Relay/namespaces/{namespaceName}/AuthorizationRules/{authorizationRuleName}/regenerateKeys").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.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 != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Create Azure Relay namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// Parameters supplied to create a Namespace Resource. + /// + /// + /// 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 namespaceName, RelayNamespace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (parameters == null) + { + parameters = new RelayNamespace(); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("parameters", parameters); + 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.Relay/namespaces/{namespaceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.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 != 200 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 an existing namespace. This operation also removes all associated + /// resources under the namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// 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 namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + 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.Relay/namespaces/{namespaceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Lists all the available namespaces within the subscription irrespective of + /// the resourceGroups. + /// + /// + /// 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Lists all the available namespaces within the ResourceGroup. + /// + /// + /// 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>> ListByResourceGroupNextWithHttpMessagesAsync(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, "ListByResourceGroupNext", 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Authorization rules for a namespace. + /// + /// + /// 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>> ListAuthorizationRulesNextWithHttpMessagesAsync(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, "ListAuthorizationRulesNext", 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/NamespacesOperationsExtensions.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/NamespacesOperationsExtensions.cs new file mode 100644 index 000000000000..ee4ea9a15f2a --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/NamespacesOperationsExtensions.cs @@ -0,0 +1,765 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for NamespacesOperations. + /// + public static partial class NamespacesOperationsExtensions + { + /// + /// Check the give namespace name availability. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Parameters to check availability of the given namespace name + /// + public static CheckNameAvailabilityResult CheckNameAvailabilityMethod(this INamespacesOperations operations, CheckNameAvailability parameters) + { + return operations.CheckNameAvailabilityMethodAsync(parameters).GetAwaiter().GetResult(); + } + + /// + /// Check the give namespace name availability. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Parameters to check availability of the given namespace name + /// + /// + /// The cancellation token. + /// + public static async Task CheckNameAvailabilityMethodAsync(this INamespacesOperations operations, CheckNameAvailability parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CheckNameAvailabilityMethodWithHttpMessagesAsync(parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all the available namespaces within the subscription irrespective of + /// the resourceGroups. + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this INamespacesOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all the available namespaces within the subscription irrespective of + /// the resourceGroups. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this INamespacesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all the available namespaces within the ResourceGroup. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + public static IPage ListByResourceGroup(this INamespacesOperations operations, string resourceGroupName) + { + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + } + + /// + /// Lists all the available namespaces within the ResourceGroup. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this INamespacesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create Azure Relay namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// Parameters supplied to create a Namespace Resource. + /// + public static RelayNamespace CreateOrUpdate(this INamespacesOperations operations, string resourceGroupName, string namespaceName, RelayNamespace parameters) + { + return operations.CreateOrUpdateAsync(resourceGroupName, namespaceName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Create Azure Relay namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// Parameters supplied to create a Namespace Resource. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, RelayNamespace parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, namespaceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes an existing namespace. This operation also removes all associated + /// resources under the namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + public static void Delete(this INamespacesOperations operations, string resourceGroupName, string namespaceName) + { + operations.DeleteAsync(resourceGroupName, namespaceName).GetAwaiter().GetResult(); + } + + /// + /// Deletes an existing namespace. This operation also removes all associated + /// resources under the namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Returns the description for the specified namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + public static RelayNamespace Get(this INamespacesOperations operations, string resourceGroupName, string namespaceName) + { + return operations.GetAsync(resourceGroupName, namespaceName).GetAwaiter().GetResult(); + } + + /// + /// Returns the description for the specified namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates a namespace. Once created, this namespace's resource + /// manifest is immutable. This operation is idempotent. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// Parameters for updating a namespace resource. + /// + public static RelayNamespace Update(this INamespacesOperations operations, string resourceGroupName, string namespaceName, RelayNamespaceUpdateParameter parameters) + { + return operations.UpdateAsync(resourceGroupName, namespaceName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates a namespace. Once created, this namespace's resource + /// manifest is immutable. This operation is idempotent. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// Parameters for updating a namespace resource. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, RelayNamespaceUpdateParameter parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, namespaceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Authorization rules for a namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + public static IPage ListAuthorizationRules(this INamespacesOperations operations, string resourceGroupName, string namespaceName) + { + return operations.ListAuthorizationRulesAsync(resourceGroupName, namespaceName).GetAwaiter().GetResult(); + } + + /// + /// Authorization rules for a namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The cancellation token. + /// + public static async Task> ListAuthorizationRulesAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAuthorizationRulesWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or Updates an authorization rule for a namespace + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + /// + /// The authorization rule parameters + /// + public static AuthorizationRule CreateOrUpdateAuthorizationRule(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string authorizationRuleName, AuthorizationRule parameters) + { + return operations.CreateOrUpdateAuthorizationRuleAsync(resourceGroupName, namespaceName, authorizationRuleName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or Updates an authorization rule for a namespace + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + /// + /// The authorization rule parameters + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAuthorizationRuleAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string authorizationRuleName, AuthorizationRule parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, authorizationRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a namespace authorization rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + public static void DeleteAuthorizationRule(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string authorizationRuleName) + { + operations.DeleteAuthorizationRuleAsync(resourceGroupName, namespaceName, authorizationRuleName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a namespace authorization rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAuthorizationRuleAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Authorization rule for a namespace by name. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + public static AuthorizationRule GetAuthorizationRule(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string authorizationRuleName) + { + return operations.GetAuthorizationRuleAsync(resourceGroupName, namespaceName, authorizationRuleName).GetAwaiter().GetResult(); + } + + /// + /// Authorization rule for a namespace by name. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + /// + /// The cancellation token. + /// + public static async Task GetAuthorizationRuleAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Primary and Secondary ConnectionStrings to the namespace + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + public static AuthorizationRuleKeys ListKeys(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string authorizationRuleName) + { + return operations.ListKeysAsync(resourceGroupName, namespaceName, authorizationRuleName).GetAwaiter().GetResult(); + } + + /// + /// Primary and Secondary ConnectionStrings to the namespace + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + /// + /// The cancellation token. + /// + public static async Task ListKeysAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, namespaceName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Regenerates the Primary or Secondary ConnectionStrings to the namespace + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + /// + /// Parameters supplied to regenerate Auth Rule. + /// + public static AuthorizationRuleKeys RegenerateKeys(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string authorizationRuleName, RegenerateKeysParameters parameters) + { + return operations.RegenerateKeysAsync(resourceGroupName, namespaceName, authorizationRuleName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Regenerates the Primary or Secondary ConnectionStrings to the namespace + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The authorizationRule name. + /// + /// + /// Parameters supplied to regenerate Auth Rule. + /// + /// + /// The cancellation token. + /// + public static async Task RegenerateKeysAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string authorizationRuleName, RegenerateKeysParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.RegenerateKeysWithHttpMessagesAsync(resourceGroupName, namespaceName, authorizationRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create Azure Relay namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// Parameters supplied to create a Namespace Resource. + /// + public static RelayNamespace BeginCreateOrUpdate(this INamespacesOperations operations, string resourceGroupName, string namespaceName, RelayNamespace parameters) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, namespaceName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Create Azure Relay namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// Parameters supplied to create a Namespace Resource. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, RelayNamespace parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, namespaceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes an existing namespace. This operation also removes all associated + /// resources under the namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + public static void BeginDelete(this INamespacesOperations operations, string resourceGroupName, string namespaceName) + { + operations.BeginDeleteAsync(resourceGroupName, namespaceName).GetAwaiter().GetResult(); + } + + /// + /// Deletes an existing namespace. This operation also removes all associated + /// resources under the namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Lists all the available namespaces within the subscription irrespective of + /// the resourceGroups. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this INamespacesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all the available namespaces within the subscription irrespective of + /// the resourceGroups. + /// + /// + /// 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 INamespacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all the available namespaces within the ResourceGroup. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByResourceGroupNext(this INamespacesOperations operations, string nextPageLink) + { + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all the available namespaces within the ResourceGroup. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupNextAsync(this INamespacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Authorization rules for a namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListAuthorizationRulesNext(this INamespacesOperations operations, string nextPageLink) + { + return operations.ListAuthorizationRulesNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Authorization rules for a namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAuthorizationRulesNextAsync(this INamespacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAuthorizationRulesNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Operations.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Operations.cs new file mode 100644 index 000000000000..0dcac95a58fd --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/Operations.cs @@ -0,0 +1,391 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay +{ + using Azure; + using Management; + using Rest; + using 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; + + /// + /// Operations operations. + /// + internal partial class Operations : IServiceOperations, IOperations + { + /// + /// Initializes a new instance of the Operations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal Operations(RelayManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RelayManagementClient + /// + public RelayManagementClient Client { get; private set; } + + /// + /// Lists all of the available Relay REST API operations. + /// + /// + /// 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(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + 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("/") ? "" : "/")), "providers/Microsoft.Relay/operations").ToString(); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Lists all of the available Relay REST API operations. + /// + /// + /// 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/OperationsExtensions.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/OperationsExtensions.cs new file mode 100644 index 000000000000..5aa90e43c56d --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/OperationsExtensions.cs @@ -0,0 +1,88 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for Operations. + /// + public static partial class OperationsExtensions + { + /// + /// Lists all of the available Relay REST API operations. + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this IOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available Relay REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the available Relay REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available Relay REST API operations. + /// + /// + /// 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 IOperations 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/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/RelayManagementClient.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/RelayManagementClient.cs new file mode 100644 index 000000000000..f509d784e501 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/RelayManagementClient.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 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Rest.Serialization; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + + /// + /// Use these API to manage Azure Relay resources through Azure Resources + /// Manager. + /// + public partial class RelayManagementClient : ServiceClient, IRelayManagementClient, IAzureClient + { + /// + /// The base URI of the service. + /// + public System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + public JsonSerializerSettings SerializationSettings { get; private set; } + + /// + /// Gets or sets json deserialization settings. + /// + public JsonSerializerSettings DeserializationSettings { get; private set; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + public ServiceClientCredentials Credentials { get; private set; } + + /// + /// Subscription credentials which uniquely identify Microsoft Azure + /// subscription. The subscription ID forms part of the URI for every service + /// call. + /// + public string SubscriptionId { get; set; } + + /// + /// Client Api Version. + /// + public string ApiVersion { get; private set; } + + /// + /// Gets or sets the preferred language for the response. + /// + public string AcceptLanguage { get; set; } + + /// + /// Gets or sets the retry timeout in seconds for Long Running Operations. + /// Default value is 30. + /// + public int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// When set to true a unique x-ms-client-request-id value is generated and + /// included in each request. Default is true. + /// + public bool? GenerateClientRequestId { get; set; } + + /// + /// Gets the IOperations. + /// + public virtual IOperations Operations { get; private set; } + + /// + /// Gets the INamespacesOperations. + /// + public virtual INamespacesOperations Namespaces { get; private set; } + + /// + /// Gets the IHybridConnectionsOperations. + /// + public virtual IHybridConnectionsOperations HybridConnections { get; private set; } + + /// + /// Gets the IWCFRelaysOperations. + /// + public virtual IWCFRelaysOperations WCFRelays { get; private set; } + + /// + /// Initializes a new instance of the RelayManagementClient class. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected RelayManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + { + Initialize(); + } + + /// + /// Initializes a new instance of the RelayManagementClient class. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected RelayManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + { + Initialize(); + } + + /// + /// Initializes a new instance of the RelayManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected RelayManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the RelayManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected RelayManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the RelayManagementClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public RelayManagementClient(ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the RelayManagementClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public RelayManagementClient(ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the RelayManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public RelayManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the RelayManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public RelayManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// An optional partial-method to perform custom initialization. + /// + partial void CustomInitialize(); + /// + /// Initializes client properties. + /// + private void Initialize() + { + Operations = new Operations(this); + Namespaces = new NamespacesOperations(this); + HybridConnections = new HybridConnectionsOperations(this); + WCFRelays = new WCFRelaysOperations(this); + BaseUri = new System.Uri("https://management.azure.com"); + ApiVersion = "2016-07-01"; + AcceptLanguage = "en-US"; + LongRunningOperationRetryTimeout = 30; + GenerateClientRequestId = true; + SerializationSettings = new JsonSerializerSettings + { + Formatting = Formatting.Indented, + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List + { + new Iso8601TimeSpanConverter() + } + }; + SerializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings = new JsonSerializerSettings + { + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List + { + new Iso8601TimeSpanConverter() + } + }; + CustomInitialize(); + DeserializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/WCFRelaysOperations.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/WCFRelaysOperations.cs new file mode 100644 index 000000000000..f7f6113b6a9f --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/WCFRelaysOperations.cs @@ -0,0 +1,2815 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay +{ + using Azure; + using Management; + using Rest; + using 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; + + /// + /// WCFRelaysOperations operations. + /// + internal partial class WCFRelaysOperations : IServiceOperations, IWCFRelaysOperations + { + /// + /// Initializes a new instance of the WCFRelaysOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal WCFRelaysOperations(RelayManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RelayManagementClient + /// + public RelayManagementClient Client { get; private set; } + + /// + /// Lists the WCFRelays within the namespace. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace 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>> ListByNamespaceWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByNamespace", 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.Relay/namespaces/{namespaceName}/WcfRelays").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 WCFRelay. This operation is idempotent. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// Parameters supplied to create a WCFRelays. + /// + /// + /// 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> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string relayName, WcfRelay parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (relayName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "relayName"); + } + if (relayName != null) + { + if (relayName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "relayName", 50); + } + if (relayName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "relayName", 1); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("relayName", relayName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", 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.Relay/namespaces/{namespaceName}/WcfRelays/{relayName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{relayName}", System.Uri.EscapeDataString(relayName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.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 != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 a WCFRelays . + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string relayName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (relayName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "relayName"); + } + if (relayName != null) + { + if (relayName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "relayName", 50); + } + if (relayName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "relayName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("relayName", relayName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", 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.Relay/namespaces/{namespaceName}/WcfRelays/{relayName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{relayName}", System.Uri.EscapeDataString(relayName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 != 200 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Returns the description for the specified WCFRelays. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay 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 namespaceName, string relayName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (relayName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "relayName"); + } + if (relayName != null) + { + if (relayName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "relayName", 50); + } + if (relayName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "relayName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("relayName", relayName); + 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.Relay/namespaces/{namespaceName}/WcfRelays/{relayName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{relayName}", System.Uri.EscapeDataString(relayName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Authorization rules for a WCFRelays. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay 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>> ListAuthorizationRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string relayName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (relayName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "relayName"); + } + if (relayName != null) + { + if (relayName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "relayName", 50); + } + if (relayName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "relayName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("relayName", relayName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAuthorizationRules", 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.Relay/namespaces/{namespaceName}/WcfRelays/{relayName}/authorizationRules").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{relayName}", System.Uri.EscapeDataString(relayName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 an authorization rule for a WCFRelays + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + /// + /// The authorization rule parameters. + /// + /// + /// 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> CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, AuthorizationRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (relayName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "relayName"); + } + if (relayName != null) + { + if (relayName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "relayName", 50); + } + if (relayName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "relayName", 1); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("relayName", relayName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateAuthorizationRule", 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.Relay/namespaces/{namespaceName}/WcfRelays/{relayName}/authorizationRules/{authorizationRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{relayName}", System.Uri.EscapeDataString(relayName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.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 != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 a WCFRelays authorization rule + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + /// + /// 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 DeleteAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (relayName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "relayName"); + } + if (relayName != null) + { + if (relayName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "relayName", 50); + } + if (relayName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "relayName", 1); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("relayName", relayName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DeleteAuthorizationRule", 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.Relay/namespaces/{namespaceName}/WcfRelays/{relayName}/authorizationRules/{authorizationRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{relayName}", System.Uri.EscapeDataString(relayName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 != 200 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Get authorizationRule for a WCFRelays by name. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule 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> GetAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (relayName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "relayName"); + } + if (relayName != null) + { + if (relayName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "relayName", 50); + } + if (relayName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "relayName", 1); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("relayName", relayName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetAuthorizationRule", 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.Relay/namespaces/{namespaceName}/WcfRelays/{relayName}/authorizationRules/{authorizationRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{relayName}", System.Uri.EscapeDataString(relayName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Primary and Secondary ConnectionStrings to the WCFRelays. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule 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> ListKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (relayName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "relayName"); + } + if (relayName != null) + { + if (relayName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "relayName", 50); + } + if (relayName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "relayName", 1); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("relayName", relayName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListKeys", 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.Relay/namespaces/{namespaceName}/WcfRelays/{relayName}/authorizationRules/{authorizationRuleName}/ListKeys").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{relayName}", System.Uri.EscapeDataString(relayName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Regenerates the Primary or Secondary ConnectionStrings to the WCFRelays + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + /// + /// Parameters supplied to regenerate Auth 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> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, RegenerateKeysParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (relayName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "relayName"); + } + if (relayName != null) + { + if (relayName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "relayName", 50); + } + if (relayName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "relayName", 1); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "authorizationRuleName", 50); + } + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("relayName", relayName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "RegenerateKeys", 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.Relay/namespaces/{namespaceName}/WcfRelays/{relayName}/authorizationRules/{authorizationRuleName}/regenerateKeys").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{relayName}", System.Uri.EscapeDataString(relayName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.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 != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Lists the WCFRelays within the namespace. + /// + /// + /// 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>> ListByNamespaceNextWithHttpMessagesAsync(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, "ListByNamespaceNext", 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Authorization rules for a WCFRelays. + /// + /// + /// 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>> ListAuthorizationRulesNextWithHttpMessagesAsync(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, "ListAuthorizationRulesNext", 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.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/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/WCFRelaysOperationsExtensions.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/WCFRelaysOperationsExtensions.cs new file mode 100644 index 000000000000..b3b656385ec4 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Generated/WCFRelaysOperationsExtensions.cs @@ -0,0 +1,590 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Relay +{ + using Azure; + using Management; + using Rest; + using Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for WCFRelaysOperations. + /// + public static partial class WCFRelaysOperationsExtensions + { + /// + /// Lists the WCFRelays within the namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + public static IPage ListByNamespace(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName) + { + return operations.ListByNamespaceAsync(resourceGroupName, namespaceName).GetAwaiter().GetResult(); + } + + /// + /// Lists the WCFRelays within the namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The cancellation token. + /// + public static async Task> ListByNamespaceAsync(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByNamespaceWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or Updates a WCFRelay. This operation is idempotent. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// Parameters supplied to create a WCFRelays. + /// + public static WcfRelay CreateOrUpdate(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, WcfRelay parameters) + { + return operations.CreateOrUpdateAsync(resourceGroupName, namespaceName, relayName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or Updates a WCFRelay. This operation is idempotent. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// Parameters supplied to create a WCFRelays. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, WcfRelay parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, namespaceName, relayName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a WCFRelays . + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + public static void Delete(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName) + { + operations.DeleteAsync(resourceGroupName, namespaceName, relayName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a WCFRelays . + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, namespaceName, relayName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Returns the description for the specified WCFRelays. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + public static WcfRelay Get(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName) + { + return operations.GetAsync(resourceGroupName, namespaceName, relayName).GetAwaiter().GetResult(); + } + + /// + /// Returns the description for the specified WCFRelays. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, namespaceName, relayName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Authorization rules for a WCFRelays. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + public static IPage ListAuthorizationRules(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName) + { + return operations.ListAuthorizationRulesAsync(resourceGroupName, namespaceName, relayName).GetAwaiter().GetResult(); + } + + /// + /// Authorization rules for a WCFRelays. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The cancellation token. + /// + public static async Task> ListAuthorizationRulesAsync(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAuthorizationRulesWithHttpMessagesAsync(resourceGroupName, namespaceName, relayName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or Updates an authorization rule for a WCFRelays + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + /// + /// The authorization rule parameters. + /// + public static AuthorizationRule CreateOrUpdateAuthorizationRule(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, AuthorizationRule parameters) + { + return operations.CreateOrUpdateAuthorizationRuleAsync(resourceGroupName, namespaceName, relayName, authorizationRuleName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or Updates an authorization rule for a WCFRelays + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + /// + /// The authorization rule parameters. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAuthorizationRuleAsync(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, AuthorizationRule parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, relayName, authorizationRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a WCFRelays authorization rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + public static void DeleteAuthorizationRule(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName) + { + operations.DeleteAuthorizationRuleAsync(resourceGroupName, namespaceName, relayName, authorizationRuleName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a WCFRelays authorization rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAuthorizationRuleAsync(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, relayName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Get authorizationRule for a WCFRelays by name. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + public static AuthorizationRule GetAuthorizationRule(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName) + { + return operations.GetAuthorizationRuleAsync(resourceGroupName, namespaceName, relayName, authorizationRuleName).GetAwaiter().GetResult(); + } + + /// + /// Get authorizationRule for a WCFRelays by name. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + /// + /// The cancellation token. + /// + public static async Task GetAuthorizationRuleAsync(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, relayName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Primary and Secondary ConnectionStrings to the WCFRelays. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + public static AuthorizationRuleKeys ListKeys(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName) + { + return operations.ListKeysAsync(resourceGroupName, namespaceName, relayName, authorizationRuleName).GetAwaiter().GetResult(); + } + + /// + /// Primary and Secondary ConnectionStrings to the WCFRelays. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + /// + /// The cancellation token. + /// + public static async Task ListKeysAsync(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, namespaceName, relayName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Regenerates the Primary or Secondary ConnectionStrings to the WCFRelays + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + /// + /// Parameters supplied to regenerate Auth Rule. + /// + public static AuthorizationRuleKeys RegenerateKeys(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, RegenerateKeysParameters parameters) + { + return operations.RegenerateKeysAsync(resourceGroupName, namespaceName, relayName, authorizationRuleName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Regenerates the Primary or Secondary ConnectionStrings to the WCFRelays + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the Resource group within the Azure subscription. + /// + /// + /// The Namespace Name + /// + /// + /// The relay name + /// + /// + /// The authorizationRule name. + /// + /// + /// Parameters supplied to regenerate Auth Rule. + /// + /// + /// The cancellation token. + /// + public static async Task RegenerateKeysAsync(this IWCFRelaysOperations operations, string resourceGroupName, string namespaceName, string relayName, string authorizationRuleName, RegenerateKeysParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.RegenerateKeysWithHttpMessagesAsync(resourceGroupName, namespaceName, relayName, authorizationRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists the WCFRelays within the namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByNamespaceNext(this IWCFRelaysOperations operations, string nextPageLink) + { + return operations.ListByNamespaceNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists the WCFRelays within the namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByNamespaceNextAsync(this IWCFRelaysOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByNamespaceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Authorization rules for a WCFRelays. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListAuthorizationRulesNext(this IWCFRelaysOperations operations, string nextPageLink) + { + return operations.ListAuthorizationRulesNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Authorization rules for a WCFRelays. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAuthorizationRulesNextAsync(this IWCFRelaysOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAuthorizationRulesNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} + diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Microsoft.Azure.Management.Relay.xproj b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Microsoft.Azure.Management.Relay.xproj new file mode 100644 index 000000000000..398fad5cf652 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Microsoft.Azure.Management.Relay.xproj @@ -0,0 +1,18 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + c0e50b63-6f6e-4c3d-bafe-139092d0b5fa + Microsoft.Azure.Management.Relay + .\obj + .\bin\ + + + 2.0 + + + \ No newline at end of file diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Properties/AssemblyInfo.cs b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..9dd0c66ce75c --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/Properties/AssemblyInfo.cs @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Reflection; +using System.Resources; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("Microsoft Azure Relay Management Library")] +[assembly: AssemblyDescription("Provides Microsoft Azure Relay management functions for managing the Microsoft Azure Relay service")] + +[assembly: AssemblyVersion("0.0.1.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Azure .NET SDK")] +[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: NeutralResourcesLanguage("en")] \ No newline at end of file diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/generate.cmd b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/generate.cmd new file mode 100644 index 000000000000..acb9bc33550c --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/generate.cmd @@ -0,0 +1,17 @@ +:: +:: Microsoft Azure SDK for Net - Generate library code +:: Copyright (C) Microsoft Corporation. All Rights Reserved. +:: + +@echo off +set autoRestVersion=1.0.0-Nightly20170212 +if "%1" == "" ( + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-relay/2016-07-01/swagger/relay.json" +) else ( + set specFile="%1" +) +set repoRoot=%~dp0..\..\..\.. +set generateFolder=%~dp0Generated + +if exist %generateFolder% rd /S /Q %generateFolder% +call "%repoRoot%\tools\autorest.gen.cmd" %specFile% Microsoft.Azure.Management.Relay %autoRestVersion% %generateFolder% "MICROSOFT_MIT" diff --git a/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/project.json b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/project.json new file mode 100644 index 000000000000..0d2d1c937169 --- /dev/null +++ b/src/ResourceManagement/Relay/Microsoft.Azure.Management.Relay/project.json @@ -0,0 +1,54 @@ +{ + "version": "0.0.1-preview", + "description": "Provides developers with libraries to create and manage Namespaces, WCFRelay, HybridConnection and manage Authorization Rules. Note: This client library is for Relay under Azure Resource Manager.", + "authors": [ "Microsoft" ], + + "packOptions": { + "summary": "Microsoft Azure Relay Management Library", + "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", + "projectUrl": "https://github.com/Azure/azure-sdk-for-net", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", + "tags": [ "Microsoft Azure Relay management", "Relay", "Relay management", "REST HTTP client", "windowsazureofficial" ], + "requireLicenseAcceptance": true + }, + + "buildOptions": { + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "xmlDoc": true + }, + + "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" + }, + + "frameworks": { + "net45": { + "dependencies": { + } + }, + "netstandard1.5": { + "imports": [ "dnxcore50" ], + "buildOptions": { "define": [ "PORTABLE" ] }, + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Threading.Tasks": "4.3.0", + "NETStandard.Library": "1.6.1" + } + }, + "netstandard1.1": { + "imports": [ "dnxcore50" ], + "buildOptions": { "define": [ "PORTABLE" ] }, + "dependencies": { + "System.Runtime.Serialization.Primitives": "4.1.1", + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1" + } + } + } +} diff --git a/src/ResourceManagement/Relay/Relay.Tests/Helpers/RecordedDelegatingHandler.cs b/src/ResourceManagement/Relay/Relay.Tests/Helpers/RecordedDelegatingHandler.cs new file mode 100644 index 000000000000..ac093b5c8cf5 --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/Helpers/RecordedDelegatingHandler.cs @@ -0,0 +1,88 @@ +namespace Relay.Tests.TestHelper +{ + + using System; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Threading.Tasks; + + public class RecordedDelegatingHandler : DelegatingHandler + { + private HttpResponseMessage _response; + + public RecordedDelegatingHandler() + { + StatusCodeToReturn = HttpStatusCode.Created; + SubsequentStatusCodeToReturn = StatusCodeToReturn; + } + + public RecordedDelegatingHandler(HttpResponseMessage response) + { + StatusCodeToReturn = HttpStatusCode.Created; + SubsequentStatusCodeToReturn = StatusCodeToReturn; + _response = response; + } + + public HttpStatusCode StatusCodeToReturn { get; set; } + + public HttpStatusCode SubsequentStatusCodeToReturn { get; set; } + + public string Request { get; private set; } + + public HttpRequestHeaders RequestHeaders { get; private set; } + + public HttpContentHeaders ContentHeaders { get; private set; } + + public HttpMethod Method { get; private set; } + + public Uri Uri { get; private set; } + + public bool IsPassThrough { get; set; } + + private int counter; + + protected override async Task SendAsync(HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) + { + counter++; + // Save request + if (request.Content == null) + { + Request = string.Empty; + } + else + { + Request = await request.Content.ReadAsStringAsync(); + } + RequestHeaders = request.Headers; + if (request.Content != null) + { + ContentHeaders = request.Content.Headers; + } + Method = request.Method; + Uri = request.RequestUri; + + // Prepare response + if (IsPassThrough) + { + return await base.SendAsync(request, cancellationToken); + } + else + { + if (_response != null && counter == 1) + { + return _response; + } + else + { + var statusCode = StatusCodeToReturn; + if (counter > 1) + statusCode = SubsequentStatusCodeToReturn; + HttpResponseMessage response = new HttpResponseMessage(statusCode); + response.Content = new StringContent(""); + return response; + } + } + } + } +} diff --git a/src/ResourceManagement/Relay/Relay.Tests/Helpers/RelayManagementTestUtilities.cs b/src/ResourceManagement/Relay/Relay.Tests/Helpers/RelayManagementTestUtilities.cs new file mode 100644 index 000000000000..8880598a6eae --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/Helpers/RelayManagementTestUtilities.cs @@ -0,0 +1,134 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Relay.Tests.TestHelper +{ + using System; + using System.Collections.Generic; + using System.Linq; + using Microsoft.Azure.Management.Relay; + using Microsoft.Azure.Management.Relay.Models; + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Resources.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Newtonsoft.Json; + using System.Security.Cryptography; + using System.Threading.Tasks; + using Newtonsoft.Json.Serialization; + using Newtonsoft.Json.Converters; + + public static class RelayManagementHelper + { + internal const string ResourceGroupPrefix = "Default-Relay-"; + internal const string NamespacePrefix = "sdk-RelayNamespace-"; + internal const string AuthorizationRulesPrefix = "sdk-RelayAuthRules-"; + internal const string DefaultNamespaceAuthorizationRule = "RootManageSharedAccessKey"; + internal const string HybridPrefix = "sdk-Relay-Hybrid-"; + internal const string WcfPrefix = "sdk-Relay-Wcf-"; + + public static RelayManagementClient GetRelayManagementClient(MockContext context, RecordedDelegatingHandler handler) + { + if (handler != null) + { + handler.IsPassThrough = true; + RelayManagementClient nhManagementClient = context.GetServiceClient(handlers: handler); + return nhManagementClient; + } + + return null; + } + + public static ResourceManagementClient GetResourceManagementClient(MockContext context, RecordedDelegatingHandler handler) + { + if (handler != null) + { + handler.IsPassThrough = true; + ResourceManagementClient rManagementClient = context.GetServiceClient(handlers: handler); + return rManagementClient; + } + + return null; + } + + public static string TryGetResourceGroup(this ResourceManagementClient resourceManagementClient, string location) + { + var resourceGroup = + resourceManagementClient.ResourceGroups + .List().Where(group => string.IsNullOrWhiteSpace(location) || group.Location.Equals(location.Replace(" ", string.Empty), StringComparison.OrdinalIgnoreCase)) + .FirstOrDefault(group => group.Name.Contains("")); + + return resourceGroup != null + + ? resourceGroup.Name + : string.Empty; + } + + public static void TryRegisterResourceGroup(this ResourceManagementClient resourceManagementClient, string location, string resourceGroupName) + { + resourceManagementClient.ResourceGroups.CreateOrUpdate(resourceGroupName, new ResourceGroup(location)); + } + + public static string GetLocationFromProvider(this ResourceManagementClient resourceManagementClient) + { + var providers = resourceManagementClient.Providers.Get("Microsoft.Relay"); + var location = providers.ResourceTypes.Where( + (resType) => + { + if (resType.ResourceType == "namespaces") + return true; + else + return false; + } + ).First().Locations.FirstOrDefault(); + return location; + } + + public static string GenerateRandomKey() + { + byte[] key256 = new byte[32]; + using (var rngCryptoServiceProvider = RandomNumberGenerator.Create()) + { + rngCryptoServiceProvider.GetBytes(key256); + } + + return Convert.ToBase64String(key256); + } + + public static string ConvertObjectToJSon(T obj) + { + return ConvertObjectToJSonAsync(obj); + } + + public static string ConvertObjectToJSonAsync(object obj) + { + if (obj != null) + { + return (Task.Factory.StartNew(() => JsonConvert.SerializeObject(obj, SerializeMediaTypeFormatterSettings))).Result; + } + return String.Empty; + } + + private static readonly JsonSerializerSettings SerializeMediaTypeFormatterSettings = new JsonSerializerSettings + { + NullValueHandling = Newtonsoft.Json.NullValueHandling.Include, + ContractResolver = new CamelCasePropertyNamesContractResolver(), + Converters = new List + { + new StringEnumConverter { CamelCaseText = false }, + }, + ConstructorHandling = ConstructorHandling.AllowNonPublicDefaultConstructor + }; + + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Relay/Relay.Tests/Properties/AssemblyInfo.cs b/src/ResourceManagement/Relay/Relay.Tests/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..d9cc088c621a --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,20 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("Relay.Tests")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Relay.Tests")] +[assembly: AssemblyCopyright("Copyright © Microsoft Corporation")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +[assembly: ComVisible(false)] + +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/ResourceManagement/Relay/Relay.Tests/Relay.Tests.xproj b/src/ResourceManagement/Relay/Relay.Tests/Relay.Tests.xproj new file mode 100644 index 000000000000..965d746e4333 --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/Relay.Tests.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + afa0a1a6-7481-434e-889d-eea52f5e489b + Relay.Tests + .\obj + .\bin\ + + + 2.0 + + + + + + \ No newline at end of file diff --git a/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/CheckNameAvailability.json b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/CheckNameAvailability.json new file mode 100644 index 000000000000..b09febf35c02 --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/CheckNameAvailability.json @@ -0,0 +1,580 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44995e74-239f-44c7-8109-4dc4c324de7f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-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, 30 Mar 2017 02:53:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "e73db471-f3fa-4796-a219-6baaa0a90d2e" + ], + "x-ms-correlation-request-id": [ + "e73db471-f3fa-4796-a219-6baaa0a90d2e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025301Z:e73db471-f3fa-4796-a219-6baaa0a90d2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourcegroups?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "300c9394-00a0-4f97-a22d-bcf37aaa0a3d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-MachineLearning-SouthCentralUS\",\r\n \"name\": \"Default-MachineLearning-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast\",\r\n \"name\": \"Default-NotificationHubs-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-CentralUS\",\r\n \"name\": \"Default-NotificationHubs-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-SQL-WestUS\",\r\n \"name\": \"Default-SQL-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-APPHOST\",\r\n \"name\": \"DL-SB-APPHOST\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-DS1\",\r\n \"name\": \"DL-SB-DS1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-DS2\",\r\n \"name\": \"DL-SB-DS2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-ECA\",\r\n \"name\": \"DL-SB-ECA\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-FILE\",\r\n \"name\": \"DL-SB-FILE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/dl-sb-TSG\",\r\n \"name\": \"dl-sb-TSG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:53:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "46768246-c437-493b-a8f5-bdcf188db119" + ], + "x-ms-correlation-request-id": [ + "46768246-c437-493b-a8f5-bdcf188db119" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025301Z:46768246-c437-493b-a8f5-bdcf188db119" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay/CheckNameAvailability?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvQ2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"sdk-RelayNamespace-2713\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "41" + ], + "x-ms-client-request-id": [ + "3370ed5d-85e1-4941-a2e4-4b46ee5cbcf4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"None\",\r\n \"message\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:53:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "74e9db60-99d5-4ff0-ac0e-3a0272ce7da9_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "9c70bb2f-edd7-4440-b88e-27b1825d8f40" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025302Z:9c70bb2f-edd7-4440-b88e-27b1825d8f40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay/CheckNameAvailability?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvQ2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"sdk-RelayNamespace-2713\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "41" + ], + "x-ms-client-request-id": [ + "bcf7632c-0de1-459e-8fd5-6c05b2bb6bd3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"NameInUse\",\r\n \"message\": \"The specified service namespace is not available.\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:53:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "28ff6a2b-b76e-4817-b01c-dab073b75764_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "bec87329-ad23-498f-816b-8af17aab47ba" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025344Z:bec87329-ad23-498f-816b-8af17aab47ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay/CheckNameAvailability?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvQ2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"12@\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "21" + ], + "x-ms-client-request-id": [ + "03723d90-1bdd-40e5-811b-b9842d87e630" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"InvalidName\",\r\n \"message\": \"The specified service namespace is invalid.\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:53:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8b7f9515-899e-4e1b-b807-b0550e3ccf32_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "8c920ff6-39c1-4984-a91e-57a9187a40b2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025344Z:8c920ff6-39c1-4984-a91e-57a9187a40b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2713?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjcxMz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "167" + ], + "x-ms-client-request-id": [ + "d37e5725-5189-47bd-be22-8256645b0455" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2713\",\r\n \"name\": \"sdk-RelayNamespace-2713\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2713\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:53:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "807b1423-7d5f-417c-8281-c0c6865e67bd_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "b779d939-3aed-4f25-807d-69504001cf3c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025309Z:b779d939-3aed-4f25-807d-69504001cf3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2713?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjcxMz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2713\",\r\n \"name\": \"sdk-RelayNamespace-2713\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2713\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:53:07.49Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2713.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:53:33.94Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:53:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "39eaf965-7fd2-4e4e-a6e1-d52462a9d7d9_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "1c87365c-264d-4551-b1c0-1aaab0345e64" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025339Z:1c87365c-264d-4551-b1c0-1aaab0345e64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2713?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjcxMz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21b47274-18a4-4fb4-bd28-9b900368cb07" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:53:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2713/operationresults/sdk-RelayNamespace-2713?api-version=2016-07-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "d9b796dc-4d00-41cb-b949-a3dd598e2c97_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "c41f1f44-6f85-4703-8f18-d42f2383364c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025345Z:c41f1f44-6f85-4703-8f18-d42f2383364c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2713/operationresults/sdk-RelayNamespace-2713?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjcxMy9vcGVyYXRpb25yZXN1bHRzL3Nkay1SZWxheU5hbWVzcGFjZS0yNzEzP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:54:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "fbe1b943-f4fe-41e5-bfc1-9996cbe9119a_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "1092f3b2-cfdb-45f0-9790-855e1d75b8fb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025415Z:1092f3b2-cfdb-45f0-9790-855e1d75b8fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CheckNameAvailability": [ + "sdk-RelayNamespace-2713" + ] + }, + "Variables": { + "SubscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/HybridConnectionsCreateGetUpdateDelete.json b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/HybridConnectionsCreateGetUpdateDelete.json new file mode 100644 index 000000000000..378e2bc3be8f --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/HybridConnectionsCreateGetUpdateDelete.json @@ -0,0 +1,1095 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5fe26bd7-bcbb-41ae-b65d-ab139b2a6a25" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-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, 30 Mar 2017 02:47:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "9de66202-a3c5-4613-b05c-8a4fcd7e7915" + ], + "x-ms-correlation-request-id": [ + "9de66202-a3c5-4613-b05c-8a4fcd7e7915" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024712Z:9de66202-a3c5-4613-b05c-8a4fcd7e7915" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourcegroups?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e47d5e6-b636-4733-a6f5-a3846e533868" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-MachineLearning-SouthCentralUS\",\r\n \"name\": \"Default-MachineLearning-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast\",\r\n \"name\": \"Default-NotificationHubs-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-CentralUS\",\r\n \"name\": \"Default-NotificationHubs-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-SQL-WestUS\",\r\n \"name\": \"Default-SQL-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-APPHOST\",\r\n \"name\": \"DL-SB-APPHOST\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-DS1\",\r\n \"name\": \"DL-SB-DS1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-DS2\",\r\n \"name\": \"DL-SB-DS2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-ECA\",\r\n \"name\": \"DL-SB-ECA\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-FILE\",\r\n \"name\": \"DL-SB-FILE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/dl-sb-TSG\",\r\n \"name\": \"dl-sb-TSG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "1a6cfdb4-910e-4002-aa1b-0fca50567c3e" + ], + "x-ms-correlation-request-id": [ + "1a6cfdb4-910e-4002-aa1b-0fca50567c3e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024712Z:1a6cfdb4-910e-4002-aa1b-0fca50567c3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Relay/operations?api-version=2016-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a7ac202-8862-4bcc-ad88-93987b18fefb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Relay/checkNamespaceAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"Relay and Hybridconnection Resource Provider\",\r\n \"operation\": \"Registers the Relay Resource Provider\",\r\n \"description\": \"Registers the subscription for the Relay resource provider and enables the creation of Relay resources\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/authorizationRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/authorizationRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/HybridConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"HybridConnection\",\r\n \"operation\": \"Create or Update HybridConnection\",\r\n \"description\": \"Create or Update HybridConnection properties.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/HybridConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"HybridConnection\",\r\n \"operation\": \"Get HybridConnection\",\r\n \"description\": \"Get list of HybridConnection Resource Descriptions\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/HybridConnections/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"HybridConnection\",\r\n \"operation\": \"Delete HybridConnection\",\r\n \"description\": \"Operation to delete HybridConnection Resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/HybridConnections/authorizationRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"HybridConnection AuthorizationRules\",\r\n \"operation\": \"Create or Update HybridConnection Authorization Rule\",\r\n \"description\": \"Create HybridConnection Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/HybridConnections/authorizationRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"HybridConnection AuthorizationRules\",\r\n \"operation\": \"Delete HybridConnection Authorization Rules\",\r\n \"description\": \"Operation to delete HybridConnection Authorization Rules\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/HybridConnections/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"HybridConnection AuthorizationRules\",\r\n \"operation\": \"List HybridConnection keys\",\r\n \"description\": \"Get the Connection String to HybridConnection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/WcfRelays/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"WcfRelay\",\r\n \"operation\": \"Create or Update WcfRelay\",\r\n \"description\": \"Create or Update WcfRelay properties.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/WcfRelays/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"WcfRelay\",\r\n \"operation\": \"Get WcfRelay\",\r\n \"description\": \"Get list of WcfRelay Resource Descriptions\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/WcfRelays/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"WcfRelay\",\r\n \"operation\": \"Delete WcfRelay\",\r\n \"description\": \"Operation to delete WcfRelay Resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/WcfRelays/authorizationRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"WcfRelay AuthorizationRules\",\r\n \"operation\": \"Create or Update WcfRelay Authorization Rule\",\r\n \"description\": \"Create WcfRelay Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/WcfRelays/authorizationRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"WcfRelay AuthorizationRules\",\r\n \"operation\": \"Delete WcfRelay Authorization Rules\",\r\n \"description\": \"Operation to delete WcfRelay Authorization Rules\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/WcfRelays/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"WcfRelay AuthorizationRules\",\r\n \"operation\": \"List WcfRelay keys\",\r\n \"description\": \"Get the Connection String to WcfRelay\"\r\n },\r\n \"properties\": null\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9ec66b8a-1795-4dc2-9df8-697e39450541_M3_M3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "e7a82e67-9a17-49de-92ad-d1edf42213e3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024713Z:e7a82e67-9a17-49de-92ad-d1edf42213e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay/CheckNameAvailability?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvQ2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"sdk-RelayNamespace-8307\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "41" + ], + "x-ms-client-request-id": [ + "0691554d-b27f-4886-b45c-5e9bba378240" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"None\",\r\n \"message\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "30b0582a-74c5-4ba9-beb1-723ce53288b5_M4_M4" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "8d55a594-4248-4cf6-8acb-c2f6d07ae864" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024713Z:8d55a594-4248-4cf6-8acb-c2f6d07ae864" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODMwNz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "167" + ], + "x-ms-client-request-id": [ + "20a7c05a-e8d8-46b8-a50b-c4499b546588" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307\",\r\n \"name\": \"sdk-RelayNamespace-8307\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8307\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "13de4b93-fbd1-4c2b-a368-3889468de795_M6_M6" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "f12388a9-10f8-401e-b38c-45dfe02ba102" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024718Z:f12388a9-10f8-401e-b38c-45dfe02ba102" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODMwNz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307\",\r\n \"name\": \"sdk-RelayNamespace-8307\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8307\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:47:16.517Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-8307.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:47:40.297Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "08310519-4d17-4efa-aaec-1c457f0afb49_M6_M6" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "45719905-fded-4f7a-a138-e66ed131bad6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024748Z:45719905-fded-4f7a-a138-e66ed131bad6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODMwNz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64f9706b-683b-4233-9d71-b028734d452f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307\",\r\n \"name\": \"sdk-RelayNamespace-8307\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8307\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:47:16.517Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-8307.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:47:40.297Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "cba011c9-23e3-45e7-aa57-d1224527b9c9_M6_M6" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "cca7c51e-3a09-4b11-a346-493bd2bcca26" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024753Z:cca7c51e-3a09-4b11-a346-493bd2bcca26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODMwNz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f77b2b5-07ca-40a2-8ff3-44769f7b1329" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307\",\r\n \"name\": \"sdk-RelayNamespace-8307\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8307\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:47:16.517Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-8307.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:47:40.297Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1e5808f9-bf21-4b5c-8d99-87a024aecca4_M6_M6" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "536f3b17-133f-4122-ab65-6dced591aa56" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024753Z:536f3b17-133f-4122-ab65-6dced591aa56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/Namespaces?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvTmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1585b8e-4ad9-4367-af20-5e8d190f799b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/Namespaces/sdk-RelayNamespace-8307\",\r\n \"name\": \"sdk-RelayNamespace-8307\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8307\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:47:16.517Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-8307.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:47:40.297Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "07fd304a-7e93-4f5a-9d1c-c18e60ada299_M6_M6" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "1faf7e58-fea2-41f9-85a1-8b3cdaa0a3d0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024753Z:1faf7e58-fea2-41f9-85a1-8b3cdaa0a3d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay/Namespaces?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvTmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "447f4b19-e506-4800-8d91-3497ef3eba7e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307\",\r\n \"name\": \"sdk-RelayNamespace-8307\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8307\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:47:16.517Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-8307.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:47:40.297Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9752\",\r\n \"name\": \"sdk-RelayNamespace-9752\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-9752\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T23:31:43.867Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-9752.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T23:32:07.607Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-1598\",\r\n \"name\": \"sdk-RelayNamespace-1598\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-1598\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T23:00:15.143Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-1598.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T23:00:39.343Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6656\",\r\n \"name\": \"sdk-RelayNamespace-6656\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6656\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T22:28:18.913Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6656.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T22:28:43.253Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6342\",\r\n \"name\": \"sdk-RelayNamespace-6342\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6342\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T22:14:33.343Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6342.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T22:14:57.813Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8028\",\r\n \"name\": \"sdk-RelayNamespace-8028\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8028\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T21:52:25.363Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-8028.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T21:52:49.31Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-344\",\r\n \"name\": \"sdk-RelayNamespace-344\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-344\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T23:02:05.46Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-344.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T23:02:31.657Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-342\",\r\n \"name\": \"sdk-RelayNamespace-342\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-342\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T19:50:31.173Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-342.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T19:50:55.293Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-7456\",\r\n \"name\": \"sdk-RelayNamespace-7456\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-7456\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T22:23:31.02Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-7456.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T22:23:53.837Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4953\",\r\n \"name\": \"sdk-RelayNamespace-4953\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-4953\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T23:37:57.54Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-4953.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T23:38:21.573Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6847\",\r\n \"name\": \"sdk-RelayNamespace-6847\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6847\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-09T20:14:39.793Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6847.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-09T20:15:46.717Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-257\",\r\n \"name\": \"sdk-RelayNamespace-257\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-257\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T21:16:07.71Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-257.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T21:16:32.18Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/Test-Realy\",\r\n \"name\": \"Test-Realy\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:test-realy\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-01-18T01:53:45.86Z\",\r\n \"serviceBusEndpoint\": \"https://Test-Realy.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-01-18T01:54:09.757Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2372\",\r\n \"name\": \"sdk-RelayNamespace-2372\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2372\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T19:35:03.913Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2372.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T19:35:26.2Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b829072f-237c-4b4e-b712-05537669d96a_M6_M6" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "c88cd6e8-041c-49c0-854b-7fc99246661e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024753Z:c88cd6e8-041c-49c0-854b-7fc99246661e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307/HybridConnections/sdk-Relay-Hybrid-7100?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODMwNy9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTcxMDA/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"requiresClientAuthorization\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "69" + ], + "x-ms-client-request-id": [ + "3efb2e81-2489-469e-9918-4476e2b937af" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307/HybridConnections/sdk-Relay-Hybrid-7100\",\r\n \"name\": \"sdk-Relay-Hybrid-7100\",\r\n \"type\": \"Microsoft.Relay/HybridConnections\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"\",\r\n \"createdAt\": \"2017-03-30T02:47:56.0829851Z\",\r\n \"updatedAt\": \"2017-03-30T02:47:56.0829851Z\",\r\n \"requiresClientAuthorization\": true\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "abd29b19-bbd4-4f7e-a59c-a2d5b3a895e9_M6_M6" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "15d5fe81-848e-4dc5-8113-4ace768f3bde" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024756Z:15d5fe81-848e-4dc5-8113-4ace768f3bde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307/HybridConnections/sdk-Relay-Hybrid-7100?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODMwNy9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTcxMDA/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"createdAt\": \"2017-03-30T02:47:56.0829851Z\",\r\n \"updatedAt\": \"2017-03-30T02:47:56.0829851Z\",\r\n \"requiresClientAuthorization\": true,\r\n \"userMetadata\": \"usermetadata is a placeholder to store user-defined string data for the HybridConnection endpoint.e.g. it can be used to store descriptive data, such as list of teams and their contact information also user-defined configuration settings can be stored.\"\r\n },\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307/HybridConnections/sdk-Relay-Hybrid-7100\",\r\n \"name\": \"sdk-Relay-Hybrid-7100\",\r\n \"type\": \"Microsoft.Relay/HybridConnections\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "750" + ], + "x-ms-client-request-id": [ + "3d108f89-cc1c-4416-ae5d-ea9b9291f34c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307/HybridConnections/sdk-Relay-Hybrid-7100\",\r\n \"name\": \"sdk-Relay-Hybrid-7100\",\r\n \"type\": \"Microsoft.Relay/HybridConnections\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"\",\r\n \"createdAt\": \"2017-03-30T02:47:56.0829851Z\",\r\n \"updatedAt\": \"2017-03-30T02:47:56.0829851Z\",\r\n \"requiresClientAuthorization\": true,\r\n \"userMetadata\": \"usermetadata is a placeholder to store user-defined string data for the HybridConnection endpoint.e.g. it can be used to store descriptive data, such as list of teams and their contact information also user-defined configuration settings can be stored.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "955b7476-7d19-4d7f-9992-00dc94f4cec9_M6_M6" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "f85116bd-df6e-49a2-bba0-dd825db9b0b6" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024758Z:f85116bd-df6e-49a2-bba0-dd825db9b0b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307/HybridConnections/sdk-Relay-Hybrid-7100?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODMwNy9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTcxMDA/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ac89fa5-6f46-49b3-a5c3-4d068d421ddb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307/HybridConnections/sdk-Relay-Hybrid-7100\",\r\n \"name\": \"sdk-Relay-Hybrid-7100\",\r\n \"type\": \"Microsoft.Relay/HybridConnections\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"\",\r\n \"createdAt\": \"2017-03-30T02:47:56.0829851Z\",\r\n \"updatedAt\": \"2017-03-30T02:47:56.0829851Z\",\r\n \"requiresClientAuthorization\": true,\r\n \"listenerCount\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "99f84011-ec03-4ddf-96ce-870ec364708a_M6_M6" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "873d475c-b47f-4d2a-aaa6-f1d44040b55a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024757Z:873d475c-b47f-4d2a-aaa6-f1d44040b55a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307/HybridConnections?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODMwNy9IeWJyaWRDb25uZWN0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6898c0c9-4a15-466c-a8e0-ffb17ec096b4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307/HybridConnections/sdk-relay-hybrid-7100\",\r\n \"name\": \"sdk-relay-hybrid-7100\",\r\n \"type\": \"Microsoft.Relay/HybridConnections\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"\",\r\n \"createdAt\": \"2017-03-30T02:47:56.0829851Z\",\r\n \"updatedAt\": \"2017-03-30T02:47:57.9187417Z\",\r\n \"requiresClientAuthorization\": true,\r\n \"userMetadata\": \"usermetadata is a placeholder to store user-defined string data for the HybridConnection endpoint.e.g. it can be used to store descriptive data, such as list of teams and their contact information also user-defined configuration settings can be stored.\",\r\n \"listenerCount\": 0\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ed3b3316-0321-47b2-82ff-69df1fa0fedf_M6_M6" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "c349e0c6-f200-4b80-bace-86e9acee3176" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024758Z:c349e0c6-f200-4b80-bace-86e9acee3176" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307/HybridConnections/sdk-Relay-Hybrid-7100?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODMwNy9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTcxMDA/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a23834-714b-41f8-9d68-5ed8584d2d77" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "f0bb5248-3864-45c6-9ed2-cb83c31d6785" + ], + "x-ms-correlation-request-id": [ + "f0bb5248-3864-45c6-9ed2-cb83c31d6785" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024759Z:f0bb5248-3864-45c6-9ed2-cb83c31d6785" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODMwNz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d466f82-2c52-4ec0-bd63-327c51676f40" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307/operationresults/sdk-RelayNamespace-8307?api-version=2016-07-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "df1e79ee-cacd-43d5-ae52-d9a3e48cf47d_M6_M6" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "1774047c-3d36-4265-8e95-3d7f7119988a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024800Z:1774047c-3d36-4265-8e95-3d7f7119988a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8307/operationresults/sdk-RelayNamespace-8307?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODMwNy9vcGVyYXRpb25yZXN1bHRzL3Nkay1SZWxheU5hbWVzcGFjZS04MzA3P2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:48:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "9fb27437-f80b-424b-a9ea-9b65edeed004_M6_M6" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "831e026f-25ae-4585-933e-8b2654790266" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024830Z:831e026f-25ae-4585-933e-8b2654790266" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "HybridConnectionsCreateGetUpdateDelete": [ + "sdk-RelayNamespace-8307", + "sdk-Relay-Hybrid-7100" + ] + }, + "Variables": { + "SubscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/HybridConnectionsCreateGetUpdateDeleteAuthorizationRules.json b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/HybridConnectionsCreateGetUpdateDeleteAuthorizationRules.json new file mode 100644 index 000000000000..d7972e01c71c --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/HybridConnectionsCreateGetUpdateDeleteAuthorizationRules.json @@ -0,0 +1,1500 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e090e24-d4c3-4c0f-8d6a-73371295516e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-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, 30 Mar 2017 02:45:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "64b947ed-78fb-4356-be32-ce714e627a28" + ], + "x-ms-correlation-request-id": [ + "64b947ed-78fb-4356-be32-ce714e627a28" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024532Z:64b947ed-78fb-4356-be32-ce714e627a28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourcegroups?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1017c3cb-d15b-4c70-a90a-738041b3e3dc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-MachineLearning-SouthCentralUS\",\r\n \"name\": \"Default-MachineLearning-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast\",\r\n \"name\": \"Default-NotificationHubs-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-CentralUS\",\r\n \"name\": \"Default-NotificationHubs-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-SQL-WestUS\",\r\n \"name\": \"Default-SQL-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-APPHOST\",\r\n \"name\": \"DL-SB-APPHOST\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-DS1\",\r\n \"name\": \"DL-SB-DS1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-DS2\",\r\n \"name\": \"DL-SB-DS2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-ECA\",\r\n \"name\": \"DL-SB-ECA\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-FILE\",\r\n \"name\": \"DL-SB-FILE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/dl-sb-TSG\",\r\n \"name\": \"dl-sb-TSG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:45:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "d94b2fb3-e752-4ba7-85c1-2d4bea12e163" + ], + "x-ms-correlation-request-id": [ + "d94b2fb3-e752-4ba7-85c1-2d4bea12e163" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024532Z:d94b2fb3-e752-4ba7-85c1-2d4bea12e163" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OD9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "167" + ], + "x-ms-client-request-id": [ + "12f2bbf7-1485-4674-9cbe-67fcbc4fe878" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778\",\r\n \"name\": \"sdk-RelayNamespace-9778\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-9778\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:45:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "16a8f8df-b824-48b3-892c-d17f040e1e77_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "ff3204d1-aa6f-4c3a-9ee7-012b896565be" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024537Z:ff3204d1-aa6f-4c3a-9ee7-012b896565be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OD9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778\",\r\n \"name\": \"sdk-RelayNamespace-9778\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-9778\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:45:35.953Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-9778.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:46:01.933Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7e438cc2-afa9-4eb0-bec2-cf29575ee216_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "d23e573e-233f-494a-9eab-c761be619093" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024607Z:d23e573e-233f-494a-9eab-c761be619093" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OD9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff6a91fd-4820-45df-aac0-9e45ce26c505" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778\",\r\n \"name\": \"sdk-RelayNamespace-9778\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-9778\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:45:35.953Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-9778.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:46:01.933Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "562e9517-ce8a-4200-8f17-a3ba7c1fa46e_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "45466df5-5981-4cbe-a5e8-e0354e65121c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024613Z:45466df5-5981-4cbe-a5e8-e0354e65121c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OD9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71589989-329e-4942-8bc0-dedd9f5556e5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778\",\r\n \"name\": \"sdk-RelayNamespace-9778\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-9778\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:45:35.953Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-9778.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:46:01.933Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1968da74-f290-42b7-b608-a96c4601583b_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "17163c4c-448c-4867-bf20-66eb490888b0" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024613Z:17163c4c-448c-4867-bf20-66eb490888b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/Namespaces?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvTmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d32a8fb4-f692-4818-acd9-49be087de399" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/Namespaces/sdk-RelayNamespace-9778\",\r\n \"name\": \"sdk-RelayNamespace-9778\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-9778\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:45:35.953Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-9778.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:46:01.933Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "416ba0f0-5a24-4796-afae-1b9909879698_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "63bd0d8a-130f-4d88-97b3-89536afd2a4e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024613Z:63bd0d8a-130f-4d88-97b3-89536afd2a4e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay/Namespaces?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvTmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a3768d9-fac6-426e-b37e-d13af8f16f94" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9752\",\r\n \"name\": \"sdk-RelayNamespace-9752\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-9752\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T23:31:43.867Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-9752.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T23:32:07.607Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-1598\",\r\n \"name\": \"sdk-RelayNamespace-1598\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-1598\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T23:00:15.143Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-1598.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T23:00:39.343Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6656\",\r\n \"name\": \"sdk-RelayNamespace-6656\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6656\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T22:28:18.913Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6656.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T22:28:43.253Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6342\",\r\n \"name\": \"sdk-RelayNamespace-6342\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6342\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T22:14:33.343Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6342.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T22:14:57.813Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8028\",\r\n \"name\": \"sdk-RelayNamespace-8028\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8028\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T21:52:25.363Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-8028.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T21:52:49.31Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-344\",\r\n \"name\": \"sdk-RelayNamespace-344\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-344\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T23:02:05.46Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-344.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T23:02:31.657Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-342\",\r\n \"name\": \"sdk-RelayNamespace-342\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-342\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T19:50:31.173Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-342.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T19:50:55.293Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-7456\",\r\n \"name\": \"sdk-RelayNamespace-7456\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-7456\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T22:23:31.02Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-7456.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T22:23:53.837Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4953\",\r\n \"name\": \"sdk-RelayNamespace-4953\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-4953\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T23:37:57.54Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-4953.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T23:38:21.573Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6847\",\r\n \"name\": \"sdk-RelayNamespace-6847\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6847\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-09T20:14:39.793Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6847.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-09T20:15:46.717Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-257\",\r\n \"name\": \"sdk-RelayNamespace-257\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-257\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T21:16:07.71Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-257.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T21:16:32.18Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/Test-Realy\",\r\n \"name\": \"Test-Realy\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:test-realy\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-01-18T01:53:45.86Z\",\r\n \"serviceBusEndpoint\": \"https://Test-Realy.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-01-18T01:54:09.757Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2372\",\r\n \"name\": \"sdk-RelayNamespace-2372\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2372\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T19:35:03.913Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2372.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T19:35:26.2Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778\",\r\n \"name\": \"sdk-RelayNamespace-9778\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-9778\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:45:35.953Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-9778.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:46:01.933Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f5f19103-9036-4242-989a-b74fe1640d0e_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "4ce26f87-2519-4534-baba-4715434e76ba" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024613Z:4ce26f87-2519-4534-baba-4715434e76ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OC9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTI5ODA/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"requiresClientAuthorization\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "69" + ], + "x-ms-client-request-id": [ + "627790fd-7444-4002-9720-819ac756aac7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980\",\r\n \"name\": \"sdk-Relay-Hybrid-2980\",\r\n \"type\": \"Microsoft.Relay/HybridConnections\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"\",\r\n \"createdAt\": \"2017-03-30T02:46:16.1993821Z\",\r\n \"updatedAt\": \"2017-03-30T02:46:16.1993821Z\",\r\n \"requiresClientAuthorization\": true\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "64def142-8aae-43af-88c5-e72d98fd8d09_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c6b29bd8-0460-4aba-9422-04e6ca7c2dd5" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024616Z:c6b29bd8-0460-4aba-9422-04e6ca7c2dd5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OC9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTI5ODA/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3e343ca-6576-4afe-9175-7c89a3e8d020" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980\",\r\n \"name\": \"sdk-Relay-Hybrid-2980\",\r\n \"type\": \"Microsoft.Relay/HybridConnections\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"\",\r\n \"createdAt\": \"2017-03-30T02:46:16.1993821Z\",\r\n \"updatedAt\": \"2017-03-30T02:46:16.1993821Z\",\r\n \"requiresClientAuthorization\": true,\r\n \"listenerCount\": 0\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0ee180c5-8849-411d-ba5b-0dadf233f1fd_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "c412fe0b-0831-4a36-aa2d-622342aec2ef" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024617Z:c412fe0b-0831-4a36-aa2d-622342aec2ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OC9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTI5ODAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1SZWxheUF1dGhSdWxlcy03MDczP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "83" + ], + "x-ms-client-request-id": [ + "3208ec48-ef2a-4893-a51f-d454f4db549e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073\",\r\n \"name\": \"sdk-RelayAuthRules-7073\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b8971aaf-1f6b-42bd-bd65-67bf358d9605_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "af7490d6-15d2-48e9-8801-fc22e56796ff" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024623Z:af7490d6-15d2-48e9-8801-fc22e56796ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OC9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTI5ODAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1SZWxheUF1dGhSdWxlcy03MDczP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "83" + ], + "x-ms-client-request-id": [ + "0f4a0167-59a8-4687-9375-8d708196a4e1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073\",\r\n \"name\": \"sdk-RelayAuthRules-7073\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6ac8a03c-e2a1-421a-89b8-fd185d982c49_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "484904ec-ca83-47e7-bae3-56c5101e2d6d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024628Z:484904ec-ca83-47e7-bae3-56c5101e2d6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OC9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTI5ODAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1SZWxheUF1dGhSdWxlcy03MDczP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "68" + ], + "x-ms-client-request-id": [ + "bfd09e71-d5d5-4080-b6ff-c2bb32f5e089" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073\",\r\n \"name\": \"sdk-RelayAuthRules-7073\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e7808691-8999-465a-ae86-b8cd5e3e3dc9_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "c9b9f673-2e46-46ab-a0eb-139605f6fb7c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024635Z:c9b9f673-2e46-46ab-a0eb-139605f6fb7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OC9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTI5ODAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1SZWxheUF1dGhSdWxlcy03MDczP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "942f3b0d-609d-4f61-a81b-da648c2bd110" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073\",\r\n \"name\": \"sdk-RelayAuthRules-7073\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b7126cc3-4d68-4379-b1a7-f165644cf2f5_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "d4a116f1-052f-4b3a-ae43-d2eec9742f58" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024629Z:d4a116f1-052f-4b3a-ae43-d2eec9742f58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OC9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTI5ODAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1SZWxheUF1dGhSdWxlcy03MDczP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f20742bb-edaa-4654-b698-d9b2be3cd645" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073\",\r\n \"name\": \"sdk-RelayAuthRules-7073\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "cc41f121-63af-47a8-948d-e51c100cb408_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "b78e772d-eb64-4904-b4a2-33d6682a7a22" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024635Z:b78e772d-eb64-4904-b4a2-33d6682a7a22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OC9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTI5ODAvYXV0aG9yaXphdGlvblJ1bGVzP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eff92aea-570b-400b-9060-e6d3dd863d1e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073\",\r\n \"name\": \"sdk-RelayAuthRules-7073\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eb62e73b-cf85-455e-9912-55e55ed17226_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "6ffe0e76-0dff-4a76-b28f-f3bcfaccd2a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024629Z:6ffe0e76-0dff-4a76-b28f-f3bcfaccd2a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073/ListKeys?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OC9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTI5ODAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1SZWxheUF1dGhSdWxlcy03MDczL0xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb2b4028-ae6a-412c-98ea-c496262128b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-9778.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-7073;SharedAccessKey=xyEufujESAvWhGy5wzJl1DiSqxk14H7vZNVQUWEhSes=;EntityPath=sdk-Relay-Hybrid-2980\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-9778.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-7073;SharedAccessKey=gW1OIzJSh5Apki7vSE1+oYPqK7GL/RxrKGddegTIwhY=;EntityPath=sdk-Relay-Hybrid-2980\",\r\n \"primaryKey\": \"xyEufujESAvWhGy5wzJl1DiSqxk14H7vZNVQUWEhSes=\",\r\n \"secondaryKey\": \"gW1OIzJSh5Apki7vSE1+oYPqK7GL/RxrKGddegTIwhY=\",\r\n \"keyName\": \"sdk-RelayAuthRules-7073\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c3c1fe86-205b-460f-a705-b43b2145ff52_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "9a37b148-4a80-45b8-9b59-211cffc36426" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024636Z:9a37b148-4a80-45b8-9b59-211cffc36426" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073/regenerateKeys?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OC9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTI5ODAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1SZWxheUF1dGhSdWxlcy03MDczL3JlZ2VuZXJhdGVLZXlzP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"policyKey\": \"PrimaryKey\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ], + "x-ms-client-request-id": [ + "c4a3d50c-aa03-4e9d-9bbe-9e951e92dfaf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-9778.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-7073;SharedAccessKey=7MN0w8BnG4ARJ3vr6LjmDqtjQhMjy4fXpbRxqiejfA0=;EntityPath=sdk-Relay-Hybrid-2980\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-9778.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-7073;SharedAccessKey=gW1OIzJSh5Apki7vSE1+oYPqK7GL/RxrKGddegTIwhY=;EntityPath=sdk-Relay-Hybrid-2980\",\r\n \"primaryKey\": \"7MN0w8BnG4ARJ3vr6LjmDqtjQhMjy4fXpbRxqiejfA0=\",\r\n \"secondaryKey\": \"gW1OIzJSh5Apki7vSE1+oYPqK7GL/RxrKGddegTIwhY=\",\r\n \"keyName\": \"sdk-RelayAuthRules-7073\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "138ee1e7-c509-4a0d-ab0a-8454d129df06_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "6257b201-86dd-46d5-8ea1-f3f52d189254" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024637Z:6257b201-86dd-46d5-8ea1-f3f52d189254" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073/regenerateKeys?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OC9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTI5ODAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1SZWxheUF1dGhSdWxlcy03MDczL3JlZ2VuZXJhdGVLZXlzP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"policyKey\": \"SecondaryKey\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ], + "x-ms-client-request-id": [ + "def714e3-163f-44c1-a4fe-d3be932c956e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-9778.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-7073;SharedAccessKey=7MN0w8BnG4ARJ3vr6LjmDqtjQhMjy4fXpbRxqiejfA0=;EntityPath=sdk-Relay-Hybrid-2980\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-9778.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-7073;SharedAccessKey=mkm2h6MsJJddO2qjGKGim+Hey0bv5KBC6XCWYUzbgsg=;EntityPath=sdk-Relay-Hybrid-2980\",\r\n \"primaryKey\": \"7MN0w8BnG4ARJ3vr6LjmDqtjQhMjy4fXpbRxqiejfA0=\",\r\n \"secondaryKey\": \"mkm2h6MsJJddO2qjGKGim+Hey0bv5KBC6XCWYUzbgsg=\",\r\n \"keyName\": \"sdk-RelayAuthRules-7073\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "fc6a6a54-1458-40e0-9677-482e319d01c4_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "ffb8d3ef-ea21-49a5-b2be-f0f779ddac06" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024637Z:ffb8d3ef-ea21-49a5-b2be-f0f779ddac06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980/authorizationRules/sdk-RelayAuthRules-7073?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OC9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTI5ODAvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1SZWxheUF1dGhSdWxlcy03MDczP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ceb1c97a-0902-4e08-8d66-9b6a24ac603d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "bc25871c-52eb-4964-ab93-80a88fea3851_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "31e4f9d3-e60c-4ca0-84c2-827969079551" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024638Z:31e4f9d3-e60c-4ca0-84c2-827969079551" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/HybridConnections/sdk-Relay-Hybrid-2980?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OC9IeWJyaWRDb25uZWN0aW9ucy9zZGstUmVsYXktSHlicmlkLTI5ODA/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d8caa4b-82a1-416d-9a3e-6700acb777aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "7724fafd-9ac5-4038-b43c-e42f19783938" + ], + "x-ms-correlation-request-id": [ + "7724fafd-9ac5-4038-b43c-e42f19783938" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024639Z:7724fafd-9ac5-4038-b43c-e42f19783938" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OD9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04f30e51-6d80-407c-b261-7e6500affa44" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:46:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/operationresults/sdk-RelayNamespace-9778?api-version=2016-07-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "18c3b701-ebe2-4fad-816d-326a25970a51_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "3b1bac7b-3d09-4536-b919-1915d1b796c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024640Z:3b1bac7b-3d09-4536-b919-1915d1b796c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9778/operationresults/sdk-RelayNamespace-9778?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtOTc3OC9vcGVyYXRpb25yZXN1bHRzL3Nkay1SZWxheU5hbWVzcGFjZS05Nzc4P2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:47:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "25898773-a055-42fa-88dc-d03415af86f2_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "c236d0ee-be8f-486d-88fe-8a98b7e58b3e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024711Z:c236d0ee-be8f-486d-88fe-8a98b7e58b3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "HybridConnectionsCreateGetUpdateDeleteAuthorizationRules": [ + "sdk-RelayNamespace-9778", + "sdk-Relay-Hybrid-2980", + "sdk-RelayAuthRules-7073" + ] + }, + "Variables": { + "SubscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", + "CreatePrimaryKey": "TIC/pMDWBohJBjEoexuhkUsV2pd0jRLwEVfwdGeW87Q=", + "UpdatePrimaryKey": "Qz85DW96urqWNLCLZIxdhcXgfH9opX1BCyyUY5Ja1FM=" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/NamespaceCreateGetUpdateDelete.json b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/NamespaceCreateGetUpdateDelete.json new file mode 100644 index 000000000000..b75a6880df96 --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/NamespaceCreateGetUpdateDelete.json @@ -0,0 +1,834 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a4f3ac5-59ba-44c1-96c9-03286a7376bb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-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, 30 Mar 2017 02:51:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "aaadf0da-3c1a-4321-81f4-6b90e2ba6eec" + ], + "x-ms-correlation-request-id": [ + "aaadf0da-3c1a-4321-81f4-6b90e2ba6eec" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025137Z:aaadf0da-3c1a-4321-81f4-6b90e2ba6eec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourcegroups?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05798e6d-8dba-4381-b687-0be97bf61bd0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-MachineLearning-SouthCentralUS\",\r\n \"name\": \"Default-MachineLearning-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast\",\r\n \"name\": \"Default-NotificationHubs-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-CentralUS\",\r\n \"name\": \"Default-NotificationHubs-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-SQL-WestUS\",\r\n \"name\": \"Default-SQL-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-APPHOST\",\r\n \"name\": \"DL-SB-APPHOST\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-DS1\",\r\n \"name\": \"DL-SB-DS1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-DS2\",\r\n \"name\": \"DL-SB-DS2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-ECA\",\r\n \"name\": \"DL-SB-ECA\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-FILE\",\r\n \"name\": \"DL-SB-FILE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/dl-sb-TSG\",\r\n \"name\": \"dl-sb-TSG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:51:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "fb500c15-f976-4c7a-abf4-4db3b2c3a390" + ], + "x-ms-correlation-request-id": [ + "fb500c15-f976-4c7a-abf4-4db3b2c3a390" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025137Z:fb500c15-f976-4c7a-abf4-4db3b2c3a390" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay/CheckNameAvailability?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvQ2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"sdk-RelayNamespace-2421\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "41" + ], + "x-ms-client-request-id": [ + "899a44bc-f859-42a8-961c-bc08e05e3942" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"None\",\r\n \"message\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:51:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "642d823c-eb89-4f95-bf1e-6f679210fbdd_M6_M6" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "6a62f672-f47d-4473-bc47-b4b391a12035" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025138Z:6a62f672-f47d-4473-bc47-b4b391a12035" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQyMT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "167" + ], + "x-ms-client-request-id": [ + "41004d3b-c8dc-4bd0-97ce-e2240f5c1849" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421\",\r\n \"name\": \"sdk-RelayNamespace-2421\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2421\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:51:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "15d448ef-eba9-4161-a985-06bb50a14f02_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "349657bc-7819-4be2-aadc-c9a7d0f88be7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025143Z:349657bc-7819-4be2-aadc-c9a7d0f88be7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQyMT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421\",\r\n \"name\": \"sdk-RelayNamespace-2421\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2421\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:51:41.473Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2421.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:52:09.167Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:52:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ea03d4e4-c4a9-4758-a055-6bf9b4616a78_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "e3cac809-bdda-4c06-ac66-8040c4eb5de8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025213Z:e3cac809-bdda-4c06-ac66-8040c4eb5de8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQyMT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94d5cc7c-72b0-4acb-80b5-2d1ad9d0af12" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421\",\r\n \"name\": \"sdk-RelayNamespace-2421\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2421\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:51:41.473Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2421.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:52:09.167Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:52:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "489709e7-4bd9-41ef-8bb4-848999f8e42d_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "80fbdae0-a72c-45cf-b03d-8871e572e42f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025218Z:80fbdae0-a72c-45cf-b03d-8871e572e42f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQyMT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfa019ee-74ef-4ef2-90d1-fb317f5122aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421\",\r\n \"name\": \"sdk-RelayNamespace-2421\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2421\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:51:41.473Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2421.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:52:09.167Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:52:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "02a68242-6265-4a2e-b083-b32c3b053f9d_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "3908f473-624e-4fa5-8289-e150a0b7fc5a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025218Z:3908f473-624e-4fa5-8289-e150a0b7fc5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQyMT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "feedf25d-4381-4b8d-a9bc-240dfbf58895" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421\",\r\n \"name\": \"sdk-RelayNamespace-2421\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\",\r\n \"tag5\": \"value5\",\r\n \"tag6\": \"value6\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2421\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:51:41.473Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2421.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:52:24.373Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:52:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "4e8c0467-a3a2-4392-b2de-1ad101f3c616_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "42b97119-b401-4963-b335-d48c8d68f28a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025226Z:42b97119-b401-4963-b335-d48c8d68f28a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/Namespaces?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvTmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a9a25f3-9be4-44a5-a5c5-cf11bbc6c440" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/Namespaces/sdk-RelayNamespace-2421\",\r\n \"name\": \"sdk-RelayNamespace-2421\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2421\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:51:41.473Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2421.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:52:09.167Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:52:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f7670b2d-89dd-422d-908b-b01ac8d4c15f_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "6095bd2c-b620-4212-b7f9-30b8168a58e0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025219Z:6095bd2c-b620-4212-b7f9-30b8168a58e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay/Namespaces?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvTmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd8fbd82-4896-4002-9c94-16d393e0bb83" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9752\",\r\n \"name\": \"sdk-RelayNamespace-9752\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-9752\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T23:31:43.867Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-9752.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T23:32:07.607Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-1598\",\r\n \"name\": \"sdk-RelayNamespace-1598\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-1598\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T23:00:15.143Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-1598.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T23:00:39.343Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6656\",\r\n \"name\": \"sdk-RelayNamespace-6656\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6656\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T22:28:18.913Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6656.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T22:28:43.253Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421\",\r\n \"name\": \"sdk-RelayNamespace-2421\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2421\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:51:41.473Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2421.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:52:09.167Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6342\",\r\n \"name\": \"sdk-RelayNamespace-6342\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6342\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T22:14:33.343Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6342.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T22:14:57.813Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8028\",\r\n \"name\": \"sdk-RelayNamespace-8028\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8028\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T21:52:25.363Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-8028.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T21:52:49.31Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-344\",\r\n \"name\": \"sdk-RelayNamespace-344\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-344\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T23:02:05.46Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-344.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T23:02:31.657Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-342\",\r\n \"name\": \"sdk-RelayNamespace-342\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-342\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T19:50:31.173Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-342.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T19:50:55.293Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-7456\",\r\n \"name\": \"sdk-RelayNamespace-7456\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-7456\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T22:23:31.02Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-7456.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T22:23:53.837Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4953\",\r\n \"name\": \"sdk-RelayNamespace-4953\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-4953\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T23:37:57.54Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-4953.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T23:38:21.573Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6847\",\r\n \"name\": \"sdk-RelayNamespace-6847\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6847\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-09T20:14:39.793Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6847.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-09T20:15:46.717Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-257\",\r\n \"name\": \"sdk-RelayNamespace-257\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-257\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T21:16:07.71Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-257.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T21:16:32.18Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/Test-Realy\",\r\n \"name\": \"Test-Realy\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:test-realy\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-01-18T01:53:45.86Z\",\r\n \"serviceBusEndpoint\": \"https://Test-Realy.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-01-18T01:54:09.757Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2372\",\r\n \"name\": \"sdk-RelayNamespace-2372\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2372\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T19:35:03.913Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2372.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T19:35:26.2Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:52:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b0ed3c8d-64f7-466d-94ed-10be129d08cd_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "a543723f-e93e-44b5-8929-9be5fa6b1f97" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025219Z:a543723f-e93e-44b5-8929-9be5fa6b1f97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQyMT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\",\r\n \"tag5\": \"value5\",\r\n \"tag6\": \"value6\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "180" + ], + "x-ms-client-request-id": [ + "d68990ef-83d4-43b6-a1a5-70db0f26c6aa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": null,\r\n \"name\": null,\r\n \"type\": null,\r\n \"location\": null,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\",\r\n \"tag5\": \"value5\",\r\n \"tag6\": \"value6\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": null,\r\n \"metricId\": null,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:51:41.473Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2421.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:52:09.167Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2,\r\n \"messagingSkuPlan\": {\r\n \"sku\": 2,\r\n \"selectedEventHubUnit\": 1\r\n }\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:52:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "88ddc438-ba68-420a-b51e-89c48bf182d9_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "6c60538c-a30e-4cb7-8846-1dc69b64cf5a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025221Z:6c60538c-a30e-4cb7-8846-1dc69b64cf5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQyMT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d0c20e1-9d97-43af-9ba6-a5e0073e124d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:52:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421/operationresults/sdk-RelayNamespace-2421?api-version=2016-07-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "953abcb4-aaba-42ac-9b27-3e33f5f8c3e4_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "0a519841-1ee0-4718-88ae-83eb92a171c6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025227Z:0a519841-1ee0-4718-88ae-83eb92a171c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2421/operationresults/sdk-RelayNamespace-2421?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQyMS9vcGVyYXRpb25yZXN1bHRzL3Nkay1SZWxheU5hbWVzcGFjZS0yNDIxP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:52:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e8eb4f85-ffd1-4e3f-bd3e-1e7bb0c6b1d9_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "ca287ff1-6148-4f6f-82d7-7c8aeae66a83" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025257Z:ca287ff1-6148-4f6f-82d7-7c8aeae66a83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "NamespaceCreateGetUpdateDelete": [ + "sdk-RelayNamespace-2421" + ] + }, + "Variables": { + "SubscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/NamespaceCreateGetUpdateDeleteAuthorizationRules.json b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/NamespaceCreateGetUpdateDeleteAuthorizationRules.json new file mode 100644 index 000000000000..9ee81fb5a948 --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/NamespaceCreateGetUpdateDeleteAuthorizationRules.json @@ -0,0 +1,1168 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8f74d9e-1ef6-4e22-bf6f-0e01cf5a86fb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-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, 30 Mar 2017 02:54:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "62891dfd-35e3-4bae-af98-b5448ef8d141" + ], + "x-ms-correlation-request-id": [ + "62891dfd-35e3-4bae-af98-b5448ef8d141" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025419Z:62891dfd-35e3-4bae-af98-b5448ef8d141" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourcegroups?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97d619de-4a36-443c-9380-8eff654d07c3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-MachineLearning-SouthCentralUS\",\r\n \"name\": \"Default-MachineLearning-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast\",\r\n \"name\": \"Default-NotificationHubs-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-CentralUS\",\r\n \"name\": \"Default-NotificationHubs-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-SQL-WestUS\",\r\n \"name\": \"Default-SQL-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-APPHOST\",\r\n \"name\": \"DL-SB-APPHOST\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-DS1\",\r\n \"name\": \"DL-SB-DS1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-DS2\",\r\n \"name\": \"DL-SB-DS2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-ECA\",\r\n \"name\": \"DL-SB-ECA\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-FILE\",\r\n \"name\": \"DL-SB-FILE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/dl-sb-TSG\",\r\n \"name\": \"dl-sb-TSG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:54:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "0a0d97dd-782a-400c-bd90-ea6a5bb6f009" + ], + "x-ms-correlation-request-id": [ + "0a0d97dd-782a-400c-bd90-ea6a5bb6f009" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025419Z:0a0d97dd-782a-400c-bd90-ea6a5bb6f009" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Nz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "103" + ], + "x-ms-client-request-id": [ + "554213f8-3b1e-4ac9-ac51-7e52f246e2eb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697\",\r\n \"name\": \"sdk-RelayNamespace-8697\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": null,\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8697\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:54:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "36851801-3818-412e-bf5a-f1620efad22a_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2dbd89d4-8d1b-41b2-8d18-265ca4318eda" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025423Z:2dbd89d4-8d1b-41b2-8d18-265ca4318eda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Nz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697\",\r\n \"name\": \"sdk-RelayNamespace-8697\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8697\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:54:22.803Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-8697.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:54:49.54Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:54:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "0a9eb7ab-b967-437b-91c2-842c71f38b86_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "f9bffcb0-4fd5-4389-808d-0c6e35298a9c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025453Z:f9bffcb0-4fd5-4389-808d-0c6e35298a9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Nz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4a63fbc-cc73-40c5-9b39-e73a556504cc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697\",\r\n \"name\": \"sdk-RelayNamespace-8697\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8697\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:54:22.803Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-8697.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:54:49.54Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:54:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "90c754ca-2d4b-4bfb-99ba-71f601f14bfe_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "67747fa8-ef21-477b-ad2c-b7e434c7efdb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025459Z:67747fa8-ef21-477b-ad2c-b7e434c7efdb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Nz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a352754-8e64-4ed2-8370-d8fa58169cfe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697\",\r\n \"name\": \"sdk-RelayNamespace-8697\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8697\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:54:22.803Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-8697.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:54:49.54Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:54:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c0b9c059-d0ca-4e83-82ce-6889a4b69f9f_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "33f19666-de18-42ca-a419-f012292607c9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025459Z:33f19666-de18-42ca-a419-f012292607c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/sdk-RelayAuthRules-1119?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Ny9BdXRob3JpemF0aW9uUnVsZXMvc2RrLVJlbGF5QXV0aFJ1bGVzLTExMTk/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "83" + ], + "x-ms-client-request-id": [ + "944d4302-dde0-4894-a169-a8812b38c3a1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/sdk-RelayAuthRules-1119\",\r\n \"name\": \"sdk-RelayAuthRules-1119\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:55:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c3511001-8c7d-4703-a331-4cfc31fbc3f3_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "2e6c1d78-c841-4fd5-86bc-6c2553f9b23f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025520Z:2e6c1d78-c841-4fd5-86bc-6c2553f9b23f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/sdk-RelayAuthRules-1119?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Ny9BdXRob3JpemF0aW9uUnVsZXMvc2RrLVJlbGF5QXV0aFJ1bGVzLTExMTk/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "68" + ], + "x-ms-client-request-id": [ + "e37501b5-b5ec-46f9-b200-e2b0644f8127" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/sdk-RelayAuthRules-1119\",\r\n \"name\": \"sdk-RelayAuthRules-1119\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:55:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "45ab8389-1105-44ee-aa26-819c4059de08_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "77304b62-9c36-45e3-ac38-bfbc6413ca9f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025544Z:77304b62-9c36-45e3-ac38-bfbc6413ca9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/RootManageSharedAccessKey?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Ny9BdXRob3JpemF0aW9uUnVsZXMvUm9vdE1hbmFnZVNoYXJlZEFjY2Vzc0tleT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97a2131a-a6a4-4bdf-b3cc-2449a47c21bf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/RootManageSharedAccessKey\",\r\n \"name\": \"RootManageSharedAccessKey\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:55:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2c385c28-afe9-4c10-92f9-32d70c3fdd5f_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "46242886-8d7a-457a-b73d-6f1f5592abc8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025521Z:46242886-8d7a-457a-b73d-6f1f5592abc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/sdk-RelayAuthRules-1119?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Ny9BdXRob3JpemF0aW9uUnVsZXMvc2RrLVJlbGF5QXV0aFJ1bGVzLTExMTk/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5222cf6d-762e-4672-881f-d1f11d5af71d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/sdk-RelayAuthRules-1119\",\r\n \"name\": \"sdk-RelayAuthRules-1119\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:55:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1b5a5c3c-686d-4385-bd96-26e57270b7b6_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "61ba0a62-65b2-4265-8d00-34f0db9ccef3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025522Z:61ba0a62-65b2-4265-8d00-34f0db9ccef3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/sdk-RelayAuthRules-1119?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Ny9BdXRob3JpemF0aW9uUnVsZXMvc2RrLVJlbGF5QXV0aFJ1bGVzLTExMTk/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6333a6b-a376-4d74-a51c-77bf7cf602f0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/sdk-RelayAuthRules-1119\",\r\n \"name\": \"sdk-RelayAuthRules-1119\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:55:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9ac5a07b-29d7-444e-b3f8-5b7146b5d83a_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "ab2504cd-5214-4c3d-8a9e-1544d7cecb59" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025544Z:ab2504cd-5214-4c3d-8a9e-1544d7cecb59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Ny9BdXRob3JpemF0aW9uUnVsZXM/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09f93cad-d150-41f2-8563-c9d4adc4b80c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/RootManageSharedAccessKey\",\r\n \"name\": \"RootManageSharedAccessKey\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/sdk-RelayAuthRules-1119\",\r\n \"name\": \"sdk-RelayAuthRules-1119\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": null,\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:55:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b71e11e2-bd61-42f4-801f-1443b87874e9_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "00adacb1-f828-4219-8456-a1bd0345c276" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025522Z:00adacb1-f828-4219-8456-a1bd0345c276" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/sdk-RelayAuthRules-1119/listKeys?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Ny9BdXRob3JpemF0aW9uUnVsZXMvc2RrLVJlbGF5QXV0aFJ1bGVzLTExMTkvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6aca7481-c3ea-4951-841c-1c2a29238fd3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-8697.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-1119;SharedAccessKey=gM+nrGeD2FQmQZFHIYUexMuge2TpQX89YI1uswfdk3k=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-8697.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-1119;SharedAccessKey=wwOTAOPCBpwYPLUU4goYPSKjhy69oZ0uy3BtfVuunes=\",\r\n \"primaryKey\": \"gM+nrGeD2FQmQZFHIYUexMuge2TpQX89YI1uswfdk3k=\",\r\n \"secondaryKey\": \"wwOTAOPCBpwYPLUU4goYPSKjhy69oZ0uy3BtfVuunes=\",\r\n \"keyName\": \"sdk-RelayAuthRules-1119\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:55:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e9d56536-e6ff-4f34-98a6-d241d9d89984_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "a5ed231e-e7b0-4b11-b4f8-eef8a2dccb55" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025545Z:a5ed231e-e7b0-4b11-b4f8-eef8a2dccb55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/sdk-RelayAuthRules-1119/regenerateKeys?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Ny9BdXRob3JpemF0aW9uUnVsZXMvc2RrLVJlbGF5QXV0aFJ1bGVzLTExMTkvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"policyKey\": \"PrimaryKey\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ], + "x-ms-client-request-id": [ + "5ebbf0db-b46c-439c-964f-df264c387fb9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-8697.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-1119;SharedAccessKey=vfWkWnhf8jHgQ4ZwxM++Wi5/QOl8Hj7ZYFN160dgqxw=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-8697.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-1119;SharedAccessKey=wwOTAOPCBpwYPLUU4goYPSKjhy69oZ0uy3BtfVuunes=\",\r\n \"primaryKey\": \"vfWkWnhf8jHgQ4ZwxM++Wi5/QOl8Hj7ZYFN160dgqxw=\",\r\n \"secondaryKey\": \"wwOTAOPCBpwYPLUU4goYPSKjhy69oZ0uy3BtfVuunes=\",\r\n \"keyName\": \"sdk-RelayAuthRules-1119\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:56:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "05a40b28-e661-4f8e-9ede-e8a8b86b4869_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "4e64abea-67fe-41c0-b8d9-a48d5366fd40" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025602Z:4e64abea-67fe-41c0-b8d9-a48d5366fd40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/sdk-RelayAuthRules-1119/regenerateKeys?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Ny9BdXRob3JpemF0aW9uUnVsZXMvc2RrLVJlbGF5QXV0aFJ1bGVzLTExMTkvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"policyKey\": \"SecondaryKey\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ], + "x-ms-client-request-id": [ + "f08cbf10-2a55-4cf5-8256-dfd6d3010175" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-8697.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-1119;SharedAccessKey=vfWkWnhf8jHgQ4ZwxM++Wi5/QOl8Hj7ZYFN160dgqxw=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-8697.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-1119;SharedAccessKey=jx0eK/AorLyOPszj2OS+5e+nurXBwiZAn02Gxbgl/Vs=\",\r\n \"primaryKey\": \"vfWkWnhf8jHgQ4ZwxM++Wi5/QOl8Hj7ZYFN160dgqxw=\",\r\n \"secondaryKey\": \"jx0eK/AorLyOPszj2OS+5e+nurXBwiZAn02Gxbgl/Vs=\",\r\n \"keyName\": \"sdk-RelayAuthRules-1119\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:56:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "93ef6e12-dd5f-4ef9-ac02-cc623b582592_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "34c58af3-b470-4967-b7a3-d93014b43906" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025618Z:34c58af3-b470-4967-b7a3-d93014b43906" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/AuthorizationRules/sdk-RelayAuthRules-1119?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Ny9BdXRob3JpemF0aW9uUnVsZXMvc2RrLVJlbGF5QXV0aFJ1bGVzLTExMTk/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25640ac8-6074-4258-a577-ea0056ef0930" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:56:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "0fb846af-2db6-4798-bf4e-c29fe569acce_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "87b2bc42-1ecc-42de-8ec2-0a98f8ab66d1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025635Z:87b2bc42-1ecc-42de-8ec2-0a98f8ab66d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Nz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84898a63-0b4e-466d-bd7c-4f3cbfb9a281" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:56:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/operationresults/sdk-RelayNamespace-8697?api-version=2016-07-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "b123cc01-d659-40d1-8ad2-5744606c7312_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "1b9319b2-38f3-4c95-ab19-a33fd5604863" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025641Z:1b9319b2-38f3-4c95-ab19-a33fd5604863" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8697/operationresults/sdk-RelayNamespace-8697?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtODY5Ny9vcGVyYXRpb25yZXN1bHRzL3Nkay1SZWxheU5hbWVzcGFjZS04Njk3P2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:57:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f165c529-d1e4-4741-ad24-a8605b812107_M7_M7" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "08cf5bd0-eebd-4f57-ae1b-952ad6e04455" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T025711Z:08cf5bd0-eebd-4f57-ae1b-952ad6e04455" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "NamespaceCreateGetUpdateDeleteAuthorizationRules": [ + "sdk-RelayNamespace-8697", + "sdk-RelayAuthRules-1119" + ] + }, + "Variables": { + "SubscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", + "CreatePrimaryKey": "v+gqUVK3I8YwXIh/bOgAyxIN308fYSrs9DCJ481Jb54=", + "UpdatePrimaryKey": "IR27Pvffr2e7SOCq88bSI9ViQC2aWO++qhsmLL7V1kU=" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/OperationList.json b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/OperationList.json new file mode 100644 index 000000000000..ac387d066b8a --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/OperationList.json @@ -0,0 +1,73 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.Relay/operations?api-version=2016-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c7e85be-ea0d-4359-bb94-264db5f5cfad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Relay/checkNamespaceAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"Relay and Hybridconnection Resource Provider\",\r\n \"operation\": \"Registers the Relay Resource Provider\",\r\n \"description\": \"Registers the subscription for the Relay resource provider and enables the creation of Relay resources\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/authorizationRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/authorizationRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/HybridConnections/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"HybridConnection\",\r\n \"operation\": \"Create or Update HybridConnection\",\r\n \"description\": \"Create or Update HybridConnection properties.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/HybridConnections/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"HybridConnection\",\r\n \"operation\": \"Get HybridConnection\",\r\n \"description\": \"Get list of HybridConnection Resource Descriptions\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/HybridConnections/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"HybridConnection\",\r\n \"operation\": \"Delete HybridConnection\",\r\n \"description\": \"Operation to delete HybridConnection Resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/HybridConnections/authorizationRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"HybridConnection AuthorizationRules\",\r\n \"operation\": \"Create or Update HybridConnection Authorization Rule\",\r\n \"description\": \"Create HybridConnection Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/HybridConnections/authorizationRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"HybridConnection AuthorizationRules\",\r\n \"operation\": \"Delete HybridConnection Authorization Rules\",\r\n \"description\": \"Operation to delete HybridConnection Authorization Rules\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/HybridConnections/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"HybridConnection AuthorizationRules\",\r\n \"operation\": \"List HybridConnection keys\",\r\n \"description\": \"Get the Connection String to HybridConnection\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/WcfRelays/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"WcfRelay\",\r\n \"operation\": \"Create or Update WcfRelay\",\r\n \"description\": \"Create or Update WcfRelay properties.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/WcfRelays/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"WcfRelay\",\r\n \"operation\": \"Get WcfRelay\",\r\n \"description\": \"Get list of WcfRelay Resource Descriptions\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/WcfRelays/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"WcfRelay\",\r\n \"operation\": \"Delete WcfRelay\",\r\n \"description\": \"Operation to delete WcfRelay Resource\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/WcfRelays/authorizationRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"WcfRelay AuthorizationRules\",\r\n \"operation\": \"Create or Update WcfRelay Authorization Rule\",\r\n \"description\": \"Create WcfRelay Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/WcfRelays/authorizationRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"WcfRelay AuthorizationRules\",\r\n \"operation\": \"Delete WcfRelay Authorization Rules\",\r\n \"description\": \"Operation to delete WcfRelay Authorization Rules\"\r\n },\r\n \"properties\": null\r\n },\r\n {\r\n \"name\": \"Microsoft.Relay/namespaces/WcfRelays/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure Relay\",\r\n \"resource\": \"WcfRelay AuthorizationRules\",\r\n \"operation\": \"List WcfRelay keys\",\r\n \"description\": \"Get the Connection String to WcfRelay\"\r\n },\r\n \"properties\": null\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:45:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f8ea066f-0188-4d5d-a0ec-24a6513826d5_M3_M3" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "9b955331-89c3-4d4f-826a-2d64d7b0a192" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024530Z:9b955331-89c3-4d4f-826a-2d64d7b0a192" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/WCFRelayCreateGetUpdateDelete.json b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/WCFRelayCreateGetUpdateDelete.json new file mode 100644 index 000000000000..960e5aa2a850 --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/WCFRelayCreateGetUpdateDelete.json @@ -0,0 +1,959 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9d3f4662-b24f-40b0-8e74-96f387dd5595" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-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, 30 Mar 2017 02:48:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "fc7ea5cf-5b69-4497-b6bf-8140f704ff9e" + ], + "x-ms-correlation-request-id": [ + "fc7ea5cf-5b69-4497-b6bf-8140f704ff9e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024835Z:fc7ea5cf-5b69-4497-b6bf-8140f704ff9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourcegroups?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e005d4a-30d5-40d8-939d-2c42bec201e3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-MachineLearning-SouthCentralUS\",\r\n \"name\": \"Default-MachineLearning-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast\",\r\n \"name\": \"Default-NotificationHubs-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-CentralUS\",\r\n \"name\": \"Default-NotificationHubs-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-SQL-WestUS\",\r\n \"name\": \"Default-SQL-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-APPHOST\",\r\n \"name\": \"DL-SB-APPHOST\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-DS1\",\r\n \"name\": \"DL-SB-DS1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-DS2\",\r\n \"name\": \"DL-SB-DS2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-ECA\",\r\n \"name\": \"DL-SB-ECA\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-FILE\",\r\n \"name\": \"DL-SB-FILE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/dl-sb-TSG\",\r\n \"name\": \"dl-sb-TSG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:48:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "fef6d570-70bf-49af-b264-4701a9cb7b15" + ], + "x-ms-correlation-request-id": [ + "fef6d570-70bf-49af-b264-4701a9cb7b15" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024835Z:fef6d570-70bf-49af-b264-4701a9cb7b15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtNDk2OT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "167" + ], + "x-ms-client-request-id": [ + "f991efcc-c7b9-44cd-a009-b49c529d2f89" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969\",\r\n \"name\": \"sdk-RelayNamespace-4969\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-4969\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:48:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "14aee449-7359-4062-8178-64c648652d5f_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "8ac74eab-679f-478c-ae07-ccc14aea20fe" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024841Z:8ac74eab-679f-478c-ae07-ccc14aea20fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtNDk2OT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969\",\r\n \"name\": \"sdk-RelayNamespace-4969\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-4969\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:48:39.283Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-4969.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:49:02.95Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:49:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "25b9470b-635d-41ba-a26e-0cc97dc5c34c_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-correlation-request-id": [ + "b29644f0-64f6-4056-82f6-4bf09f00e052" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024912Z:b29644f0-64f6-4056-82f6-4bf09f00e052" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtNDk2OT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ecc25874-ef41-4a36-a18c-48c00c2d18f2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969\",\r\n \"name\": \"sdk-RelayNamespace-4969\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-4969\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:48:39.283Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-4969.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:49:02.95Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:49:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "044b0a80-379e-4b02-84ca-cd8276dfe6e6_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-correlation-request-id": [ + "6d062180-b1a0-4ad0-985b-91b9e07a1329" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024917Z:6d062180-b1a0-4ad0-985b-91b9e07a1329" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtNDk2OT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72eb5174-6ca8-40c6-ae1c-ba4b156c7a2d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969\",\r\n \"name\": \"sdk-RelayNamespace-4969\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-4969\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:48:39.283Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-4969.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:49:02.95Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:49:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c8e3ec3f-edd1-43e3-9f52-28073a36e6bd_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-correlation-request-id": [ + "caf76f28-a54c-4bff-9bda-bf10b33ed153" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024917Z:caf76f28-a54c-4bff-9bda-bf10b33ed153" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/Namespaces?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvTmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de05158f-6dd7-41c3-8723-043351118217" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/Namespaces/sdk-RelayNamespace-4969\",\r\n \"name\": \"sdk-RelayNamespace-4969\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-4969\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:48:39.283Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-4969.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:49:02.95Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:49:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "df8d85e7-5245-444c-bb02-9add30715c7d_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-correlation-request-id": [ + "8f9fc19d-5019-4853-be4c-adc0b2c8ea8e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024917Z:8f9fc19d-5019-4853-be4c-adc0b2c8ea8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay/Namespaces?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvTmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "295843b6-4c5a-4fad-8110-8e0c26fe4260" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9752\",\r\n \"name\": \"sdk-RelayNamespace-9752\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-9752\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T23:31:43.867Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-9752.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T23:32:07.607Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-1598\",\r\n \"name\": \"sdk-RelayNamespace-1598\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-1598\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T23:00:15.143Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-1598.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T23:00:39.343Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6656\",\r\n \"name\": \"sdk-RelayNamespace-6656\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6656\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T22:28:18.913Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6656.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T22:28:43.253Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6342\",\r\n \"name\": \"sdk-RelayNamespace-6342\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6342\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T22:14:33.343Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6342.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T22:14:57.813Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8028\",\r\n \"name\": \"sdk-RelayNamespace-8028\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8028\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T21:52:25.363Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-8028.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T21:52:49.31Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-344\",\r\n \"name\": \"sdk-RelayNamespace-344\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-344\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T23:02:05.46Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-344.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T23:02:31.657Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-342\",\r\n \"name\": \"sdk-RelayNamespace-342\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-342\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T19:50:31.173Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-342.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T19:50:55.293Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969\",\r\n \"name\": \"sdk-RelayNamespace-4969\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-4969\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:48:39.283Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-4969.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:49:02.95Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-7456\",\r\n \"name\": \"sdk-RelayNamespace-7456\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-7456\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T22:23:31.02Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-7456.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T22:23:53.837Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4953\",\r\n \"name\": \"sdk-RelayNamespace-4953\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-4953\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T23:37:57.54Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-4953.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T23:38:21.573Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6847\",\r\n \"name\": \"sdk-RelayNamespace-6847\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6847\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-09T20:14:39.793Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6847.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-09T20:15:46.717Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-257\",\r\n \"name\": \"sdk-RelayNamespace-257\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-257\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T21:16:07.71Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-257.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T21:16:32.18Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/Test-Realy\",\r\n \"name\": \"Test-Realy\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:test-realy\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-01-18T01:53:45.86Z\",\r\n \"serviceBusEndpoint\": \"https://Test-Realy.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-01-18T01:54:09.757Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2372\",\r\n \"name\": \"sdk-RelayNamespace-2372\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2372\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T19:35:03.913Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2372.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T19:35:26.2Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:49:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7912b536-de79-4330-b189-14a4342dcbc4_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-correlation-request-id": [ + "a94a5280-0520-4e60-9fe8-1f9b4cc8a5a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024917Z:a94a5280-0520-4e60-9fe8-1f9b4cc8a5a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969/WcfRelays/sdk-Relay-Wcf-2783?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtNDk2OS9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi0yNzgzP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"relayType\": \"NetTcp\",\r\n \"requiresClientAuthorization\": true,\r\n \"requiresTransportSecurity\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "137" + ], + "x-ms-client-request-id": [ + "56ced65a-fade-4096-8880-adaa927f5d15" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969/WcfRelays/sdk-Relay-Wcf-2783\",\r\n \"name\": \"sdk-Relay-Wcf-2783\",\r\n \"type\": \"Microsoft.Relay/WcfRelays\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"\",\r\n \"listenerType\": \"RelayedConnection\",\r\n \"createdAt\": \"2017-03-30T02:49:19.8665689Z\",\r\n \"updatedAt\": \"2017-03-30T02:49:19.8665689Z\",\r\n \"relayType\": \"NetTcp\",\r\n \"requiresClientAuthorization\": true,\r\n \"requiresTransportSecurity\": true,\r\n \"publishToRegistry\": false,\r\n \"isDynamic\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:49:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "13011cdb-7110-400f-acd6-f389eea87258_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "894f38dd-6a23-40a3-b828-b07e716ad2d2" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024919Z:894f38dd-6a23-40a3-b828-b07e716ad2d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969/WcfRelays/sdk-Relay-Wcf-2783?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtNDk2OS9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi0yNzgzP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"relayType\": \"NetTcp\",\r\n \"createdAt\": \"2017-03-30T02:49:19.8665689Z\",\r\n \"updatedAt\": \"2017-03-30T02:49:19.8665689Z\",\r\n \"requiresClientAuthorization\": true,\r\n \"requiresTransportSecurity\": true,\r\n \"isDynamic\": false,\r\n \"userMetadata\": \"usermetadata is a placeholder to store user-defined string data for the HybridConnection endpoint.e.g. it can be used to store descriptive data, such as list of teams and their contact information also user-defined configuration settings can be stored.\"\r\n },\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969/WcfRelays/sdk-Relay-Wcf-2783\",\r\n \"name\": \"sdk-Relay-Wcf-2783\",\r\n \"type\": \"Microsoft.Relay/WcfRelays\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "821" + ], + "x-ms-client-request-id": [ + "3ba95197-026c-45ae-a292-6db238f2c6d7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969/WcfRelays/sdk-Relay-Wcf-2783\",\r\n \"name\": \"sdk-Relay-Wcf-2783\",\r\n \"type\": \"Microsoft.Relay/WcfRelays\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"\",\r\n \"createdAt\": \"2017-03-30T02:49:19.8665689Z\",\r\n \"updatedAt\": \"2017-03-30T02:49:19.8665689Z\",\r\n \"relayType\": \"NetTcp\",\r\n \"requiresClientAuthorization\": true,\r\n \"requiresTransportSecurity\": true,\r\n \"isDynamic\": false,\r\n \"userMetadata\": \"usermetadata is a placeholder to store user-defined string data for the HybridConnection endpoint.e.g. it can be used to store descriptive data, such as list of teams and their contact information also user-defined configuration settings can be stored.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:49:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ca047bae-6e4d-48e6-bb56-6471ed3d5d0d_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "a9cebca8-0007-4ac8-847b-94d5a68eaa70" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024921Z:a9cebca8-0007-4ac8-847b-94d5a68eaa70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969/WcfRelays/sdk-Relay-Wcf-2783?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtNDk2OS9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi0yNzgzP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "edc1cb18-07eb-4a74-9d9a-7916c9c191e7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969/WcfRelays/sdk-Relay-Wcf-2783\",\r\n \"name\": \"sdk-Relay-Wcf-2783\",\r\n \"type\": \"Microsoft.Relay/WcfRelays\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"\",\r\n \"listenerType\": \"RelayedConnection\",\r\n \"listenerCount\": 0,\r\n \"createdAt\": \"2017-03-30T02:49:19.8665689Z\",\r\n \"updatedAt\": \"2017-03-30T02:49:19.8665689Z\",\r\n \"relayType\": \"NetTcp\",\r\n \"requiresClientAuthorization\": true,\r\n \"requiresTransportSecurity\": true,\r\n \"publishToRegistry\": false,\r\n \"isDynamic\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:49:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "b35c4b89-2d19-425c-a894-59348f610d06_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-correlation-request-id": [ + "da771f7e-bb1d-4573-8538-12a3bf04dfbb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024920Z:da771f7e-bb1d-4573-8538-12a3bf04dfbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969/WcfRelays?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtNDk2OS9XY2ZSZWxheXM/YXBpLXZlcnNpb249MjAxNi0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f894b9c-9e42-417e-bb22-3b3d0622c51c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969/WcfRelays/sdk-relay-wcf-2783\",\r\n \"name\": \"sdk-relay-wcf-2783\",\r\n \"type\": \"Microsoft.Relay/WcfRelays\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"\",\r\n \"listenerType\": \"RelayedConnection\",\r\n \"listenerCount\": 0,\r\n \"createdAt\": \"2017-03-30T02:49:19.8665689Z\",\r\n \"updatedAt\": \"2017-03-30T02:49:21.6608628Z\",\r\n \"relayType\": \"NetTcp\",\r\n \"requiresClientAuthorization\": true,\r\n \"requiresTransportSecurity\": true,\r\n \"publishToRegistry\": false,\r\n \"isDynamic\": false,\r\n \"userMetadata\": \"usermetadata is a placeholder to store user-defined string data for the HybridConnection endpoint.e.g. it can be used to store descriptive data, such as list of teams and their contact information also user-defined configuration settings can be stored.\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:49:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "c859ae69-9f04-4d48-b08c-e464894eef92_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-correlation-request-id": [ + "f731e4a3-02a3-4e59-aa10-be61085413f9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024922Z:f731e4a3-02a3-4e59-aa10-be61085413f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969/WcfRelays/sdk-Relay-Wcf-2783?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtNDk2OS9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi0yNzgzP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd0a8b19-ce97-4c0e-8cc0-e003569fdd28" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:49:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-request-id": [ + "2a5c0fe8-2d73-4b10-a293-346fea687302" + ], + "x-ms-correlation-request-id": [ + "2a5c0fe8-2d73-4b10-a293-346fea687302" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024923Z:2a5c0fe8-2d73-4b10-a293-346fea687302" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtNDk2OT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9100dfe7-0c09-4e05-90da-cec617c5336d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:49:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969/operationresults/sdk-RelayNamespace-4969?api-version=2016-07-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "cc302ee9-db30-4a95-9d04-ad9aa70e13a3_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "0bc227ce-f281-4d1e-959a-bc43a7cf7572" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024924Z:0bc227ce-f281-4d1e-959a-bc43a7cf7572" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4969/operationresults/sdk-RelayNamespace-4969?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtNDk2OS9vcGVyYXRpb25yZXN1bHRzL3Nkay1SZWxheU5hbWVzcGFjZS00OTY5P2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:49:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "689ba19c-51fb-4fbd-b277-cb5843b36c99_M1_M1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-correlation-request-id": [ + "358d6c93-12ed-4b46-b30e-b310846077f3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170330T024954Z:358d6c93-12ed-4b46-b30e-b310846077f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "WCFRelayCreateGetUpdateDelete": [ + "sdk-RelayNamespace-4969", + "sdk-Relay-Wcf-2783" + ] + }, + "Variables": { + "SubscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/WCFRelayCreateGetUpdateDeleteAuthorizationRules.json b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/WCFRelayCreateGetUpdateDeleteAuthorizationRules.json new file mode 100644 index 000000000000..d677aff86811 --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/SessionRecords/Relay.Tests.ScenarioTests.ScenarioTests/WCFRelayCreateGetUpdateDeleteAuthorizationRules.json @@ -0,0 +1,1500 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80efc2bc-49e8-41ff-ba25-21936946afdf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-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, 30 Mar 2017 02:49:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "08fbff3f-e0f1-4b4d-901c-8d5f6dd4d5c8" + ], + "x-ms-correlation-request-id": [ + "08fbff3f-e0f1-4b4d-901c-8d5f6dd4d5c8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024956Z:08fbff3f-e0f1-4b4d-901c-8d5f6dd4d5c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourcegroups?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "539fc358-213e-4324-b1b6-d43405e452a3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-MachineLearning-SouthCentralUS\",\r\n \"name\": \"Default-MachineLearning-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast\",\r\n \"name\": \"Default-NotificationHubs-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-CentralUS\",\r\n \"name\": \"Default-NotificationHubs-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-SQL-WestUS\",\r\n \"name\": \"Default-SQL-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-APPHOST\",\r\n \"name\": \"DL-SB-APPHOST\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-DS1\",\r\n \"name\": \"DL-SB-DS1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-DS2\",\r\n \"name\": \"DL-SB-DS2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-ECA\",\r\n \"name\": \"DL-SB-ECA\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/DL-SB-FILE\",\r\n \"name\": \"DL-SB-FILE\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/dl-sb-TSG\",\r\n \"name\": \"dl-sb-TSG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:49:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "3eb2ff8f-d66f-41f2-94ed-3e6e101f0091" + ], + "x-ms-correlation-request-id": [ + "3eb2ff8f-d66f-41f2-94ed-3e6e101f0091" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T024956Z:3eb2ff8f-d66f-41f2-94ed-3e6e101f0091" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OD9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "167" + ], + "x-ms-client-request-id": [ + "5da05de7-52fa-4e86-b57f-386b9e89ff85" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488\",\r\n \"name\": \"sdk-RelayNamespace-2488\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Unknown\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2488\",\r\n \"enabled\": false,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e218636f-16cb-4034-bf71-3532f96b5ef3_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "28ca0cbd-f685-4a63-8de4-3bd1b05cde47" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025001Z:28ca0cbd-f685-4a63-8de4-3bd1b05cde47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OD9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488\",\r\n \"name\": \"sdk-RelayNamespace-2488\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2488\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:49:59.487Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2488.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:50:25.05Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ad8b30a2-f04d-4774-a9ed-0cf306ce57d0_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "5e204919-6469-4262-892f-257340486a21" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025031Z:5e204919-6469-4262-892f-257340486a21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OD9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6938e81-343f-4e63-92d0-dbcbcb1cfe77" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488\",\r\n \"name\": \"sdk-RelayNamespace-2488\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2488\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:49:59.487Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2488.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:50:25.05Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9b8ff862-b55a-45bd-8e7c-bf258ee9a6c5_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "66aa6383-c30d-4290-98ae-f2104de79472" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025036Z:66aa6383-c30d-4290-98ae-f2104de79472" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OD9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfefd052-8711-4c9c-b56e-742f130d18dd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488\",\r\n \"name\": \"sdk-RelayNamespace-2488\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2488\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:49:59.487Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2488.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:50:25.05Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bd33e563-2aef-43ee-b119-9fc7fcaa43e6_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "767ba8ce-0ef4-40d5-b90b-8fd3736a74d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025036Z:767ba8ce-0ef4-40d5-b90b-8fd3736a74d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/Namespaces?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvTmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7984cd1-efa7-4648-a6fc-1470e0ada80a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/Namespaces/sdk-RelayNamespace-2488\",\r\n \"name\": \"sdk-RelayNamespace-2488\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2488\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:49:59.487Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2488.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:50:25.05Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "df021170-2a01-40bb-b5fd-50f0af331924_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "373d113d-6000-4201-ad08-5f9c9f0244c9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025036Z:373d113d-6000-4201-ad08-5f9c9f0244c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/providers/Microsoft.Relay/Namespaces?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvTmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "106cc446-75df-427a-94c7-d8e07d853800" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-9752\",\r\n \"name\": \"sdk-RelayNamespace-9752\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-9752\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T23:31:43.867Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-9752.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T23:32:07.607Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-1598\",\r\n \"name\": \"sdk-RelayNamespace-1598\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-1598\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T23:00:15.143Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-1598.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T23:00:39.343Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6656\",\r\n \"name\": \"sdk-RelayNamespace-6656\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6656\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T22:28:18.913Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6656.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T22:28:43.253Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6342\",\r\n \"name\": \"sdk-RelayNamespace-6342\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6342\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T22:14:33.343Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6342.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T22:14:57.813Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-8028\",\r\n \"name\": \"sdk-RelayNamespace-8028\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-8028\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T21:52:25.363Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-8028.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T21:52:49.31Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-344\",\r\n \"name\": \"sdk-RelayNamespace-344\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-344\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T23:02:05.46Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-344.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T23:02:31.657Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-342\",\r\n \"name\": \"sdk-RelayNamespace-342\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-342\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T19:50:31.173Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-342.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T19:50:55.293Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-7456\",\r\n \"name\": \"sdk-RelayNamespace-7456\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-7456\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T22:23:31.02Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-7456.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T22:23:53.837Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-4953\",\r\n \"name\": \"sdk-RelayNamespace-4953\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-4953\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-02-01T23:37:57.54Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-4953.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-02-01T23:38:21.573Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-6847\",\r\n \"name\": \"sdk-RelayNamespace-6847\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-6847\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-09T20:14:39.793Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-6847.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-09T20:15:46.717Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-257\",\r\n \"name\": \"sdk-RelayNamespace-257\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-257\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T21:16:07.71Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-257.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T21:16:32.18Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/Test-Realy\",\r\n \"name\": \"Test-Realy\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:test-realy\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-01-18T01:53:45.86Z\",\r\n \"serviceBusEndpoint\": \"https://Test-Realy.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-01-18T01:54:09.757Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488\",\r\n \"name\": \"sdk-RelayNamespace-2488\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2488\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-30T02:49:59.487Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2488.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-30T02:50:25.05Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2372\",\r\n \"name\": \"sdk-RelayNamespace-2372\",\r\n \"type\": \"Microsoft.Relay/namespaces\",\r\n \"location\": \"West US\",\r\n \"kind\": \"Relay\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"e2f361f0-3b27-4503-a9cc-21cfba380093:sdk-relaynamespace-2372\",\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2017-03-23T19:35:03.913Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-RelayNamespace-2372.servicebus.windows.net:443/\",\r\n \"enabled\": true,\r\n \"critical\": false,\r\n \"updatedAt\": \"2017-03-23T19:35:26.2Z\",\r\n \"eventHubEnabled\": true,\r\n \"namespaceType\": \"Relay\",\r\n \"messagingSku\": 2\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "55a60b42-5cc5-4b4c-8013-6ab49d025eba_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "59f87e91-5a7b-4004-ad46-60f0d80c68cd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025036Z:59f87e91-5a7b-4004-ad46-60f0d80c68cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OC9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi04MTMyP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"relayType\": \"NetTcp\",\r\n \"requiresClientAuthorization\": true,\r\n \"requiresTransportSecurity\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "137" + ], + "x-ms-client-request-id": [ + "9bb14d20-7b36-423f-9bf7-51303b53f70d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132\",\r\n \"name\": \"sdk-Relay-Wcf-8132\",\r\n \"type\": \"Microsoft.Relay/WcfRelays\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"\",\r\n \"listenerType\": \"RelayedConnection\",\r\n \"createdAt\": \"2017-03-30T02:50:38.5939248Z\",\r\n \"updatedAt\": \"2017-03-30T02:50:38.5939248Z\",\r\n \"relayType\": \"NetTcp\",\r\n \"requiresClientAuthorization\": true,\r\n \"requiresTransportSecurity\": true,\r\n \"publishToRegistry\": false,\r\n \"isDynamic\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8532143d-ffea-4d48-aedd-948cb915e244_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "ce26badf-6b25-4ff8-ab7a-89bf537fb4a9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025038Z:ce26badf-6b25-4ff8-ab7a-89bf537fb4a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OC9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi04MTMyP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7458b95b-ba93-423a-a817-f184be4601a6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132\",\r\n \"name\": \"sdk-Relay-Wcf-8132\",\r\n \"type\": \"Microsoft.Relay/WcfRelays\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"path\": \"\",\r\n \"listenerType\": \"RelayedConnection\",\r\n \"listenerCount\": 0,\r\n \"createdAt\": \"2017-03-30T02:50:38.5939248Z\",\r\n \"updatedAt\": \"2017-03-30T02:50:38.5939248Z\",\r\n \"relayType\": \"NetTcp\",\r\n \"requiresClientAuthorization\": true,\r\n \"requiresTransportSecurity\": true,\r\n \"publishToRegistry\": false,\r\n \"isDynamic\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "8564e3e4-405f-470e-872a-7e4e62ede14c_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "054b5da5-9070-49ac-9db1-f7b6af1148cc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025038Z:054b5da5-9070-49ac-9db1-f7b6af1148cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OC9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi04MTMyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstUmVsYXlBdXRoUnVsZXMtMTMwMT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "83" + ], + "x-ms-client-request-id": [ + "fda98a6a-57aa-4c75-847a-35d17ffed333" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301\",\r\n \"name\": \"sdk-RelayAuthRules-1301\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "2ae1ea93-51cd-49d1-9711-604aae40c81d_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "710154d7-fbba-4abf-8e36-6b4e8a2a3faf" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025044Z:710154d7-fbba-4abf-8e36-6b4e8a2a3faf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OC9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi04MTMyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstUmVsYXlBdXRoUnVsZXMtMTMwMT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "83" + ], + "x-ms-client-request-id": [ + "b98a6d98-005a-421f-916d-d2c5b14b3404" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301\",\r\n \"name\": \"sdk-RelayAuthRules-1301\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "77dfaa37-27e1-46e5-b6b9-61f3ac50a650_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "b895b294-10b0-4578-8fd4-30002b436fca" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025050Z:b895b294-10b0-4578-8fd4-30002b436fca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OC9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi04MTMyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstUmVsYXlBdXRoUnVsZXMtMTMwMT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "68" + ], + "x-ms-client-request-id": [ + "c4519f5a-668d-4558-8e9d-ffa5df9662d6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301\",\r\n \"name\": \"sdk-RelayAuthRules-1301\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "9dcec125-5608-4eea-8203-d84929d5f16d_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "259afdc6-3c4f-4f41-8e83-da426ba1ec7e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025056Z:259afdc6-3c4f-4f41-8e83-da426ba1ec7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OC9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi04MTMyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstUmVsYXlBdXRoUnVsZXMtMTMwMT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc7d542d-bf21-4374-86fc-de8355d76c4c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301\",\r\n \"name\": \"sdk-RelayAuthRules-1301\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e23b0d34-33b3-40a4-bb19-2a1f0be6a195_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "1ae1764f-db32-4ede-bdae-9455a8ce5c8e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025050Z:1ae1764f-db32-4ede-bdae-9455a8ce5c8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OC9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi04MTMyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstUmVsYXlBdXRoUnVsZXMtMTMwMT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b4b92957-f4ff-4829-ae29-21a643c01d97" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301\",\r\n \"name\": \"sdk-RelayAuthRules-1301\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "544c7c75-358f-476a-85ef-02b71a1ee1f7_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-correlation-request-id": [ + "533ae06f-0277-4e72-be79-dc0a96d29e7d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025057Z:533ae06f-0277-4e72-be79-dc0a96d29e7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OC9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi04MTMyL2F1dGhvcml6YXRpb25SdWxlcz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d82e5ae3-2d95-449d-8103-d91bfeb14bca" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301\",\r\n \"name\": \"sdk-RelayAuthRules-1301\",\r\n \"type\": \"Microsoft.Relay/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "7816f677-5d6b-4315-8942-abe29c3dfb6e_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "265ba229-e7fc-4798-bc94-444e2b08bddd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025051Z:265ba229-e7fc-4798-bc94-444e2b08bddd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301/ListKeys?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OC9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi04MTMyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstUmVsYXlBdXRoUnVsZXMtMTMwMS9MaXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6eb734c2-4652-4484-9597-36fd43fae3ca" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-2488.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-1301;SharedAccessKey=y3uEv7uvtu5RlqHiN3wk2SuFQeqlqDjrxp1uxDJf64A=;EntityPath=sdk-Relay-Wcf-8132\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-2488.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-1301;SharedAccessKey=no+zJXbTkAWx3rdW5EdfyMcJi+NpgYTDmgSrRD0SyqI=;EntityPath=sdk-Relay-Wcf-8132\",\r\n \"primaryKey\": \"y3uEv7uvtu5RlqHiN3wk2SuFQeqlqDjrxp1uxDJf64A=\",\r\n \"secondaryKey\": \"no+zJXbTkAWx3rdW5EdfyMcJi+NpgYTDmgSrRD0SyqI=\",\r\n \"keyName\": \"sdk-RelayAuthRules-1301\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "920a733a-30d3-4783-b14d-51f4bba9b9c4_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "4969a258-bf23-40fb-9a21-f49cc5e0bf55" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025057Z:4969a258-bf23-40fb-9a21-f49cc5e0bf55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301/regenerateKeys?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OC9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi04MTMyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstUmVsYXlBdXRoUnVsZXMtMTMwMS9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"policyKey\": \"PrimaryKey\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "33" + ], + "x-ms-client-request-id": [ + "d2b40652-f51f-4b5b-8d8f-be8685f4939b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-2488.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-1301;SharedAccessKey=RFt7CEbSVaCwDqQa3s8XXkzdAWp3fhnBA//odp3F6QE=;EntityPath=sdk-Relay-Wcf-8132\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-2488.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-1301;SharedAccessKey=no+zJXbTkAWx3rdW5EdfyMcJi+NpgYTDmgSrRD0SyqI=;EntityPath=sdk-Relay-Wcf-8132\",\r\n \"primaryKey\": \"RFt7CEbSVaCwDqQa3s8XXkzdAWp3fhnBA//odp3F6QE=\",\r\n \"secondaryKey\": \"no+zJXbTkAWx3rdW5EdfyMcJi+NpgYTDmgSrRD0SyqI=\",\r\n \"keyName\": \"sdk-RelayAuthRules-1301\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "f5a68ee0-8006-44d6-a1ae-cd457cd0bdce_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "7db8dbc1-dd10-4da0-a958-b0f875a7d45f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025058Z:7db8dbc1-dd10-4da0-a958-b0f875a7d45f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301/regenerateKeys?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OC9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi04MTMyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstUmVsYXlBdXRoUnVsZXMtMTMwMS9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"policyKey\": \"SecondaryKey\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ], + "x-ms-client-request-id": [ + "ecc3431d-e02c-4043-9a9a-f5e7f5893e82" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-2488.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-1301;SharedAccessKey=RFt7CEbSVaCwDqQa3s8XXkzdAWp3fhnBA//odp3F6QE=;EntityPath=sdk-Relay-Wcf-8132\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-relaynamespace-2488.servicebus.windows.net/;SharedAccessKeyName=sdk-RelayAuthRules-1301;SharedAccessKey=5+vLrTdXX4Gjr3A9IOw8pjfQORtLJXwyAFEnceOBlbg=;EntityPath=sdk-Relay-Wcf-8132\",\r\n \"primaryKey\": \"RFt7CEbSVaCwDqQa3s8XXkzdAWp3fhnBA//odp3F6QE=\",\r\n \"secondaryKey\": \"5+vLrTdXX4Gjr3A9IOw8pjfQORtLJXwyAFEnceOBlbg=\",\r\n \"keyName\": \"sdk-RelayAuthRules-1301\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1ba56e3a-f048-4998-ae2e-7ad7dcc6341e_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "c898acf5-7e44-4699-bc42-ed202d698bfc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025059Z:c898acf5-7e44-4699-bc42-ed202d698bfc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132/authorizationRules/sdk-RelayAuthRules-1301?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OC9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi04MTMyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstUmVsYXlBdXRoUnVsZXMtMTMwMT9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "508eae5e-7385-40cf-ad05-e32c510cb694" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:50:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c3fda96d-2cdb-4dcc-b7df-0d44d9152dd6_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "b6fa5ad9-f2d5-46c0-b74a-cd564b2b7f84" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025100Z:b6fa5ad9-f2d5-46c0-b74a-cd564b2b7f84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/WcfRelays/sdk-Relay-Wcf-8132?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OC9XY2ZSZWxheXMvc2RrLVJlbGF5LVdjZi04MTMyP2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f2b1980-37e5-4c41-b641-7716acba5ebd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:51:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "09f059a6-8b56-4c9e-a793-bcde37d5ad12" + ], + "x-ms-correlation-request-id": [ + "09f059a6-8b56-4c9e-a793-bcde37d5ad12" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025100Z:09f059a6-8b56-4c9e-a793-bcde37d5ad12" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OD9hcGktdmVyc2lvbj0yMDE2LTA3LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0ce6aac-b29f-4892-a65c-4f19dd7a4cc2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:51:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/operationresults/sdk-RelayNamespace-2488?api-version=2016-07-01" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "bd676a54-4544-4038-a3e0-53a68bfea30f_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "21094a26-a292-41bd-affb-53bc2f62bc21" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025102Z:21094a26-a292-41bd-affb-53bc2f62bc21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/e2f361f0-3b27-4503-a9cc-21cfba380093/resourceGroups/Default-NotificationHubs-AustraliaEast/providers/Microsoft.Relay/namespaces/sdk-RelayNamespace-2488/operationresults/sdk-RelayNamespace-2488?api-version=2016-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZTJmMzYxZjAtM2IyNy00NTAzLWE5Y2MtMjFjZmJhMzgwMDkzL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtTm90aWZpY2F0aW9uSHVicy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVsYXkvbmFtZXNwYWNlcy9zZGstUmVsYXlOYW1lc3BhY2UtMjQ4OC9vcGVyYXRpb25yZXN1bHRzL3Nkay1SZWxheU5hbWVzcGFjZS0yNDg4P2FwaS12ZXJzaW9uPTIwMTYtMDctMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Relay.RelayManagementClient/0.0.1-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 30 Mar 2017 02:51:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "8da6e0e2-7988-4d1b-b886-b51ff7664394_M0_M0" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-correlation-request-id": [ + "6fe85430-c832-4be4-bdb9-d1f96447cc0a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170330T025132Z:6fe85430-c832-4be4-bdb9-d1f96447cc0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "WCFRelayCreateGetUpdateDeleteAuthorizationRules": [ + "sdk-RelayNamespace-2488", + "sdk-Relay-Wcf-8132", + "sdk-RelayAuthRules-1301" + ] + }, + "Variables": { + "SubscriptionId": "e2f361f0-3b27-4503-a9cc-21cfba380093", + "CreatePrimaryKey": "r0Ecnd2dGd53EhJAHMhhzWLaqtORY+O5xo/iZ7b8xEk=", + "UpdatePrimaryKey": "ANY8sHcspnZztlf7l0RS1nYpsvMF+ZE+dw1rC6hB/Xk=" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.CheckNameAvailability.cs b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.CheckNameAvailability.cs new file mode 100644 index 000000000000..ea3e82b6d077 --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.CheckNameAvailability.cs @@ -0,0 +1,95 @@ +// +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Relay.Tests.ScenarioTests +{ + using System; + using System.Collections.Generic; + using System.Linq; + using Microsoft.Azure.Management.Relay; + using Microsoft.Azure.Management.Relay.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Relay.Tests.TestHelper; + using Xunit; + public partial class ScenarioTests + { + [Fact] + public void CheckNameAvailability() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + InitializeClients(context); + var location = this.ResourceManagementClient.GetLocationFromProvider(); + var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + if (string.IsNullOrWhiteSpace(resourceGroup)) + { + resourceGroup = TestUtilities.GenerateName(RelayManagementHelper.ResourceGroupPrefix); + this.ResourceManagementClient.TryRegisterResourceGroup(location, resourceGroup); + } + + // Create Namespace + var namespaceName = TestUtilities.GenerateName(RelayManagementHelper.NamespacePrefix); + + // CheckNameAvailability + var checkNameAvailabilityResponse = this.RelayManagementClient.Namespaces.CheckNameAvailabilityMethod(new CheckNameAvailability { Name = namespaceName }); + + Assert.True(checkNameAvailabilityResponse.NameAvailable); + + var createNamespaceResponse = this.RelayManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + new RelayNamespace() + { + Location = location, + //Sku = new Sku + //{ + // Name = "Standard" + //}, + + Tags = new Dictionary() + { + {"tag1", "value1"}, + {"tag2", "value2"} + } + + }); + + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); + Assert.Equal(createNamespaceResponse.Tags.Count, 2); + Assert.Equal(createNamespaceResponse.Type, "Microsoft.Relay/namespaces"); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + + // CheckNameAvailability + var checkNameAvailabilityResponse1 = this.RelayManagementClient.Namespaces.CheckNameAvailabilityMethod(new CheckNameAvailability { Name = namespaceName }); + Assert.False(checkNameAvailabilityResponse1.NameAvailable); + Assert.True(checkNameAvailabilityResponse1.Reason == UnavailableReason.NameInUse); + + checkNameAvailabilityResponse1 = this.RelayManagementClient.Namespaces.CheckNameAvailabilityMethod(new CheckNameAvailability { Name = "12@" }); + Assert.False(checkNameAvailabilityResponse1.NameAvailable); + Assert.True(checkNameAvailabilityResponse1.Reason == UnavailableReason.InvalidName); + + try + { + // Delete namespace + RelayManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + catch (Exception ex) + { + Assert.True(ex.Message.Contains("NotFound")); + } + } + } + } +} diff --git a/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.HybridConnectionsTests.CRUD.cs b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.HybridConnectionsTests.CRUD.cs new file mode 100644 index 000000000000..fc0801b0324b --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.HybridConnectionsTests.CRUD.cs @@ -0,0 +1,145 @@ +// +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Relay.Tests.ScenarioTests +{ + using System; + using System.Collections.Generic; + using System.Linq; + using Microsoft.Azure.Management.Relay; + using Microsoft.Azure.Management.Relay.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Relay.Tests.TestHelper; + using Xunit; + public partial class ScenarioTests + { + [Fact] + public void HybridConnectionsCreateGetUpdateDelete() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + InitializeClients(context); + var location = this.ResourceManagementClient.GetLocationFromProvider(); + + var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + if (string.IsNullOrWhiteSpace(resourceGroup)) + { + resourceGroup = TestUtilities.GenerateName(RelayManagementHelper.ResourceGroupPrefix); + this.ResourceManagementClient.TryRegisterResourceGroup(location, resourceGroup); + } + + // Create Namespace + var namespaceName = TestUtilities.GenerateName(RelayManagementHelper.NamespacePrefix); + + var responseOperationlist = this.RelayManagementClient.Operations.List(); + + var responseCheckNameAvailability = this.RelayManagementClient.Namespaces.CheckNameAvailabilityMethod(new CheckNameAvailability { Name = namespaceName }); + + var createNamespaceResponse = this.RelayManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + new RelayNamespace() + { + Location = location, + Tags = new Dictionary() + { + {"tag1", "value1"}, + {"tag2", "value2"} + } + + }); + + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); + Assert.Equal(createNamespaceResponse.Tags.Count, 2); + Assert.Equal(createNamespaceResponse.Type, "Microsoft.Relay/namespaces"); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + // Get the created namespace + var getNamespaceResponse = RelayManagementClient.Namespaces.Get(resourceGroup, namespaceName); + if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + getNamespaceResponse = RelayManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + + // Get all namespaces created within a resourceGroup + var getAllNamespacesResponse = RelayManagementClient.Namespaces.ListByResourceGroup(resourceGroup); + Assert.NotNull(getAllNamespacesResponse); + Assert.True(getAllNamespacesResponse.Count() >= 1); + Assert.True(getAllNamespacesResponse.Any(ns => ns.Name == namespaceName)); + Assert.True(getAllNamespacesResponse.All(ns => ns.Id.Contains(resourceGroup))); + + // Get all namespaces created within the subscription irrespective of the resourceGroup + getAllNamespacesResponse = RelayManagementClient.Namespaces.List(); + Assert.NotNull(getAllNamespacesResponse); + Assert.True(getAllNamespacesResponse.Count() >= 1); + Assert.True(getAllNamespacesResponse.Any(ns => ns.Name == namespaceName)); + + // Create HybridConnections Relay - + var hybridConnectionsName = TestUtilities.GenerateName(RelayManagementHelper.HybridPrefix); + var createdWCFRelayResponse = RelayManagementClient.HybridConnections.CreateOrUpdate(resourceGroup, namespaceName, hybridConnectionsName, new HybridConnection() + { + RequiresClientAuthorization = true + }); + + Assert.NotNull(createdWCFRelayResponse); + Assert.Equal(createdWCFRelayResponse.Name, hybridConnectionsName); + Assert.True(createdWCFRelayResponse.RequiresClientAuthorization); + + var getWCFRelaysResponse = RelayManagementClient.HybridConnections.Get(resourceGroup, namespaceName, hybridConnectionsName); + + Assert.NotNull(createdWCFRelayResponse); + Assert.Equal(createdWCFRelayResponse.Name, hybridConnectionsName); + Assert.True(createdWCFRelayResponse.RequiresClientAuthorization); + + //Update User Metadata for HybridConnections + string strUserMetadata = "usermetadata is a placeholder to store user-defined string data for the HybridConnection endpoint.e.g. it can be used to store descriptive data, such as list of teams and their contact information also user-defined configuration settings can be stored."; + createdWCFRelayResponse.UserMetadata = strUserMetadata; + + var updateWCFRelays = RelayManagementClient.HybridConnections.CreateOrUpdate(resourceGroup, namespaceName, hybridConnectionsName, createdWCFRelayResponse); + Assert.Equal(createdWCFRelayResponse.Name, hybridConnectionsName); + Assert.True(createdWCFRelayResponse.RequiresClientAuthorization); + Assert.Equal(createdWCFRelayResponse.UserMetadata, strUserMetadata); + + //Get List of all Hybridconnections in given NameSpace. + var listAllHybridConnectionResponse = RelayManagementClient.HybridConnections.ListByNamespace(resourceGroup, namespaceName); + Assert.NotNull(listAllHybridConnectionResponse); + Assert.True(listAllHybridConnectionResponse.Count() >= 1); + Assert.True(listAllHybridConnectionResponse.All(hy => hy.Id.Contains(resourceGroup))); + + //Delete the HybridConnections created + try + { + RelayManagementClient.HybridConnections.Delete(resourceGroup, namespaceName, hybridConnectionsName); + } + catch (Exception ex) + { + Assert.True(ex.Message.Contains("NotFound")); + } + + try + { + // Delete namespace + RelayManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + catch (Exception ex) + { + Assert.True(ex.Message.Contains("NotFound")); + } + } + } + } +} diff --git a/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.HybridConnectionsTests.CRUDAuthorizationRules.cs b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.HybridConnectionsTests.CRUDAuthorizationRules.cs new file mode 100644 index 000000000000..7e71f8157ff1 --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.HybridConnectionsTests.CRUDAuthorizationRules.cs @@ -0,0 +1,213 @@ +// +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Relay.Tests.ScenarioTests +{ + using System; + using System.Collections.Generic; + using System.Linq; + using Microsoft.Azure.Management.Relay; + using Microsoft.Azure.Management.Relay.Models; + using Microsoft.Azure.Test.HttpRecorder; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Relay.Tests.TestHelper; + using Xunit; + public partial class ScenarioTests + { + [Fact] + public void HybridConnectionsCreateGetUpdateDeleteAuthorizationRules() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + InitializeClients(context); + + var location = this.ResourceManagementClient.GetLocationFromProvider(); + var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + if (string.IsNullOrWhiteSpace(resourceGroup)) + { + resourceGroup = TestUtilities.GenerateName(RelayManagementHelper.ResourceGroupPrefix); + this.ResourceManagementClient.TryRegisterResourceGroup(location, resourceGroup); + } + + // Create Namespace + var namespaceName = TestUtilities.GenerateName(RelayManagementHelper.NamespacePrefix); + + var createNamespaceResponse = this.RelayManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + new RelayNamespace() + { + Location = location, + Tags = new Dictionary() + { + {"tag1", "value1"}, + {"tag2", "value2"} + } + + }); + + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); + Assert.Equal(createNamespaceResponse.Tags.Count, 2); + Assert.Equal(createNamespaceResponse.Type, "Microsoft.Relay/namespaces"); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + // Get the created namespace + var getNamespaceResponse = RelayManagementClient.Namespaces.Get(resourceGroup, namespaceName); + if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + getNamespaceResponse = RelayManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + + // Get all namespaces created within a resourceGroup + var getAllNamespacesResponse = RelayManagementClient.Namespaces.ListByResourceGroup(resourceGroup); + Assert.NotNull(getAllNamespacesResponse); + Assert.True(getAllNamespacesResponse.Count() >= 1); + Assert.True(getAllNamespacesResponse.Any(ns => ns.Name == namespaceName)); + Assert.True(getAllNamespacesResponse.All(ns => ns.Id.Contains(resourceGroup))); + + // Get all namespaces created within the subscription irrespective of the resourceGroup + getAllNamespacesResponse = RelayManagementClient.Namespaces.List(); + Assert.NotNull(getAllNamespacesResponse); + Assert.True(getAllNamespacesResponse.Count() >= 1); + Assert.True(getAllNamespacesResponse.Any(ns => ns.Name == namespaceName)); + + // Create Relay HybridConnections - + var hybridConnectionsName = TestUtilities.GenerateName(RelayManagementHelper.HybridPrefix); + var createdWCFRelayResponse = RelayManagementClient.HybridConnections.CreateOrUpdate(resourceGroup, namespaceName, hybridConnectionsName, new HybridConnection() + { + RequiresClientAuthorization = true, + }); + + Assert.NotNull(createdWCFRelayResponse); + Assert.Equal(createdWCFRelayResponse.Name, hybridConnectionsName); + Assert.True(createdWCFRelayResponse.RequiresClientAuthorization); + + var getWCFRelaysResponse = RelayManagementClient.HybridConnections.Get(resourceGroup, namespaceName, hybridConnectionsName); + + // Create a HybridConnections AuthorizationRule + var authorizationRuleName = TestUtilities.GenerateName(RelayManagementHelper.AuthorizationRulesPrefix); + string createPrimaryKey = HttpMockServer.GetVariable("CreatePrimaryKey", RelayManagementHelper.GenerateRandomKey()); + var createAutorizationRuleParameter = new AuthorizationRule() + { + Rights = new List() { AccessRights.Listen, AccessRights.Send } + }; + + var jsonStr = RelayManagementHelper.ConvertObjectToJSon(createAutorizationRuleParameter); + + var test = RelayManagementClient.HybridConnections.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, hybridConnectionsName, authorizationRuleName, createAutorizationRuleParameter); + + var createNamespaceAuthorizationRuleResponse = RelayManagementClient.HybridConnections.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, hybridConnectionsName, + authorizationRuleName, createAutorizationRuleParameter); + Assert.NotNull(createNamespaceAuthorizationRuleResponse); + Assert.True(createNamespaceAuthorizationRuleResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.True(createNamespaceAuthorizationRuleResponse.Rights.Any(r => r == right)); + } + + // Get created HybridConnections AuthorizationRules + var getNamespaceAuthorizationRulesResponse = RelayManagementClient.HybridConnections.GetAuthorizationRule(resourceGroup, namespaceName, hybridConnectionsName, authorizationRuleName); + Assert.NotNull(getNamespaceAuthorizationRulesResponse); + Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Any(r => r == right)); + } + + // Get all HybridConnections AuthorizationRules + var getAllNamespaceAuthorizationRulesResponse = RelayManagementClient.HybridConnections.ListAuthorizationRules(resourceGroup, namespaceName, hybridConnectionsName); + Assert.NotNull(getAllNamespaceAuthorizationRulesResponse); + Assert.True(getAllNamespaceAuthorizationRulesResponse.Count() >= 1); + Assert.True(getAllNamespaceAuthorizationRulesResponse.Any(ns => ns.Name == authorizationRuleName)); + + // Update HybridConnections authorizationRule + string updatePrimaryKey = HttpMockServer.GetVariable("UpdatePrimaryKey", RelayManagementHelper.GenerateRandomKey()); + AuthorizationRule updateNamespaceAuthorizationRuleParameter = new AuthorizationRule(); + updateNamespaceAuthorizationRuleParameter.Rights = new List() { AccessRights.Listen }; + + var updateNamespaceAuthorizationRuleResponse = RelayManagementClient.HybridConnections.CreateOrUpdateAuthorizationRule(resourceGroup, + namespaceName, hybridConnectionsName, authorizationRuleName, updateNamespaceAuthorizationRuleParameter); + + Assert.NotNull(updateNamespaceAuthorizationRuleResponse); + Assert.Equal(authorizationRuleName, updateNamespaceAuthorizationRuleResponse.Name); + Assert.True(updateNamespaceAuthorizationRuleResponse.Rights.Count == updateNamespaceAuthorizationRuleParameter.Rights.Count); + foreach (var right in updateNamespaceAuthorizationRuleParameter.Rights) + { + Assert.True(updateNamespaceAuthorizationRuleResponse.Rights.Any(r => r.Equals(right))); + } + + // Get the HybridConnections namespace AuthorizationRule + var getNamespaceAuthorizationRuleResponse = RelayManagementClient.HybridConnections.GetAuthorizationRule(resourceGroup, namespaceName, hybridConnectionsName, authorizationRuleName); + Assert.NotNull(getNamespaceAuthorizationRuleResponse); + Assert.Equal(authorizationRuleName, getNamespaceAuthorizationRuleResponse.Name); + Assert.True(getNamespaceAuthorizationRuleResponse.Rights.Count == updateNamespaceAuthorizationRuleParameter.Rights.Count); + foreach (var right in updateNamespaceAuthorizationRuleParameter.Rights) + { + Assert.True(getNamespaceAuthorizationRuleResponse.Rights.Any(r => r.Equals(right))); + } + + // Get the connectionString to the HybridConnections for a Authorization rule created + var listKeysResponse = RelayManagementClient.HybridConnections.ListKeys(resourceGroup, namespaceName, hybridConnectionsName, authorizationRuleName); + Assert.NotNull(listKeysResponse); + Assert.NotNull(listKeysResponse.PrimaryConnectionString); + Assert.NotNull(listKeysResponse.SecondaryConnectionString); + + // Regenerate AuthorizationRules + var regenerateKeysParameters = new RegenerateKeysParameters(); + regenerateKeysParameters.PolicyKey = PolicyKey.PrimaryKey; + + //Primary Key + var regenerateKeysPrimaryResponse = RelayManagementClient.HybridConnections.RegenerateKeys(resourceGroup, namespaceName, hybridConnectionsName, authorizationRuleName, regenerateKeysParameters); + Assert.NotNull(regenerateKeysPrimaryResponse); + Assert.NotEqual(regenerateKeysPrimaryResponse.PrimaryKey, listKeysResponse.PrimaryKey); + Assert.Equal(regenerateKeysPrimaryResponse.SecondaryKey, listKeysResponse.SecondaryKey); + + + regenerateKeysParameters.PolicyKey = PolicyKey.SecondaryKey; + + //Secondary Key + var regenerateKeysSecondaryResponse = RelayManagementClient.HybridConnections.RegenerateKeys(resourceGroup, namespaceName, hybridConnectionsName, authorizationRuleName, regenerateKeysParameters); + Assert.NotNull(regenerateKeysSecondaryResponse); + Assert.NotEqual(regenerateKeysSecondaryResponse.SecondaryKey, listKeysResponse.SecondaryKey); + Assert.Equal(regenerateKeysSecondaryResponse.PrimaryKey, regenerateKeysPrimaryResponse.PrimaryKey); + + + // Delete HybridConnections authorizationRule + RelayManagementClient.HybridConnections.DeleteAuthorizationRule(resourceGroup, namespaceName, hybridConnectionsName, authorizationRuleName); + + try + { + RelayManagementClient.HybridConnections.Delete(resourceGroup, namespaceName, hybridConnectionsName); + } + catch (Exception ex) + { + Assert.True(ex.Message.Contains("NotFound")); + } + + try + { + // Delete namespace + RelayManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + catch (Exception ex) + { + Assert.True(ex.Message.Contains("NotFound")); + } + } + } + } +} diff --git a/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.NamespaceTests.CRUD.cs b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.NamespaceTests.CRUD.cs new file mode 100644 index 000000000000..b7c323d8b068 --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.NamespaceTests.CRUD.cs @@ -0,0 +1,133 @@ +// +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Relay.Tests.ScenarioTests +{ + using System; + using System.Collections.Generic; + using System.Linq; + using Microsoft.Azure.Management.Relay; + using Microsoft.Azure.Management.Relay.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Relay.Tests.TestHelper; + using Xunit; + public partial class ScenarioTests + { + [Fact] + public void NamespaceCreateGetUpdateDelete() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + InitializeClients(context); + + var location = this.ResourceManagementClient.GetLocationFromProvider(); + var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + if (string.IsNullOrWhiteSpace(resourceGroup)) + { + resourceGroup = TestUtilities.GenerateName(RelayManagementHelper.ResourceGroupPrefix); + this.ResourceManagementClient.TryRegisterResourceGroup(location, resourceGroup); + } + + // Create Namespace + var namespaceName = TestUtilities.GenerateName(RelayManagementHelper.NamespacePrefix); + + + // CheckNameAvailability + var checkNameAvailabilityResponse = this.RelayManagementClient.Namespaces.CheckNameAvailabilityMethod(new CheckNameAvailability { Name = namespaceName }); + + Assert.True(checkNameAvailabilityResponse.NameAvailable); + + var createNamespaceResponse = this.RelayManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + new RelayNamespace() + { + Location = location, + Tags = new Dictionary() + { + {"tag1", "value1"}, + {"tag2", "value2"} + } + + }); + + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); + Assert.Equal(createNamespaceResponse.Tags.Count, 2); + Assert.Equal(createNamespaceResponse.Type, "Microsoft.Relay/namespaces"); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + // Get the created namespace + var getNamespaceResponse = RelayManagementClient.Namespaces.Get(resourceGroup, namespaceName); + if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + getNamespaceResponse = RelayManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + + // Get all namespaces created within a resourceGroup + var getAllNamespacesResponse = RelayManagementClient.Namespaces.ListByResourceGroup(resourceGroup); + Assert.NotNull(getAllNamespacesResponse); + Assert.True(getAllNamespacesResponse.Count() >= 1); + Assert.True(getAllNamespacesResponse.Any(ns => ns.Name == namespaceName)); + Assert.True(getAllNamespacesResponse.All(ns => ns.Id.Contains(resourceGroup))); + + // Get all namespaces created within the subscription irrespective of the resourceGroup + getAllNamespacesResponse = RelayManagementClient.Namespaces.List(); + Assert.NotNull(getAllNamespacesResponse); + Assert.True(getAllNamespacesResponse.Count() >= 1); + Assert.True(getAllNamespacesResponse.Any(ns => ns.Name == namespaceName)); + + // Update namespace tags + var updateNamespaceParameter = new RelayNamespaceUpdateParameter() + { + Tags = new Dictionary() + { + {"tag3", "value3"}, + {"tag4", "value4"}, + {"tag5", "value5"}, + {"tag6", "value6"} + } + }; + + var updateNamespaceResponse = RelayManagementClient.Namespaces.Update(resourceGroup, namespaceName, updateNamespaceParameter); + + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + // Get the updated namespace + getNamespaceResponse = RelayManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(namespaceName, getNamespaceResponse.Name); + Assert.Equal(getNamespaceResponse.Tags.Count, 4); + foreach (var tag in updateNamespaceParameter.Tags) + { + Assert.True(getNamespaceResponse.Tags.Any(t => t.Key.Equals(tag.Key))); + Assert.True(getNamespaceResponse.Tags.Any(t => t.Value.Equals(tag.Value))); + } + + try + { + // Delete namespace + RelayManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + catch (Exception ex) + { + Assert.True(ex.Message.Contains("NotFound")); + } + } + } + } +} diff --git a/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.NamespaceTests.CRUDAuthorizationRules.cs b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.NamespaceTests.CRUDAuthorizationRules.cs new file mode 100644 index 000000000000..6ae7bd18555c --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.NamespaceTests.CRUDAuthorizationRules.cs @@ -0,0 +1,178 @@ +// +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +namespace Relay.Tests.ScenarioTests +{ + using System; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using Microsoft.Azure.Management.Relay; + using Microsoft.Azure.Management.Relay.Models; + using Microsoft.Azure.Test.HttpRecorder; + using Microsoft.Rest.Azure; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Relay.Tests.TestHelper; + using Xunit; + public partial class ScenarioTests + { + [Fact] + public void NamespaceCreateGetUpdateDeleteAuthorizationRules() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + InitializeClients(context); + + var location = this.ResourceManagementClient.GetLocationFromProvider(); + var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + if (string.IsNullOrWhiteSpace(resourceGroup)) + { + resourceGroup = TestUtilities.GenerateName(RelayManagementHelper.ResourceGroupPrefix); + this.ResourceManagementClient.TryRegisterResourceGroup(location, resourceGroup); + } + + // Create a namespace + var namespaceName = TestUtilities.GenerateName(RelayManagementHelper.NamespacePrefix); + var createNamespaceResponse = RelayManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + new RelayNamespace() + { + Location = location, + }); + + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); + + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + // Get the created namespace + var getNamespaceResponse = RelayManagementClient.Namespaces.Get(resourceGroup, namespaceName); + if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + getNamespaceResponse = RelayManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + + // Create a namespace AuthorizationRule + var authorizationRuleName = TestUtilities.GenerateName(RelayManagementHelper.AuthorizationRulesPrefix); + string createPrimaryKey = HttpMockServer.GetVariable("CreatePrimaryKey", RelayManagementHelper.GenerateRandomKey()); + var createAutorizationRuleParameter = new AuthorizationRule() + { + Rights = new List() { AccessRights.Listen, AccessRights.Send } + }; + + var jsonStr = RelayManagementHelper.ConvertObjectToJSon(createAutorizationRuleParameter); + + var createNamespaceAuthorizationRuleResponse = RelayManagementClient.Namespaces.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, + authorizationRuleName, createAutorizationRuleParameter); + Assert.NotNull(createNamespaceAuthorizationRuleResponse); + Assert.True(createNamespaceAuthorizationRuleResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.True(createNamespaceAuthorizationRuleResponse.Rights.Any(r => r == right)); + } + + // Get default namespace AuthorizationRules + var getNamespaceAuthorizationRulesResponse = RelayManagementClient.Namespaces.GetAuthorizationRule(resourceGroup, namespaceName, RelayManagementHelper.DefaultNamespaceAuthorizationRule); + Assert.NotNull(getNamespaceAuthorizationRulesResponse); + Assert.Equal(getNamespaceAuthorizationRulesResponse.Name, RelayManagementHelper.DefaultNamespaceAuthorizationRule); + Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Any(r => r == AccessRights.Listen)); + Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Any(r => r == AccessRights.Send)); + Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Any(r => r == AccessRights.Manage)); + + // Get created namespace AuthorizationRules + getNamespaceAuthorizationRulesResponse = RelayManagementClient.Namespaces.GetAuthorizationRule(resourceGroup, namespaceName, authorizationRuleName); + Assert.NotNull(getNamespaceAuthorizationRulesResponse); + Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Any(r => r == right)); + } + + // Get all namespaces AuthorizationRules + var getAllNamespaceAuthorizationRulesResponse = RelayManagementClient.Namespaces.ListAuthorizationRules(resourceGroup, namespaceName); + Assert.NotNull(getAllNamespaceAuthorizationRulesResponse); + Assert.True(getAllNamespaceAuthorizationRulesResponse.Count() > 1); + Assert.True(getAllNamespaceAuthorizationRulesResponse.Any(ns => ns.Name == authorizationRuleName)); + Assert.True(getAllNamespaceAuthorizationRulesResponse.Any(auth => auth.Name == RelayManagementHelper.DefaultNamespaceAuthorizationRule)); + + // Update namespace authorizationRule + string updatePrimaryKey = HttpMockServer.GetVariable("UpdatePrimaryKey", RelayManagementHelper.GenerateRandomKey()); + AuthorizationRule updateNamespaceAuthorizationRuleParameter = new AuthorizationRule(); + updateNamespaceAuthorizationRuleParameter.Rights = new List() { AccessRights.Listen }; + var updateNamespaceAuthorizationRuleResponse = RelayManagementClient.Namespaces.CreateOrUpdateAuthorizationRule(resourceGroup, + namespaceName, authorizationRuleName, updateNamespaceAuthorizationRuleParameter); + + Assert.NotNull(updateNamespaceAuthorizationRuleResponse); + Assert.Equal(authorizationRuleName, updateNamespaceAuthorizationRuleResponse.Name); + Assert.True(updateNamespaceAuthorizationRuleResponse.Rights.Count == updateNamespaceAuthorizationRuleParameter.Rights.Count); + foreach (var right in updateNamespaceAuthorizationRuleParameter.Rights) + { + Assert.True(updateNamespaceAuthorizationRuleResponse.Rights.Any(r => r.Equals(right))); + } + + // Get the updated namespace AuthorizationRule + var getNamespaceAuthorizationRuleResponse = RelayManagementClient.Namespaces.GetAuthorizationRule(resourceGroup, namespaceName,authorizationRuleName); + Assert.NotNull(getNamespaceAuthorizationRuleResponse); + Assert.Equal(authorizationRuleName, getNamespaceAuthorizationRuleResponse.Name); + Assert.True(getNamespaceAuthorizationRuleResponse.Rights.Count == updateNamespaceAuthorizationRuleParameter.Rights.Count); + foreach (var right in updateNamespaceAuthorizationRuleParameter.Rights) + { + Assert.True(getNamespaceAuthorizationRuleResponse.Rights.Any(r => r.Equals(right))); + } + + // Get the connectionString to the namespace for a Authorization rule created + var listKeysResponse = RelayManagementClient.Namespaces.ListKeys(resourceGroup, namespaceName, authorizationRuleName); + Assert.NotNull(listKeysResponse); + Assert.NotNull(listKeysResponse.PrimaryConnectionString); + Assert.NotNull(listKeysResponse.SecondaryConnectionString); + + // Regenerate AuthorizationRules + var regenerateKeysParameters = new RegenerateKeysParameters(); + regenerateKeysParameters.PolicyKey = PolicyKey.PrimaryKey; + + //Primary Key + var regenerateKeysPrimaryResponse = RelayManagementClient.Namespaces.RegenerateKeys(resourceGroup, namespaceName, authorizationRuleName, regenerateKeysParameters); + Assert.NotNull(regenerateKeysPrimaryResponse); + Assert.NotEqual(regenerateKeysPrimaryResponse.PrimaryKey, listKeysResponse.PrimaryKey); + Assert.Equal(regenerateKeysPrimaryResponse.SecondaryKey, listKeysResponse.SecondaryKey); + + + regenerateKeysParameters.PolicyKey = PolicyKey.SecondaryKey; + //Secondary Key + var regenerateKeysSecondaryResponse = RelayManagementClient.Namespaces.RegenerateKeys(resourceGroup, namespaceName, authorizationRuleName, regenerateKeysParameters); + Assert.NotNull(regenerateKeysSecondaryResponse); + Assert.NotEqual(regenerateKeysSecondaryResponse.SecondaryKey, listKeysResponse.SecondaryKey); + Assert.Equal(regenerateKeysSecondaryResponse.PrimaryKey, regenerateKeysPrimaryResponse.PrimaryKey); + // Delete namespace authorizationRule + RelayManagementClient.Namespaces.DeleteAuthorizationRule(resourceGroup, namespaceName, authorizationRuleName); + + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + try + { + // Delete namespace + RelayManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + catch (Exception ex) + { + Assert.True(ex.Message.Contains("NotFound")); + } + } + } + } +} diff --git a/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.OperationList.cs b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.OperationList.cs new file mode 100644 index 000000000000..9d2be0a880c0 --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.OperationList.cs @@ -0,0 +1,44 @@ +// +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Relay.Tests.ScenarioTests +{ + using System; + using System.Collections.Generic; + using System.Linq; + using Microsoft.Azure.Management.Relay; + using Microsoft.Azure.Management.Relay.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Relay.Tests.TestHelper; + using Xunit; + public partial class ScenarioTests + { + [Fact] + public void OperationList() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + InitializeClients(context); + + //Get Operations + var ResponseOperationList = this.RelayManagementClient.Operations.List(); + + //Verify operations are returned + Assert.NotNull(ResponseOperationList); + Assert.True(ResponseOperationList.Count() > 0); + } + } + } +} diff --git a/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.WCFRelayTests.CRUD.cs b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.WCFRelayTests.CRUD.cs new file mode 100644 index 000000000000..f97711a86265 --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.WCFRelayTests.CRUD.cs @@ -0,0 +1,148 @@ +// +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Relay.Tests.ScenarioTests +{ + using System; + using System.Collections.Generic; + using System.Linq; + using Microsoft.Azure.Management.Relay; + using Microsoft.Azure.Management.Relay.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Relay.Tests.TestHelper; + using Xunit; + public partial class ScenarioTests + { + [Fact] + public void WCFRelayCreateGetUpdateDelete() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + InitializeClients(context); + + var location = this.ResourceManagementClient.GetLocationFromProvider(); + var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + if (string.IsNullOrWhiteSpace(resourceGroup)) + { + resourceGroup = TestUtilities.GenerateName(RelayManagementHelper.ResourceGroupPrefix); + this.ResourceManagementClient.TryRegisterResourceGroup(location, resourceGroup); + } + + // Create Namespace + var namespaceName = TestUtilities.GenerateName(RelayManagementHelper.NamespacePrefix); + + var createNamespaceResponse = this.RelayManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, new RelayNamespace() + { + Location = location, + Tags = new Dictionary() + { + {"tag1", "value1"}, + {"tag2", "value2"} + } + }); + + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); + Assert.Equal(createNamespaceResponse.Tags.Count, 2); + Assert.Equal(createNamespaceResponse.Type, "Microsoft.Relay/namespaces"); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + // Get the created namespace + var getNamespaceResponse = RelayManagementClient.Namespaces.Get(resourceGroup, namespaceName); + if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + getNamespaceResponse = RelayManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + + // Get all namespaces created within a resourceGroup + + var getAllNamespacesResponse = RelayManagementClient.Namespaces.ListByResourceGroup(resourceGroup); + Assert.NotNull(getAllNamespacesResponse); + Assert.True(getAllNamespacesResponse.Count() >= 1); + Assert.True(getAllNamespacesResponse.Any(ns => ns.Name == namespaceName)); + Assert.True(getAllNamespacesResponse.All(ns => ns.Id.Contains(resourceGroup))); + + // Get all namespaces created within the subscription irrespective of the resourceGroup + getAllNamespacesResponse = RelayManagementClient.Namespaces.List(); + Assert.NotNull(getAllNamespacesResponse); + Assert.True(getAllNamespacesResponse.Count() >= 1); + Assert.True(getAllNamespacesResponse.Any(ns => ns.Name == namespaceName)); + + // Create WCF Relay - + var wcfRelayName = TestUtilities.GenerateName(RelayManagementHelper.WcfPrefix); + var createdWCFRelayResponse = RelayManagementClient.WCFRelays.CreateOrUpdate(resourceGroup, namespaceName, wcfRelayName, new WcfRelay() + { + RelayType = Relaytype.NetTcp, + RequiresClientAuthorization = true, + RequiresTransportSecurity = true + }); + + Assert.NotNull(createdWCFRelayResponse); + Assert.Equal(createdWCFRelayResponse.Name, wcfRelayName); + Assert.True(createdWCFRelayResponse.RequiresClientAuthorization); + Assert.True(createdWCFRelayResponse.RequiresTransportSecurity); + Assert.Equal(createdWCFRelayResponse.RelayType, Relaytype.NetTcp); + + var getWCFRelaysResponse = RelayManagementClient.WCFRelays.Get(resourceGroup, namespaceName, wcfRelayName); + + Assert.NotNull(createdWCFRelayResponse); + Assert.Equal(createdWCFRelayResponse.Name, wcfRelayName); + Assert.True(createdWCFRelayResponse.RequiresClientAuthorization); + Assert.True(createdWCFRelayResponse.RequiresTransportSecurity); + Assert.Equal(createdWCFRelayResponse.RelayType, Relaytype.NetTcp); + + //Update User Metadata for WCFRelays + string strUserMetadata = "usermetadata is a placeholder to store user-defined string data for the HybridConnection endpoint.e.g. it can be used to store descriptive data, such as list of teams and their contact information also user-defined configuration settings can be stored."; + createdWCFRelayResponse.UserMetadata = strUserMetadata; + + var updateWCFRelays = RelayManagementClient.WCFRelays.CreateOrUpdate(resourceGroup, namespaceName, wcfRelayName, createdWCFRelayResponse); + Assert.Equal(createdWCFRelayResponse.Name, wcfRelayName); + Assert.True(createdWCFRelayResponse.RequiresClientAuthorization); + Assert.True(createdWCFRelayResponse.RequiresTransportSecurity); + Assert.Equal(createdWCFRelayResponse.RelayType, Relaytype.NetTcp); + Assert.Equal(createdWCFRelayResponse.UserMetadata, strUserMetadata); + + //Get List of all Hybridconnections in given NameSpace. + var listAllWCFRelaysResponse = RelayManagementClient.WCFRelays.ListByNamespace(resourceGroup, namespaceName); + Assert.NotNull(listAllWCFRelaysResponse); + Assert.True(listAllWCFRelaysResponse.Count() >= 1); + //Assert.True(listAllWCFRelaysResponse.Any(wcfRelay => wcfRelay.Name == wcfRelayName)); + Assert.True(listAllWCFRelaysResponse.All(wcfRelay => wcfRelay.Id.Contains(resourceGroup))); + + try + { + RelayManagementClient.WCFRelays.Delete(resourceGroup, namespaceName, wcfRelayName); + } + catch (Exception ex) + { + Assert.True(ex.Message.Contains("NotFound")); + } + + try + { + // Delete namespace + RelayManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + catch (Exception ex) + { + Assert.True(ex.Message.Contains("NotFound")); + } + } + } + } +} diff --git a/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.WCFRelayTests.CRUDAuthorizationRules.cs b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.WCFRelayTests.CRUDAuthorizationRules.cs new file mode 100644 index 000000000000..931f69aa856a --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.WCFRelayTests.CRUDAuthorizationRules.cs @@ -0,0 +1,215 @@ +// +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +namespace Relay.Tests.ScenarioTests +{ + using System; + using System.Collections.Generic; + using System.Linq; + using Microsoft.Azure.Management.Relay; + using Microsoft.Azure.Management.Relay.Models; + using Microsoft.Azure.Test.HttpRecorder; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Relay.Tests.TestHelper; + using Xunit; + public partial class ScenarioTests + { + [Fact] + public void WCFRelayCreateGetUpdateDeleteAuthorizationRules() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + InitializeClients(context); + + var location = this.ResourceManagementClient.GetLocationFromProvider(); + + var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + if (string.IsNullOrWhiteSpace(resourceGroup)) + { + resourceGroup = TestUtilities.GenerateName(RelayManagementHelper.ResourceGroupPrefix); + this.ResourceManagementClient.TryRegisterResourceGroup(location, resourceGroup); + } + + // Create Namespace + var namespaceName = TestUtilities.GenerateName(RelayManagementHelper.NamespacePrefix); + + var createNamespaceResponse = this.RelayManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + new RelayNamespace() + { + Location = location, + Tags = new Dictionary() + { + {"tag1", "value1"}, + {"tag2", "value2"} + } + }); + + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); + Assert.Equal(createNamespaceResponse.Tags.Count, 2); + Assert.Equal(createNamespaceResponse.Type, "Microsoft.Relay/namespaces"); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + // Get the created namespace + var getNamespaceResponse = RelayManagementClient.Namespaces.Get(resourceGroup, namespaceName); + if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + getNamespaceResponse = RelayManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + + // Get all namespaces created within a resourceGroup + var getAllNamespacesResponse = RelayManagementClient.Namespaces.ListByResourceGroup(resourceGroup); + Assert.NotNull(getAllNamespacesResponse); + Assert.True(getAllNamespacesResponse.Count() >= 1); + Assert.True(getAllNamespacesResponse.Any(ns => ns.Name == namespaceName)); + Assert.True(getAllNamespacesResponse.All(ns => ns.Id.Contains(resourceGroup))); + + // Get all namespaces created within the subscription irrespective of the resourceGroup + getAllNamespacesResponse = RelayManagementClient.Namespaces.List(); + Assert.NotNull(getAllNamespacesResponse); + Assert.True(getAllNamespacesResponse.Count() >= 1); + Assert.True(getAllNamespacesResponse.Any(ns => ns.Name == namespaceName)); + + // Create WCF Relay - + var wcfRelayName = TestUtilities.GenerateName(RelayManagementHelper.WcfPrefix); + var createdWCFRelayResponse = RelayManagementClient.WCFRelays.CreateOrUpdate(resourceGroup, namespaceName, wcfRelayName, new WcfRelay() + { + RelayType = Relaytype.NetTcp, + RequiresClientAuthorization = true, + RequiresTransportSecurity = true + }); + + Assert.NotNull(createdWCFRelayResponse); + Assert.Equal(createdWCFRelayResponse.Name, wcfRelayName); + Assert.True(createdWCFRelayResponse.RequiresClientAuthorization); + Assert.True(createdWCFRelayResponse.RequiresTransportSecurity); + Assert.Equal(createdWCFRelayResponse.RelayType, Relaytype.NetTcp); + + var getWCFRelaysResponse = RelayManagementClient.WCFRelays.Get(resourceGroup, namespaceName, wcfRelayName); + + // Create a WCFRelay AuthorizationRule + var authorizationRuleName = TestUtilities.GenerateName(RelayManagementHelper.AuthorizationRulesPrefix); + string createPrimaryKey = HttpMockServer.GetVariable("CreatePrimaryKey", RelayManagementHelper.GenerateRandomKey()); + var createAutorizationRuleParameter = new AuthorizationRule() + { + Rights = new List() { AccessRights.Listen, AccessRights.Send } + }; + + var jsonStr = RelayManagementHelper.ConvertObjectToJSon(createAutorizationRuleParameter); + + var test = RelayManagementClient.WCFRelays.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, wcfRelayName, authorizationRuleName, createAutorizationRuleParameter); + + var createNamespaceAuthorizationRuleResponse = RelayManagementClient.WCFRelays.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, wcfRelayName, + authorizationRuleName, createAutorizationRuleParameter); + Assert.NotNull(createNamespaceAuthorizationRuleResponse); + Assert.True(createNamespaceAuthorizationRuleResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.True(createNamespaceAuthorizationRuleResponse.Rights.Any(r => r == right)); + } + + // Get created WCFRelay AuthorizationRules + var getNamespaceAuthorizationRulesResponse = RelayManagementClient.WCFRelays.GetAuthorizationRule(resourceGroup, namespaceName, wcfRelayName, authorizationRuleName); + Assert.NotNull(getNamespaceAuthorizationRulesResponse); + Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Any(r => r == right)); + } + + // Get all WCFRelay AuthorizationRules + var getAllNamespaceAuthorizationRulesResponse = RelayManagementClient.WCFRelays.ListAuthorizationRules(resourceGroup, namespaceName,wcfRelayName); + Assert.NotNull(getAllNamespaceAuthorizationRulesResponse); + Assert.True(getAllNamespaceAuthorizationRulesResponse.Count() >= 1); + Assert.True(getAllNamespaceAuthorizationRulesResponse.Any(ns => ns.Name == authorizationRuleName)); + + // Update WCFRelay authorizationRule + string updatePrimaryKey = HttpMockServer.GetVariable("UpdatePrimaryKey", RelayManagementHelper.GenerateRandomKey()); + AuthorizationRule updateNamespaceAuthorizationRuleParameter = new AuthorizationRule(); + updateNamespaceAuthorizationRuleParameter.Rights = new List() { AccessRights.Listen }; + + var updateNamespaceAuthorizationRuleResponse = RelayManagementClient.WCFRelays.CreateOrUpdateAuthorizationRule(resourceGroup, + namespaceName, wcfRelayName, authorizationRuleName, updateNamespaceAuthorizationRuleParameter); + + Assert.NotNull(updateNamespaceAuthorizationRuleResponse); + Assert.Equal(authorizationRuleName, updateNamespaceAuthorizationRuleResponse.Name); + Assert.True(updateNamespaceAuthorizationRuleResponse.Rights.Count == updateNamespaceAuthorizationRuleParameter.Rights.Count); + foreach (var right in updateNamespaceAuthorizationRuleParameter.Rights) + { + Assert.True(updateNamespaceAuthorizationRuleResponse.Rights.Any(r => r.Equals(right))); + } + + // Get the WCFRelay namespace AuthorizationRule + var getNamespaceAuthorizationRuleResponse = RelayManagementClient.WCFRelays.GetAuthorizationRule(resourceGroup, namespaceName, wcfRelayName, authorizationRuleName); + Assert.NotNull(getNamespaceAuthorizationRuleResponse); + Assert.Equal(authorizationRuleName, getNamespaceAuthorizationRuleResponse.Name); + Assert.True(getNamespaceAuthorizationRuleResponse.Rights.Count == updateNamespaceAuthorizationRuleParameter.Rights.Count); + foreach (var right in updateNamespaceAuthorizationRuleParameter.Rights) + { + Assert.True(getNamespaceAuthorizationRuleResponse.Rights.Any(r => r.Equals(right))); + } + + // Get the connectionString to the WCFRelay for a Authorization rule created + var listKeysResponse = RelayManagementClient.WCFRelays.ListKeys(resourceGroup, namespaceName, wcfRelayName, authorizationRuleName); + Assert.NotNull(listKeysResponse); + Assert.NotNull(listKeysResponse.PrimaryConnectionString); + Assert.NotNull(listKeysResponse.SecondaryConnectionString); + + // Regenerate AuthorizationRules + var regenerateKeysParameters = new RegenerateKeysParameters(); + regenerateKeysParameters.PolicyKey = PolicyKey.PrimaryKey; + + //Primary Key + var regenerateKeysPrimaryResponse = RelayManagementClient.WCFRelays.RegenerateKeys(resourceGroup, namespaceName, wcfRelayName, authorizationRuleName, regenerateKeysParameters); + Assert.NotNull(regenerateKeysPrimaryResponse); + Assert.NotEqual(regenerateKeysPrimaryResponse.PrimaryKey, listKeysResponse.PrimaryKey); + Assert.Equal(regenerateKeysPrimaryResponse.SecondaryKey, listKeysResponse.SecondaryKey); + + regenerateKeysParameters.PolicyKey = PolicyKey.SecondaryKey; + + //Secondary Key + var regenerateKeysSecondaryResponse = RelayManagementClient.WCFRelays.RegenerateKeys(resourceGroup, namespaceName, wcfRelayName, authorizationRuleName, regenerateKeysParameters); + Assert.NotNull(regenerateKeysSecondaryResponse); + Assert.NotEqual(regenerateKeysSecondaryResponse.SecondaryKey, listKeysResponse.SecondaryKey); + Assert.Equal(regenerateKeysSecondaryResponse.PrimaryKey, regenerateKeysPrimaryResponse.PrimaryKey); + + // Delete WCFRelay authorizationRule + RelayManagementClient.WCFRelays.DeleteAuthorizationRule(resourceGroup, namespaceName, wcfRelayName, authorizationRuleName); + + try + { + RelayManagementClient.WCFRelays.Delete(resourceGroup, namespaceName, wcfRelayName); + } + catch (Exception ex) + { + Assert.True(ex.Message.Contains("NotFound")); + } + + try + { + // Delete namespace + RelayManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + catch (Exception ex) + { + Assert.True(ex.Message.Contains("NotFound")); + } + } + } + } +} diff --git a/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.cs b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.cs new file mode 100644 index 000000000000..dbda18d81085 --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/Tests/ScenarioTests.cs @@ -0,0 +1,68 @@ +// +// Copyright (c) Microsoft. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + + +namespace Relay.Tests.ScenarioTests +{ + using System.Net; + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Relay; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Relay.Tests.TestHelper; + + public partial class ScenarioTests + { + private ResourceManagementClient _resourceManagementClient; + private RelayManagementClient _relayManagementClient; + private RecordedDelegatingHandler handler = new RecordedDelegatingHandler(); + + protected bool m_initialized = false; + protected object m_lock = new object(); + public string Location { get; set; } + public string ResourceGroupName { get; set; } + public string NamespaceName { get; set; } + + + protected void InitializeClients(MockContext context) + { + if (!m_initialized) + { + lock (m_lock) + { + if (!m_initialized) + { + _resourceManagementClient = RelayManagementHelper.GetResourceManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + _relayManagementClient = RelayManagementHelper.GetRelayManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + } + } + } + } + + public ResourceManagementClient ResourceManagementClient + { + get + { + return _resourceManagementClient; + } + } + + public RelayManagementClient RelayManagementClient + { + get + { + return _relayManagementClient; + } + } + } +} diff --git a/src/ResourceManagement/Relay/Relay.Tests/project.json b/src/ResourceManagement/Relay/Relay.Tests/project.json new file mode 100644 index 000000000000..ac12eb033069 --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.Tests/project.json @@ -0,0 +1,40 @@ +{ + "version": "1.0.0-*", + "description": "Relay.Tests Class Library", + "authors": [ "Microsoft Corporation" ], + + "packOptions": { + "summary": "Microsoft Azure Relay Management Library Tests.", + "tags": [ "" ], + "projectUrl": "https://github.com/Azure/azure-sdk-for-net", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", + }, + + "buildOptions": { + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "compile": "../../../../tools/DisableTestRunParallel.cs" + }, + + "testRunner": "xunit", + "frameworks": { + "netcoreapp1.0": { + "imports": ["dnxcore50", "portable-net45+win8"], + "dependencies": { + } + } + }, + "dependencies": { + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0" + }, + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "1.6.0", + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Azure.Management.Relay": "0.0.1-preview", + "Microsoft.Azure.ResourceManager": "1.0.0-preview", + "xunit": "2.2.0-beta2-build3300", + "dotnet-test-xunit": "2.2.0-preview2-build1029" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Relay/Relay.sln b/src/ResourceManagement/Relay/Relay.sln new file mode 100644 index 000000000000..b6cf16d00fbe --- /dev/null +++ b/src/ResourceManagement/Relay/Relay.sln @@ -0,0 +1,58 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HttpRecorder", "..\..\TestFramework\Microsoft.Azure.Test.HttpRecorder\HttpRecorder.xproj", "{5D12D45A-E55F-410E-B8AF-9DC90E81B237}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "TestFramework", "..\..\TestFramework\Microsoft.Rest.ClientRuntime.Azure.TestFramework\TestFramework.xproj", "{C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime", "..\..\ClientRuntime\Microsoft.Rest.ClientRuntime\Microsoft.Rest.ClientRuntime.xproj", "{EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime.Azure", "..\..\ClientRuntime\Microsoft.Rest.ClientRuntime.Azure\Microsoft.Rest.ClientRuntime.Azure.xproj", "{D5296EAB-C13E-4A88-9532-BD0677D18EC9}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime.Azure.Authentication", "..\..\ClientRuntime\Microsoft.Rest.ClientRuntime.Azure.Authentication\Microsoft.Rest.ClientRuntime.Azure.Authentication.xproj", "{6319205D-BBFC-4150-BEAE-31B1C9B911DD}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Relay.Tests", "Relay.Tests\Relay.Tests.xproj", "{AFA0A1A6-7481-434E-889D-EEA52F5E489B}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Azure.Management.Relay", "Microsoft.Azure.Management.Relay\Microsoft.Azure.Management.Relay.xproj", "{C0E50B63-6F6E-4C3D-BAFE-139092D0B5FA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Release|Any CPU.Build.0 = Release|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.Build.0 = Release|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Release|Any CPU.Build.0 = Release|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Release|Any CPU.Build.0 = Release|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Release|Any CPU.Build.0 = Release|Any CPU + {AFA0A1A6-7481-434E-889D-EEA52F5E489B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AFA0A1A6-7481-434E-889D-EEA52F5E489B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AFA0A1A6-7481-434E-889D-EEA52F5E489B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AFA0A1A6-7481-434E-889D-EEA52F5E489B}.Release|Any CPU.Build.0 = Release|Any CPU + {C0E50B63-6F6E-4C3D-BAFE-139092D0B5FA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C0E50B63-6F6E-4C3D-BAFE-139092D0B5FA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C0E50B63-6F6E-4C3D-BAFE-139092D0B5FA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C0E50B63-6F6E-4C3D-BAFE-139092D0B5FA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/src/ResourceManagement/Relay/global.json b/src/ResourceManagement/Relay/global.json new file mode 100644 index 000000000000..d185b10e0c49 --- /dev/null +++ b/src/ResourceManagement/Relay/global.json @@ -0,0 +1,3 @@ +{ + "projects": [ "Microsoft.Azure.Management.Relay" ] +} \ No newline at end of file From 07cc2b38708d376c8840c571b317a2b67f2e92c9 Mon Sep 17 00:00:00 2001 From: Ching Chen Date: Tue, 4 Apr 2017 11:32:53 -0700 Subject: [PATCH 51/56] Add ServiceFabric SDK (#2903) * Add ServiceFabric SDK * update with latest swagger file * update sdk with latest Swagger * update test case * update with latest swagger file * fix build warning * fix swagger file path --- .../Generated/ClusterVersionsOperations.cs | 421 +++++ .../ClusterVersionsOperationsExtensions.cs | 99 + .../Generated/ClustersOperations.cs | 1588 +++++++++++++++++ .../Generated/ClustersOperationsExtensions.cs | 416 +++++ .../Generated/IClusterVersionsOperations.cs | 72 + .../Generated/IClustersOperations.cs | 276 +++ .../Generated/IOperations.cs | 64 + .../IServiceFabricManagementClient.cs | 82 + .../Models/ApplicationDeltaHealthPolicy.cs | 85 + .../Models/ApplicationHealthPolicy.cs | 87 + .../Models/AvailableOperationDisplay.cs | 72 + .../Generated/Models/AzureActiveDirectory.cs | 66 + .../Models/CertificateDescription.cs | 85 + .../Models/ClientCertificateCommonName.cs | 85 + .../Models/ClientCertificateThumbprint.cs | 74 + .../Generated/Models/Cluster.cs | 323 ++++ .../Models/ClusterCodeVersionsResult.cs | 95 + .../Generated/Models/ClusterHealthPolicy.cs | 117 ++ .../Models/ClusterUpdateParameters.cs | 218 +++ .../Models/ClusterUpgradeDeltaHealthPolicy.cs | 125 ++ .../Generated/Models/ClusterUpgradePolicy.cs | 181 ++ .../Generated/Models/ClusterVersionDetails.cs | 68 + .../Models/DiagnosticsStorageAccountConfig.cs | 117 ++ .../Models/EndpointRangeDescription.cs | 66 + .../Generated/Models/ErrorModel.cs | 48 + .../Generated/Models/ErrorModelError.cs | 56 + .../Generated/Models/ErrorModelException.cs | 95 + .../Generated/Models/NodeTypeDescription.cs | 176 ++ .../Generated/Models/OperationResult.cs | 73 + .../Generated/Models/Page.cs | 50 + .../Generated/Models/ProvisioningState.cs | 21 + .../Generated/Models/Resource.cs | 97 + .../Models/ServiceTypeDeltaHealthPolicy.cs | 69 + .../Models/ServiceTypeHealthPolicy.cs | 70 + .../Models/SettingsParameterDescription.cs | 76 + .../Models/SettingsSectionDescription.cs | 89 + .../Generated/Operations.cs | 386 ++++ .../Generated/OperationsExtensions.cs | 83 + .../ServiceFabricManagementClient.cs | 324 ++++ ...osoft.Azure.Management.ServiceFabric.xproj | 21 + .../Properties/AssemblyInfo.cs | 29 + .../generate.cmd | 17 + .../project.json | 61 + .../ServiceFabric.Tests.xproj | 21 + .../TestCreate.json | 395 ++++ .../TestDelete.json | 431 +++++ .../TestGet.json | 238 +++ .../TestList.json | 70 + .../TestListByResourceGroup.json | 183 ++ .../TestList.json | 138 ++ .../TestUpdate.json | 318 ++++ .../TestHelper/RecordedDelegatingHandler.cs | 91 + .../Tests/ServiceFabricTestBase.cs | 118 ++ .../Tests/TestCreateClusterResource.cs | 48 + .../Tests/TestDeleteClusterResource.cs | 48 + .../Tests/TestGetClusterResource.cs | 53 + .../Tests/TestListClusterResource.cs | 62 + .../Tests/TestListClusterVersions.cs | 36 + .../Tests/TestUpdateClusterResource.cs | 74 + .../ServiceFabric.Test/project.json | 41 + .../ServiceFabric/ServiceFabric.sln | 28 + 61 files changed, 9116 insertions(+) create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperations.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperationsExtensions.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperations.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperationsExtensions.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusterVersionsOperations.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClustersOperations.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IOperations.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricManagementClient.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationDeltaHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AvailableOperationDisplay.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AzureActiveDirectory.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterCodeVersionsResult.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeDeltaHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradePolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelException.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/OperationResult.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Page.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ProvisioningState.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeDeltaHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Operations.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/OperationsExtensions.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricManagementClient.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Microsoft.Azure.Management.ServiceFabric.xproj create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/generate.cmd create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/project.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/ServiceFabric.Tests.xproj create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterVersions/TestList.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/TestHelper/RecordedDelegatingHandler.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestDeleteClusterResource.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestGetClusterResource.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterResource.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterVersions.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/project.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.sln diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperations.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperations.cs new file mode 100644 index 000000000000..74f22734e8c7 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperations.cs @@ -0,0 +1,421 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + 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; + + /// + /// ClusterVersionsOperations operations. + /// + internal partial class ClusterVersionsOperations : IServiceOperations, IClusterVersionsOperations + { + /// + /// Initializes a new instance of the ClusterVersionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ClusterVersionsOperations(ServiceFabricManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ServiceFabricManagementClient + /// + public ServiceFabricManagementClient Client { get; private set; } + + /// + /// List cluster code versions by location + /// + /// + /// The location for the cluster code versions, this is different from cluster + /// location + /// + /// + /// Cluster operating system, the default means all. Possible values include: + /// 'Default', 'Windows', 'Linux' + /// + /// + /// 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 location, string environment, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (environment == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "environment"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("environment", environment); + 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.ServiceFabric/locations/{location}/environments/{environment}/clusterVersions").ToString(); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{environment}", System.Uri.EscapeDataString(environment)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.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; + } + + /// + /// List cluster code versions by location + /// + /// + /// 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/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperationsExtensions.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperationsExtensions.cs new file mode 100644 index 000000000000..ddd408acfbeb --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperationsExtensions.cs @@ -0,0 +1,99 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + 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 ClusterVersionsOperations. + /// + public static partial class ClusterVersionsOperationsExtensions + { + /// + /// List cluster code versions by location + /// + /// + /// The operations group for this extension method. + /// + /// + /// The location for the cluster code versions, this is different from cluster + /// location + /// + /// + /// Cluster operating system, the default means all. Possible values include: + /// 'Default', 'Windows', 'Linux' + /// + public static IPage List(this IClusterVersionsOperations operations, string location, string environment) + { + return operations.ListAsync(location, environment).GetAwaiter().GetResult(); + } + + /// + /// List cluster code versions by location + /// + /// + /// The operations group for this extension method. + /// + /// + /// The location for the cluster code versions, this is different from cluster + /// location + /// + /// + /// Cluster operating system, the default means all. Possible values include: + /// 'Default', 'Windows', 'Linux' + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IClusterVersionsOperations operations, string location, string environment, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(location, environment, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List cluster code versions by location + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IClusterVersionsOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List cluster code versions by location + /// + /// + /// 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 IClusterVersionsOperations 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/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperations.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperations.cs new file mode 100644 index 000000000000..d5450c005270 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperations.cs @@ -0,0 +1,1588 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + 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; + + /// + /// ClustersOperations operations. + /// + internal partial class ClustersOperations : IServiceOperations, IClustersOperations + { + /// + /// Initializes a new instance of the ClustersOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ClustersOperations(ServiceFabricManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ServiceFabricManagementClient + /// + public ServiceFabricManagementClient Client { get; private set; } + + /// + /// Update cluster configuration + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name which + /// used to update the cluster configuration + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterUpdateParameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Get cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// 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 clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + 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.ServiceFabric/clusters/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.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 ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Create cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterResource, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterResource, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", 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.ServiceFabric/clusters/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.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 != 200 && (int)_statusCode != 204) + { + var ex = new ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// List cluster resource by resource group + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", 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.ServiceFabric/clusters").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.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; + } + + /// + /// List cluster resource + /// + /// + /// 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(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + 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.ServiceFabric/clusters").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.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; + } + + /// + /// Update cluster configuration + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name which + /// used to update the cluster 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> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (clusterUpdateParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterUpdateParameters"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("clusterUpdateParameters", clusterUpdateParameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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.ServiceFabric/clusters/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.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("PATCH"); + _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(clusterUpdateParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(clusterUpdateParameters, 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 != 200 && (int)_statusCode != 202) + { + var ex = new ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Create cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + /// + /// 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> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterResource, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (clusterResource == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterResource"); + } + if (clusterResource != null) + { + clusterResource.Validate(); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("clusterResource", clusterResource); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", 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.ServiceFabric/clusters/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.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(clusterResource != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(clusterResource, 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 != 200 && (int)_statusCode != 202) + { + var ex = new ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// List cluster resource by resource 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>> ListByResourceGroupNextWithHttpMessagesAsync(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, "ListByResourceGroupNext", 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; + } + + /// + /// List cluster resource + /// + /// + /// 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/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperationsExtensions.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperationsExtensions.cs new file mode 100644 index 000000000000..d075249d8a45 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperationsExtensions.cs @@ -0,0 +1,416 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + 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 ClustersOperations. + /// + public static partial class ClustersOperationsExtensions + { + /// + /// Update cluster configuration + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name which + /// used to update the cluster configuration + /// + public static Cluster Update(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters) + { + return operations.UpdateAsync(resourceGroupName, clusterName, clusterUpdateParameters).GetAwaiter().GetResult(); + } + + /// + /// Update cluster configuration + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name which + /// used to update the cluster configuration + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterUpdateParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + public static Cluster Get(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + return operations.GetAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Get cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + public static Cluster Create(this IClustersOperations operations, string resourceGroupName, string clusterName, Cluster clusterResource) + { + return operations.CreateAsync(resourceGroupName, clusterName, clusterResource).GetAwaiter().GetResult(); + } + + /// + /// Create cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + /// + /// The cancellation token. + /// + public static async Task CreateAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, Cluster clusterResource, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterResource, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + public static void Delete(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + operations.DeleteAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Delete cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// List cluster resource by resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + public static IPage ListByResourceGroup(this IClustersOperations operations, string resourceGroupName) + { + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + } + + /// + /// List cluster resource by resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IClustersOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List cluster resource + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this IClustersOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// List cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IClustersOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update cluster configuration + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name which + /// used to update the cluster configuration + /// + public static Cluster BeginUpdate(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters) + { + return operations.BeginUpdateAsync(resourceGroupName, clusterName, clusterUpdateParameters).GetAwaiter().GetResult(); + } + + /// + /// Update cluster configuration + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name which + /// used to update the cluster configuration + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterUpdateParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + public static Cluster BeginCreate(this IClustersOperations operations, string resourceGroupName, string clusterName, Cluster clusterResource) + { + return operations.BeginCreateAsync(resourceGroupName, clusterName, clusterResource).GetAwaiter().GetResult(); + } + + /// + /// Create cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, Cluster clusterResource, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterResource, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List cluster resource by resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByResourceGroupNext(this IClustersOperations operations, string nextPageLink) + { + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List cluster resource by resource 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> ListByResourceGroupNextAsync(this IClustersOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IClustersOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List cluster resource + /// + /// + /// 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 IClustersOperations 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/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusterVersionsOperations.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusterVersionsOperations.cs new file mode 100644 index 000000000000..a6b485462597 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusterVersionsOperations.cs @@ -0,0 +1,72 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + 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; + + /// + /// ClusterVersionsOperations operations. + /// + public partial interface IClusterVersionsOperations + { + /// + /// List cluster code versions by location + /// + /// + /// The location for the cluster code versions, this is different from + /// cluster location + /// + /// + /// Cluster operating system, the default means all. Possible values + /// include: 'Default', 'Windows', 'Linux' + /// + /// + /// 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 location, string environment, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List cluster code versions by location + /// + /// + /// 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/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClustersOperations.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClustersOperations.cs new file mode 100644 index 000000000000..b5bad3a739ad --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClustersOperations.cs @@ -0,0 +1,276 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + 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; + + /// + /// ClustersOperations operations. + /// + public partial interface IClustersOperations + { + /// + /// Update cluster configuration + /// + /// + /// The name of the resource group to which the resource belongs or get + /// created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name + /// which used to update the cluster 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get + /// created + /// + /// + /// The name of the cluster resource + /// + /// + /// 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 clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get + /// created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + /// + /// 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> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterResource, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get + /// created + /// + /// + /// The name of the cluster resource + /// + /// + /// 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 clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List cluster resource by resource group + /// + /// + /// The name of the resource group to which the resource belongs or get + /// created + /// + /// + /// 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List cluster resource + /// + /// + /// 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(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update cluster configuration + /// + /// + /// The name of the resource group to which the resource belongs or get + /// created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name + /// which used to update the cluster 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> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get + /// created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + /// + /// 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> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterResource, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List cluster resource by resource 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>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List cluster resource + /// + /// + /// 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/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IOperations.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IOperations.cs new file mode 100644 index 000000000000..9160f6a4d255 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IOperations.cs @@ -0,0 +1,64 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + 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; + + /// + /// Operations operations. + /// + public partial interface IOperations + { + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// 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(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// 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/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricManagementClient.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricManagementClient.cs new file mode 100644 index 000000000000..84afed505f60 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricManagementClient.cs @@ -0,0 +1,82 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + + /// + /// + public partial interface IServiceFabricManagementClient : System.IDisposable + { + /// + /// The base URI of the service. + /// + System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + JsonSerializerSettings SerializationSettings { get; } + + /// + /// Gets or sets json deserialization settings. + /// + JsonSerializerSettings DeserializationSettings { get; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + ServiceClientCredentials Credentials { get; } + + /// + /// The customer subscription identifier + /// + string SubscriptionId { get; set; } + + /// + /// The version of the ServiceFabric resouce provider api + /// + string ApiVersion { get; } + + /// + /// Gets or sets the preferred language for the response. + /// + string AcceptLanguage { get; set; } + + /// + /// Gets or sets the retry timeout in seconds for Long Running + /// Operations. Default value is 30. + /// + int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// When set to true a unique x-ms-client-request-id value is generated + /// and included in each request. Default is true. + /// + bool? GenerateClientRequestId { get; set; } + + + /// + /// Gets the IClustersOperations. + /// + IClustersOperations Clusters { get; } + + /// + /// Gets the IClusterVersionsOperations. + /// + IClusterVersionsOperations ClusterVersions { get; } + + /// + /// Gets the IOperations. + /// + IOperations Operations { get; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationDeltaHealthPolicy.cs new file mode 100644 index 000000000000..edab554b9a5b --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationDeltaHealthPolicy.cs @@ -0,0 +1,85 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Application health policy + /// + public partial class ApplicationDeltaHealthPolicy + { + /// + /// Initializes a new instance of the ApplicationDeltaHealthPolicy + /// class. + /// + public ApplicationDeltaHealthPolicy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ApplicationDeltaHealthPolicy + /// class. + /// + /// Delta health + /// policy for default services + /// Health policy for + /// additional service + public ApplicationDeltaHealthPolicy(ServiceTypeDeltaHealthPolicy defaultServiceTypeDeltaHealthPolicy = default(ServiceTypeDeltaHealthPolicy), IDictionary serivceTypeDeltaHealthPolicies = default(IDictionary)) + { + DefaultServiceTypeDeltaHealthPolicy = defaultServiceTypeDeltaHealthPolicy; + SerivceTypeDeltaHealthPolicies = serivceTypeDeltaHealthPolicies; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets delta health policy for default services + /// + [JsonProperty(PropertyName = "defaultServiceTypeDeltaHealthPolicy")] + public ServiceTypeDeltaHealthPolicy DefaultServiceTypeDeltaHealthPolicy { get; set; } + + /// + /// Gets or sets health policy for additional service + /// + [JsonProperty(PropertyName = "serivceTypeDeltaHealthPolicies")] + public IDictionary SerivceTypeDeltaHealthPolicies { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (DefaultServiceTypeDeltaHealthPolicy != null) + { + DefaultServiceTypeDeltaHealthPolicy.Validate(); + } + if (SerivceTypeDeltaHealthPolicies != null) + { + foreach (var valueElement in SerivceTypeDeltaHealthPolicies.Values) + { + if (valueElement != null) + { + valueElement.Validate(); + } + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationHealthPolicy.cs new file mode 100644 index 000000000000..276d35880b5d --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationHealthPolicy.cs @@ -0,0 +1,87 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Defines a health policy used to evaluate the health of an application + /// or one of its children entities. + /// + public partial class ApplicationHealthPolicy + { + /// + /// Initializes a new instance of the ApplicationHealthPolicy class. + /// + public ApplicationHealthPolicy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ApplicationHealthPolicy class. + /// + /// the health policy used + /// by default to evaluate the health of a service type. + /// Defines a + /// ServiceTypeHealthPolicy per service type name,the key is the name + /// of the application + public ApplicationHealthPolicy(ServiceTypeHealthPolicy defaultServiceTypeHealthPolicy = default(ServiceTypeHealthPolicy), IDictionary serivceTypeHealthPolicies = default(IDictionary)) + { + DefaultServiceTypeHealthPolicy = defaultServiceTypeHealthPolicy; + SerivceTypeHealthPolicies = serivceTypeHealthPolicies; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the health policy used by default to evaluate the + /// health of a service type. + /// + [JsonProperty(PropertyName = "defaultServiceTypeHealthPolicy")] + public ServiceTypeHealthPolicy DefaultServiceTypeHealthPolicy { get; set; } + + /// + /// Gets or sets Defines a ServiceTypeHealthPolicy per service type + /// name,the key is the name of the application + /// + [JsonProperty(PropertyName = "serivceTypeHealthPolicies")] + public IDictionary SerivceTypeHealthPolicies { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (DefaultServiceTypeHealthPolicy != null) + { + DefaultServiceTypeHealthPolicy.Validate(); + } + if (SerivceTypeHealthPolicies != null) + { + foreach (var valueElement in SerivceTypeHealthPolicies.Values) + { + if (valueElement != null) + { + valueElement.Validate(); + } + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AvailableOperationDisplay.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AvailableOperationDisplay.cs new file mode 100644 index 000000000000..54adc96ff19b --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AvailableOperationDisplay.cs @@ -0,0 +1,72 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Operation supported by ServiceFabric resource provider + /// + public partial class AvailableOperationDisplay + { + /// + /// Initializes a new instance of the AvailableOperationDisplay class. + /// + public AvailableOperationDisplay() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AvailableOperationDisplay class. + /// + /// Provider name + /// Resource name + /// Operation name + /// Operation description + public AvailableOperationDisplay(string provider = default(string), string resource = default(string), string operation = default(string), string description = default(string)) + { + Provider = provider; + Resource = resource; + Operation = operation; + Description = description; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets provider name + /// + [JsonProperty(PropertyName = "provider")] + public string Provider { get; set; } + + /// + /// Gets or sets resource name + /// + [JsonProperty(PropertyName = "resource")] + public string Resource { get; set; } + + /// + /// Gets or sets operation name + /// + [JsonProperty(PropertyName = "operation")] + public string Operation { get; set; } + + /// + /// Gets or sets operation description + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AzureActiveDirectory.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AzureActiveDirectory.cs new file mode 100644 index 000000000000..1713e52ec6b5 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AzureActiveDirectory.cs @@ -0,0 +1,66 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The settings to enable AAD authentication on the cluster + /// + public partial class AzureActiveDirectory + { + /// + /// Initializes a new instance of the AzureActiveDirectory class. + /// + public AzureActiveDirectory() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AzureActiveDirectory class. + /// + /// Azure active directory tenant id + /// Azure active directory cluster + /// application id + /// Azure active directory client + /// application id + public AzureActiveDirectory(string tenantId = default(string), string clusterApplication = default(string), string clientApplication = default(string)) + { + TenantId = tenantId; + ClusterApplication = clusterApplication; + ClientApplication = clientApplication; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets azure active directory tenant id + /// + [JsonProperty(PropertyName = "tenantId")] + public string TenantId { get; set; } + + /// + /// Gets or sets azure active directory cluster application id + /// + [JsonProperty(PropertyName = "clusterApplication")] + public string ClusterApplication { get; set; } + + /// + /// Gets or sets azure active directory client application id + /// + [JsonProperty(PropertyName = "clientApplication")] + public string ClientApplication { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs new file mode 100644 index 000000000000..b72502b9c79c --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs @@ -0,0 +1,85 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Certificate details + /// + public partial class CertificateDescription + { + /// + /// Initializes a new instance of the CertificateDescription class. + /// + public CertificateDescription() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CertificateDescription class. + /// + /// Thumbprint of the primary + /// certificate + /// Thumbprint of the secondary + /// certificate + /// The local certificate store location. + /// Possible values include: 'AddressBook', 'AuthRoot', + /// 'CertificateAuthority', 'Disallowed', 'My', 'Root', + /// 'TrustedPeople', 'TrustedPublisher' + public CertificateDescription(string thumbprint, string thumbprintSecondary = default(string), string x509StoreName = default(string)) + { + Thumbprint = thumbprint; + ThumbprintSecondary = thumbprintSecondary; + X509StoreName = x509StoreName; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets thumbprint of the primary certificate + /// + [JsonProperty(PropertyName = "thumbprint")] + public string Thumbprint { get; set; } + + /// + /// Gets or sets thumbprint of the secondary certificate + /// + [JsonProperty(PropertyName = "thumbprintSecondary")] + public string ThumbprintSecondary { get; set; } + + /// + /// Gets or sets the local certificate store location. Possible values + /// include: 'AddressBook', 'AuthRoot', 'CertificateAuthority', + /// 'Disallowed', 'My', 'Root', 'TrustedPeople', 'TrustedPublisher' + /// + [JsonProperty(PropertyName = "x509StoreName")] + public string X509StoreName { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Thumbprint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Thumbprint"); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs new file mode 100644 index 000000000000..3e9b2a115610 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs @@ -0,0 +1,85 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Client certificate details using common name + /// + public partial class ClientCertificateCommonName + { + /// + /// Initializes a new instance of the ClientCertificateCommonName + /// class. + /// + public ClientCertificateCommonName() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClientCertificateCommonName + /// class. + /// + /// Is this certificate used for admin access + /// from the client, if false , it is used or query only access + /// Certificate common name to be + /// granted access; be carefull using wild card common names + /// Certificate issuer + /// thumbprint + public ClientCertificateCommonName(bool isAdmin, string certificateCommonName, string certificateIssuerThumbprint = default(string)) + { + IsAdmin = isAdmin; + CertificateCommonName = certificateCommonName; + CertificateIssuerThumbprint = certificateIssuerThumbprint; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets is this certificate used for admin access from the + /// client, if false , it is used or query only access + /// + [JsonProperty(PropertyName = "isAdmin")] + public bool IsAdmin { get; set; } + + /// + /// Gets or sets certificate common name to be granted access; be + /// carefull using wild card common names + /// + [JsonProperty(PropertyName = "certificateCommonName")] + public string CertificateCommonName { get; set; } + + /// + /// Gets or sets certificate issuer thumbprint + /// + [JsonProperty(PropertyName = "certificateIssuerThumbprint")] + public string CertificateIssuerThumbprint { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (CertificateCommonName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "CertificateCommonName"); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs new file mode 100644 index 000000000000..41247b850678 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs @@ -0,0 +1,74 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Client certificate details using thumbprint + /// + public partial class ClientCertificateThumbprint + { + /// + /// Initializes a new instance of the ClientCertificateThumbprint + /// class. + /// + public ClientCertificateThumbprint() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClientCertificateThumbprint + /// class. + /// + /// Is this certificate used for admin access + /// from the client, if false, it is used or query only access + /// Certificate thumbprint + public ClientCertificateThumbprint(bool isAdmin, string certificateThumbprint) + { + IsAdmin = isAdmin; + CertificateThumbprint = certificateThumbprint; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets is this certificate used for admin access from the + /// client, if false, it is used or query only access + /// + [JsonProperty(PropertyName = "isAdmin")] + public bool IsAdmin { get; set; } + + /// + /// Gets or sets certificate thumbprint + /// + [JsonProperty(PropertyName = "certificateThumbprint")] + public string CertificateThumbprint { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (CertificateThumbprint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "CertificateThumbprint"); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs new file mode 100644 index 000000000000..e2fd78907ba5 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs @@ -0,0 +1,323 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The cluster resource + /// + [Rest.Serialization.JsonTransformation] + public partial class Cluster : Resource + { + /// + /// Initializes a new instance of the Cluster class. + /// + public Cluster() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Cluster class. + /// + /// Resource location. + /// The http management endpoint of + /// the cluster + /// The list of nodetypes that make up the + /// cluster + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags. + /// The available cluster code + /// version which the cluster can upgrade to, note that you must choose + /// upgradeMode to manual to upgrade to + /// The unique identifier for the cluster + /// resource + /// The state for the cluster. Possible + /// values include: 'WaitingForNodes', 'Deploying', 'BaselineUpgrade', + /// 'UpdatingUserConfiguration', 'UpdatingUserCertificate', + /// 'UpdatingInfrastructure', 'EnforcingClusterVersion', + /// 'UpgradeServiceUnreachable', 'AutoScale', 'Ready' + /// The endpoint for the cluster + /// connecting to servicefabric resource provider + /// The ServiceFabric code version + /// running in your cluster + /// This primay certificate will be used as + /// cluster node to node security, SSL certificate for cluster + /// management endpoint and default admin client + /// Cluster reliability level indicates + /// replica set size of system service. Possible values include: + /// 'Bronze', 'Silver', 'Gold', 'Platinum' + /// Cluster upgrade mode indicates if fabric + /// upgrade is initiated automatically by the system or not. Possible + /// values include: 'Automatic', 'Manual' + /// The client thumbprint + /// details ,it is used for client access for cluster operation + /// List of client + /// certificates to whitelist based on common names + /// List of custom fabric settings to + /// configure the cluster. + /// The server certificate used + /// by reverse proxy + /// The settings to enable AAD + /// authentication on the cluster + /// The provisioning state of the + /// cluster resource. Possible values include: 'Updating', 'Succeeded', + /// 'Failed', 'Canceled' + /// The name of VM image VMSS has been configured + /// with. Generic names such as Windows or Linux can be used. + /// The storage + /// diagnostics account configuration details + /// The policy to use when upgrading + /// the cluster. + public Cluster(string location, string managementEndpoint, IList nodeTypes, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList availableClusterVersions = default(IList), string clusterId = default(string), string clusterState = default(string), string clusterEndpoint = default(string), string clusterCodeVersion = default(string), CertificateDescription certificate = default(CertificateDescription), string reliabilityLevel = default(string), string upgradeMode = default(string), IList clientCertificateThumbprints = default(IList), IList clientCertificateCommonNames = default(IList), IList fabricSettings = default(IList), CertificateDescription reverseProxyCertificate = default(CertificateDescription), AzureActiveDirectory azureActiveDirectory = default(AzureActiveDirectory), string provisioningState = default(string), string vmImage = default(string), DiagnosticsStorageAccountConfig diagnosticsStorageAccountConfig = default(DiagnosticsStorageAccountConfig), ClusterUpgradePolicy upgradeDescription = default(ClusterUpgradePolicy)) + : base(location, id, name, type, tags) + { + AvailableClusterVersions = availableClusterVersions; + ClusterId = clusterId; + ClusterState = clusterState; + ClusterEndpoint = clusterEndpoint; + ClusterCodeVersion = clusterCodeVersion; + Certificate = certificate; + ReliabilityLevel = reliabilityLevel; + UpgradeMode = upgradeMode; + ClientCertificateThumbprints = clientCertificateThumbprints; + ClientCertificateCommonNames = clientCertificateCommonNames; + FabricSettings = fabricSettings; + ReverseProxyCertificate = reverseProxyCertificate; + ManagementEndpoint = managementEndpoint; + NodeTypes = nodeTypes; + AzureActiveDirectory = azureActiveDirectory; + ProvisioningState = provisioningState; + VmImage = vmImage; + DiagnosticsStorageAccountConfig = diagnosticsStorageAccountConfig; + UpgradeDescription = upgradeDescription; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the available cluster code version which the cluster can + /// upgrade to, note that you must choose upgradeMode to manual to + /// upgrade to + /// + [JsonProperty(PropertyName = "properties.availableClusterVersions")] + public IList AvailableClusterVersions { get; private set; } + + /// + /// Gets the unique identifier for the cluster resource + /// + [JsonProperty(PropertyName = "properties.clusterId")] + public string ClusterId { get; private set; } + + /// + /// Gets the state for the cluster. Possible values include: + /// 'WaitingForNodes', 'Deploying', 'BaselineUpgrade', + /// 'UpdatingUserConfiguration', 'UpdatingUserCertificate', + /// 'UpdatingInfrastructure', 'EnforcingClusterVersion', + /// 'UpgradeServiceUnreachable', 'AutoScale', 'Ready' + /// + [JsonProperty(PropertyName = "properties.clusterState")] + public string ClusterState { get; private set; } + + /// + /// Gets the endpoint for the cluster connecting to servicefabric + /// resource provider + /// + [JsonProperty(PropertyName = "properties.clusterEndpoint")] + public string ClusterEndpoint { get; private set; } + + /// + /// Gets or sets the ServiceFabric code version running in your cluster + /// + [JsonProperty(PropertyName = "properties.clusterCodeVersion")] + public string ClusterCodeVersion { get; set; } + + /// + /// Gets or sets this primay certificate will be used as cluster node + /// to node security, SSL certificate for cluster management endpoint + /// and default admin client + /// + [JsonProperty(PropertyName = "properties.certificate")] + public CertificateDescription Certificate { get; set; } + + /// + /// Gets or sets cluster reliability level indicates replica set size + /// of system service. Possible values include: 'Bronze', 'Silver', + /// 'Gold', 'Platinum' + /// + [JsonProperty(PropertyName = "properties.reliabilityLevel")] + public string ReliabilityLevel { get; set; } + + /// + /// Gets or sets cluster upgrade mode indicates if fabric upgrade is + /// initiated automatically by the system or not. Possible values + /// include: 'Automatic', 'Manual' + /// + [JsonProperty(PropertyName = "properties.upgradeMode")] + public string UpgradeMode { get; set; } + + /// + /// Gets or sets the client thumbprint details ,it is used for client + /// access for cluster operation + /// + [JsonProperty(PropertyName = "properties.clientCertificateThumbprints")] + public IList ClientCertificateThumbprints { get; set; } + + /// + /// Gets or sets List of client certificates to whitelist based on + /// common names + /// + [JsonProperty(PropertyName = "properties.clientCertificateCommonNames")] + public IList ClientCertificateCommonNames { get; set; } + + /// + /// Gets or sets list of custom fabric settings to configure the + /// cluster. + /// + [JsonProperty(PropertyName = "properties.fabricSettings")] + public IList FabricSettings { get; set; } + + /// + /// Gets or sets the server certificate used by reverse proxy + /// + [JsonProperty(PropertyName = "properties.reverseProxyCertificate")] + public CertificateDescription ReverseProxyCertificate { get; set; } + + /// + /// Gets or sets the http management endpoint of the cluster + /// + [JsonProperty(PropertyName = "properties.managementEndpoint")] + public string ManagementEndpoint { get; set; } + + /// + /// Gets or sets the list of nodetypes that make up the cluster + /// + [JsonProperty(PropertyName = "properties.nodeTypes")] + public IList NodeTypes { get; set; } + + /// + /// Gets or sets the settings to enable AAD authentication on the + /// cluster + /// + [JsonProperty(PropertyName = "properties.azureActiveDirectory")] + public AzureActiveDirectory AzureActiveDirectory { get; set; } + + /// + /// Gets the provisioning state of the cluster resource. Possible + /// values include: 'Updating', 'Succeeded', 'Failed', 'Canceled' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets or sets the name of VM image VMSS has been configured with. + /// Generic names such as Windows or Linux can be used. + /// + [JsonProperty(PropertyName = "properties.vmImage")] + public string VmImage { get; set; } + + /// + /// Gets or sets the storage diagnostics account configuration details + /// + [JsonProperty(PropertyName = "properties.diagnosticsStorageAccountConfig")] + public DiagnosticsStorageAccountConfig DiagnosticsStorageAccountConfig { get; set; } + + /// + /// Gets or sets the policy to use when upgrading the cluster. + /// + [JsonProperty(PropertyName = "properties.upgradeDescription")] + public ClusterUpgradePolicy UpgradeDescription { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (ManagementEndpoint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ManagementEndpoint"); + } + if (NodeTypes == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "NodeTypes"); + } + if (Certificate != null) + { + Certificate.Validate(); + } + if (ClientCertificateThumbprints != null) + { + foreach (var element in ClientCertificateThumbprints) + { + if (element != null) + { + element.Validate(); + } + } + } + if (ClientCertificateCommonNames != null) + { + foreach (var element1 in ClientCertificateCommonNames) + { + if (element1 != null) + { + element1.Validate(); + } + } + } + if (FabricSettings != null) + { + foreach (var element2 in FabricSettings) + { + if (element2 != null) + { + element2.Validate(); + } + } + } + if (ReverseProxyCertificate != null) + { + ReverseProxyCertificate.Validate(); + } + if (NodeTypes != null) + { + foreach (var element3 in NodeTypes) + { + if (element3 != null) + { + element3.Validate(); + } + } + } + if (DiagnosticsStorageAccountConfig != null) + { + DiagnosticsStorageAccountConfig.Validate(); + } + if (UpgradeDescription != null) + { + UpgradeDescription.Validate(); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterCodeVersionsResult.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterCodeVersionsResult.cs new file mode 100644 index 000000000000..618298152db7 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterCodeVersionsResult.cs @@ -0,0 +1,95 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The result of the ServiceFabric runtime versions + /// + [Rest.Serialization.JsonTransformation] + public partial class ClusterCodeVersionsResult + { + /// + /// Initializes a new instance of the ClusterCodeVersionsResult class. + /// + public ClusterCodeVersionsResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterCodeVersionsResult class. + /// + /// The identification of the result + /// The name of the result + /// The result resource type + /// The ServiceFabric runtime version of the + /// cluster + /// The date of expiry of support of the + /// version + /// Cluster operating system. Possible values + /// include: 'Windows', 'Linux' + public ClusterCodeVersionsResult(string id = default(string), string name = default(string), string type = default(string), string codeVersion = default(string), string supportExpiryUtc = default(string), string environment = default(string)) + { + Id = id; + Name = name; + Type = type; + CodeVersion = codeVersion; + SupportExpiryUtc = supportExpiryUtc; + Environment = environment; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the identification of the result + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets the name of the result + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the result resource type + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Gets or sets the ServiceFabric runtime version of the cluster + /// + [JsonProperty(PropertyName = "properties.codeVersion")] + public string CodeVersion { get; set; } + + /// + /// Gets or sets the date of expiry of support of the version + /// + [JsonProperty(PropertyName = "properties.supportExpiryUtc")] + public string SupportExpiryUtc { get; set; } + + /// + /// Gets or sets cluster operating system. Possible values include: + /// 'Windows', 'Linux' + /// + [JsonProperty(PropertyName = "properties.environment")] + public string Environment { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterHealthPolicy.cs new file mode 100644 index 000000000000..1f2f9b5f6eb8 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterHealthPolicy.cs @@ -0,0 +1,117 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Defines a health policy used to evaluate the health of the cluster or + /// of a cluster node. + /// + public partial class ClusterHealthPolicy + { + /// + /// Initializes a new instance of the ClusterHealthPolicy class. + /// + public ClusterHealthPolicy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterHealthPolicy class. + /// + /// The maximum allowed + /// percentage of unhealthy nodes before reporting an error. For + /// example, to allow 10% of nodes to be unhealthy, this value would be + /// 10. + /// The maximum allowed + /// percentage of unhealthy applications before reporting an error. For + /// example, to allow 10% of applications to be unhealthy, this value + /// would be 10. + /// Defines a map with max + /// percentage unhealthy applications for specific application + /// types,key is the name of the application type + public ClusterHealthPolicy(int? maxPercentUnhealthyNodes = default(int?), int? maxPercentUnhealthyApplications = default(int?), IDictionary applicationHealthPolicies = default(IDictionary)) + { + MaxPercentUnhealthyNodes = maxPercentUnhealthyNodes; + MaxPercentUnhealthyApplications = maxPercentUnhealthyApplications; + ApplicationHealthPolicies = applicationHealthPolicies; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the maximum allowed percentage of unhealthy nodes + /// before reporting an error. For example, to allow 10% of nodes to be + /// unhealthy, this value would be 10. + /// + [JsonProperty(PropertyName = "maxPercentUnhealthyNodes")] + public int? MaxPercentUnhealthyNodes { get; set; } + + /// + /// Gets or sets the maximum allowed percentage of unhealthy + /// applications before reporting an error. For example, to allow 10% + /// of applications to be unhealthy, this value would be 10. + /// + [JsonProperty(PropertyName = "maxPercentUnhealthyApplications")] + public int? MaxPercentUnhealthyApplications { get; set; } + + /// + /// Gets or sets defines a map with max percentage unhealthy + /// applications for specific application types,key is the name of the + /// application type + /// + [JsonProperty(PropertyName = "applicationHealthPolicies")] + public IDictionary ApplicationHealthPolicies { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MaxPercentUnhealthyNodes > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxPercentUnhealthyNodes", 100); + } + if (MaxPercentUnhealthyNodes < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxPercentUnhealthyNodes", 0); + } + if (MaxPercentUnhealthyApplications > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxPercentUnhealthyApplications", 100); + } + if (MaxPercentUnhealthyApplications < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxPercentUnhealthyApplications", 0); + } + if (ApplicationHealthPolicies != null) + { + foreach (var valueElement in ApplicationHealthPolicies.Values) + { + if (valueElement != null) + { + valueElement.Validate(); + } + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs new file mode 100644 index 000000000000..691cd205da5a --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs @@ -0,0 +1,218 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Cluster update request + /// + [Rest.Serialization.JsonTransformation] + public partial class ClusterUpdateParameters + { + /// + /// Initializes a new instance of the ClusterUpdateParameters class. + /// + public ClusterUpdateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterUpdateParameters class. + /// + /// This level is used to set the number + /// of replicas of the system services. Possible values include: + /// 'Bronze', 'Silver', 'Gold' + /// Cluster upgrade mode indicates if fabric + /// upgrade is initiated automatically by the system or not. Possible + /// values include: 'Automatic', 'Manual' + /// The ServiceFabric code version, if + /// set it, please make sure you have set upgradeMode to Manual, + /// otherwise ,it will fail, if you are using PUT new cluster, you can + /// get the version by using ClusterVersions_List, if you are updating + /// existing cluster, you can get the availableClusterVersions from + /// Clusters_Get + /// This primay certificate will be used as + /// cluster node to node security, SSL certificate for cluster + /// management endpoint and default admin client, the certificate + /// should exist in the virtual machine scale sets or Azure key vault, + /// before you add it. It will override original value + /// The client thumbprint + /// details, it is used for client access for cluster operation, it + /// will override existing collection + /// List of client + /// certificates to whitelist based on common names. + /// List of custom fabric settings to + /// configure the cluster, Note, it will overwrite existing + /// collection + /// Certificate for the reverse + /// proxy + /// The list of nodetypes that make up the + /// cluster, it will override + /// Cluster update parameters + public ClusterUpdateParameters(string reliabilityLevel = default(string), string upgradeMode = default(string), string clusterCodeVersion = default(string), CertificateDescription certificate = default(CertificateDescription), IList clientCertificateThumbprints = default(IList), IList clientCertificateCommonNames = default(IList), IList fabricSettings = default(IList), CertificateDescription reverseProxyCertificate = default(CertificateDescription), IList nodeTypes = default(IList), IDictionary tags = default(IDictionary)) + { + ReliabilityLevel = reliabilityLevel; + UpgradeMode = upgradeMode; + ClusterCodeVersion = clusterCodeVersion; + Certificate = certificate; + ClientCertificateThumbprints = clientCertificateThumbprints; + ClientCertificateCommonNames = clientCertificateCommonNames; + FabricSettings = fabricSettings; + ReverseProxyCertificate = reverseProxyCertificate; + NodeTypes = nodeTypes; + Tags = tags; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets this level is used to set the number of replicas of + /// the system services. Possible values include: 'Bronze', 'Silver', + /// 'Gold' + /// + [JsonProperty(PropertyName = "properties.reliabilityLevel")] + public string ReliabilityLevel { get; set; } + + /// + /// Gets or sets cluster upgrade mode indicates if fabric upgrade is + /// initiated automatically by the system or not. Possible values + /// include: 'Automatic', 'Manual' + /// + [JsonProperty(PropertyName = "properties.upgradeMode")] + public string UpgradeMode { get; set; } + + /// + /// Gets or sets the ServiceFabric code version, if set it, please make + /// sure you have set upgradeMode to Manual, otherwise ,it will fail, + /// if you are using PUT new cluster, you can get the version by using + /// ClusterVersions_List, if you are updating existing cluster, you can + /// get the availableClusterVersions from Clusters_Get + /// + [JsonProperty(PropertyName = "properties.clusterCodeVersion")] + public string ClusterCodeVersion { get; set; } + + /// + /// Gets or sets this primay certificate will be used as cluster node + /// to node security, SSL certificate for cluster management endpoint + /// and default admin client, the certificate should exist in the + /// virtual machine scale sets or Azure key vault, before you add it. + /// It will override original value + /// + [JsonProperty(PropertyName = "properties.certificate")] + public CertificateDescription Certificate { get; set; } + + /// + /// Gets or sets the client thumbprint details, it is used for client + /// access for cluster operation, it will override existing collection + /// + [JsonProperty(PropertyName = "properties.clientCertificateThumbprints")] + public IList ClientCertificateThumbprints { get; set; } + + /// + /// Gets or sets list of client certificates to whitelist based on + /// common names. + /// + [JsonProperty(PropertyName = "properties.clientCertificateCommonNames")] + public IList ClientCertificateCommonNames { get; set; } + + /// + /// Gets or sets list of custom fabric settings to configure the + /// cluster, Note, it will overwrite existing collection + /// + [JsonProperty(PropertyName = "properties.fabricSettings")] + public IList FabricSettings { get; set; } + + /// + /// Gets or sets certificate for the reverse proxy + /// + [JsonProperty(PropertyName = "properties.reverseProxyCertificate")] + public CertificateDescription ReverseProxyCertificate { get; set; } + + /// + /// Gets or sets the list of nodetypes that make up the cluster, it + /// will override + /// + [JsonProperty(PropertyName = "properties.nodeTypes")] + public IList NodeTypes { get; set; } + + /// + /// Gets or sets cluster update parameters + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Certificate != null) + { + Certificate.Validate(); + } + if (ClientCertificateThumbprints != null) + { + foreach (var element in ClientCertificateThumbprints) + { + if (element != null) + { + element.Validate(); + } + } + } + if (ClientCertificateCommonNames != null) + { + foreach (var element1 in ClientCertificateCommonNames) + { + if (element1 != null) + { + element1.Validate(); + } + } + } + if (FabricSettings != null) + { + foreach (var element2 in FabricSettings) + { + if (element2 != null) + { + element2.Validate(); + } + } + } + if (ReverseProxyCertificate != null) + { + ReverseProxyCertificate.Validate(); + } + if (NodeTypes != null) + { + foreach (var element3 in NodeTypes) + { + if (element3 != null) + { + element3.Validate(); + } + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeDeltaHealthPolicy.cs new file mode 100644 index 000000000000..68df4718ca25 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeDeltaHealthPolicy.cs @@ -0,0 +1,125 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Delta health policy for the cluster + /// + public partial class ClusterUpgradeDeltaHealthPolicy + { + /// + /// Initializes a new instance of the ClusterUpgradeDeltaHealthPolicy + /// class. + /// + public ClusterUpgradeDeltaHealthPolicy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterUpgradeDeltaHealthPolicy + /// class. + /// + /// Additional unhealthy + /// nodes percentage + /// Additional + /// unhealthy nodes percentage per upgrade domain + /// Additional + /// unhealthy applications percentage + /// Application health + /// policy + public ClusterUpgradeDeltaHealthPolicy(int maxPercentDeltaUnhealthyNodes, int maxPercentUpgradeDomainDeltaUnhealthyNodes, int maxPercentDeltaUnhealthyApplications, IDictionary applicationHealthPolicies = default(IDictionary)) + { + MaxPercentDeltaUnhealthyNodes = maxPercentDeltaUnhealthyNodes; + MaxPercentUpgradeDomainDeltaUnhealthyNodes = maxPercentUpgradeDomainDeltaUnhealthyNodes; + MaxPercentDeltaUnhealthyApplications = maxPercentDeltaUnhealthyApplications; + ApplicationHealthPolicies = applicationHealthPolicies; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets additional unhealthy nodes percentage + /// + [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyNodes")] + public int MaxPercentDeltaUnhealthyNodes { get; set; } + + /// + /// Gets or sets additional unhealthy nodes percentage per upgrade + /// domain + /// + [JsonProperty(PropertyName = "maxPercentUpgradeDomainDeltaUnhealthyNodes")] + public int MaxPercentUpgradeDomainDeltaUnhealthyNodes { get; set; } + + /// + /// Gets or sets additional unhealthy applications percentage + /// + [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyApplications")] + public int MaxPercentDeltaUnhealthyApplications { get; set; } + + /// + /// Gets or sets application health policy + /// + [JsonProperty(PropertyName = "applicationHealthPolicies")] + public IDictionary ApplicationHealthPolicies { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MaxPercentDeltaUnhealthyNodes > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxPercentDeltaUnhealthyNodes", 100); + } + if (MaxPercentDeltaUnhealthyNodes < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxPercentDeltaUnhealthyNodes", 0); + } + if (MaxPercentUpgradeDomainDeltaUnhealthyNodes > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxPercentUpgradeDomainDeltaUnhealthyNodes", 100); + } + if (MaxPercentUpgradeDomainDeltaUnhealthyNodes < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxPercentUpgradeDomainDeltaUnhealthyNodes", 0); + } + if (MaxPercentDeltaUnhealthyApplications > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxPercentDeltaUnhealthyApplications", 100); + } + if (MaxPercentDeltaUnhealthyApplications < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxPercentDeltaUnhealthyApplications", 0); + } + if (ApplicationHealthPolicies != null) + { + foreach (var valueElement in ApplicationHealthPolicies.Values) + { + if (valueElement != null) + { + valueElement.Validate(); + } + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradePolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradePolicy.cs new file mode 100644 index 000000000000..1109f2bfa602 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradePolicy.cs @@ -0,0 +1,181 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Cluster upgrade policy + /// + public partial class ClusterUpgradePolicy + { + /// + /// Initializes a new instance of the ClusterUpgradePolicy class. + /// + public ClusterUpgradePolicy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterUpgradePolicy class. + /// + /// Timeout for replica set + /// upgrade to complete,it represents .Net TimeSpan + /// The length of time to wait + /// after completing an upgrade domain before performing health checks, + /// it represents .Net TimeSpan + /// The length of time that + /// health checks must pass continuously,it represents .Net + /// TimeSpan + /// The length of time that + /// health checks can fail continuously,it represents .Net + /// TimeSpan + /// The upgrade timeout,it represents .Net + /// TimeSpan + /// The timeout for any upgrade + /// domain,it represents .Net TimeSpan + /// Cluster health Policy + /// Use the user defined + /// upgrade policy or not + /// Force node to restart or not + /// Delta health policy + public ClusterUpgradePolicy(string upgradeReplicaSetCheckTimeout, string healthCheckWaitDuration, string healthCheckStableDuration, string healthCheckRetryTimeout, string upgradeTimeout, string upgradeDomainTimeout, ClusterHealthPolicy healthPolicy, bool? overrideUserUpgradePolicy = default(bool?), bool? forceRestart = default(bool?), ClusterUpgradeDeltaHealthPolicy deltaHealthPolicy = default(ClusterUpgradeDeltaHealthPolicy)) + { + OverrideUserUpgradePolicy = overrideUserUpgradePolicy; + ForceRestart = forceRestart; + UpgradeReplicaSetCheckTimeout = upgradeReplicaSetCheckTimeout; + HealthCheckWaitDuration = healthCheckWaitDuration; + HealthCheckStableDuration = healthCheckStableDuration; + HealthCheckRetryTimeout = healthCheckRetryTimeout; + UpgradeTimeout = upgradeTimeout; + UpgradeDomainTimeout = upgradeDomainTimeout; + HealthPolicy = healthPolicy; + DeltaHealthPolicy = deltaHealthPolicy; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets use the user defined upgrade policy or not + /// + [JsonProperty(PropertyName = "overrideUserUpgradePolicy")] + public bool? OverrideUserUpgradePolicy { get; set; } + + /// + /// Gets or sets force node to restart or not + /// + [JsonProperty(PropertyName = "forceRestart")] + public bool? ForceRestart { get; set; } + + /// + /// Gets or sets timeout for replica set upgrade to complete,it + /// represents .Net TimeSpan + /// + [JsonProperty(PropertyName = "upgradeReplicaSetCheckTimeout")] + public string UpgradeReplicaSetCheckTimeout { get; set; } + + /// + /// Gets or sets the length of time to wait after completing an upgrade + /// domain before performing health checks, it represents .Net TimeSpan + /// + [JsonProperty(PropertyName = "healthCheckWaitDuration")] + public string HealthCheckWaitDuration { get; set; } + + /// + /// Gets or sets the length of time that health checks must pass + /// continuously,it represents .Net TimeSpan + /// + [JsonProperty(PropertyName = "healthCheckStableDuration")] + public string HealthCheckStableDuration { get; set; } + + /// + /// Gets or sets the length of time that health checks can fail + /// continuously,it represents .Net TimeSpan + /// + [JsonProperty(PropertyName = "healthCheckRetryTimeout")] + public string HealthCheckRetryTimeout { get; set; } + + /// + /// Gets or sets the upgrade timeout,it represents .Net TimeSpan + /// + [JsonProperty(PropertyName = "upgradeTimeout")] + public string UpgradeTimeout { get; set; } + + /// + /// Gets or sets the timeout for any upgrade domain,it represents .Net + /// TimeSpan + /// + [JsonProperty(PropertyName = "upgradeDomainTimeout")] + public string UpgradeDomainTimeout { get; set; } + + /// + /// Gets or sets cluster health Policy + /// + [JsonProperty(PropertyName = "healthPolicy")] + public ClusterHealthPolicy HealthPolicy { get; set; } + + /// + /// Gets or sets delta health policy + /// + [JsonProperty(PropertyName = "deltaHealthPolicy")] + public ClusterUpgradeDeltaHealthPolicy DeltaHealthPolicy { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (UpgradeReplicaSetCheckTimeout == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "UpgradeReplicaSetCheckTimeout"); + } + if (HealthCheckWaitDuration == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "HealthCheckWaitDuration"); + } + if (HealthCheckStableDuration == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "HealthCheckStableDuration"); + } + if (HealthCheckRetryTimeout == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "HealthCheckRetryTimeout"); + } + if (UpgradeTimeout == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "UpgradeTimeout"); + } + if (UpgradeDomainTimeout == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "UpgradeDomainTimeout"); + } + if (HealthPolicy == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "HealthPolicy"); + } + if (HealthPolicy != null) + { + HealthPolicy.Validate(); + } + if (DeltaHealthPolicy != null) + { + DeltaHealthPolicy.Validate(); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs new file mode 100644 index 000000000000..82c611a4f1ed --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs @@ -0,0 +1,68 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The detail of the ServiceFabric runtime version result + /// + public partial class ClusterVersionDetails + { + /// + /// Initializes a new instance of the ClusterVersionDetails class. + /// + public ClusterVersionDetails() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterVersionDetails class. + /// + /// The ServiceFabric runtime version of the + /// cluster + /// The date of expiry of support of the + /// version + /// Cluster operating system. Possible values + /// include: 'Windows', 'Linux' + public ClusterVersionDetails(string codeVersion = default(string), string supportExpiryUtc = default(string), string environment = default(string)) + { + CodeVersion = codeVersion; + SupportExpiryUtc = supportExpiryUtc; + Environment = environment; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the ServiceFabric runtime version of the cluster + /// + [JsonProperty(PropertyName = "codeVersion")] + public string CodeVersion { get; set; } + + /// + /// Gets or sets the date of expiry of support of the version + /// + [JsonProperty(PropertyName = "supportExpiryUtc")] + public string SupportExpiryUtc { get; set; } + + /// + /// Gets or sets cluster operating system. Possible values include: + /// 'Windows', 'Linux' + /// + [JsonProperty(PropertyName = "environment")] + public string Environment { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs new file mode 100644 index 000000000000..e324cb093b9f --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs @@ -0,0 +1,117 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Diagnostics storage account config + /// + public partial class DiagnosticsStorageAccountConfig + { + /// + /// Initializes a new instance of the DiagnosticsStorageAccountConfig + /// class. + /// + public DiagnosticsStorageAccountConfig() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DiagnosticsStorageAccountConfig + /// class. + /// + /// Diagnostics storage account + /// name + /// Protected Diagnostics storage + /// key name + /// Diagnostics storage account blob + /// endpoint + /// Diagnostics storage account queue + /// endpoint + /// Diagnostics storage account table + /// endpoint + public DiagnosticsStorageAccountConfig(string storageAccountName, string protectedAccountKeyName, string blobEndpoint, string queueEndpoint, string tableEndpoint) + { + StorageAccountName = storageAccountName; + ProtectedAccountKeyName = protectedAccountKeyName; + BlobEndpoint = blobEndpoint; + QueueEndpoint = queueEndpoint; + TableEndpoint = tableEndpoint; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets diagnostics storage account name + /// + [JsonProperty(PropertyName = "storageAccountName")] + public string StorageAccountName { get; set; } + + /// + /// Gets or sets protected Diagnostics storage key name + /// + [JsonProperty(PropertyName = "protectedAccountKeyName")] + public string ProtectedAccountKeyName { get; set; } + + /// + /// Gets or sets diagnostics storage account blob endpoint + /// + [JsonProperty(PropertyName = "blobEndpoint")] + public string BlobEndpoint { get; set; } + + /// + /// Gets or sets diagnostics storage account queue endpoint + /// + [JsonProperty(PropertyName = "queueEndpoint")] + public string QueueEndpoint { get; set; } + + /// + /// Gets or sets diagnostics storage account table endpoint + /// + [JsonProperty(PropertyName = "tableEndpoint")] + public string TableEndpoint { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (StorageAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "StorageAccountName"); + } + if (ProtectedAccountKeyName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ProtectedAccountKeyName"); + } + if (BlobEndpoint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "BlobEndpoint"); + } + if (QueueEndpoint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "QueueEndpoint"); + } + if (TableEndpoint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "TableEndpoint"); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs new file mode 100644 index 000000000000..85f5deae85cb --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs @@ -0,0 +1,66 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Port range details + /// + public partial class EndpointRangeDescription + { + /// + /// Initializes a new instance of the EndpointRangeDescription class. + /// + public EndpointRangeDescription() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EndpointRangeDescription class. + /// + /// Starting port of a range of ports + /// End port of a range of ports + public EndpointRangeDescription(int startPort, int endPort) + { + StartPort = startPort; + EndPort = endPort; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets starting port of a range of ports + /// + [JsonProperty(PropertyName = "startPort")] + public int StartPort { get; set; } + + /// + /// Gets or sets end port of a range of ports + /// + [JsonProperty(PropertyName = "endPort")] + public int EndPort { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs new file mode 100644 index 000000000000..099b2f1a3982 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs @@ -0,0 +1,48 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The structure of the error + /// + public partial class ErrorModel + { + /// + /// Initializes a new instance of the ErrorModel class. + /// + public ErrorModel() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorModel class. + /// + /// The error detail + public ErrorModel(ErrorModelError error = default(ErrorModelError)) + { + Error = error; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the error detail + /// + [JsonProperty(PropertyName = "error")] + public ErrorModelError Error { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs new file mode 100644 index 000000000000..76cda93952c8 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs @@ -0,0 +1,56 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The error detail + /// + public partial class ErrorModelError + { + /// + /// Initializes a new instance of the ErrorModelError class. + /// + public ErrorModelError() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorModelError class. + /// + /// The error code + /// The error message + public ErrorModelError(string code = default(string), string message = default(string)) + { + Code = code; + Message = message; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the error code + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; set; } + + /// + /// Gets or sets the error message + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelException.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelException.cs new file mode 100644 index 000000000000..e9dec3d07a09 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelException.cs @@ -0,0 +1,95 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + + /// + /// Exception thrown for an invalid response with ErrorModel information. + /// +#if LEGACY + [System.Serializable] +#endif + public class ErrorModelException : RestException + { + /// + /// Gets information about the associated HTTP request. + /// + public HttpRequestMessageWrapper Request { get; set; } + + /// + /// Gets information about the associated HTTP response. + /// + public HttpResponseMessageWrapper Response { get; set; } + + /// + /// Gets or sets the body object. + /// + public ErrorModel Body { get; set; } + + /// + /// Initializes a new instance of the ErrorModelException class. + /// + public ErrorModelException() + { + } + + /// + /// Initializes a new instance of the ErrorModelException class. + /// + /// The exception message. + public ErrorModelException(string message) + : this(message, null) + { + } + + /// + /// Initializes a new instance of the ErrorModelException class. + /// + /// The exception message. + /// Inner exception. + public ErrorModelException(string message, System.Exception innerException) + : base(message, innerException) + { + } + +#if LEGACY + /// + /// Initializes a new instance of the ErrorModelException class. + /// + /// Serialization info. + /// Streaming context. + protected ErrorModelException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) + : base(info, context) + { + } + + /// + /// Serializes content of the exception. + /// + /// Serialization info. + /// Streaming context. + /// + /// Thrown when a required parameter is null + /// + [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter = true)] + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) + { + base.GetObjectData(info, context); + if (info == null) + { + throw new System.ArgumentNullException("info"); + } + + info.AddValue("Request", Request); + info.AddValue("Response", Response); + info.AddValue("Body", Body); + } +#endif + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs new file mode 100644 index 000000000000..28268e3a34d0 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs @@ -0,0 +1,176 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Describes a node type in the cluster, each node type represents sub set + /// of nodes in the cluster + /// + public partial class NodeTypeDescription + { + /// + /// Initializes a new instance of the NodeTypeDescription class. + /// + public NodeTypeDescription() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the NodeTypeDescription class. + /// + /// Name of the node type + /// The TCP cluster + /// management endpoint port + /// The HTTP cluster management + /// endpoint port + /// Mark this as the primary node type + /// The number of node instances in the + /// node type + /// The placement tags applied to + /// nodes in the node type, which can be used to indicate where certain + /// services (workload) should run + /// The capacity tags applied to the nodes in + /// the node type, the cluster resource manager uses these tags to + /// understand how much of a resource a node has + /// Nodetype durability Level. Possible + /// values include: 'Bronze', 'Silver', 'Gold' + /// Ports used by applications + /// System assgined application + /// ports + /// Endpoint used by reverse + /// proxy + public NodeTypeDescription(string name, int clientConnectionEndpointPort, int httpGatewayEndpointPort, bool isPrimary, int vmInstanceCount, IDictionary placementProperties = default(IDictionary), IDictionary capacities = default(IDictionary), string durabilityLevel = default(string), EndpointRangeDescription applicationPorts = default(EndpointRangeDescription), EndpointRangeDescription ephemeralPorts = default(EndpointRangeDescription), int? reverseProxyEndpointPort = default(int?)) + { + Name = name; + PlacementProperties = placementProperties; + Capacities = capacities; + ClientConnectionEndpointPort = clientConnectionEndpointPort; + HttpGatewayEndpointPort = httpGatewayEndpointPort; + DurabilityLevel = durabilityLevel; + ApplicationPorts = applicationPorts; + EphemeralPorts = ephemeralPorts; + IsPrimary = isPrimary; + VmInstanceCount = vmInstanceCount; + ReverseProxyEndpointPort = reverseProxyEndpointPort; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets name of the node type + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the placement tags applied to nodes in the node type, + /// which can be used to indicate where certain services (workload) + /// should run + /// + [JsonProperty(PropertyName = "placementProperties")] + public IDictionary PlacementProperties { get; set; } + + /// + /// Gets or sets the capacity tags applied to the nodes in the node + /// type, the cluster resource manager uses these tags to understand + /// how much of a resource a node has + /// + [JsonProperty(PropertyName = "capacities")] + public IDictionary Capacities { get; set; } + + /// + /// Gets or sets the TCP cluster management endpoint port + /// + [JsonProperty(PropertyName = "clientConnectionEndpointPort")] + public int ClientConnectionEndpointPort { get; set; } + + /// + /// Gets or sets the HTTP cluster management endpoint port + /// + [JsonProperty(PropertyName = "httpGatewayEndpointPort")] + public int HttpGatewayEndpointPort { get; set; } + + /// + /// Gets or sets nodetype durability Level. Possible values include: + /// 'Bronze', 'Silver', 'Gold' + /// + [JsonProperty(PropertyName = "durabilityLevel")] + public string DurabilityLevel { get; set; } + + /// + /// Gets or sets ports used by applications + /// + [JsonProperty(PropertyName = "applicationPorts")] + public EndpointRangeDescription ApplicationPorts { get; set; } + + /// + /// Gets or sets system assgined application ports + /// + [JsonProperty(PropertyName = "ephemeralPorts")] + public EndpointRangeDescription EphemeralPorts { get; set; } + + /// + /// Gets or sets mark this as the primary node type + /// + [JsonProperty(PropertyName = "isPrimary")] + public bool IsPrimary { get; set; } + + /// + /// Gets or sets the number of node instances in the node type + /// + [JsonProperty(PropertyName = "vmInstanceCount")] + public int VmInstanceCount { get; set; } + + /// + /// Gets or sets endpoint used by reverse proxy + /// + [JsonProperty(PropertyName = "reverseProxyEndpointPort")] + public int? ReverseProxyEndpointPort { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (ApplicationPorts != null) + { + ApplicationPorts.Validate(); + } + if (EphemeralPorts != null) + { + EphemeralPorts.Validate(); + } + if (VmInstanceCount > 2147483647) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "VmInstanceCount", 2147483647); + } + if (VmInstanceCount < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "VmInstanceCount", 1); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/OperationResult.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/OperationResult.cs new file mode 100644 index 000000000000..447e4b2d5600 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/OperationResult.cs @@ -0,0 +1,73 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Available operation list result + /// + public partial class OperationResult + { + /// + /// Initializes a new instance of the OperationResult class. + /// + public OperationResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OperationResult class. + /// + /// Result name + /// Dispaly of the result + /// Origin result + /// The URL to use for getting the next set of + /// results. + public OperationResult(string name = default(string), AvailableOperationDisplay display = default(AvailableOperationDisplay), string origin = default(string), string nextLink = default(string)) + { + Name = name; + Display = display; + Origin = origin; + NextLink = nextLink; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets result name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets dispaly of the result + /// + [JsonProperty(PropertyName = "display")] + public AvailableOperationDisplay Display { get; set; } + + /// + /// Gets or sets origin result + /// + [JsonProperty(PropertyName = "origin")] + public string Origin { get; set; } + + /// + /// Gets or sets the URL to use for getting the next set of results. + /// + [JsonProperty(PropertyName = "nextLink")] + public string NextLink { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Page.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Page.cs new file mode 100644 index 000000000000..d8210a5914c9 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Page.cs @@ -0,0 +1,50 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [JsonObject] + public class Page : IPage + { + /// + /// Gets the link to the next page. + /// + [JsonProperty("nextLink")] + public string NextPageLink { get; private set; } + + [JsonProperty("value")] + private IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public IEnumerator GetEnumerator() + { + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ProvisioningState.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ProvisioningState.cs new file mode 100644 index 000000000000..141b2e7678bc --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ProvisioningState.cs @@ -0,0 +1,21 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + + /// + /// Defines values for ProvisioningState. + /// + public static class ProvisioningState + { + public const string Updating = "Updating"; + public const string Succeeded = "Succeeded"; + public const string Failed = "Failed"; + public const string Canceled = "Canceled"; + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs new file mode 100644 index 000000000000..980368d20ee8 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs @@ -0,0 +1,97 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The resource model definition. + /// + public partial class Resource : IResource + { + /// + /// Initializes a new instance of the Resource class. + /// + public Resource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Resource class. + /// + /// Resource location. + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags. + public Resource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) + { + Id = id; + Name = name; + Type = type; + Location = location; + Tags = tags; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource ID. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets resource name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets resource type. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets or sets resource location. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets or sets resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeDeltaHealthPolicy.cs new file mode 100644 index 000000000000..79114a347aaf --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeDeltaHealthPolicy.cs @@ -0,0 +1,69 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Service health policy + /// + public partial class ServiceTypeDeltaHealthPolicy + { + /// + /// Initializes a new instance of the ServiceTypeDeltaHealthPolicy + /// class. + /// + public ServiceTypeDeltaHealthPolicy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ServiceTypeDeltaHealthPolicy + /// class. + /// + /// Maximum percentage + /// of unhealthy services in cluster + public ServiceTypeDeltaHealthPolicy(int? maxPercentDeltaUnhealthyServices = default(int?)) + { + MaxPercentDeltaUnhealthyServices = maxPercentDeltaUnhealthyServices; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets maximum percentage of unhealthy services in cluster + /// + [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyServices")] + public int? MaxPercentDeltaUnhealthyServices { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MaxPercentDeltaUnhealthyServices > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxPercentDeltaUnhealthyServices", 100); + } + if (MaxPercentDeltaUnhealthyServices < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxPercentDeltaUnhealthyServices", 0); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeHealthPolicy.cs new file mode 100644 index 000000000000..e2271138e907 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeHealthPolicy.cs @@ -0,0 +1,70 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Represents the health policy used to evaluate the health of services + /// belonging to a service type. + /// + public partial class ServiceTypeHealthPolicy + { + /// + /// Initializes a new instance of the ServiceTypeHealthPolicy class. + /// + public ServiceTypeHealthPolicy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ServiceTypeHealthPolicy class. + /// + /// The maximum maximum + /// allowed percentage of unhealthy services. Allowed values are Byte + /// values from zero to 100. + public ServiceTypeHealthPolicy(int? maxPercentUnhealthyServices = default(int?)) + { + MaxPercentUnhealthyServices = maxPercentUnhealthyServices; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the maximum maximum allowed percentage of unhealthy + /// services. Allowed values are Byte values from zero to 100. + /// + [JsonProperty(PropertyName = "maxPercentUnhealthyServices")] + public int? MaxPercentUnhealthyServices { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MaxPercentUnhealthyServices > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxPercentUnhealthyServices", 100); + } + if (MaxPercentUnhealthyServices < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxPercentUnhealthyServices", 0); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs new file mode 100644 index 000000000000..5584ea6b9328 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs @@ -0,0 +1,76 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// ServiceFabric settings under sections + /// + public partial class SettingsParameterDescription + { + /// + /// Initializes a new instance of the SettingsParameterDescription + /// class. + /// + public SettingsParameterDescription() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SettingsParameterDescription + /// class. + /// + /// The name of settings property + /// The value of the property + public SettingsParameterDescription(string name, string value) + { + Name = name; + Value = value; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of settings property + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the value of the property + /// + [JsonProperty(PropertyName = "value")] + public string Value { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Value == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Value"); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs new file mode 100644 index 000000000000..bebb66613d57 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs @@ -0,0 +1,89 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// ServiceFabric section settings + /// + public partial class SettingsSectionDescription + { + /// + /// Initializes a new instance of the SettingsSectionDescription class. + /// + public SettingsSectionDescription() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SettingsSectionDescription class. + /// + /// The name of settings section + /// Collection of settings in the section, + /// each setting is a tuple consisting of setting name and + /// value + public SettingsSectionDescription(string name, IList parameters) + { + Name = name; + Parameters = parameters; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of settings section + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets collection of settings in the section, each setting is + /// a tuple consisting of setting name and value + /// + [JsonProperty(PropertyName = "parameters")] + public IList Parameters { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Parameters"); + } + if (Parameters != null) + { + foreach (var element in Parameters) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Operations.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Operations.cs new file mode 100644 index 000000000000..a513cd522d2f --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Operations.cs @@ -0,0 +1,386 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + 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; + + /// + /// Operations operations. + /// + internal partial class Operations : IServiceOperations, IOperations + { + /// + /// Initializes a new instance of the Operations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal Operations(ServiceFabricManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ServiceFabricManagementClient + /// + public ServiceFabricManagementClient Client { get; private set; } + + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// 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(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + 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("/") ? "" : "/")), "providers/Microsoft.ServiceFabric/operations").ToString(); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.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 ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// 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 ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/OperationsExtensions.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/OperationsExtensions.cs new file mode 100644 index 000000000000..fba1e46edc03 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/OperationsExtensions.cs @@ -0,0 +1,83 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + 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 Operations. + /// + public static partial class OperationsExtensions + { + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this IOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// 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 IOperations 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/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricManagementClient.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricManagementClient.cs new file mode 100644 index 000000000000..c53b83c2e68a --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricManagementClient.cs @@ -0,0 +1,324 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + + public partial class ServiceFabricManagementClient : ServiceClient, IServiceFabricManagementClient, IAzureClient + { + /// + /// The base URI of the service. + /// + public System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + public JsonSerializerSettings SerializationSettings { get; private set; } + + /// + /// Gets or sets json deserialization settings. + /// + public JsonSerializerSettings DeserializationSettings { get; private set; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + public ServiceClientCredentials Credentials { get; private set; } + + /// + /// The customer subscription identifier + /// + public string SubscriptionId { get; set; } + + /// + /// The version of the ServiceFabric resouce provider api + /// + public string ApiVersion { get; private set; } + + /// + /// Gets or sets the preferred language for the response. + /// + public string AcceptLanguage { get; set; } + + /// + /// Gets or sets the retry timeout in seconds for Long Running Operations. + /// Default value is 30. + /// + public int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// When set to true a unique x-ms-client-request-id value is generated and + /// included in each request. Default is true. + /// + public bool? GenerateClientRequestId { get; set; } + + /// + /// Gets the IClustersOperations. + /// + public virtual IClustersOperations Clusters { get; private set; } + + /// + /// Gets the IClusterVersionsOperations. + /// + public virtual IClusterVersionsOperations ClusterVersions { get; private set; } + + /// + /// Gets the IOperations. + /// + public virtual IOperations Operations { get; private set; } + + /// + /// Initializes a new instance of the ServiceFabricManagementClient class. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected ServiceFabricManagementClient(params DelegatingHandler[] handlers) : base(handlers) + { + Initialize(); + } + + /// + /// Initializes a new instance of the ServiceFabricManagementClient class. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected ServiceFabricManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) + { + Initialize(); + } + + /// + /// Initializes a new instance of the ServiceFabricManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected ServiceFabricManagementClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the ServiceFabricManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected ServiceFabricManagementClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the ServiceFabricManagementClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public ServiceFabricManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the ServiceFabricManagementClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public ServiceFabricManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the ServiceFabricManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public ServiceFabricManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the ServiceFabricManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public ServiceFabricManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// An optional partial-method to perform custom initialization. + /// + partial void CustomInitialize(); + /// + /// Initializes client properties. + /// + private void Initialize() + { + Clusters = new ClustersOperations(this); + ClusterVersions = new ClusterVersionsOperations(this); + Operations = new Operations(this); + BaseUri = new System.Uri("https://management.azure.com"); + ApiVersion = "2016-09-01"; + AcceptLanguage = "en-US"; + LongRunningOperationRetryTimeout = 30; + GenerateClientRequestId = true; + SerializationSettings = new JsonSerializerSettings + { + Formatting = Newtonsoft.Json.Formatting.Indented, + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List + { + new Iso8601TimeSpanConverter() + } + }; + SerializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings = new JsonSerializerSettings + { + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List + { + new Iso8601TimeSpanConverter() + } + }; + CustomInitialize(); + DeserializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Microsoft.Azure.Management.ServiceFabric.xproj b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Microsoft.Azure.Management.ServiceFabric.xproj new file mode 100644 index 000000000000..29de82f0546e --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Microsoft.Azure.Management.ServiceFabric.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + 624659FE-FE8F-41D2-99AB-0BA92DE15A65 + Microsoft.Azure.Management.ServiceFabric + .\obj + .\bin\ + + + 2.0 + + + True + + + \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Properties/AssemblyInfo.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..fe3660fa7f25 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Properties/AssemblyInfo.cs @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Reflection; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("ServiceFabric")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ServiceFabric")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/generate.cmd b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/generate.cmd new file mode 100644 index 000000000000..9e6e5b1b4d13 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/generate.cmd @@ -0,0 +1,17 @@ +:: +:: Microsoft Azure SDK for Net - Generate library code +:: Copyright (C) Microsoft Corporation. All Rights Reserved. +:: + +@echo off +set autoRestVersion=1.0.0-Nightly20170202 +if "%1" == "" ( + set specFile="https://github.com/Azure/azure-rest-api-specs/blob/c683f6510a689e1629adb5d8e9e21848c68f2ca3/arm-servicefabric/2016-09-01/swagger/servicefabric.json" +) else ( + set specFile="%1" +) +set repoRoot=%~dp0..\..\..\.. +set generateFolder=%~dp0Generated + +if exist %generateFolder% rd /S /Q %generateFolder% +call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Management.ServiceFabric %autoRestVersion% %generateFolder% \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/project.json b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/project.json new file mode 100644 index 000000000000..44110fae18c3 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/project.json @@ -0,0 +1,61 @@ +{ + "version": "1.0.0-preview", + "description": "Microsoft Azure Management ServiceFabric Library", + "authors": [ + "Microsoft" + ], + "packOptions": { + "tags": [ + "Microsoft Azure Management Library", + "ServiceFabric", + "ServiceFabric management", + "REST HTTP client", + "windowsazureofficial", + "netcore451511" + ], + "projectUrl": "https://github.com/Azure/azure-sdk-for-net", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", + "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", + "requireLicenseAcceptance": true + }, + "buildOptions": { + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../tools/MSSharedLibKey.snk" + }, + + "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" + }, + + "frameworks": { + "net45": { + "dependencies": { + } + }, + "netstandard1.5": { + "imports": [ "dnxcore50" ], + "buildOptions": { "define": [ "PORTABLE" ] }, + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "netstandard1.1": { + "imports": [ "dnxcore50" ], + "buildOptions": { "define": [ "PORTABLE" ] }, + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/ServiceFabric.Tests.xproj b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/ServiceFabric.Tests.xproj new file mode 100644 index 000000000000..d686a9ebf443 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/ServiceFabric.Tests.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + F857A01A-2955-4FC9-836B-FE7FD80C6CC2 + ServiceFabric.Tests + .\obj + .\bin\ + + + 2.0 + + + + + + \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json new file mode 100644 index 000000000000..6dcf820b51d6 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json @@ -0,0 +1,395 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aaa936c1-2c5e-4022-b276-922034bac911" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636258957273157045\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9525f566-2a5e-488f-8b69-4b41f6562c78\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9525f566-2a5e-488f-8b69-4b41f6562c78\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "c7ea21b6-95b8-45ef-9caf-64d7d637b50f" + ], + "x-ms-correlation-request-id": [ + "c7ea21b6-95b8-45ef-9caf-64d7d637b50f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170401T142216Z:c7ea21b6-95b8-45ef-9caf-64d7d637b50f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ae56b71-dd42-4c4f-83d7-d6bfe4a1a379" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636266533494387491\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8c0d53d2-fe48-48b7-9e76-65ac1a5de496\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8c0d53d2-fe48-48b7-9e76-65ac1a5de496\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "0929bde3-b137-4cec-a3ea-8b1f57dd577a" + ], + "x-ms-correlation-request-id": [ + "0929bde3-b137-4cec-a3ea-8b1f57dd577a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170401T142230Z:0929bde3-b137-4cec-a3ea-8b1f57dd577a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7f05faa-5cac-46a2-abe4-22e33a1cc366" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636266533494387491\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8c0d53d2-fe48-48b7-9e76-65ac1a5de496\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8c0d53d2-fe48-48b7-9e76-65ac1a5de496\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "0301d3e9-0201-4dd4-a95f-51368f0acfb4" + ], + "x-ms-correlation-request-id": [ + "0301d3e9-0201-4dd4-a95f-51368f0acfb4" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170401T142230Z:0301d3e9-0201-4dd4-a95f-51368f0acfb4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93a23704-8bc8-4774-bfa1-fa2bb29fc1ad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "c02dc2d6-7b75-4556-82b7-fa0f21108652" + ], + "x-ms-correlation-request-id": [ + "c02dc2d6-7b75-4556-82b7-fa0f21108652" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170401T142217Z:c02dc2d6-7b75-4556-82b7-fa0f21108652" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL1Rlc3RSRzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ], + "x-ms-client-request-id": [ + "5dea6b39-c00c-4c1d-b00c-50528c2bc2fb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "712cf5fa-7ab8-4229-92ae-6d3253987038" + ], + "x-ms-correlation-request-id": [ + "712cf5fa-7ab8-4229-92ae-6d3253987038" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170401T142229Z:712cf5fa-7ab8-4229-92ae-6d3253987038" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"reliabilityLevel\": \"Silver\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "667" + ], + "x-ms-client-request-id": [ + "2d052e9b-247e-4f6a-a7a2-4d826f117d44" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636266533494387491\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8c0d53d2-fe48-48b7-9e76-65ac1a5de496\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8c0d53d2-fe48-48b7-9e76-65ac1a5de496\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "370834b5-6c14-400c-a4fd-62106baaac7d" + ], + "x-ms-correlation-request-id": [ + "370834b5-6c14-400c-a4fd-62106baaac7d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170401T142230Z:370834b5-6c14-400c-a4fd-62106baaac7d" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json new file mode 100644 index 000000000000..37fd91d7f263 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json @@ -0,0 +1,431 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3Rlc3REZWxldGVyZz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ], + "x-ms-client-request-id": [ + "f0b2beb2-bfe0-4968-bd25-c5c02a85ed80" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg\",\r\n \"name\": \"testDeleterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:21:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "2e8bb922-3186-40b0-9a8c-67ac43666ee6" + ], + "x-ms-correlation-request-id": [ + "2e8bb922-3186-40b0-9a8c-67ac43666ee6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142158Z:2e8bb922-3186-40b0-9a8c-67ac43666ee6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"reliabilityLevel\": \"Silver\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "667" + ], + "x-ms-client-request-id": [ + "e401193e-3cad-40eb-ab2a-183eb157e8f8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636266533197099868\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ec67ff99-9971-4c27-94d0-fc32dae8884c\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ec67ff99-9971-4c27-94d0-fc32dae8884c\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "74ccd43e-0f59-4b80-b0d6-065f29105a93" + ], + "x-ms-correlation-request-id": [ + "74ccd43e-0f59-4b80-b0d6-065f29105a93" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142200Z:74ccd43e-0f59-4b80-b0d6-065f29105a93" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "223a535b-91b9-4417-a7a6-3dbf22b9fbae" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636266533197099868\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ec67ff99-9971-4c27-94d0-fc32dae8884c\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ec67ff99-9971-4c27-94d0-fc32dae8884c\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "960d1dc3-6f7c-4229-8c7c-a47ff6d5bb15" + ], + "x-ms-correlation-request-id": [ + "960d1dc3-6f7c-4229-8c7c-a47ff6d5bb15" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142200Z:960d1dc3-6f7c-4229-8c7c-a47ff6d5bb15" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29d7098b-60a1-44e7-861b-b246a396997c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636266533197099868\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ec67ff99-9971-4c27-94d0-fc32dae8884c\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ec67ff99-9971-4c27-94d0-fc32dae8884c\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "dc8a0c10-708e-42fc-a44d-45c2007910ad" + ], + "x-ms-correlation-request-id": [ + "dc8a0c10-708e-42fc-a44d-45c2007910ad" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142200Z:dc8a0c10-708e-42fc-a44d-45c2007910ad" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2df1cae1-68a2-406e-85be-48f0fc151d33" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ServiceFabric/clusters/testDeleteCluster' under resource group 'testDeleterg' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "eefc261b-d4ee-4c9c-8a5a-b44d02aee6f8" + ], + "x-ms-correlation-request-id": [ + "eefc261b-d4ee-4c9c-8a5a-b44d02aee6f8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142201Z:eefc261b-d4ee-4c9c-8a5a-b44d02aee6f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ef7d0a4-f991-4b20-8dd3-c83592455452" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "2f3becab-f478-4655-b4ea-95442f4be129" + ], + "x-ms-correlation-request-id": [ + "2f3becab-f478-4655-b4ea-95442f4be129" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142201Z:2f3becab-f478-4655-b4ea-95442f4be129" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/donotexistcluster?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvZG9ub3RleGlzdGNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2c40526-49af-448d-a1b0-1577ffd9efa7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "ef4e4753-9ab3-482a-acb6-209e563f76a8" + ], + "x-ms-correlation-request-id": [ + "ef4e4753-9ab3-482a-acb6-209e563f76a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142202Z:ef4e4753-9ab3-482a-acb6-209e563f76a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json new file mode 100644 index 000000000000..8ed2559daa3c --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json @@ -0,0 +1,238 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8802f3bc-dbfd-449e-8b35-7cca1e6a3b77" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg\",\r\n \"name\": \"aaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608\",\r\n \"name\": \"abhaym-test-20170318-194608\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703201843\",\r\n \"name\": \"abhaymtest1703201843\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703201944\",\r\n \"name\": \"abhaymtest1703201944\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703202006\",\r\n \"name\": \"abhaymtest1703202006\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703210414\",\r\n \"name\": \"abhaymtest1703210414\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703210416\",\r\n \"name\": \"abhaymtest1703210416\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703212351\",\r\n \"name\": \"abhaymtest1703212351\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703220723\",\r\n \"name\": \"abhaymtest1703220723\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703220724\",\r\n \"name\": \"abhaymtest1703220724\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230444\",\r\n \"name\": \"abhaymtest1703230444\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230456\",\r\n \"name\": \"abhaymtest1703230456\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230505\",\r\n \"name\": \"abhaymtest1703230505\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230549\",\r\n \"name\": \"abhaymtest1703230549\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290002\",\r\n \"name\": \"abhaymtest1703290002\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290020\",\r\n \"name\": \"abhaymtest1703290020\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290021\",\r\n \"name\": \"abhaymtest1703290021\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703291956\",\r\n \"name\": \"abhaymtest1703291956\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest07\",\r\n \"name\": \"abhaytest07\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest10\",\r\n \"name\": \"abhaytest10\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest11\",\r\n \"name\": \"abhaytest11\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykeyvaultrg1\",\r\n \"name\": \"mykeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvrg1\",\r\n \"name\": \"mykvrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrg1\",\r\n \"name\": \"mykvvrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrg2\",\r\n \"name\": \"mykvvrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrgg2\",\r\n \"name\": \"mykvvrgg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg1\",\r\n \"name\": \"newkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg3\",\r\n \"name\": \"newkeyvaultrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newrecordclusterrg1\",\r\n \"name\": \"newrecordclusterrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newsftestrg1\",\r\n \"name\": \"newsftestrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newsftestrg3\",\r\n \"name\": \"newsftestrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newtestresourcegroup1\",\r\n \"name\": \"newtestresourcegroup1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same1rg\",\r\n \"name\": \"same1rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rg\",\r\n \"name\": \"same2rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rgg\",\r\n \"name\": \"same2rgg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklusterrg\",\r\n \"name\": \"sdklusterrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestkeyvaultrg\",\r\n \"name\": \"sdktestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfrpkeyvaultrg1\",\r\n \"name\": \"sfrpkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkeyvaultrg\",\r\n \"name\": \"sftestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkkrg1\",\r\n \"name\": \"sftestkkrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testpowershellclusterrg1\",\r\n \"name\": \"testpowershellclusterrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testrg111\",\r\n \"name\": \"testrg111\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/VmExtnAppInsightTest\",\r\n \"name\": \"VmExtnAppInsightTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlustore\",\r\n \"name\": \"xunlustore\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:21:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "957ea6dd-02b0-4187-8080-6adfa61f7ecc" + ], + "x-ms-correlation-request-id": [ + "957ea6dd-02b0-4187-8080-6adfa61f7ecc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142141Z:957ea6dd-02b0-4187-8080-6adfa61f7ecc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMlMkZjbHVzdGVycycmYXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c366b616-5608-4ad0-8dba-2dd54dbd5443" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:21:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "8562d380-2106-4b83-99d9-c56b8e0677cc" + ], + "x-ms-correlation-request-id": [ + "8562d380-2106-4b83-99d9-c56b8e0677cc" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142143Z:8562d380-2106-4b83-99d9-c56b8e0677cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL2FhYWFhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99269232-ea62-497b-9890-39704a836b26" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176420\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:21:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "e95ce259-ce37-4037-8b1f-0743de1d370d" + ], + "x-ms-correlation-request-id": [ + "e95ce259-ce37-4037-8b1f-0743de1d370d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142144Z:e95ce259-ce37-4037-8b1f-0743de1d370d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/donotexisting?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL2Rvbm90ZXhpc3Rpbmc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9671c943-ec00-475d-be03-a1d4b781dae3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ServiceFabric/clusters/donotexisting' under resource group 'aaaaarg' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:21:44 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c71378b8-39ed-48e2-9641-b79e1ca3c986" + ], + "x-ms-correlation-request-id": [ + "c71378b8-39ed-48e2-9641-b79e1ca3c986" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142144Z:c71378b8-39ed-48e2-9641-b79e1ca3c986" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json new file mode 100644 index 000000000000..08ff544db434 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json @@ -0,0 +1,70 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/clusters?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9jbHVzdGVycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ea49bc6-54c5-4794-823e-f3ffec1dde93" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/deployertest/providers/Microsoft.ServiceFabric/clusters/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"deployertest\"\r\n },\r\n \"etag\": \"W/\\\"636197629293638021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://deployertest.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsdeployertest6267\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsdeployertest6267.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsdeployertest6267.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsdeployertest6267.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"deployer\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-mwh-20161203-012707281-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-mwh-20161203-\",\r\n \"name\": \"wftsvc-mwh-20161203-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-mwh-20161203-\"\r\n },\r\n \"etag\": \"W/\\\"636163252596227409\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://wftsvc-mwh-20161203-012707281-v2.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagmwh20161203012707\",\r\n \"primaryAccessKey\": \"2+20fZYSmdfT8KUPCUu5UKXvHeLKTuFwqm3UBJCkmX42iKPqq9qLxc09cVx0Uolaw6s6HRUtIOm83uHMPSKEdg==\",\r\n \"secondaryAccessKey\": \"Mn8li9IXuNnQgfdTlFKR8eGW+HHKopQa7tSgKF4WlYemA2xWxbZCSV/toP4142FzQEg72HEH7q0AhTXDzDXHKg==\",\r\n \"blobEndpoint\": \"https://diagmwh20161203012707.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagmwh20161203012707.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagmwh20161203012707.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest10/providers/Microsoft.ServiceFabric/clusters/abhaytest10\",\r\n \"name\": \"abhaytest10\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest10\"\r\n },\r\n \"etag\": \"W/\\\"636259742203563222\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c1df46cf-2d8c-4326-a7fc-68a9f7f02a18\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest10.westeurope.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westeurope.servicefabric.azure.com/runtime/clusters/c1df46cf-2d8c-4326-a7fc-68a9f7f02a18\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest104765\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest104765.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest104765.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest104765.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"brazilsouth\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest07/providers/Microsoft.ServiceFabric/clusters/abhaytest07\",\r\n \"name\": \"abhaytest07\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest07\"\r\n },\r\n \"etag\": \"W/\\\"636258461606589559\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ed4cfd15-ba90-4f6b-93a0-1b01676502e4\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest07.brazilsouth.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southbrazil.servicefabric.azure.com/runtime/clusters/ed4cfd15-ba90-4f6b-93a0-1b01676502e4\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest071622\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest071622.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest071622.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest071622.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"bt\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"brazilsouth\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest11/providers/Microsoft.ServiceFabric/clusters/abhaytest11\",\r\n \"name\": \"abhaytest11\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest11\"\r\n },\r\n \"etag\": \"W/\\\"636259743810711551\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a1b5c572-6c59-44f8-98a9-ea8372b69350\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest11.brazilsouth.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southbrazil.servicefabric.azure.com/runtime/clusters/a1b5c572-6c59-44f8-98a9-ea8372b69350\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest112249\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest112249.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest112249.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest112249.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"bt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176421\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703142040/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703142040\"\r\n },\r\n \"etag\": \"W/\\\"636251208498220241\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0710c294-b648-430e-a8c0-07dec65ddaaf\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703142040.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0710c294-b648-430e-a8c0-07dec65ddaaf\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"kfu5abfrzua2u2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://kfu5abfrzua2u2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://kfu5abfrzua2u2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://kfu5abfrzua2u2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703152214/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703152214\"\r\n },\r\n \"etag\": \"W/\\\"636252191098056200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d6926106-806e-4838-9011-6f2d83369b46\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703152214.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d6926106-806e-4838-9011-6f2d83369b46\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"irsjpl3rjsmpk2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://irsjpl3rjsmpk2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://irsjpl3rjsmpk2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://irsjpl3rjsmpk2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703160653/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703160653\"\r\n },\r\n \"etag\": \"W/\\\"636252441405373694\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05993e81-f074-4a75-aa0e-be74340b35e0\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703160653.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/05993e81-f074-4a75-aa0e-be74340b35e0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ot75v2adi5eho2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ot75v2adi5eho2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ot75v2adi5eho2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ot75v2adi5eho2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703162329/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703162329\"\r\n },\r\n \"etag\": \"W/\\\"636253038124659648\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c0c53e28-8549-4584-9f5d-fdb077cae3d2\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703162329.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c0c53e28-8549-4584-9f5d-fdb077cae3d2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"fgyzih33ttzpm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://fgyzih33ttzpm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://fgyzih33ttzpm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://fgyzih33ttzpm2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703162340/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703162340\"\r\n },\r\n \"etag\": \"W/\\\"636253046173461141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c1406cb6-e459-48e2-b485-f8bc45e92fd2\",\r\n \"clusterCodeVersion\": \"5.5.221.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703162340.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c1406cb6-e459-48e2-b485-f8bc45e92fd2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"4ir6ckcxu47ho2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://4ir6ckcxu47ho2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://4ir6ckcxu47ho2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://4ir6ckcxu47ho2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703170025/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703170025\"\r\n },\r\n \"etag\": \"W/\\\"636253072032261700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"df7aa3e8-ebeb-43c6-8114-f0c7b9c91ff0\",\r\n \"clusterCodeVersion\": \"5.5.221.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703170025.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/df7aa3e8-ebeb-43c6-8114-f0c7b9c91ff0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"innh4jgb7eu7a2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://innh4jgb7eu7a2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://innh4jgb7eu7a2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://innh4jgb7eu7a2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703170037/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703170037\"\r\n },\r\n \"etag\": \"W/\\\"636253079366086660\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a6ef2e2a-c792-4dd2-8a5a-fcdcb6e7be9a\",\r\n \"clusterCodeVersion\": \"5.6.133.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703170037.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/a6ef2e2a-c792-4dd2-8a5a-fcdcb6e7be9a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"mazzsekewyiwc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://mazzsekewyiwc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://mazzsekewyiwc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://mazzsekewyiwc2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703182049/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703182049\"\r\n },\r\n \"etag\": \"W/\\\"636254670316380586\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f3de6f6d-cf9e-4e97-8529-1c7f6649971d\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703182049.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f3de6f6d-cf9e-4e97-8529-1c7f6649971d\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"e2i5ab3jkypoe2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://e2i5ab3jkypoe2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://e2i5ab3jkypoe2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://e2i5ab3jkypoe2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703182157/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703182157\"\r\n },\r\n \"etag\": \"W/\\\"636254711071756618\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"03c5e366-3deb-4ade-b539-6357690341ec\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703182157.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/03c5e366-3deb-4ade-b539-6357690341ec\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"5iaifyl4gk3u42\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://5iaifyl4gk3u42.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://5iaifyl4gk3u42.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://5iaifyl4gk3u42.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703182207/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703182207\"\r\n },\r\n \"etag\": \"W/\\\"636254717000562216\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8c49af0a-7f51-4a13-b32c-61e511231330\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703182207.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8c49af0a-7f51-4a13-b32c-61e511231330\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"yg2mi2cg4n5c42\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://yg2mi2cg4n5c42.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://yg2mi2cg4n5c42.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://yg2mi2cg4n5c42.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703201843/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703201843\",\r\n \"name\": \"abhaymtest1703201843\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703201843\"\r\n },\r\n \"etag\": \"W/\\\"636256322519870931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4ef3183b-0fa8-4c4d-9ee5-9a34f80000eb\",\r\n \"clusterCodeVersion\": \"5.6.143.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703201843.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4ef3183b-0fa8-4c4d-9ee5-9a34f80000eb\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"tqfkeugsxpq5c2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://tqfkeugsxpq5c2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://tqfkeugsxpq5c2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://tqfkeugsxpq5c2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703201944/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703201944\",\r\n \"name\": \"abhaymtest1703201944\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703201944\"\r\n },\r\n \"etag\": \"W/\\\"636256359447254927\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8180f474-9fad-4db4-b9c1-9b03a6eef427\",\r\n \"clusterCodeVersion\": \"5.6.142.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703201944.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8180f474-9fad-4db4-b9c1-9b03a6eef427\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"62lr5rwrjypym2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://62lr5rwrjypym2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://62lr5rwrjypym2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://62lr5rwrjypym2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703202006/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703202006\",\r\n \"name\": \"abhaymtest1703202006\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703202006\"\r\n },\r\n \"etag\": \"W/\\\"636256372160219776\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"e619e5e4-a16d-4c62-a4d5-34ca4a5faf12\",\r\n \"clusterCodeVersion\": \"5.6.143.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703202006.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e619e5e4-a16d-4c62-a4d5-34ca4a5faf12\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"edgr7mnf5dfmc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://edgr7mnf5dfmc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://edgr7mnf5dfmc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://edgr7mnf5dfmc2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703210416/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703210416\",\r\n \"name\": \"abhaymtest1703210416\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703210416\"\r\n },\r\n \"etag\": \"W/\\\"636256666267146000\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"99bb7010-08b5-4b35-ad59-ad8c5d866eee\",\r\n \"clusterCodeVersion\": \"5.6.142.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703210416.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/99bb7010-08b5-4b35-ad59-ad8c5d866eee\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"2ayg4z4veqsko2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://2ayg4z4veqsko2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://2ayg4z4veqsko2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://2ayg4z4veqsko2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703212351/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703212351\",\r\n \"name\": \"abhaymtest1703212351\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703212351\"\r\n },\r\n \"etag\": \"W/\\\"636257371413375804\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"clusterId\": \"d903d1f1-4d2b-4e3c-a24a-91050462db6d\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://abhaymtest1703212351.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d903d1f1-4d2b-4e3c-a24a-91050462db6d\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"hqsthf4zpysdk2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://hqsthf4zpysdk2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://hqsthf4zpysdk2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://hqsthf4zpysdk2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703220723/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703220723\",\r\n \"name\": \"abhaymtest1703220723\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703220723\"\r\n },\r\n \"etag\": \"W/\\\"636257642836946793\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"50161db7-f841-4da4-957d-9f59a01a9f93\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://abhaymtest1703220723.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/50161db7-f841-4da4-957d-9f59a01a9f93\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"nhgf2s44nhoew2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://nhgf2s44nhoew2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://nhgf2s44nhoew2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://nhgf2s44nhoew2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703220724/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703220724\",\r\n \"name\": \"abhaymtest1703220724\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703220724\"\r\n },\r\n \"etag\": \"W/\\\"636257643365813449\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9470401e-4b1e-43fe-81d2-6d80e290f69d\",\r\n \"clusterCodeVersion\": \"5.6.142.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703220724.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9470401e-4b1e-43fe-81d2-6d80e290f69d\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"m2g7atv2da7qm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://m2g7atv2da7qm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://m2g7atv2da7qm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://m2g7atv2da7qm2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230444/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230444\",\r\n \"name\": \"abhaymtest1703230444\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230444\"\r\n },\r\n \"etag\": \"W/\\\"636258411338377214\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"80cacce2-0b48-4419-9791-190c4a212633\",\r\n \"clusterCodeVersion\": \"5.6.142.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703230444.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/80cacce2-0b48-4419-9791-190c4a212633\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"dju4bjbw7xrvq2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://dju4bjbw7xrvq2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://dju4bjbw7xrvq2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://dju4bjbw7xrvq2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230456/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230456\",\r\n \"name\": \"abhaymtest1703230456\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230456\"\r\n },\r\n \"etag\": \"W/\\\"636258418207176135\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f40bb2fc-7618-4a5a-b72c-11134b7b23b8\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://abhaymtest1703230456.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f40bb2fc-7618-4a5a-b72c-11134b7b23b8\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"4oxwyjavui2sa2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://4oxwyjavui2sa2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://4oxwyjavui2sa2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://4oxwyjavui2sa2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230505/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230505\",\r\n \"name\": \"abhaymtest1703230505\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230505\"\r\n },\r\n \"etag\": \"W/\\\"636258423533875493\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"141205fa-86b9-44f1-8d71-dff5a641eac0\",\r\n \"clusterCodeVersion\": \"5.6.143.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703230505.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/141205fa-86b9-44f1-8d71-dff5a641eac0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6ovvhzkxhdei62\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6ovvhzkxhdei62.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6ovvhzkxhdei62.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6ovvhzkxhdei62.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230549/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230549\",\r\n \"name\": \"abhaymtest1703230549\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230549\"\r\n },\r\n \"etag\": \"W/\\\"636258450450830685\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"06a5d762-802e-46cc-91a2-c35bc1113549\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://abhaymtest1703230549.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/06a5d762-802e-46cc-91a2-c35bc1113549\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"psumi2csefzei2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://psumi2csefzei2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://psumi2csefzei2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://psumi2csefzei2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703290021/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703290021\",\r\n \"name\": \"abhaymtest1703290021\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703290021\"\r\n },\r\n \"etag\": \"W/\\\"636263437539100159\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"e2cc2597-f4f7-432a-b682-ddb65e07f1f9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703290021.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e2cc2597-f4f7-432a-b682-ddb65e07f1f9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"cqthjylk2vqrq2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://cqthjylk2vqrq2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://cqthjylk2vqrq2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://cqthjylk2vqrq2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"vmInstanceCount\": 1,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703291956/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703291956\",\r\n \"name\": \"abhaymtest1703291956\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703291956\"\r\n },\r\n \"etag\": \"W/\\\"636264142286359388\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3ab812a4-a896-4e16-abb1-7bb4b8333d7c\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703291956.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/3ab812a4-a896-4e16-abb1-7bb4b8333d7c\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6iul7jvqaerqi2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6iul7jvqaerqi2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6iul7jvqaerqi2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6iul7jvqaerqi2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"vmInstanceCount\": 1,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest06/providers/Microsoft.ServiceFabric/clusters/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest06\"\r\n },\r\n \"etag\": \"W/\\\"636247797680333363\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4f6e2c10-6dc5-492f-89d0-d860b40e2ced\",\r\n \"clusterCodeVersion\": \"5.5.219.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest06.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4f6e2c10-6dc5-492f-89d0-d860b40e2ced\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest069203\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest069203.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest069203.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest069203.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newrecordclusterrg1/providers/Microsoft.ServiceFabric/clusters/newrecordcluster2\",\r\n \"name\": \"newrecordcluster2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newrecordcluster2\"\r\n },\r\n \"etag\": \"W/\\\"636259670531083681\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c098ef7e-b993-454d-8cc1-71115ce4d175\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://newrecordcluster2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c098ef7e-b993-454d-8cc1-71115ce4d175\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ux7ws4v7x3jso2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ux7ws4v7x3jso2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ux7ws4v7x3jso2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ux7ws4v7x3jso2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newsftestrg1/providers/Microsoft.ServiceFabric/clusters/testpowershellcluster1\",\r\n \"name\": \"testpowershellcluster1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testpowershellcluster1\"\r\n },\r\n \"etag\": \"W/\\\"636259309720451603\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"298d9d28-ede5-4ba8-80da-145ca8fdda91\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://testpowershellcluster1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/298d9d28-ede5-4ba8-80da-145ca8fdda91\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"aaujveyll53zy2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://aaujveyll53zy2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://aaujveyll53zy2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://aaujveyll53zy2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"ntn3\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newsftestrg3/providers/Microsoft.ServiceFabric/clusters/newrecordcluster1\",\r\n \"name\": \"newrecordcluster1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newrecordcluster1\"\r\n },\r\n \"etag\": \"W/\\\"636259637686378619\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3fa4d0e0-9b84-4577-9200-8f7e16fc5ba4\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://newrecordcluster1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/3fa4d0e0-9b84-4577-9200-8f7e16fc5ba4\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"557jtwuooinek2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://557jtwuooinek2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://557jtwuooinek2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://557jtwuooinek2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newtestresourcegroup1/providers/Microsoft.ServiceFabric/clusters/newrecordcluster2\",\r\n \"name\": \"newrecordcluster2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newrecordcluster2\"\r\n },\r\n \"etag\": \"W/\\\"636259643816156960\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a07feb71-a75c-4777-89d3-15680fb1a345\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"https://newrecordcluster2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/a07feb71-a75c-4777-89d3-15680fb1a345\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qlntlhz3veeyq2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qlntlhz3veeyq2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qlntlhz3veeyq2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qlntlhz3veeyq2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sdktestrg2/providers/Microsoft.ServiceFabric/clusters/sdktest\",\r\n \"name\": \"sdktest\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244182147134148\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogssdktest5486\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogssdktest5486.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogssdktest5486.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogssdktest5486.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"reverseProxyEndpointPort\": 9998,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testpowershellclusterrg1/providers/Microsoft.ServiceFabric/clusters/newrecordcluster2\",\r\n \"name\": \"newrecordcluster2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newrecordcluster2\"\r\n },\r\n \"etag\": \"W/\\\"636259659198426387\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0d67939f-8a21-4a67-8fdc-e008a01542e9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://newrecordcluster2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0d67939f-8a21-4a67-8fdc-e008a01542e9\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"hp2bioq5yplhu2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://hp2bioq5yplhu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://hp2bioq5yplhu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://hp2bioq5yplhu2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636258957273157045\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9525f566-2a5e-488f-8b69-4b41f6562c78\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9525f566-2a5e-488f-8b69-4b41f6562c78\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\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": [ + "Sat, 01 Apr 2017 14:22:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "f58a0446-fdbe-4dac-b5c7-04b67c7d6d96" + ], + "x-ms-correlation-request-id": [ + "f58a0446-fdbe-4dac-b5c7-04b67c7d6d96" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142213Z:f58a0446-fdbe-4dac-b5c7-04b67c7d6d96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json new file mode 100644 index 000000000000..0dc7d2bc22e8 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json @@ -0,0 +1,183 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7b004d4-4a7e-4ca0-8c05-3191284b324d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg\",\r\n \"name\": \"aaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608\",\r\n \"name\": \"abhaym-test-20170318-194608\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703201843\",\r\n \"name\": \"abhaymtest1703201843\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703201944\",\r\n \"name\": \"abhaymtest1703201944\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703202006\",\r\n \"name\": \"abhaymtest1703202006\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703210414\",\r\n \"name\": \"abhaymtest1703210414\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703210416\",\r\n \"name\": \"abhaymtest1703210416\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703212351\",\r\n \"name\": \"abhaymtest1703212351\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703220723\",\r\n \"name\": \"abhaymtest1703220723\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703220724\",\r\n \"name\": \"abhaymtest1703220724\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230444\",\r\n \"name\": \"abhaymtest1703230444\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230456\",\r\n \"name\": \"abhaymtest1703230456\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230505\",\r\n \"name\": \"abhaymtest1703230505\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230549\",\r\n \"name\": \"abhaymtest1703230549\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290002\",\r\n \"name\": \"abhaymtest1703290002\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290020\",\r\n \"name\": \"abhaymtest1703290020\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290021\",\r\n \"name\": \"abhaymtest1703290021\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703291956\",\r\n \"name\": \"abhaymtest1703291956\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest07\",\r\n \"name\": \"abhaytest07\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest10\",\r\n \"name\": \"abhaytest10\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest11\",\r\n \"name\": \"abhaytest11\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykeyvaultrg1\",\r\n \"name\": \"mykeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvrg1\",\r\n \"name\": \"mykvrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrg1\",\r\n \"name\": \"mykvvrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrg2\",\r\n \"name\": \"mykvvrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrgg2\",\r\n \"name\": \"mykvvrgg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg1\",\r\n \"name\": \"newkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg3\",\r\n \"name\": \"newkeyvaultrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newrecordclusterrg1\",\r\n \"name\": \"newrecordclusterrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newsftestrg1\",\r\n \"name\": \"newsftestrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newsftestrg3\",\r\n \"name\": \"newsftestrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newtestresourcegroup1\",\r\n \"name\": \"newtestresourcegroup1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same1rg\",\r\n \"name\": \"same1rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rg\",\r\n \"name\": \"same2rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rgg\",\r\n \"name\": \"same2rgg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklusterrg\",\r\n \"name\": \"sdklusterrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestkeyvaultrg\",\r\n \"name\": \"sdktestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfrpkeyvaultrg1\",\r\n \"name\": \"sfrpkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkeyvaultrg\",\r\n \"name\": \"sftestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkkrg1\",\r\n \"name\": \"sftestkkrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg\",\r\n \"name\": \"testDeleterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testpowershellclusterrg1\",\r\n \"name\": \"testpowershellclusterrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testrg111\",\r\n \"name\": \"testrg111\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/VmExtnAppInsightTest\",\r\n \"name\": \"VmExtnAppInsightTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlustore\",\r\n \"name\": \"xunlustore\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "f80a85f6-614b-48c7-a5aa-332b5c061a82" + ], + "x-ms-correlation-request-id": [ + "f80a85f6-614b-48c7-a5aa-332b5c061a82" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142207Z:f80a85f6-614b-48c7-a5aa-332b5c061a82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMlMkZjbHVzdGVycycmYXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2811b677-6489-4664-aa03-bc7d2c5066fd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "256abb22-40f6-47de-9764-893f886022eb" + ], + "x-ms-correlation-request-id": [ + "256abb22-40f6-47de-9764-893f886022eb" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142209Z:256abb22-40f6-47de-9764-893f886022eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL2FhYWFhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41324347-0f3f-4ab5-b9fd-61d9a3b3abc0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176421\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:22:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "2728800d-d1cc-40af-bff8-e0af681dcd63" + ], + "x-ms-correlation-request-id": [ + "2728800d-d1cc-40af-bff8-e0af681dcd63" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142210Z:2728800d-d1cc-40af-bff8-e0af681dcd63" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterVersions/TestList.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterVersions/TestList.json new file mode 100644 index 000000000000..efb193a9b182 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterVersions/TestList.json @@ -0,0 +1,138 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvZW52aXJvbm1lbnRzL1dpbmRvd3MvY2x1c3RlclZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "abe48efb-69bf-4415-b1b5-57aa5d2203b6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.4.145.9494\",\r\n \"name\": \"5.4.145.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.4.164.9494\",\r\n \"name\": \"5.4.164.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.5.216.0\",\r\n \"name\": \"5.5.216.0\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.5.219.0\",\r\n \"name\": \"5.5.219.0\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:28:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "0f51eac4-6049-48b2-8510-cf3a85474bac" + ], + "x-ms-correlation-request-id": [ + "0f51eac4-6049-48b2-8510-cf3a85474bac" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142808Z:0f51eac4-6049-48b2-8510-cf3a85474bac" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/default/clusterVersions?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvZW52aXJvbm1lbnRzL2RlZmF1bHQvY2x1c3RlclZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38feb45f-0713-4787-aa70-1841da6bbbe3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.4.145.9494\",\r\n \"name\": \"5.4.145.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.4.164.9494\",\r\n \"name\": \"5.4.164.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.5.216.0\",\r\n \"name\": \"5.5.216.0\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.5.219.0\",\r\n \"name\": \"5.5.219.0\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.3.0.0\",\r\n \"name\": \"5.3.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.3.0.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Linux\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.3.0.3\",\r\n \"name\": \"5.3.0.3\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.3.0.3\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Linux\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.4.0.0\",\r\n \"name\": \"5.4.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.4.0.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Linux\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.5.0.2\",\r\n \"name\": \"5.5.0.2\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.5.0.2\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Linux\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:28:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "81aae445-3fc9-405b-beaf-029d46fd49b7" + ], + "x-ms-correlation-request-id": [ + "81aae445-3fc9-405b-beaf-029d46fd49b7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142809Z:81aae445-3fc9-405b-beaf-029d46fd49b7" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json new file mode 100644 index 000000000000..60e58e844213 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json @@ -0,0 +1,318 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca496866-fa00-430c-ae89-a2456fcd876c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg\",\r\n \"name\": \"aaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608\",\r\n \"name\": \"abhaym-test-20170318-194608\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703201843\",\r\n \"name\": \"abhaymtest1703201843\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703201944\",\r\n \"name\": \"abhaymtest1703201944\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703202006\",\r\n \"name\": \"abhaymtest1703202006\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703210414\",\r\n \"name\": \"abhaymtest1703210414\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703210416\",\r\n \"name\": \"abhaymtest1703210416\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703212351\",\r\n \"name\": \"abhaymtest1703212351\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703220723\",\r\n \"name\": \"abhaymtest1703220723\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703220724\",\r\n \"name\": \"abhaymtest1703220724\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230444\",\r\n \"name\": \"abhaymtest1703230444\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230456\",\r\n \"name\": \"abhaymtest1703230456\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230505\",\r\n \"name\": \"abhaymtest1703230505\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230549\",\r\n \"name\": \"abhaymtest1703230549\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290002\",\r\n \"name\": \"abhaymtest1703290002\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290020\",\r\n \"name\": \"abhaymtest1703290020\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290021\",\r\n \"name\": \"abhaymtest1703290021\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703291956\",\r\n \"name\": \"abhaymtest1703291956\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest07\",\r\n \"name\": \"abhaytest07\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest10\",\r\n \"name\": \"abhaytest10\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest11\",\r\n \"name\": \"abhaytest11\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykeyvaultrg1\",\r\n \"name\": \"mykeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvrg1\",\r\n \"name\": \"mykvrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrg1\",\r\n \"name\": \"mykvvrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrg2\",\r\n \"name\": \"mykvvrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrgg2\",\r\n \"name\": \"mykvvrgg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg1\",\r\n \"name\": \"newkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg3\",\r\n \"name\": \"newkeyvaultrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newrecordclusterrg1\",\r\n \"name\": \"newrecordclusterrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newsftestrg1\",\r\n \"name\": \"newsftestrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newsftestrg3\",\r\n \"name\": \"newsftestrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newtestresourcegroup1\",\r\n \"name\": \"newtestresourcegroup1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same1rg\",\r\n \"name\": \"same1rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rg\",\r\n \"name\": \"same2rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rgg\",\r\n \"name\": \"same2rgg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklusterrg\",\r\n \"name\": \"sdklusterrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestkeyvaultrg\",\r\n \"name\": \"sdktestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfrpkeyvaultrg1\",\r\n \"name\": \"sfrpkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkeyvaultrg\",\r\n \"name\": \"sftestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkkrg1\",\r\n \"name\": \"sftestkkrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testpowershellclusterrg1\",\r\n \"name\": \"testpowershellclusterrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testrg111\",\r\n \"name\": \"testrg111\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/VmExtnAppInsightTest\",\r\n \"name\": \"VmExtnAppInsightTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlustore\",\r\n \"name\": \"xunlustore\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:23:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14976" + ], + "x-ms-request-id": [ + "15c7563d-98cf-4e0e-93c4-a4e655f7a51e" + ], + "x-ms-correlation-request-id": [ + "15c7563d-98cf-4e0e-93c4-a4e655f7a51e" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170401T142319Z:15c7563d-98cf-4e0e-93c4-a4e655f7a51e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMlMkZjbHVzdGVycycmYXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "177d3bd7-1053-4c6f-bf8b-68516d963799" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:23:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "575e244d-a161-4d0a-a8f9-897e70e8d51f" + ], + "x-ms-correlation-request-id": [ + "575e244d-a161-4d0a-a8f9-897e70e8d51f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170401T142320Z:575e244d-a161-4d0a-a8f9-897e70e8d51f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL2FhYWFhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a353450-ddfe-4cab-82c9-1197e82ee1e9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176421\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:23:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14971" + ], + "x-ms-request-id": [ + "7b90cf8f-5b1d-4e50-8bc6-d94036f2ae70" + ], + "x-ms-correlation-request-id": [ + "7b90cf8f-5b1d-4e50-8bc6-d94036f2ae70" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170401T142321Z:7b90cf8f-5b1d-4e50-8bc6-d94036f2ae70" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL2FhYWFhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4448a61e-4fa9-4dc5-bad7-eae8d9e69bad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176422\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:23:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14970" + ], + "x-ms-request-id": [ + "9f569d9e-59d1-4ec1-9702-52c24d6baa43" + ], + "x-ms-correlation-request-id": [ + "9f569d9e-59d1-4ec1-9702-52c24d6baa43" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170401T142321Z:9f569d9e-59d1-4ec1-9702-52c24d6baa43" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL2FhYWFhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "247" + ], + "x-ms-client-request-id": [ + "d49e9e12-0473-4947-9e80-9aaeac900d11" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176422\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:23:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "921764f5-534e-496b-9546-e90711053f81" + ], + "x-ms-correlation-request-id": [ + "921764f5-534e-496b-9546-e90711053f81" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170401T142321Z:921764f5-534e-496b-9546-e90711053f81" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/TestHelper/RecordedDelegatingHandler.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/TestHelper/RecordedDelegatingHandler.cs new file mode 100644 index 000000000000..b80dab0d7089 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/TestHelper/RecordedDelegatingHandler.cs @@ -0,0 +1,91 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace ServiceFabric.Tests.TestHelper +{ + + using System; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Threading.Tasks; + + public class RecordedDelegatingHandler : DelegatingHandler + { + private HttpResponseMessage _response; + + public RecordedDelegatingHandler() + { + StatusCodeToReturn = HttpStatusCode.Created; + SubsequentStatusCodeToReturn = StatusCodeToReturn; + } + + public RecordedDelegatingHandler(HttpResponseMessage response) + { + StatusCodeToReturn = HttpStatusCode.Created; + SubsequentStatusCodeToReturn = StatusCodeToReturn; + _response = response; + } + + public HttpStatusCode StatusCodeToReturn { get; set; } + + public HttpStatusCode SubsequentStatusCodeToReturn { get; set; } + + public string Request { get; private set; } + + public HttpRequestHeaders RequestHeaders { get; private set; } + + public HttpContentHeaders ContentHeaders { get; private set; } + + public HttpMethod Method { get; private set; } + + public Uri Uri { get; private set; } + + public bool IsPassThrough { get; set; } + + private int counter; + + protected override async Task SendAsync(HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) + { + counter++; + // Save request + if (request.Content == null) + { + Request = string.Empty; + } + else + { + Request = await request.Content.ReadAsStringAsync(); + } + RequestHeaders = request.Headers; + if (request.Content != null) + { + ContentHeaders = request.Content.Headers; + } + Method = request.Method; + Uri = request.RequestUri; + + // Prepare response + if (IsPassThrough) + { + return await base.SendAsync(request, cancellationToken); + } + else + { + if (_response != null && counter == 1) + { + return _response; + } + else + { + var statusCode = StatusCodeToReturn; + if (counter > 1) + statusCode = SubsequentStatusCodeToReturn; + HttpResponseMessage response = new HttpResponseMessage(statusCode); + response.Content = new StringContent(""); + return response; + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs new file mode 100644 index 000000000000..180b9e75f22f --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs @@ -0,0 +1,118 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace ServiceFabric.Tests.Tests +{ + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Resources.Models; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest.Azure; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using TestHelper; + using System.Net; + using Microsoft.Azure.Management.ServiceFabric.Models; + using System; + using System.Collections.Generic; + using Xunit; + + public class ServiceFabricTestBase + { + protected string clusterIdFormat = "/subscriptions/{0}/resourcegroups/{1}/providers/Microsoft.ServiceFabric/clusters/{2}"; + + protected ResourceManagementClient GetResourceManagementClient(MockContext context) + { + return context.GetServiceClient( + handlers: new RecordedDelegatingHandler() + { + StatusCodeToReturn = HttpStatusCode.OK, + IsPassThrough = true + }); + } + + protected ServiceFabricManagementClient GetServiceFabricClient(MockContext context) + { + return context.GetServiceClient( + handlers: new RecordedDelegatingHandler() + { + StatusCodeToReturn = HttpStatusCode.OK, + IsPassThrough = true + }); + } + + protected IPage GetAllServiceFabricClusterResources( + MockContext context, + ResourceGroup rg) + { + var resouceClient = GetResourceManagementClient(context); + + var query = new Microsoft.Rest.Azure.OData.ODataQuery< + GenericResourceFilter>(); + query.SetFilter( + f => f.ResourceType == "Microsoft.ServiceFabric/clusters"); + + return resouceClient.ResourceGroups.ListResources(rg.Name, query); + } + + protected Cluster CreateCluster( + ResourceManagementClient resouceClient, + ServiceFabricManagementClient serviceFabricClient, + string rg, + string rgLocation, + string clusterName) + { + var clusterId = string.Format( + clusterIdFormat, + resouceClient.SubscriptionId, + rg, + clusterName); + + var newCluster = new Cluster( + location: rgLocation, + reliabilityLevel: "Silver", + managementEndpoint: "http://testCluster.southcentralus.cloudapp.azure.com:19080", + nodeTypes: new List() + { + new NodeTypeDescription() + { + ApplicationPorts = new EndpointRangeDescription() + { + StartPort = 1234, + EndPort = 4321 + }, + DurabilityLevel = "Bronze", + EphemeralPorts = new EndpointRangeDescription() + { + StartPort = 3456, + EndPort = 6543 + }, + IsPrimary = true, + Name = "n1", + ClientConnectionEndpointPort = 19000, + Capacities =null, + HttpGatewayEndpointPort = 19080, + PlacementProperties = null, + VmInstanceCount = 5, + ReverseProxyEndpointPort = null + } + }, + clusterId: clusterId, + name: "testCluster2", + type: "Microsoft.ServiceFabric/clusters", + vmImage: "Windows" + ) + { + }; + + resouceClient.ResourceGroups.CreateOrUpdate( + rg, + new ResourceGroup(rgLocation)); + + var cluster = serviceFabricClient.Clusters.Create(rg, clusterName, newCluster); + Assert.NotNull(cluster); + + cluster = serviceFabricClient.Clusters.Get(rg, clusterName); + Assert.NotNull(cluster); + return cluster; + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs new file mode 100644 index 000000000000..3ad8d74165c6 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace ServiceFabric.Tests.Tests +{ + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + using Microsoft.Azure.Management.ServiceFabric; + using System.Linq; + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Resources.Models; + using System.IO; + using Microsoft.Azure.Management.ServiceFabric.Models; + using System; + using System.Collections.Generic; + + public class TestCreateClusterResource : ServiceFabricTestBase + { + [Fact] + public void TestCreate() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var serviceFabricClient = GetServiceFabricClient(context); + var resouceClient = GetResourceManagementClient(context); + var resouceGroupName = "TestRG1"; + var location = "South Central US"; + var clusterName = "testCreateCluster2"; + + try + { + serviceFabricClient.Clusters.Get(resouceGroupName, clusterName); + serviceFabricClient.Clusters.Delete(resouceGroupName, clusterName); + } + catch (ErrorModelException e) + { + Assert.True(e.Response.StatusCode == System.Net.HttpStatusCode.NotFound); + } + + TestUtilities.Wait(TimeSpan.FromSeconds(10)); + + var cluster = CreateCluster(resouceClient, serviceFabricClient, resouceGroupName, location, clusterName); + cluster = serviceFabricClient.Clusters.Get(resouceGroupName, clusterName); + Assert.NotNull(cluster); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestDeleteClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestDeleteClusterResource.cs new file mode 100644 index 000000000000..8d5c79e6a256 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestDeleteClusterResource.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace ServiceFabric.Tests.Tests +{ + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + using Microsoft.Azure.Management.ServiceFabric; + using System.Linq; + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Resources.Models; + using System.IO; + using Microsoft.Azure.Management.ServiceFabric.Models; + using System; + using System.Collections.Generic; + + public class TestDeleteClusterResource : ServiceFabricTestBase + { + [Fact] + public void TestDelete() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var serviceFabricClient = GetServiceFabricClient(context); + var resouceClient = GetResourceManagementClient(context); + var resouceGroupName = "testDeleterg"; + var location = "South Central US"; + var clusterName = "testDeleteCluster"; + + var cluster = CreateCluster(resouceClient, serviceFabricClient, resouceGroupName, location, clusterName); + + cluster = serviceFabricClient.Clusters.Get(resouceGroupName, clusterName); + Assert.NotNull(cluster); + + serviceFabricClient.Clusters.Delete(resouceGroupName, clusterName); + + var exception = Assert.Throws(() => + { + cluster = serviceFabricClient.Clusters.Get(resouceGroupName, clusterName); + }); + + Assert.True(exception.Response.StatusCode == System.Net.HttpStatusCode.NotFound); + + serviceFabricClient.Clusters.Delete(resouceGroupName, "donotexistcluster"); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestGetClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestGetClusterResource.cs new file mode 100644 index 000000000000..a6c6f4e05cad --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestGetClusterResource.cs @@ -0,0 +1,53 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace ServiceFabric.Tests.Tests +{ + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + using Microsoft.Azure.Management.ServiceFabric; + using System.Linq; + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Resources.Models; + using System.IO; + using Microsoft.Azure.Management.ServiceFabric.Models; + + public class TestGetClusterResource : ServiceFabricTestBase + { + [Fact] + public void TestGet() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var serviceFabricClient = GetServiceFabricClient(context); + var resouceClient = GetResourceManagementClient(context); + var resourceGroups = resouceClient.ResourceGroups.List(); + foreach (var rg in resourceGroups) + { + var resources = GetAllServiceFabricClusterResources(context, rg); + if (resources.Any()) + { + var res = resources.First(); + var cluster = serviceFabricClient.Clusters.Get(rg.Name, res.Name); + Assert.NotNull(cluster); + } + + var randomResName = "donotexisting"; + if (resources.Where(r => r.Name == randomResName).Count() == 0) + { + try + { + serviceFabricClient.Clusters.Get(rg.Name, randomResName); + } + catch (ErrorModelException exception) + { + Assert.True(exception.Response.StatusCode == System.Net.HttpStatusCode.NotFound); + } + } + + break; + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterResource.cs new file mode 100644 index 000000000000..d535bfdce921 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterResource.cs @@ -0,0 +1,62 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace ServiceFabric.Tests.Tests +{ + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + using Microsoft.Azure.Management.ServiceFabric; + using System.Linq; + using Microsoft.Azure.Management.Resources; + + public class TestListClusterResource : ServiceFabricTestBase + { + [Fact] + public void TestList() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var serviceFabricClient = GetServiceFabricClient(context); + var clusters = serviceFabricClient.Clusters.List(); + + Assert.NotNull(clusters); + Assert.NotNull(clusters); + var subscriptions = clusters.GroupBy(c => c.Id).Select(r => r.Key.Split('/')[2]).Distinct(); + Assert.Equal(subscriptions.Count(), 1); + } + } + + [Fact] + public void TestListByResourceGroup() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var serviceFabricClient = GetServiceFabricClient(context); + var resouceClient = GetResourceManagementClient(context); + var resourceGroups = resouceClient.ResourceGroups.List(); + foreach (var rg in resourceGroups) + { + var resources = GetAllServiceFabricClusterResources(context, rg); + if (resources.Any()) + { + var clusters = serviceFabricClient.Clusters.ListByResourceGroup(rg.Name); + Assert.NotNull(clusters); + + var res1 = resources.Select(r => r.Name).OrderBy(r => r).ToList(); + var res2 = clusters.Select( + c => c.Name).OrderBy(r => r).ToList(); + + Assert.True(res1.Count == res2.Count); + + for (int i = 0; i < res1.Count; i++) + { + Assert.True(res1[i] == res2[i]); + } + + break; + } + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterVersions.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterVersions.cs new file mode 100644 index 000000000000..43c5252d6c82 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterVersions.cs @@ -0,0 +1,36 @@ +using Microsoft.Azure.Management.ServiceFabric; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Xunit; + +namespace ServiceFabric.Tests.Tests +{ + public class TestListClusterVersions : ServiceFabricTestBase + { + [Fact] + public void TestList() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var serviceFabricClient = GetServiceFabricClient(context); + var clusterVersions = serviceFabricClient.ClusterVersions.List("southcentralus","Windows"); + + Assert.NotNull(clusterVersions); + Assert.NotNull(clusterVersions); + var versions = clusterVersions.GroupBy(c => c.Id).Select(r => r.Key.Split('/')[2]).Distinct(); + Assert.Equal(versions.Count(), 1); + + clusterVersions = serviceFabricClient.ClusterVersions.List("southcentralus", "default"); + + Assert.NotNull(clusterVersions); + Assert.NotNull(clusterVersions); + versions = clusterVersions.GroupBy(c => c.Id).Select(r => r.Key.Split('/')[2]).Distinct(); + Assert.Equal(versions.Count(), 1); + } + } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs new file mode 100644 index 000000000000..a5c1cab12c51 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.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. + +namespace ServiceFabric.Tests.Tests +{ + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + using Microsoft.Azure.Management.ServiceFabric; + using System.Linq; + using Microsoft.Azure.Management.Resources; + using System.Collections.Generic; + using Microsoft.Azure.Management.ServiceFabric.Models; + using System; + + public class TestUpdateClusterResource : ServiceFabricTestBase + { + [Fact] + public void TestUpdate() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var serviceFabricClient = GetServiceFabricClient(context); + var resouceClient = GetResourceManagementClient(context); + + var resourceGroups = resouceClient.ResourceGroups.List(); + foreach (var rg in resourceGroups) + { + var resources = GetAllServiceFabricClusterResources(context, rg); + if (resources.Any()) + { + var res = resources.First(); + var cluster = serviceFabricClient.Clusters.Get(rg.Name, res.Name); + + serviceFabricClient.Clusters.Update(rg.Name, res.Name, + new ClusterUpdateParameters() + { + FabricSettings = new List() + { + new SettingsSectionDescription() + { + Name = "NamingService", + Parameters = new List() + { + new SettingsParameterDescription() + { + Name = "MaxOperationTimeout", + Value = "1000" + } + } + } + } + }); + + cluster = serviceFabricClient.Clusters.Get(rg.Name, res.Name); + while (string.Compare(cluster.ClusterState, "ready",true) != 0) + { + cluster = serviceFabricClient.Clusters.Get(rg.Name, res.Name); + TestUtilities.Wait(TimeSpan.FromMinutes(1)); + } + + var ns = cluster.FabricSettings.Where(s => s.Name == "NamingService").First(); + var p = ns.Parameters.Where( + parameter => + parameter.Name == "MaxOperationTimeout").First(); + + Assert.True(p.Value == "1000"); + + break; + } + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/project.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/project.json new file mode 100644 index 000000000000..e09c77149b48 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/project.json @@ -0,0 +1,41 @@ +{ + "version": "1.0.0-*", + "description": "ServiceFabric Tests Class Library", + "authors": [ "Microsoft Corporation" ], + + "packOptions": { + "summary": "ServiceFabric.Tests", + "tags": [ "" ], + "projectUrl": "https://github.com/Azure/azure-sdk-for-net", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE" + }, + "buildOptions": { + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "compile": "../../../../tools/DisableTestRunParallel.cs" + }, + + "testRunner": "xunit", + "frameworks": { + "netcoreapp1.0": { + "imports": [ "dnxcore50", "portable-net45+win8" ], + "dependencies": { + } + } + }, + "dependencies": { + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0" + }, + "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Azure.ResourceManager": "1.0.0-preview", + "xunit": "2.2.0-beta2-build3300", + "dotnet-test-xunit": "2.2.0-preview2-build1029", + "Microsoft.Azure.Management.ServiceFabric": "1.0.0-preview", + "System.Linq": "4.3.0" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.sln b/src/ResourceManagement/ServiceFabric/ServiceFabric.sln new file mode 100644 index 000000000000..40e65fe31085 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ServiceFabric.Tests", "ServiceFabric.Test\ServiceFabric.Tests.xproj", "{F857A01A-2955-4FC9-836B-FE7FD80C6CC2}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Azure.Management.ServiceFabric", "Microsoft.Azure.Management.ServiceFabric\Microsoft.Azure.Management.ServiceFabric.xproj", "{624659FE-FE8F-41D2-99AB-0BA92DE15A65}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F857A01A-2955-4FC9-836B-FE7FD80C6CC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F857A01A-2955-4FC9-836B-FE7FD80C6CC2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F857A01A-2955-4FC9-836B-FE7FD80C6CC2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F857A01A-2955-4FC9-836B-FE7FD80C6CC2}.Release|Any CPU.Build.0 = Release|Any CPU + {624659FE-FE8F-41D2-99AB-0BA92DE15A65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {624659FE-FE8F-41D2-99AB-0BA92DE15A65}.Debug|Any CPU.Build.0 = Debug|Any CPU + {624659FE-FE8F-41D2-99AB-0BA92DE15A65}.Release|Any CPU.ActiveCfg = Release|Any CPU + {624659FE-FE8F-41D2-99AB-0BA92DE15A65}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal From c4ffe847e5f49a1b5e41dea3573449f6b7f91c3e Mon Sep 17 00:00:00 2001 From: Bruce Johnston Date: Tue, 4 Apr 2017 11:35:10 -0700 Subject: [PATCH 52/56] Search SDK: Bug fixes and JSON blob parsing support (#3012) * Search SDK: Fix bug that prevented infinite double values from deserializing Also added a bunch of test coverage around boundary values. * Search SDK: Adding convenience method for enabling JSON blob indexers * Search SDK: Bumping version to 3.0.3 and changing release notes * Updating Analyze API tests to include MS language tokenizers * Forgot about one case * Search SDK: Adding missing descriptions The Name properties of Tokenizer, TokenFilter, and CharFilter didn't have descriptions in the Swagger spec. Now that we've added them, the corresponding generated C# properties now have comments. --- .../Models/IndexingParametersExtensions.cs | 17 + .../Serialization/Private/DoubleConverter.cs | 72 + .../Serialization/Private/JsonUtility.cs | 2 + .../Models/CharFilter.cs | 4 + .../Models/TokenFilter.cs | 4 + .../Models/Tokenizer.cs | 4 + .../Properties/AssemblyInfo.cs | 2 +- .../Microsoft.Azure.Search/project.json | 4 +- .../Search.Management.Tests/project.json | 2 +- .../CanAnalyzeWithAllPossibleNames.json | 2466 +++++++++-------- .../CanRoundtripBoundaryValues.json | 911 ++++++ .../Search.Tests/Tests/CustomAnalyzerTests.cs | 12 +- .../Tests/IndexingParametersTests.cs | 9 + .../Search.Tests/Tests/IndexingTests.cs | 83 + src/Search/Search.Tests/Tests/Models/Hotel.cs | 43 +- .../Serialization/DocumentConverterTests.cs | 19 +- .../Serialization/DoubleConverterTests.cs | 124 + src/Search/Search.Tests/project.json | 2 +- 18 files changed, 2626 insertions(+), 1154 deletions(-) create mode 100644 src/Search/Microsoft.Azure.Search/Customizations/Serialization/Private/DoubleConverter.cs create mode 100644 src/Search/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexingTests/CanRoundtripBoundaryValues.json create mode 100644 src/Search/Search.Tests/Tests/Serialization/DoubleConverterTests.cs diff --git a/src/Search/Microsoft.Azure.Search/Customizations/Indexers/Models/IndexingParametersExtensions.cs b/src/Search/Microsoft.Azure.Search/Customizations/Indexers/Models/IndexingParametersExtensions.cs index 51bfa9c1f90f..0c7483a80529 100644 --- a/src/Search/Microsoft.Azure.Search/Customizations/Indexers/Models/IndexingParametersExtensions.cs +++ b/src/Search/Microsoft.Azure.Search/Customizations/Indexers/Models/IndexingParametersExtensions.cs @@ -13,6 +13,8 @@ namespace Microsoft.Azure.Search.Models /// public static class IndexingParametersExtensions { + private const string ParsingModeKey = "parsingMode"; + /// /// Specifies that the indexer will index only the storage metadata and completely skip the document extraction process. This is useful when /// you don't need the document content, nor do you need any of the content type-specific metadata properties. @@ -110,6 +112,21 @@ public static IndexingParameters SetBlobExtractionMode(this IndexingParameters p return Configure(parameters, "dataToExtract", (string)extractionMode); } + /// + /// Tells the indexer to assume that all blobs contain JSON, which it will then parse such that each blob's JSON will map to a single + /// document in the Azure Search index. + /// See for details. + /// + /// IndexingParameters to configure. + /// + /// This option only applies to indexers that index Azure Blob Storage. + /// + /// The IndexingParameters instance. + public static IndexingParameters ParseJson(this IndexingParameters parameters) + { + return Configure(parameters, ParsingModeKey, "json"); + } + /// /// Specifies that BlobExtractionMode.StorageMetadata blob extraction mode will be /// automatically used for blobs of unsupported content types. The default is false. diff --git a/src/Search/Microsoft.Azure.Search/Customizations/Serialization/Private/DoubleConverter.cs b/src/Search/Microsoft.Azure.Search/Customizations/Serialization/Private/DoubleConverter.cs new file mode 100644 index 000000000000..8b6925d42403 --- /dev/null +++ b/src/Search/Microsoft.Azure.Search/Customizations/Serialization/Private/DoubleConverter.cs @@ -0,0 +1,72 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Microsoft.Azure.Search.Serialization +{ + using System; + using System.Globalization; + using System.Reflection; + using Newtonsoft.Json; + + /// + /// Serializes doubles to and from the OData wire format. + /// + internal class DoubleConverter : JsonConverter + { + private const string ODataNegativeInfinity = "-INF"; + private const string ODataPositiveInfinity = "INF"; + + public override bool CanConvert(Type objectType) => + typeof(double?).GetTypeInfo().IsAssignableFrom(objectType.GetTypeInfo()) || + typeof(double).GetTypeInfo().IsAssignableFrom(objectType.GetTypeInfo()); + + public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) + { + if (reader.TokenType == JsonToken.Null) + { + return null; + } + + if (reader.TokenType == JsonToken.String) + { + string strValue = (string)reader.Value; + + switch (strValue) + { + case ODataPositiveInfinity: return Double.PositiveInfinity; + case ODataNegativeInfinity: return Double.NegativeInfinity; + default: return Double.Parse(strValue, CultureInfo.InvariantCulture); + } + } + + // We can't use a direct cast because sometimes we get integers from the reader. + return Convert.ToDouble(reader.Value); + } + + public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) + { + if (value == null) + { + writer.WriteNull(); + } + else + { + double doubleValue = (double)value; + + if (Double.IsNegativeInfinity(doubleValue)) + { + writer.WriteValue(ODataNegativeInfinity); + } + else if (Double.IsPositiveInfinity(doubleValue)) + { + writer.WriteValue(ODataPositiveInfinity); + } + else + { + writer.WriteValue(doubleValue); + } + } + } + } +} diff --git a/src/Search/Microsoft.Azure.Search/Customizations/Serialization/Private/JsonUtility.cs b/src/Search/Microsoft.Azure.Search/Customizations/Serialization/Private/JsonUtility.cs index 4f75a687aef0..15bb3a7cd35d 100644 --- a/src/Search/Microsoft.Azure.Search/Customizations/Serialization/Private/JsonUtility.cs +++ b/src/Search/Microsoft.Azure.Search/Customizations/Serialization/Private/JsonUtility.cs @@ -48,6 +48,7 @@ private static JsonSerializerSettings CreateSerializerSettings( settings.Converters.Add(new GeographyPointConverter()); settings.Converters.Add(new IndexActionConverter()); settings.Converters.Add(new DateTimeConverter()); + settings.Converters.Add(new DoubleConverter()); settings.NullValueHandling = NullValueHandling.Ignore; if (useCamelCase) @@ -72,6 +73,7 @@ private static JsonSerializerSettings CreateDeserializerSettings()); settings.Converters.Add(new SuggestResultConverter()); settings.DateParseHandling = DateParseHandling.DateTimeOffset; diff --git a/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/CharFilter.cs b/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/CharFilter.cs index 92231702abb2..4bc167e50654 100644 --- a/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/CharFilter.cs +++ b/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/CharFilter.cs @@ -36,6 +36,10 @@ public CharFilter(string name) } /// + /// Gets or sets the name of the char filter. It must only contain + /// letters, digits, spaces, dashes or underscores, can only start + /// and end with alphanumeric characters, and is limited to 128 + /// characters. /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } diff --git a/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/TokenFilter.cs b/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/TokenFilter.cs index 41be3c495d2e..2f2e91328f1f 100644 --- a/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/TokenFilter.cs +++ b/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/TokenFilter.cs @@ -36,6 +36,10 @@ public TokenFilter(string name) } /// + /// Gets or sets the name of the token filter. It must only contain + /// letters, digits, spaces, dashes or underscores, can only start + /// and end with alphanumeric characters, and is limited to 128 + /// characters. /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } diff --git a/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/Tokenizer.cs b/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/Tokenizer.cs index d1ae6f7ac94b..eb753bf049ae 100644 --- a/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/Tokenizer.cs +++ b/src/Search/Microsoft.Azure.Search/GeneratedSearchService/Models/Tokenizer.cs @@ -36,6 +36,10 @@ public Tokenizer(string name) } /// + /// Gets or sets the name of the tokenizer. It must only contain + /// letters, digits, spaces, dashes or underscores, can only start + /// and end with alphanumeric characters, and is limited to 128 + /// characters. /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } diff --git a/src/Search/Microsoft.Azure.Search/Properties/AssemblyInfo.cs b/src/Search/Microsoft.Azure.Search/Properties/AssemblyInfo.cs index cf939eed5651..f163eb6eabf7 100644 --- a/src/Search/Microsoft.Azure.Search/Properties/AssemblyInfo.cs +++ b/src/Search/Microsoft.Azure.Search/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ [assembly: AssemblyDescription("Makes it easy to develop a .NET application that uses Azure Search.")] [assembly: AssemblyVersion("3.0.0.0")] -[assembly: AssemblyFileVersion("3.0.2.0")] +[assembly: AssemblyFileVersion("3.0.3.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/Search/Microsoft.Azure.Search/project.json b/src/Search/Microsoft.Azure.Search/project.json index 18e8a2ff0eb8..cae4c5ae7630 100644 --- a/src/Search/Microsoft.Azure.Search/project.json +++ b/src/Search/Microsoft.Azure.Search/project.json @@ -1,5 +1,5 @@ { - "version": "3.0.2", + "version": "3.0.3", "title": "Microsoft Azure Search Library", "description": "Makes it easy to develop a .NET application that uses Azure Search.", "authors": [ "Microsoft" ], @@ -11,7 +11,7 @@ "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", "tags": [ "Microsoft Azure Search", "REST HTTP client", "search", "azureofficial", "windowsazureofficial" ], "requireLicenseAcceptance": true, - "releaseNotes": "This is the newest major version of the Azure Search .NET SDK, based on version 2016-09-01 of the Azure Search REST API. New in this version is support for indexing Azure Blob and Table storage, indexer field mappings, custom analyzers, and ETags. Also included is support for reflection-based field definitions via the FieldBuilder class, thanks to a contribution from Ian Griffiths (https://github.com/idg10). See this article for help on migrating to the latest version: http://aka.ms/search-sdk-upgrade." + "releaseNotes": "This is the newest major version of the Azure Search .NET SDK, based on version 2016-09-01 of the Azure Search REST API. New in this version is support for indexing Azure Blob storage (including parsing of JSON blobs), indexing Azure Table storage, indexer field mappings, custom analyzers, and ETags. Also included is support for reflection-based field definitions via the FieldBuilder class, thanks to a contribution from Ian Griffiths (https://github.com/idg10). See this article for help on migrating to the latest version: http://aka.ms/search-sdk-upgrade." }, "buildOptions": { diff --git a/src/Search/Search.Management.Tests/project.json b/src/Search/Search.Management.Tests/project.json index a423539cee4e..72901a1e3ff7 100644 --- a/src/Search/Search.Management.Tests/project.json +++ b/src/Search/Search.Management.Tests/project.json @@ -33,7 +33,7 @@ "Microsoft.Rest.ClientRuntime.Azure": "[3.3.4,4.0)", "Microsoft.Azure.Management.ResourceManager": "1.1.1-preview", "Microsoft.Azure.Management.Search": "1.0.1", - "Microsoft.Azure.Search": "3.0.2", + "Microsoft.Azure.Search": "3.0.3", "xunit": "2.2.0-beta2-build3300", "dotnet-test-xunit": "2.2.0-preview2-build1029" } diff --git a/src/Search/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.CustomAnalyzerTests/CanAnalyzeWithAllPossibleNames.json b/src/Search/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.CustomAnalyzerTests/CanAnalyzeWithAllPossibleNames.json index eef2a759586b..efe9b81eae45 100644 --- a/src/Search/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.CustomAnalyzerTests/CanAnalyzeWithAllPossibleNames.json +++ b/src/Search/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.CustomAnalyzerTests/CanAnalyzeWithAllPossibleNames.json @@ -7,17 +7,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eba6195a-9840-41da-a659-c95df17013fa" + "3faa02aa-befc-4c9e-923b-50a2cd128bf8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", + "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.1-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesNxt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityNxt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityNxt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesNxt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityNxt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityNxt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,25 +29,28 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:11 GMT" + "Tue, 07 Mar 2017 19:55:53 GMT" ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1127" + "1184" ], "x-ms-request-id": [ - "2bd4d2fb-8995-43f4-b616-e921ecd80d01" + "3f392837-73ed-4c6c-954e-9c7826111ffd" ], "x-ms-correlation-request-id": [ - "2bd4d2fb-8995-43f4-b616-e921ecd80d01" + "3f392837-73ed-4c6c-954e-9c7826111ffd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161123T185311Z:2bd4d2fb-8995-43f4-b616-e921ecd80d01" + "CENTRALUS:20170307T195553Z:3f392837-73ed-4c6c-954e-9c7826111ffd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,8 +59,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourcegroups/azsmnet9502?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NTAyP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourcegroups/azsmnet8601?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4NjAxP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -68,17 +71,17 @@ "29" ], "x-ms-client-request-id": [ - "408cd311-17f9-45ac-8830-69cf11dcf7f2" + "07c3785b-0e2d-4fd8-a78e-fafca2b38773" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", + "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.1-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet9502\",\r\n \"name\": \"azsmnet9502\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet8601\",\r\n \"name\": \"azsmnet8601\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "175" @@ -93,22 +96,22 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:11 GMT" + "Tue, 07 Mar 2017 19:55:54 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1126" + "1183" ], "x-ms-request-id": [ - "67762dcd-1070-4d32-82c1-ac42f9095691" + "bafc1be5-ae1f-405d-8d4e-4fd789c1e650" ], "x-ms-correlation-request-id": [ - "67762dcd-1070-4d32-82c1-ac42f9095691" + "bafc1be5-ae1f-405d-8d4e-4fd789c1e650" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161123T185312Z:67762dcd-1070-4d32-82c1-ac42f9095691" + "CENTRALUS:20170307T195554Z:bafc1be5-ae1f-405d-8d4e-4fd789c1e650" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,8 +120,8 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet9502/providers/Microsoft.Search/searchServices/azs-9455?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NDU1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet8601/providers/Microsoft.Search/searchServices/azs-1141?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NjAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMTQxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { @@ -129,20 +132,20 @@ "67" ], "x-ms-client-request-id": [ - "f655a41a-d520-4241-baf6-1459e1b0041d" + "6a57ae25-359b-4669-8ee1-4c0bc9194d6c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet9502/providers/Microsoft.Search/searchServices/azs-9455\",\r\n \"name\": \"azs-9455\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": null,\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet8601/providers/Microsoft.Search/searchServices/azs-1141\",\r\n \"name\": \"azs-1141\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "387" + "385" ], "Content-Type": [ "application/json; charset=utf-8" @@ -154,22 +157,22 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:19 GMT" + "Tue, 07 Mar 2017 19:55:55 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"datetime'2016-11-23T18%3A53%3A20.0139955Z'\"" + "W/\"datetime'2017-03-07T19%3A55%3A56.1132702Z'\"" ], "x-ms-request-id": [ - "f655a41a-d520-4241-baf6-1459e1b0041d" + "6a57ae25-359b-4669-8ee1-4c0bc9194d6c" ], "request-id": [ - "f655a41a-d520-4241-baf6-1459e1b0041d" + "6a57ae25-359b-4669-8ee1-4c0bc9194d6c" ], "elapsed-time": [ - "6336" + "524" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -178,35 +181,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1180" ], "x-ms-correlation-request-id": [ - "61965062-e23b-4513-99d5-aa0253ba47c7" + "d00711d4-438d-4f66-b6df-3a8c4fb2eca9" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161123T185320Z:61965062-e23b-4513-99d5-aa0253ba47c7" + "CENTRALUS:20170307T195555Z:d00711d4-438d-4f66-b6df-3a8c4fb2eca9" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet9502/providers/Microsoft.Search/searchServices/azs-9455/listAdminKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NDU1L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet8601/providers/Microsoft.Search/searchServices/azs-1141/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NjAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMTQxL2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f99eb175-3399-4a0d-9b94-9c56d13c64d3" + "5a5fc066-b2db-4e0d-b1ab-f24d6af4cf69" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"primaryKey\": \"C0112890AC467F0D05E9B6F23EC86404\",\r\n \"secondaryKey\": \"5CE3F37AA0DEFB079E71F13623024CB0\"\r\n}", + "ResponseBody": "{\r\n \"primaryKey\": \"9C747DAC975294606708FB47FFC266E4\",\r\n \"secondaryKey\": \"E35686D854C1BD0E28FF33AE7FE4311C\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -218,7 +221,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:21 GMT" + "Tue, 07 Mar 2017 19:55:57 GMT" ], "Pragma": [ "no-cache" @@ -231,13 +234,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "f99eb175-3399-4a0d-9b94-9c56d13c64d3" + "5a5fc066-b2db-4e0d-b1ab-f24d6af4cf69" ], "request-id": [ - "f99eb175-3399-4a0d-9b94-9c56d13c64d3" + "5a5fc066-b2db-4e0d-b1ab-f24d6af4cf69" ], "elapsed-time": [ - "365" + "150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,35 +249,35 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1179" ], "x-ms-correlation-request-id": [ - "8ea9c967-880f-4e18-8ffa-c57c7864637d" + "a61a5ae1-6e30-478a-8322-30aab4f684b5" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161123T185322Z:8ea9c967-880f-4e18-8ffa-c57c7864637d" + "CENTRALUS:20170307T195557Z:a61a5ae1-6e30-478a-8322-30aab4f684b5" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet9502/providers/Microsoft.Search/searchServices/azs-9455/listQueryKeys?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NDU1L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet8601/providers/Microsoft.Search/searchServices/azs-1141/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NjAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMTQxL2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4251c8f9-72b4-41e9-989e-7e59ff25383a" + "86e5472e-1391-484c-acf8-1579948cea1b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"CC9324DA5A70175342AF3662C5CBC1C8\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"3C7129AF75DB022866B563BDB8116EDE\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -286,7 +289,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:21 GMT" + "Tue, 07 Mar 2017 19:55:57 GMT" ], "Pragma": [ "no-cache" @@ -299,13 +302,13 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "4251c8f9-72b4-41e9-989e-7e59ff25383a" + "86e5472e-1391-484c-acf8-1579948cea1b" ], "request-id": [ - "4251c8f9-72b4-41e9-989e-7e59ff25383a" + "86e5472e-1391-484c-acf8-1579948cea1b" ], "elapsed-time": [ - "251" + "136" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -317,10 +320,10 @@ "14997" ], "x-ms-correlation-request-id": [ - "40041cec-a549-4d93-aa7c-10b52355236d" + "35f77c45-420d-494d-a809-ca346db8b9d0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161123T185322Z:40041cec-a549-4d93-aa7c-10b52355236d" + "CENTRALUS:20170307T195558Z:35f77c45-420d-494d-a809-ca346db8b9d0" ] }, "StatusCode": 200 @@ -329,35 +332,35 @@ "RequestUri": "/indexes?api-version=2016-09-01", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet1192\",\r\n \"fields\": [\r\n {\r\n \"name\": \"hotelId\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"baseRate\",\r\n \"type\": \"Edm.Double\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"description\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"descriptionFr\",\r\n \"type\": \"Edm.String\",\r\n \"analyzer\": \"fr.lucene\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"hotelName\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"tags\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"parkingIncluded\",\r\n \"type\": \"Edm.Boolean\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"smokingAllowed\",\r\n \"type\": \"Edm.Boolean\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"lastRenovationDate\",\r\n \"type\": \"Edm.DateTimeOffset\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"rating\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"Edm.GeographyPoint\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ],\r\n \"scoringProfiles\": [\r\n {\r\n \"name\": \"nearest\",\r\n \"functions\": [\r\n {\r\n \"type\": \"distance\",\r\n \"distance\": {\r\n \"referencePointParameter\": \"myloc\",\r\n \"boostingDistance\": 100.0\r\n },\r\n \"fieldName\": \"location\",\r\n \"boost\": 2.0\r\n }\r\n ],\r\n \"functionAggregation\": \"sum\"\r\n }\r\n ],\r\n \"suggesters\": [\r\n {\r\n \"name\": \"sg\",\r\n \"searchMode\": \"analyzingInfixMatching\",\r\n \"sourceFields\": [\r\n \"description\",\r\n \"hotelName\"\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet520\",\r\n \"fields\": [\r\n {\r\n \"name\": \"hotelId\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"baseRate\",\r\n \"type\": \"Edm.Double\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"description\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"descriptionFr\",\r\n \"type\": \"Edm.String\",\r\n \"analyzer\": \"fr.lucene\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"hotelName\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"tags\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"parkingIncluded\",\r\n \"type\": \"Edm.Boolean\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"smokingAllowed\",\r\n \"type\": \"Edm.Boolean\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"lastRenovationDate\",\r\n \"type\": \"Edm.DateTimeOffset\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"rating\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"Edm.GeographyPoint\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ],\r\n \"scoringProfiles\": [\r\n {\r\n \"name\": \"nearest\",\r\n \"functions\": [\r\n {\r\n \"type\": \"distance\",\r\n \"distance\": {\r\n \"referencePointParameter\": \"myloc\",\r\n \"boostingDistance\": 100.0\r\n },\r\n \"fieldName\": \"location\",\r\n \"boost\": 2.0\r\n }\r\n ],\r\n \"functionAggregation\": \"sum\"\r\n }\r\n ],\r\n \"suggesters\": [\r\n {\r\n \"name\": \"sg\",\r\n \"searchMode\": \"analyzingInfixMatching\",\r\n \"sourceFields\": [\r\n \"description\",\r\n \"hotelName\"\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3401" + "3400" ], "client-request-id": [ - "999467b7-a19d-469d-9505-56f338da57d2" + "31ae38a3-fc74-42ba-8e04-246309854b04" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-9455.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D413D2012546CE\\\"\",\r\n \"name\": \"azsmnet1192\",\r\n \"fields\": [\r\n {\r\n \"name\": \"hotelId\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"baseRate\",\r\n \"type\": \"Edm.Double\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"description\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"descriptionFr\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": \"fr.lucene\"\r\n },\r\n {\r\n \"name\": \"hotelName\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"tags\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"parkingIncluded\",\r\n \"type\": \"Edm.Boolean\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"smokingAllowed\",\r\n \"type\": \"Edm.Boolean\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"lastRenovationDate\",\r\n \"type\": \"Edm.DateTimeOffset\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"rating\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"Edm.GeographyPoint\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n }\r\n ],\r\n \"scoringProfiles\": [\r\n {\r\n \"name\": \"nearest\",\r\n \"text\": null,\r\n \"functions\": [\r\n {\r\n \"fieldName\": \"location\",\r\n \"freshness\": null,\r\n \"interpolation\": \"linear\",\r\n \"magnitude\": null,\r\n \"distance\": {\r\n \"referencePointParameter\": \"myloc\",\r\n \"boostingDistance\": 100.0\r\n },\r\n \"tag\": null,\r\n \"type\": \"distance\",\r\n \"boost\": 2.0\r\n }\r\n ],\r\n \"functionAggregation\": \"sum\"\r\n }\r\n ],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [\r\n {\r\n \"name\": \"sg\",\r\n \"searchMode\": \"analyzingInfixMatching\",\r\n \"sourceFields\": [\r\n \"description\",\r\n \"hotelName\"\r\n ]\r\n }\r\n ],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-1141.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D46593FB2345F3\\\"\",\r\n \"name\": \"azsmnet520\",\r\n \"fields\": [\r\n {\r\n \"name\": \"hotelId\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"baseRate\",\r\n \"type\": \"Edm.Double\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"description\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"descriptionFr\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": \"fr.lucene\"\r\n },\r\n {\r\n \"name\": \"hotelName\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"tags\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"parkingIncluded\",\r\n \"type\": \"Edm.Boolean\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"smokingAllowed\",\r\n \"type\": \"Edm.Boolean\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"lastRenovationDate\",\r\n \"type\": \"Edm.DateTimeOffset\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"rating\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"Edm.GeographyPoint\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n }\r\n ],\r\n \"scoringProfiles\": [\r\n {\r\n \"name\": \"nearest\",\r\n \"text\": null,\r\n \"functions\": [\r\n {\r\n \"fieldName\": \"location\",\r\n \"freshness\": null,\r\n \"interpolation\": \"linear\",\r\n \"magnitude\": null,\r\n \"distance\": {\r\n \"referencePointParameter\": \"myloc\",\r\n \"boostingDistance\": 100.0\r\n },\r\n \"tag\": null,\r\n \"type\": \"distance\",\r\n \"boost\": 2.0\r\n }\r\n ],\r\n \"functionAggregation\": \"sum\"\r\n }\r\n ],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [\r\n {\r\n \"name\": \"sg\",\r\n \"searchMode\": \"analyzingInfixMatching\",\r\n \"sourceFields\": [\r\n \"description\",\r\n \"hotelName\"\r\n ]\r\n }\r\n ],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "3141" + "3140" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -369,22 +372,22 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:23 GMT" + "Tue, 07 Mar 2017 19:56:00 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D413D2012546CE\"" + "W/\"0x8D46593FB2345F3\"" ], "Location": [ - "https://azs-9455.search-dogfood.windows-int.net/indexes('azsmnet1192')?api-version=2016-09-01" + "https://azs-1141.search-dogfood.windows-int.net/indexes('azsmnet520')?api-version=2016-09-01" ], "request-id": [ - "999467b7-a19d-469d-9505-56f338da57d2" + "31ae38a3-fc74-42ba-8e04-246309854b04" ], "elapsed-time": [ - "674" + "2663" ], "OData-Version": [ "4.0" @@ -402,7 +405,7 @@ "RequestUri": "/indexes?api-version=2016-09-01", "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet9050\",\r\n \"fields\": [\r\n {\r\n \"name\": \"hotelId\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"baseRate\",\r\n \"type\": \"Edm.Double\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"description\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"description_fr\",\r\n \"type\": \"Edm.String\",\r\n \"analyzer\": \"fr.lucene\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"description_custom\",\r\n \"type\": \"Edm.String\",\r\n \"searchAnalyzer\": \"stop\",\r\n \"indexAnalyzer\": \"stop\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"hotelName\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"tags\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"parkingIncluded\",\r\n \"type\": \"Edm.Boolean\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"smokingAllowed\",\r\n \"type\": \"Edm.Boolean\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"lastRenovationDate\",\r\n \"type\": \"Edm.DateTimeOffset\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"rating\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"Edm.GeographyPoint\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"totalGuests\",\r\n \"type\": \"Edm.Int64\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": false\r\n },\r\n {\r\n \"name\": \"profitMargin\",\r\n \"type\": \"Edm.Double\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ],\r\n \"scoringProfiles\": [\r\n {\r\n \"name\": \"MyProfile\",\r\n \"text\": {\r\n \"weights\": {\r\n \"description\": 1.5,\r\n \"category\": 2.0\r\n }\r\n },\r\n \"functions\": [\r\n {\r\n \"type\": \"magnitude\",\r\n \"magnitude\": {\r\n \"boostingRangeStart\": 1.0,\r\n \"boostingRangeEnd\": 4.0,\r\n \"constantBoostBeyondRange\": true\r\n },\r\n \"fieldName\": \"rating\",\r\n \"boost\": 2.0,\r\n \"interpolation\": \"constant\"\r\n },\r\n {\r\n \"type\": \"distance\",\r\n \"distance\": {\r\n \"referencePointParameter\": \"loc\",\r\n \"boostingDistance\": 5.0\r\n },\r\n \"fieldName\": \"location\",\r\n \"boost\": 1.5,\r\n \"interpolation\": \"linear\"\r\n },\r\n {\r\n \"type\": \"freshness\",\r\n \"freshness\": {\r\n \"boostingDuration\": \"P365D\"\r\n },\r\n \"fieldName\": \"lastRenovationDate\",\r\n \"boost\": 1.1,\r\n \"interpolation\": \"logarithmic\"\r\n }\r\n ],\r\n \"functionAggregation\": \"average\"\r\n },\r\n {\r\n \"name\": \"ProfileTwo\",\r\n \"functions\": [\r\n {\r\n \"type\": \"tag\",\r\n \"tag\": {\r\n \"tagsParameter\": \"mytags\"\r\n },\r\n \"fieldName\": \"tags\",\r\n \"boost\": 1.5,\r\n \"interpolation\": \"linear\"\r\n }\r\n ],\r\n \"functionAggregation\": \"maximum\"\r\n },\r\n {\r\n \"name\": \"ProfileThree\",\r\n \"functions\": [\r\n {\r\n \"type\": \"magnitude\",\r\n \"magnitude\": {\r\n \"boostingRangeStart\": 0.0,\r\n \"boostingRangeEnd\": 10.0,\r\n \"constantBoostBeyondRange\": false\r\n },\r\n \"fieldName\": \"rating\",\r\n \"boost\": 3.0,\r\n \"interpolation\": \"quadratic\"\r\n }\r\n ],\r\n \"functionAggregation\": \"minimum\"\r\n },\r\n {\r\n \"name\": \"ProfileFour\",\r\n \"functions\": [\r\n {\r\n \"type\": \"magnitude\",\r\n \"magnitude\": {\r\n \"boostingRangeStart\": 1.0,\r\n \"boostingRangeEnd\": 5.0,\r\n \"constantBoostBeyondRange\": false\r\n },\r\n \"fieldName\": \"rating\",\r\n \"boost\": 3.14,\r\n \"interpolation\": \"constant\"\r\n }\r\n ],\r\n \"functionAggregation\": \"firstMatching\"\r\n }\r\n ],\r\n \"defaultScoringProfile\": \"MyProfile\",\r\n \"corsOptions\": {\r\n \"allowedOrigins\": [\r\n \"http://tempuri.org\",\r\n \"http://localhost:80\"\r\n ],\r\n \"maxAgeInSeconds\": 60\r\n },\r\n \"suggesters\": [\r\n {\r\n \"name\": \"FancySuggester\",\r\n \"searchMode\": \"analyzingInfixMatching\",\r\n \"sourceFields\": [\r\n \"hotelName\"\r\n ]\r\n }\r\n ]\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet6388\",\r\n \"fields\": [\r\n {\r\n \"name\": \"hotelId\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"baseRate\",\r\n \"type\": \"Edm.Double\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"description\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"description_fr\",\r\n \"type\": \"Edm.String\",\r\n \"analyzer\": \"fr.lucene\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"description_custom\",\r\n \"type\": \"Edm.String\",\r\n \"searchAnalyzer\": \"stop\",\r\n \"indexAnalyzer\": \"stop\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"hotelName\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"tags\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"parkingIncluded\",\r\n \"type\": \"Edm.Boolean\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"smokingAllowed\",\r\n \"type\": \"Edm.Boolean\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"lastRenovationDate\",\r\n \"type\": \"Edm.DateTimeOffset\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"rating\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"Edm.GeographyPoint\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"totalGuests\",\r\n \"type\": \"Edm.Int64\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": false\r\n },\r\n {\r\n \"name\": \"profitMargin\",\r\n \"type\": \"Edm.Double\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ],\r\n \"scoringProfiles\": [\r\n {\r\n \"name\": \"MyProfile\",\r\n \"text\": {\r\n \"weights\": {\r\n \"description\": 1.5,\r\n \"category\": 2.0\r\n }\r\n },\r\n \"functions\": [\r\n {\r\n \"type\": \"magnitude\",\r\n \"magnitude\": {\r\n \"boostingRangeStart\": 1.0,\r\n \"boostingRangeEnd\": 4.0,\r\n \"constantBoostBeyondRange\": true\r\n },\r\n \"fieldName\": \"rating\",\r\n \"boost\": 2.0,\r\n \"interpolation\": \"constant\"\r\n },\r\n {\r\n \"type\": \"distance\",\r\n \"distance\": {\r\n \"referencePointParameter\": \"loc\",\r\n \"boostingDistance\": 5.0\r\n },\r\n \"fieldName\": \"location\",\r\n \"boost\": 1.5,\r\n \"interpolation\": \"linear\"\r\n },\r\n {\r\n \"type\": \"freshness\",\r\n \"freshness\": {\r\n \"boostingDuration\": \"P365D\"\r\n },\r\n \"fieldName\": \"lastRenovationDate\",\r\n \"boost\": 1.1,\r\n \"interpolation\": \"logarithmic\"\r\n }\r\n ],\r\n \"functionAggregation\": \"average\"\r\n },\r\n {\r\n \"name\": \"ProfileTwo\",\r\n \"functions\": [\r\n {\r\n \"type\": \"tag\",\r\n \"tag\": {\r\n \"tagsParameter\": \"mytags\"\r\n },\r\n \"fieldName\": \"tags\",\r\n \"boost\": 1.5,\r\n \"interpolation\": \"linear\"\r\n }\r\n ],\r\n \"functionAggregation\": \"maximum\"\r\n },\r\n {\r\n \"name\": \"ProfileThree\",\r\n \"functions\": [\r\n {\r\n \"type\": \"magnitude\",\r\n \"magnitude\": {\r\n \"boostingRangeStart\": 0.0,\r\n \"boostingRangeEnd\": 10.0,\r\n \"constantBoostBeyondRange\": false\r\n },\r\n \"fieldName\": \"rating\",\r\n \"boost\": 3.0,\r\n \"interpolation\": \"quadratic\"\r\n }\r\n ],\r\n \"functionAggregation\": \"minimum\"\r\n },\r\n {\r\n \"name\": \"ProfileFour\",\r\n \"functions\": [\r\n {\r\n \"type\": \"magnitude\",\r\n \"magnitude\": {\r\n \"boostingRangeStart\": 1.0,\r\n \"boostingRangeEnd\": 5.0,\r\n \"constantBoostBeyondRange\": false\r\n },\r\n \"fieldName\": \"rating\",\r\n \"boost\": 3.14,\r\n \"interpolation\": \"constant\"\r\n }\r\n ],\r\n \"functionAggregation\": \"firstMatching\"\r\n }\r\n ],\r\n \"defaultScoringProfile\": \"MyProfile\",\r\n \"corsOptions\": {\r\n \"allowedOrigins\": [\r\n \"http://tempuri.org\",\r\n \"http://localhost:80\"\r\n ],\r\n \"maxAgeInSeconds\": 60\r\n },\r\n \"suggesters\": [\r\n {\r\n \"name\": \"FancySuggester\",\r\n \"searchMode\": \"analyzingInfixMatching\",\r\n \"sourceFields\": [\r\n \"hotelName\"\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -411,23 +414,23 @@ "6270" ], "client-request-id": [ - "f8922aa7-7fb4-4029-9435-df91dd45b1ce" + "f4e00602-38b3-4614-bc24-39226b0ba61b" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D413D20EECD284\\\"\",\"name\":\"azsmnet9050\",\"fields\":[{\"name\":\"hotelId\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"baseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\"},{\"name\":\"description_custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null},{\"name\":\"hotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"tags\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"parkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"smokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"lastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"totalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":false,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"profitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"text\":{\"weights\":{\"description\":1.5,\"category\":2.0}},\"functions\":[{\"fieldName\":\"rating\",\"freshness\":null,\"interpolation\":\"constant\",\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null,\"type\":\"magnitude\",\"boost\":2.0},{\"fieldName\":\"location\",\"freshness\":null,\"interpolation\":\"linear\",\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"loc\",\"boostingDistance\":5.0},\"tag\":null,\"type\":\"distance\",\"boost\":1.5},{\"fieldName\":\"lastRenovationDate\",\"freshness\":{\"boostingDuration\":\"P365D\"},\"interpolation\":\"logarithmic\",\"magnitude\":null,\"distance\":null,\"tag\":null,\"type\":\"freshness\",\"boost\":1.1}],\"functionAggregation\":\"average\"},{\"name\":\"ProfileTwo\",\"text\":null,\"functions\":[{\"fieldName\":\"tags\",\"freshness\":null,\"interpolation\":\"linear\",\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytags\"},\"type\":\"tag\",\"boost\":1.5}],\"functionAggregation\":\"maximum\"},{\"name\":\"ProfileThree\",\"text\":null,\"functions\":[{\"fieldName\":\"rating\",\"freshness\":null,\"interpolation\":\"quadratic\",\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null,\"type\":\"magnitude\",\"boost\":3.0}],\"functionAggregation\":\"minimum\"},{\"name\":\"ProfileFour\",\"text\":null,\"functions\":[{\"fieldName\":\"rating\",\"freshness\":null,\"interpolation\":\"constant\",\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null,\"type\":\"magnitude\",\"boost\":3.14}],\"functionAggregation\":\"firstMatching\"}],\"defaultScoringProfile\":\"MyProfile\",\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"hotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D4659409042D88\\\"\",\"name\":\"azsmnet6388\",\"fields\":[{\"name\":\"hotelId\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"baseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\"},{\"name\":\"description_custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null},{\"name\":\"hotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"tags\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"parkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"smokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"lastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"totalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":false,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null},{\"name\":\"profitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"text\":{\"weights\":{\"description\":1.5,\"category\":2.0}},\"functions\":[{\"fieldName\":\"rating\",\"freshness\":null,\"interpolation\":\"constant\",\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null,\"type\":\"magnitude\",\"boost\":2.0},{\"fieldName\":\"location\",\"freshness\":null,\"interpolation\":\"linear\",\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"loc\",\"boostingDistance\":5.0},\"tag\":null,\"type\":\"distance\",\"boost\":1.5},{\"fieldName\":\"lastRenovationDate\",\"freshness\":{\"boostingDuration\":\"P365D\"},\"interpolation\":\"logarithmic\",\"magnitude\":null,\"distance\":null,\"tag\":null,\"type\":\"freshness\",\"boost\":1.1}],\"functionAggregation\":\"average\"},{\"name\":\"ProfileTwo\",\"text\":null,\"functions\":[{\"fieldName\":\"tags\",\"freshness\":null,\"interpolation\":\"linear\",\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytags\"},\"type\":\"tag\",\"boost\":1.5}],\"functionAggregation\":\"maximum\"},{\"name\":\"ProfileThree\",\"text\":null,\"functions\":[{\"fieldName\":\"rating\",\"freshness\":null,\"interpolation\":\"quadratic\",\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null,\"type\":\"magnitude\",\"boost\":3.0}],\"functionAggregation\":\"minimum\"},{\"name\":\"ProfileFour\",\"text\":null,\"functions\":[{\"fieldName\":\"rating\",\"freshness\":null,\"interpolation\":\"constant\",\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null,\"type\":\"magnitude\",\"boost\":3.14}],\"functionAggregation\":\"firstMatching\"}],\"defaultScoringProfile\":\"MyProfile\",\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"hotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[]}", "ResponseHeaders": { "Content-Length": [ "5143" @@ -442,22 +445,22 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:24 GMT" ], "Pragma": [ "no-cache" ], "ETag": [ - "W/\"0x8D413D20EECD284\"" + "W/\"0x8D4659409042D88\"" ], "Location": [ - "https://azs-9455.search-dogfood.windows-int.net/indexes('azsmnet9050')?api-version=2016-09-01" + "https://azs-1141.search-dogfood.windows-int.net/indexes('azsmnet6388')?api-version=2016-09-01" ], "request-id": [ - "f8922aa7-7fb4-4029-9435-df91dd45b1ce" + "f4e00602-38b3-4614-bc24-39226b0ba61b" ], "elapsed-time": [ - "1614" + "2709" ], "OData-Version": [ "4.0" @@ -472,8 +475,8 @@ "StatusCode": 201 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ar.microsoft\"\r\n}", "RequestHeaders": { @@ -484,23 +487,23 @@ "56" ], "client-request-id": [ - "4250a1c9-88f2-4c0b-818f-35f9d88e8864" + "fa3a6862-a87e-41d2-a350-b3846c98b9fe" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -512,7 +515,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:24 GMT" ], "Pragma": [ "no-cache" @@ -521,10 +524,10 @@ "Accept-Encoding" ], "request-id": [ - "4250a1c9-88f2-4c0b-818f-35f9d88e8864" + "fa3a6862-a87e-41d2-a350-b3846c98b9fe" ], "elapsed-time": [ - "27" + "114" ], "OData-Version": [ "4.0" @@ -539,8 +542,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ar.lucene\"\r\n}", "RequestHeaders": { @@ -551,23 +554,23 @@ "53" ], "client-request-id": [ - "dc208dee-c8db-416b-b204-3cb7bee3c6c4" + "dd5dfe6a-3f46-4f55-9ad8-a4676b8ff4b2" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -579,7 +582,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:24 GMT" ], "Pragma": [ "no-cache" @@ -588,10 +591,10 @@ "Accept-Encoding" ], "request-id": [ - "dc208dee-c8db-416b-b204-3cb7bee3c6c4" + "dd5dfe6a-3f46-4f55-9ad8-a4676b8ff4b2" ], "elapsed-time": [ - "13" + "11" ], "OData-Version": [ "4.0" @@ -606,8 +609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"hy.lucene\"\r\n}", "RequestHeaders": { @@ -618,23 +621,23 @@ "53" ], "client-request-id": [ - "9d303190-1bc9-457c-a283-12721a00eb82" + "4f6272b1-56ea-4bc5-895b-9c3fc12a5900" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -646,7 +649,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:24 GMT" ], "Pragma": [ "no-cache" @@ -655,10 +658,10 @@ "Accept-Encoding" ], "request-id": [ - "9d303190-1bc9-457c-a283-12721a00eb82" + "4f6272b1-56ea-4bc5-895b-9c3fc12a5900" ], "elapsed-time": [ - "15" + "10" ], "OData-Version": [ "4.0" @@ -673,8 +676,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"bn.microsoft\"\r\n}", "RequestHeaders": { @@ -685,23 +688,23 @@ "56" ], "client-request-id": [ - "303c594d-e22a-489b-bd6d-f74aa931fe14" + "091d131c-96ad-4b51-9e42-8400de2b8f26" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -713,7 +716,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:25 GMT" ], "Pragma": [ "no-cache" @@ -722,10 +725,10 @@ "Accept-Encoding" ], "request-id": [ - "303c594d-e22a-489b-bd6d-f74aa931fe14" + "091d131c-96ad-4b51-9e42-8400de2b8f26" ], "elapsed-time": [ - "22" + "341" ], "OData-Version": [ "4.0" @@ -740,8 +743,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"eu.lucene\"\r\n}", "RequestHeaders": { @@ -752,23 +755,23 @@ "53" ], "client-request-id": [ - "c1dde450-840b-4679-ba2b-c40583e26cc3" + "4ce0c576-ca6f-48de-a40e-c26a6e6682b7" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -780,7 +783,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:25 GMT" ], "Pragma": [ "no-cache" @@ -789,10 +792,10 @@ "Accept-Encoding" ], "request-id": [ - "c1dde450-840b-4679-ba2b-c40583e26cc3" + "4ce0c576-ca6f-48de-a40e-c26a6e6682b7" ], "elapsed-time": [ - "14" + "11" ], "OData-Version": [ "4.0" @@ -807,8 +810,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"bg.microsoft\"\r\n}", "RequestHeaders": { @@ -819,23 +822,23 @@ "56" ], "client-request-id": [ - "31d17726-c7bc-4544-8514-891376a0151a" + "becccfd3-a4c4-446c-9eb0-9c897ecccb1b" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -847,7 +850,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:25 GMT" ], "Pragma": [ "no-cache" @@ -856,10 +859,10 @@ "Accept-Encoding" ], "request-id": [ - "31d17726-c7bc-4544-8514-891376a0151a" + "becccfd3-a4c4-446c-9eb0-9c897ecccb1b" ], "elapsed-time": [ - "25" + "23" ], "OData-Version": [ "4.0" @@ -874,8 +877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"bg.lucene\"\r\n}", "RequestHeaders": { @@ -886,23 +889,23 @@ "53" ], "client-request-id": [ - "314fe650-362b-462b-887c-f129fc62caa3" + "57d30089-71f7-4386-af3f-0e96f0537b7a" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -914,7 +917,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:25 GMT" ], "Pragma": [ "no-cache" @@ -923,10 +926,10 @@ "Accept-Encoding" ], "request-id": [ - "314fe650-362b-462b-887c-f129fc62caa3" + "57d30089-71f7-4386-af3f-0e96f0537b7a" ], "elapsed-time": [ - "16" + "8" ], "OData-Version": [ "4.0" @@ -941,8 +944,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ca.microsoft\"\r\n}", "RequestHeaders": { @@ -953,23 +956,23 @@ "56" ], "client-request-id": [ - "2c61a6f8-281f-41fc-aee5-d52e551e285f" + "86b2418a-951b-4735-898b-b71e2eb902e5" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -981,7 +984,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:25 GMT" ], "Pragma": [ "no-cache" @@ -990,10 +993,10 @@ "Accept-Encoding" ], "request-id": [ - "2c61a6f8-281f-41fc-aee5-d52e551e285f" + "86b2418a-951b-4735-898b-b71e2eb902e5" ], "elapsed-time": [ - "19" + "20" ], "OData-Version": [ "4.0" @@ -1008,8 +1011,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ca.lucene\"\r\n}", "RequestHeaders": { @@ -1020,23 +1023,23 @@ "53" ], "client-request-id": [ - "986d695b-3ccd-4f54-a0fb-fd48b7985d02" + "6fdb324a-dbfa-4223-8bd3-19f6c1f07ea9" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"on\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"on\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1048,7 +1051,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:25 GMT" ], "Pragma": [ "no-cache" @@ -1057,10 +1060,10 @@ "Accept-Encoding" ], "request-id": [ - "986d695b-3ccd-4f54-a0fb-fd48b7985d02" + "6fdb324a-dbfa-4223-8bd3-19f6c1f07ea9" ], "elapsed-time": [ - "16" + "11" ], "OData-Version": [ "4.0" @@ -1075,8 +1078,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"zh-Hans.microsoft\"\r\n}", "RequestHeaders": { @@ -1087,23 +1090,23 @@ "61" ], "client-request-id": [ - "a10a0b8b-958c-49d8-841a-32cbb8d6234f" + "1584ae7c-489c-47f7-bbc4-b58b389bac7e" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1115,7 +1118,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:25 GMT" ], "Pragma": [ "no-cache" @@ -1124,10 +1127,10 @@ "Accept-Encoding" ], "request-id": [ - "a10a0b8b-958c-49d8-841a-32cbb8d6234f" + "1584ae7c-489c-47f7-bbc4-b58b389bac7e" ], "elapsed-time": [ - "12" + "255" ], "OData-Version": [ "4.0" @@ -1142,8 +1145,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"zh-Hans.lucene\"\r\n}", "RequestHeaders": { @@ -1154,23 +1157,23 @@ "58" ], "client-request-id": [ - "fd86b04a-7ec5-407f-8914-5f94ca7c6e94" + "7b470224-2765-4a0c-90c5-7aba183e47c1" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"on\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"on\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1182,7 +1185,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:26 GMT" ], "Pragma": [ "no-cache" @@ -1191,10 +1194,10 @@ "Accept-Encoding" ], "request-id": [ - "fd86b04a-7ec5-407f-8914-5f94ca7c6e94" + "7b470224-2765-4a0c-90c5-7aba183e47c1" ], "elapsed-time": [ - "15" + "455" ], "OData-Version": [ "4.0" @@ -1209,8 +1212,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"zh-Hant.microsoft\"\r\n}", "RequestHeaders": { @@ -1221,23 +1224,23 @@ "61" ], "client-request-id": [ - "aec35dfe-410b-4cba-b078-ade1563c83ff" + "88bf9213-7121-4348-be1c-3a5bc6f09de3" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1249,7 +1252,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:26 GMT" ], "Pragma": [ "no-cache" @@ -1258,10 +1261,10 @@ "Accept-Encoding" ], "request-id": [ - "aec35dfe-410b-4cba-b078-ade1563c83ff" + "88bf9213-7121-4348-be1c-3a5bc6f09de3" ], "elapsed-time": [ - "12" + "51" ], "OData-Version": [ "4.0" @@ -1276,8 +1279,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"zh-Hant.lucene\"\r\n}", "RequestHeaders": { @@ -1288,23 +1291,23 @@ "58" ], "client-request-id": [ - "53c337b2-06a6-437b-816b-aa288d8038be" + "84bb7e7c-6e96-4925-9b7d-57d370679d2e" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1316,7 +1319,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:26 GMT" ], "Pragma": [ "no-cache" @@ -1325,10 +1328,10 @@ "Accept-Encoding" ], "request-id": [ - "53c337b2-06a6-437b-816b-aa288d8038be" + "84bb7e7c-6e96-4925-9b7d-57d370679d2e" ], "elapsed-time": [ - "13" + "8" ], "OData-Version": [ "4.0" @@ -1343,8 +1346,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"hr.microsoft\"\r\n}", "RequestHeaders": { @@ -1355,23 +1358,23 @@ "56" ], "client-request-id": [ - "b5754234-eb0d-48b7-b32a-d3a3b26ebba7" + "adf5be21-a887-4936-943c-4eed88437016" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"onaj\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"onaj\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1383,7 +1386,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:26 GMT" ], "Pragma": [ "no-cache" @@ -1392,10 +1395,10 @@ "Accept-Encoding" ], "request-id": [ - "b5754234-eb0d-48b7-b32a-d3a3b26ebba7" + "adf5be21-a887-4936-943c-4eed88437016" ], "elapsed-time": [ - "19" + "224" ], "OData-Version": [ "4.0" @@ -1410,8 +1413,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"cs.microsoft\"\r\n}", "RequestHeaders": { @@ -1422,23 +1425,23 @@ "56" ], "client-request-id": [ - "d67c5000-c4b6-44a3-971c-0ccc9450dee6" + "de595d34-6561-463e-9f96-3e3cfa1ba55c" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"twa\",\"startOffset\":4,\"endOffset\":7,\"position\":1},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"twa\",\"startOffset\":4,\"endOffset\":7,\"position\":1},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1450,7 +1453,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:26 GMT" ], "Pragma": [ "no-cache" @@ -1459,10 +1462,10 @@ "Accept-Encoding" ], "request-id": [ - "d67c5000-c4b6-44a3-971c-0ccc9450dee6" + "de595d34-6561-463e-9f96-3e3cfa1ba55c" ], "elapsed-time": [ - "19" + "24" ], "OData-Version": [ "4.0" @@ -1477,8 +1480,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"cs.lucene\"\r\n}", "RequestHeaders": { @@ -1489,23 +1492,23 @@ "53" ], "client-request-id": [ - "0c5c28d0-d57d-40e8-95e7-93abbba1cba7" + "b155c818-c5bc-4c31-8a94-846f166f961b" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1517,7 +1520,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:26 GMT" ], "Pragma": [ "no-cache" @@ -1526,10 +1529,10 @@ "Accept-Encoding" ], "request-id": [ - "0c5c28d0-d57d-40e8-95e7-93abbba1cba7" + "b155c818-c5bc-4c31-8a94-846f166f961b" ], "elapsed-time": [ - "12" + "10" ], "OData-Version": [ "4.0" @@ -1544,8 +1547,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"da.microsoft\"\r\n}", "RequestHeaders": { @@ -1556,23 +1559,23 @@ "56" ], "client-request-id": [ - "5b1b2b2e-7e9f-4edf-97cd-8901c8076fb2" + "4d68aa77-a8ee-44e1-acad-a8f1cc2eeed5" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1584,7 +1587,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:26 GMT" ], "Pragma": [ "no-cache" @@ -1593,7 +1596,7 @@ "Accept-Encoding" ], "request-id": [ - "5b1b2b2e-7e9f-4edf-97cd-8901c8076fb2" + "4d68aa77-a8ee-44e1-acad-a8f1cc2eeed5" ], "elapsed-time": [ "31" @@ -1611,8 +1614,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"da.lucene\"\r\n}", "RequestHeaders": { @@ -1623,23 +1626,23 @@ "53" ], "client-request-id": [ - "ada51a3a-3de3-4932-af02-b8e922240f42" + "36f48e7a-b3ff-4693-b98b-b731d1d97898" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1651,7 +1654,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:26 GMT" ], "Pragma": [ "no-cache" @@ -1660,10 +1663,10 @@ "Accept-Encoding" ], "request-id": [ - "ada51a3a-3de3-4932-af02-b8e922240f42" + "36f48e7a-b3ff-4693-b98b-b731d1d97898" ], "elapsed-time": [ - "12" + "10" ], "OData-Version": [ "4.0" @@ -1678,8 +1681,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"nl.microsoft\"\r\n}", "RequestHeaders": { @@ -1690,23 +1693,23 @@ "56" ], "client-request-id": [ - "9ec65ed0-ca49-4b5b-b25c-f45e79dc42a7" + "7af65e76-d1fa-4da2-9b5a-29bec41e3f63" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1718,7 +1721,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:26 GMT" ], "Pragma": [ "no-cache" @@ -1727,10 +1730,10 @@ "Accept-Encoding" ], "request-id": [ - "9ec65ed0-ca49-4b5b-b25c-f45e79dc42a7" + "7af65e76-d1fa-4da2-9b5a-29bec41e3f63" ], "elapsed-time": [ - "25" + "22" ], "OData-Version": [ "4.0" @@ -1745,8 +1748,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"nl.lucene\"\r\n}", "RequestHeaders": { @@ -1757,23 +1760,23 @@ "53" ], "client-request-id": [ - "70ca598f-6e8b-43e5-8b72-07073c636573" + "3dc4c9b5-38aa-41ce-81a9-a243368f5f28" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1785,7 +1788,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:26 GMT" ], "Pragma": [ "no-cache" @@ -1794,10 +1797,10 @@ "Accept-Encoding" ], "request-id": [ - "70ca598f-6e8b-43e5-8b72-07073c636573" + "3dc4c9b5-38aa-41ce-81a9-a243368f5f28" ], "elapsed-time": [ - "13" + "9" ], "OData-Version": [ "4.0" @@ -1812,8 +1815,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"en.microsoft\"\r\n}", "RequestHeaders": { @@ -1824,23 +1827,23 @@ "56" ], "client-request-id": [ - "e353f607-88db-4ebf-9046-538ac4ed3969" + "61b68df2-464b-47f1-b16b-64487ef14293" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1852,7 +1855,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:49 GMT" + "Tue, 07 Mar 2017 19:56:26 GMT" ], "Pragma": [ "no-cache" @@ -1861,7 +1864,7 @@ "Accept-Encoding" ], "request-id": [ - "e353f607-88db-4ebf-9046-538ac4ed3969" + "61b68df2-464b-47f1-b16b-64487ef14293" ], "elapsed-time": [ "21" @@ -1879,8 +1882,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"en.lucene\"\r\n}", "RequestHeaders": { @@ -1891,23 +1894,23 @@ "53" ], "client-request-id": [ - "cdf7d20f-284b-4155-abf0-6ec82c9c7ade" + "7f8ab70c-6ac0-4a65-9eb8-0e0bfd30386d" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"on\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"on\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1919,7 +1922,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:26 GMT" ], "Pragma": [ "no-cache" @@ -1928,10 +1931,10 @@ "Accept-Encoding" ], "request-id": [ - "cdf7d20f-284b-4155-abf0-6ec82c9c7ade" + "7f8ab70c-6ac0-4a65-9eb8-0e0bfd30386d" ], "elapsed-time": [ - "12" + "8" ], "OData-Version": [ "4.0" @@ -1946,8 +1949,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"et.microsoft\"\r\n}", "RequestHeaders": { @@ -1958,23 +1961,23 @@ "56" ], "client-request-id": [ - "e510e26f-0aaf-426c-ba6a-932b1c06d778" + "959decca-9762-4ff1-8e6d-8d3cc920054b" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1986,7 +1989,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:26 GMT" ], "Pragma": [ "no-cache" @@ -1995,10 +1998,10 @@ "Accept-Encoding" ], "request-id": [ - "e510e26f-0aaf-426c-ba6a-932b1c06d778" + "959decca-9762-4ff1-8e6d-8d3cc920054b" ], "elapsed-time": [ - "20" + "16" ], "OData-Version": [ "4.0" @@ -2013,8 +2016,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"fi.microsoft\"\r\n}", "RequestHeaders": { @@ -2025,23 +2028,23 @@ "56" ], "client-request-id": [ - "991cf0ba-f55f-4244-b3df-4e3f06d62e40" + "3fa88f28-ffa6-459d-963b-18a056920658" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2053,7 +2056,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:26 GMT" ], "Pragma": [ "no-cache" @@ -2062,10 +2065,10 @@ "Accept-Encoding" ], "request-id": [ - "991cf0ba-f55f-4244-b3df-4e3f06d62e40" + "3fa88f28-ffa6-459d-963b-18a056920658" ], "elapsed-time": [ - "17" + "16" ], "OData-Version": [ "4.0" @@ -2080,8 +2083,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"fi.lucene\"\r\n}", "RequestHeaders": { @@ -2092,23 +2095,23 @@ "53" ], "client-request-id": [ - "702a5adc-4685-4d4e-b80b-23daf760978f" + "a12f3c06-a6ad-44e2-9e67-d63eb6ea87b7" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2120,7 +2123,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -2129,10 +2132,10 @@ "Accept-Encoding" ], "request-id": [ - "702a5adc-4685-4d4e-b80b-23daf760978f" + "a12f3c06-a6ad-44e2-9e67-d63eb6ea87b7" ], "elapsed-time": [ - "13" + "9" ], "OData-Version": [ "4.0" @@ -2147,8 +2150,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"fr.microsoft\"\r\n}", "RequestHeaders": { @@ -2159,23 +2162,23 @@ "56" ], "client-request-id": [ - "2bd48da3-08f8-4e53-97b0-a3859b3dc902" + "b6a1174d-946c-4e89-8e50-97e543c6fe21" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2187,7 +2190,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -2196,10 +2199,10 @@ "Accept-Encoding" ], "request-id": [ - "2bd48da3-08f8-4e53-97b0-a3859b3dc902" + "b6a1174d-946c-4e89-8e50-97e543c6fe21" ], "elapsed-time": [ - "20" + "223" ], "OData-Version": [ "4.0" @@ -2214,8 +2217,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"fr.lucene\"\r\n}", "RequestHeaders": { @@ -2226,23 +2229,23 @@ "53" ], "client-request-id": [ - "58fbe29b-4071-477e-80cb-10fde1bf3856" + "d62d692b-69a6-4141-99bb-8146aaafc7f5" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2254,7 +2257,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -2263,10 +2266,10 @@ "Accept-Encoding" ], "request-id": [ - "58fbe29b-4071-477e-80cb-10fde1bf3856" + "d62d692b-69a6-4141-99bb-8146aaafc7f5" ], "elapsed-time": [ - "14" + "10" ], "OData-Version": [ "4.0" @@ -2281,8 +2284,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"gl.lucene\"\r\n}", "RequestHeaders": { @@ -2293,23 +2296,23 @@ "53" ], "client-request-id": [ - "3655e3ff-8026-4dd7-ad36-a78f68219c33" + "56a25f62-0bb3-4cdd-8382-a3e5e34091e8" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2321,7 +2324,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -2330,10 +2333,10 @@ "Accept-Encoding" ], "request-id": [ - "3655e3ff-8026-4dd7-ad36-a78f68219c33" + "56a25f62-0bb3-4cdd-8382-a3e5e34091e8" ], "elapsed-time": [ - "12" + "31" ], "OData-Version": [ "4.0" @@ -2348,8 +2351,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"de.microsoft\"\r\n}", "RequestHeaders": { @@ -2360,23 +2363,23 @@ "56" ], "client-request-id": [ - "7f63f754-868e-4c35-9004-cb2f4e3c7aab" + "95521863-d84e-41eb-9644-d94c11c7c7dd" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2388,7 +2391,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -2397,10 +2400,10 @@ "Accept-Encoding" ], "request-id": [ - "7f63f754-868e-4c35-9004-cb2f4e3c7aab" + "95521863-d84e-41eb-9644-d94c11c7c7dd" ], "elapsed-time": [ - "29" + "27" ], "OData-Version": [ "4.0" @@ -2415,8 +2418,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"de.lucene\"\r\n}", "RequestHeaders": { @@ -2427,23 +2430,23 @@ "53" ], "client-request-id": [ - "04739bb9-1c72-48fe-b599-98523acbae73" + "8e921180-96da-49c1-af44-f4516ecdc234" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2455,7 +2458,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -2464,10 +2467,10 @@ "Accept-Encoding" ], "request-id": [ - "04739bb9-1c72-48fe-b599-98523acbae73" + "8e921180-96da-49c1-af44-f4516ecdc234" ], "elapsed-time": [ - "16" + "9" ], "OData-Version": [ "4.0" @@ -2482,8 +2485,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"el.microsoft\"\r\n}", "RequestHeaders": { @@ -2494,23 +2497,23 @@ "56" ], "client-request-id": [ - "611ce1a6-30bd-4253-98a7-77109b39e1d7" + "dbf8a8a2-aafe-4597-a4f7-57bfca78b2c6" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2522,7 +2525,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -2531,10 +2534,10 @@ "Accept-Encoding" ], "request-id": [ - "611ce1a6-30bd-4253-98a7-77109b39e1d7" + "dbf8a8a2-aafe-4597-a4f7-57bfca78b2c6" ], "elapsed-time": [ - "29" + "17" ], "OData-Version": [ "4.0" @@ -2549,8 +2552,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"el.lucene\"\r\n}", "RequestHeaders": { @@ -2561,23 +2564,23 @@ "53" ], "client-request-id": [ - "fa84f3bb-7430-42ff-99cd-2678fc354b30" + "f5457d42-c42b-4288-a00d-494600d20d00" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2589,7 +2592,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -2598,10 +2601,10 @@ "Accept-Encoding" ], "request-id": [ - "fa84f3bb-7430-42ff-99cd-2678fc354b30" + "f5457d42-c42b-4288-a00d-494600d20d00" ], "elapsed-time": [ - "13" + "10" ], "OData-Version": [ "4.0" @@ -2616,8 +2619,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"gu.microsoft\"\r\n}", "RequestHeaders": { @@ -2628,23 +2631,23 @@ "56" ], "client-request-id": [ - "b4c350ba-c8e6-4e8c-83ea-104a36e7db0f" + "0ed0826f-fd69-4bce-92c4-59998fa913a5" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2656,7 +2659,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -2665,10 +2668,10 @@ "Accept-Encoding" ], "request-id": [ - "b4c350ba-c8e6-4e8c-83ea-104a36e7db0f" + "0ed0826f-fd69-4bce-92c4-59998fa913a5" ], "elapsed-time": [ - "21" + "16" ], "OData-Version": [ "4.0" @@ -2683,8 +2686,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"he.microsoft\"\r\n}", "RequestHeaders": { @@ -2695,23 +2698,23 @@ "56" ], "client-request-id": [ - "d64bf0cd-e142-4c61-a600-4e6055a6447b" + "0b75c940-ff4c-466a-a9b3-c22662c63b57" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2723,7 +2726,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -2732,10 +2735,10 @@ "Accept-Encoding" ], "request-id": [ - "d64bf0cd-e142-4c61-a600-4e6055a6447b" + "0b75c940-ff4c-466a-a9b3-c22662c63b57" ], "elapsed-time": [ - "171" + "16" ], "OData-Version": [ "4.0" @@ -2750,8 +2753,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"hi.microsoft\"\r\n}", "RequestHeaders": { @@ -2762,23 +2765,23 @@ "56" ], "client-request-id": [ - "2517d70f-f566-4788-bc92-4e31e8c6cd3d" + "697b2db4-2123-4218-b420-7a3fdf943474" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2790,7 +2793,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -2799,10 +2802,10 @@ "Accept-Encoding" ], "request-id": [ - "2517d70f-f566-4788-bc92-4e31e8c6cd3d" + "697b2db4-2123-4218-b420-7a3fdf943474" ], "elapsed-time": [ - "21" + "30" ], "OData-Version": [ "4.0" @@ -2817,8 +2820,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"hi.lucene\"\r\n}", "RequestHeaders": { @@ -2829,23 +2832,23 @@ "53" ], "client-request-id": [ - "4ee3d634-9bf3-46d6-a975-9eff7f630597" + "2e697c33-5f09-4e88-ad15-235b61de6ece" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2857,7 +2860,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -2866,10 +2869,10 @@ "Accept-Encoding" ], "request-id": [ - "4ee3d634-9bf3-46d6-a975-9eff7f630597" + "2e697c33-5f09-4e88-ad15-235b61de6ece" ], "elapsed-time": [ - "13" + "10" ], "OData-Version": [ "4.0" @@ -2884,8 +2887,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"hu.microsoft\"\r\n}", "RequestHeaders": { @@ -2896,23 +2899,23 @@ "56" ], "client-request-id": [ - "83bc4f81-44da-4e46-b943-088b518e77dc" + "708d9060-e824-40df-97de-95c33d2fd3ea" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"on\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"on\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2924,7 +2927,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -2933,10 +2936,10 @@ "Accept-Encoding" ], "request-id": [ - "83bc4f81-44da-4e46-b943-088b518e77dc" + "708d9060-e824-40df-97de-95c33d2fd3ea" ], "elapsed-time": [ - "16" + "17" ], "OData-Version": [ "4.0" @@ -2951,8 +2954,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"hu.lucene\"\r\n}", "RequestHeaders": { @@ -2963,23 +2966,23 @@ "53" ], "client-request-id": [ - "283a6523-9dbf-4818-944f-19a749846bd4" + "934d8552-9c76-4695-9e03-37eedcaf9dbc" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"on\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"on\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -2991,7 +2994,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -3000,10 +3003,10 @@ "Accept-Encoding" ], "request-id": [ - "283a6523-9dbf-4818-944f-19a749846bd4" + "934d8552-9c76-4695-9e03-37eedcaf9dbc" ], "elapsed-time": [ - "13" + "9" ], "OData-Version": [ "4.0" @@ -3018,8 +3021,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"is.microsoft\"\r\n}", "RequestHeaders": { @@ -3030,23 +3033,23 @@ "56" ], "client-request-id": [ - "7b71b65a-2b2f-4a2a-890f-c7051d94d3b3" + "a8c18832-3e76-4d44-86e7-25fc4d440e92" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3058,7 +3061,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:27 GMT" ], "Pragma": [ "no-cache" @@ -3067,10 +3070,10 @@ "Accept-Encoding" ], "request-id": [ - "7b71b65a-2b2f-4a2a-890f-c7051d94d3b3" + "a8c18832-3e76-4d44-86e7-25fc4d440e92" ], "elapsed-time": [ - "23" + "18" ], "OData-Version": [ "4.0" @@ -3085,8 +3088,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"id.microsoft\"\r\n}", "RequestHeaders": { @@ -3097,23 +3100,23 @@ "56" ], "client-request-id": [ - "53b02717-87f7-4443-a3cf-cf50977b62ec" + "7766559c-bf62-4ddd-a82c-224f49d8fb97" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3125,7 +3128,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:28 GMT" ], "Pragma": [ "no-cache" @@ -3134,10 +3137,10 @@ "Accept-Encoding" ], "request-id": [ - "53b02717-87f7-4443-a3cf-cf50977b62ec" + "7766559c-bf62-4ddd-a82c-224f49d8fb97" ], "elapsed-time": [ - "20" + "213" ], "OData-Version": [ "4.0" @@ -3152,8 +3155,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"id.lucene\"\r\n}", "RequestHeaders": { @@ -3164,23 +3167,23 @@ "53" ], "client-request-id": [ - "8b00fe1a-558f-4467-bb1e-33bb651df59d" + "1d1ad4c8-b2dd-4426-a938-6116ad2fd02f" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3192,7 +3195,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:50 GMT" + "Tue, 07 Mar 2017 19:56:28 GMT" ], "Pragma": [ "no-cache" @@ -3201,10 +3204,10 @@ "Accept-Encoding" ], "request-id": [ - "8b00fe1a-558f-4467-bb1e-33bb651df59d" + "1d1ad4c8-b2dd-4426-a938-6116ad2fd02f" ], "elapsed-time": [ - "15" + "10" ], "OData-Version": [ "4.0" @@ -3219,8 +3222,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ga.lucene\"\r\n}", "RequestHeaders": { @@ -3231,23 +3234,23 @@ "53" ], "client-request-id": [ - "3b4bc726-2731-4842-bd2a-02a9c2177183" + "a25a5cfd-b806-453a-8098-43229ab9c700" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3259,7 +3262,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:28 GMT" ], "Pragma": [ "no-cache" @@ -3268,10 +3271,10 @@ "Accept-Encoding" ], "request-id": [ - "3b4bc726-2731-4842-bd2a-02a9c2177183" + "a25a5cfd-b806-453a-8098-43229ab9c700" ], "elapsed-time": [ - "11" + "9" ], "OData-Version": [ "4.0" @@ -3286,8 +3289,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"it.microsoft\"\r\n}", "RequestHeaders": { @@ -3298,23 +3301,23 @@ "56" ], "client-request-id": [ - "3cd278c0-9937-4ec4-8f8f-57097f3b1db1" + "de4f59b9-9286-4ed5-9174-1aa09ba41553" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3326,7 +3329,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:28 GMT" ], "Pragma": [ "no-cache" @@ -3335,10 +3338,10 @@ "Accept-Encoding" ], "request-id": [ - "3cd278c0-9937-4ec4-8f8f-57097f3b1db1" + "de4f59b9-9286-4ed5-9174-1aa09ba41553" ], "elapsed-time": [ - "20" + "21" ], "OData-Version": [ "4.0" @@ -3353,8 +3356,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"it.lucene\"\r\n}", "RequestHeaders": { @@ -3365,23 +3368,23 @@ "53" ], "client-request-id": [ - "4b79ba47-9a7c-4c0b-8669-05d1ee880976" + "de0f96b9-095a-48eb-b68b-0778845f7314" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3393,7 +3396,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:28 GMT" ], "Pragma": [ "no-cache" @@ -3402,10 +3405,10 @@ "Accept-Encoding" ], "request-id": [ - "4b79ba47-9a7c-4c0b-8669-05d1ee880976" + "de0f96b9-095a-48eb-b68b-0778845f7314" ], "elapsed-time": [ - "12" + "7" ], "OData-Version": [ "4.0" @@ -3420,8 +3423,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ja.microsoft\"\r\n}", "RequestHeaders": { @@ -3432,23 +3435,23 @@ "56" ], "client-request-id": [ - "37c76f53-5303-452a-a290-703658215ef7" + "07b93697-d11d-44a5-9dca-8ee0afc9ba43" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3460,7 +3463,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:28 GMT" ], "Pragma": [ "no-cache" @@ -3469,10 +3472,10 @@ "Accept-Encoding" ], "request-id": [ - "37c76f53-5303-452a-a290-703658215ef7" + "07b93697-d11d-44a5-9dca-8ee0afc9ba43" ], "elapsed-time": [ - "12" + "118" ], "OData-Version": [ "4.0" @@ -3487,8 +3490,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ja.lucene\"\r\n}", "RequestHeaders": { @@ -3499,23 +3502,23 @@ "53" ], "client-request-id": [ - "f53b40da-1eba-4c9a-9a77-987e3ed0d653" + "4105fd5f-8675-4dac-8d7f-f22d848f255e" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3527,7 +3530,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:28 GMT" ], "Pragma": [ "no-cache" @@ -3536,10 +3539,10 @@ "Accept-Encoding" ], "request-id": [ - "f53b40da-1eba-4c9a-9a77-987e3ed0d653" + "4105fd5f-8675-4dac-8d7f-f22d848f255e" ], "elapsed-time": [ - "14" + "438" ], "OData-Version": [ "4.0" @@ -3554,8 +3557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"kn.microsoft\"\r\n}", "RequestHeaders": { @@ -3566,23 +3569,23 @@ "56" ], "client-request-id": [ - "17764607-a66b-41fb-8c20-a10ecb80900e" + "9a45ad9a-de61-4bcb-a1a3-82c4ef81edee" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3594,7 +3597,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:28 GMT" ], "Pragma": [ "no-cache" @@ -3603,10 +3606,10 @@ "Accept-Encoding" ], "request-id": [ - "17764607-a66b-41fb-8c20-a10ecb80900e" + "9a45ad9a-de61-4bcb-a1a3-82c4ef81edee" ], "elapsed-time": [ - "25" + "222" ], "OData-Version": [ "4.0" @@ -3621,8 +3624,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ko.microsoft\"\r\n}", "RequestHeaders": { @@ -3633,23 +3636,23 @@ "56" ], "client-request-id": [ - "772800c7-7e01-4963-a3d7-583b7947e482" + "0da907ba-4ed8-4e90-ad2b-23561784c655" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3661,7 +3664,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:29 GMT" ], "Pragma": [ "no-cache" @@ -3670,10 +3673,10 @@ "Accept-Encoding" ], "request-id": [ - "772800c7-7e01-4963-a3d7-583b7947e482" + "0da907ba-4ed8-4e90-ad2b-23561784c655" ], "elapsed-time": [ - "12" + "254" ], "OData-Version": [ "4.0" @@ -3688,8 +3691,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ko.lucene\"\r\n}", "RequestHeaders": { @@ -3700,23 +3703,23 @@ "53" ], "client-request-id": [ - "1c82ae84-1fdf-45c0-b902-47d291820d0d" + "2fdc000b-8c23-4fd2-95e4-f7181a490518" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3728,7 +3731,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:29 GMT" ], "Pragma": [ "no-cache" @@ -3737,10 +3740,10 @@ "Accept-Encoding" ], "request-id": [ - "1c82ae84-1fdf-45c0-b902-47d291820d0d" + "2fdc000b-8c23-4fd2-95e4-f7181a490518" ], "elapsed-time": [ - "13" + "10" ], "OData-Version": [ "4.0" @@ -3755,8 +3758,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"lv.microsoft\"\r\n}", "RequestHeaders": { @@ -3767,23 +3770,23 @@ "56" ], "client-request-id": [ - "5e13af6f-f5f2-4853-990d-da931a915183" + "7fbcd093-b425-408b-9afe-15ad3141517d" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3795,7 +3798,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:29 GMT" ], "Pragma": [ "no-cache" @@ -3804,7 +3807,7 @@ "Accept-Encoding" ], "request-id": [ - "5e13af6f-f5f2-4853-990d-da931a915183" + "7fbcd093-b425-408b-9afe-15ad3141517d" ], "elapsed-time": [ "17" @@ -3822,8 +3825,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"lv.lucene\"\r\n}", "RequestHeaders": { @@ -3834,23 +3837,23 @@ "53" ], "client-request-id": [ - "19e4af82-8e37-4946-b91f-ff62ff06e25c" + "340d3258-9145-45ab-adf4-2f31eea291c1" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3862,7 +3865,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:29 GMT" ], "Pragma": [ "no-cache" @@ -3871,10 +3874,10 @@ "Accept-Encoding" ], "request-id": [ - "19e4af82-8e37-4946-b91f-ff62ff06e25c" + "340d3258-9145-45ab-adf4-2f31eea291c1" ], "elapsed-time": [ - "12" + "9" ], "OData-Version": [ "4.0" @@ -3889,8 +3892,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"lt.microsoft\"\r\n}", "RequestHeaders": { @@ -3901,23 +3904,23 @@ "56" ], "client-request-id": [ - "9c227e14-6e0c-4f45-bcab-c01298eb0c22" + "f11299dc-edbb-454d-94b4-8de47862e003" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3929,7 +3932,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:29 GMT" ], "Pragma": [ "no-cache" @@ -3938,7 +3941,7 @@ "Accept-Encoding" ], "request-id": [ - "9c227e14-6e0c-4f45-bcab-c01298eb0c22" + "f11299dc-edbb-454d-94b4-8de47862e003" ], "elapsed-time": [ "15" @@ -3956,8 +3959,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ml.microsoft\"\r\n}", "RequestHeaders": { @@ -3968,23 +3971,23 @@ "56" ], "client-request-id": [ - "aee50e5d-1153-4382-bc6a-1c158c112a25" + "c95cdd7b-80fa-4d37-aec9-56716f573fb8" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -3996,7 +3999,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:29 GMT" ], "Pragma": [ "no-cache" @@ -4005,10 +4008,10 @@ "Accept-Encoding" ], "request-id": [ - "aee50e5d-1153-4382-bc6a-1c158c112a25" + "c95cdd7b-80fa-4d37-aec9-56716f573fb8" ], "elapsed-time": [ - "20" + "34" ], "OData-Version": [ "4.0" @@ -4023,8 +4026,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ms.microsoft\"\r\n}", "RequestHeaders": { @@ -4035,23 +4038,23 @@ "56" ], "client-request-id": [ - "a158981b-b958-4268-9941-6fba209cc19d" + "6c3d185b-bd4d-4efa-a39d-027832056083" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -4063,7 +4066,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:29 GMT" ], "Pragma": [ "no-cache" @@ -4072,10 +4075,10 @@ "Accept-Encoding" ], "request-id": [ - "a158981b-b958-4268-9941-6fba209cc19d" + "6c3d185b-bd4d-4efa-a39d-027832056083" ], "elapsed-time": [ - "20" + "40" ], "OData-Version": [ "4.0" @@ -4090,8 +4093,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"mr.microsoft\"\r\n}", "RequestHeaders": { @@ -4102,23 +4105,23 @@ "56" ], "client-request-id": [ - "e9f6d48f-e813-4d7f-ad19-5a02de38b6a8" + "4f52065d-e2ca-4f06-b69c-fcb57a78de55" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -4130,7 +4133,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:29 GMT" ], "Pragma": [ "no-cache" @@ -4139,10 +4142,10 @@ "Accept-Encoding" ], "request-id": [ - "e9f6d48f-e813-4d7f-ad19-5a02de38b6a8" + "4f52065d-e2ca-4f06-b69c-fcb57a78de55" ], "elapsed-time": [ - "20" + "174" ], "OData-Version": [ "4.0" @@ -4157,8 +4160,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"nb.microsoft\"\r\n}", "RequestHeaders": { @@ -4169,23 +4172,23 @@ "56" ], "client-request-id": [ - "0fa22c57-d540-4c15-a18f-e9347ac273ec" + "b31fcfed-ab8d-4b42-8bef-02ac91841137" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -4197,7 +4200,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:29 GMT" ], "Pragma": [ "no-cache" @@ -4206,10 +4209,10 @@ "Accept-Encoding" ], "request-id": [ - "0fa22c57-d540-4c15-a18f-e9347ac273ec" + "b31fcfed-ab8d-4b42-8bef-02ac91841137" ], "elapsed-time": [ - "20" + "18" ], "OData-Version": [ "4.0" @@ -4224,8 +4227,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"no.lucene\"\r\n}", "RequestHeaders": { @@ -4236,23 +4239,23 @@ "53" ], "client-request-id": [ - "8fec06fe-aaeb-465c-913e-620fb50b1f6d" + "c4b5a267-5dac-42f3-8056-f43a459aa1ff" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -4264,7 +4267,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:29 GMT" ], "Pragma": [ "no-cache" @@ -4273,10 +4276,10 @@ "Accept-Encoding" ], "request-id": [ - "8fec06fe-aaeb-465c-913e-620fb50b1f6d" + "c4b5a267-5dac-42f3-8056-f43a459aa1ff" ], "elapsed-time": [ - "12" + "9" ], "OData-Version": [ "4.0" @@ -4291,8 +4294,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"fa.lucene\"\r\n}", "RequestHeaders": { @@ -4303,23 +4306,23 @@ "53" ], "client-request-id": [ - "879b298a-d217-45ea-8118-3d477bbcaecc" + "10925855-1feb-4a87-9cbd-baf161b5ab2c" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -4331,7 +4334,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:29 GMT" ], "Pragma": [ "no-cache" @@ -4340,10 +4343,10 @@ "Accept-Encoding" ], "request-id": [ - "879b298a-d217-45ea-8118-3d477bbcaecc" + "10925855-1feb-4a87-9cbd-baf161b5ab2c" ], "elapsed-time": [ - "12" + "8" ], "OData-Version": [ "4.0" @@ -4358,8 +4361,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"pl.microsoft\"\r\n}", "RequestHeaders": { @@ -4370,23 +4373,23 @@ "56" ], "client-request-id": [ - "73eee113-968f-45f4-a16d-fac320016174" + "274cdd66-e40b-472d-941f-af1bbe408989" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -4398,7 +4401,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:29 GMT" ], "Pragma": [ "no-cache" @@ -4407,10 +4410,10 @@ "Accept-Encoding" ], "request-id": [ - "73eee113-968f-45f4-a16d-fac320016174" + "274cdd66-e40b-472d-941f-af1bbe408989" ], "elapsed-time": [ - "26" + "25" ], "OData-Version": [ "4.0" @@ -4425,8 +4428,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"pl.lucene\"\r\n}", "RequestHeaders": { @@ -4437,23 +4440,23 @@ "53" ], "client-request-id": [ - "1ff57c20-dbff-4934-8e20-799218b26668" + "1e7921c8-707b-4ad2-8f60-c2fc505e0578" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -4465,7 +4468,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:29 GMT" ], "Pragma": [ "no-cache" @@ -4474,10 +4477,10 @@ "Accept-Encoding" ], "request-id": [ - "1ff57c20-dbff-4934-8e20-799218b26668" + "1e7921c8-707b-4ad2-8f60-c2fc505e0578" ], "elapsed-time": [ - "18" + "7" ], "OData-Version": [ "4.0" @@ -4492,8 +4495,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"pt-BR.microsoft\"\r\n}", "RequestHeaders": { @@ -4504,23 +4507,23 @@ "59" ], "client-request-id": [ - "bdf2477b-6e7c-4c44-a053-c7c7243ba867" + "e8302d0c-0bb1-46df-94cf-6df3d34df6e3" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -4532,7 +4535,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -4541,10 +4544,10 @@ "Accept-Encoding" ], "request-id": [ - "bdf2477b-6e7c-4c44-a053-c7c7243ba867" + "e8302d0c-0bb1-46df-94cf-6df3d34df6e3" ], "elapsed-time": [ - "22" + "218" ], "OData-Version": [ "4.0" @@ -4559,8 +4562,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"pt-BR.lucene\"\r\n}", "RequestHeaders": { @@ -4571,23 +4574,23 @@ "56" ], "client-request-id": [ - "6c23d2b9-aa4c-4a91-9716-7631789189e2" + "4d57864b-4f72-4c95-82bd-6f94b3eb93c5" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -4599,7 +4602,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -4608,10 +4611,10 @@ "Accept-Encoding" ], "request-id": [ - "6c23d2b9-aa4c-4a91-9716-7631789189e2" + "4d57864b-4f72-4c95-82bd-6f94b3eb93c5" ], "elapsed-time": [ - "13" + "10" ], "OData-Version": [ "4.0" @@ -4626,8 +4629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"pt-PT.microsoft\"\r\n}", "RequestHeaders": { @@ -4638,23 +4641,23 @@ "59" ], "client-request-id": [ - "b808ab15-2f22-4646-acf2-733b1455bd55" + "ed9d3d66-ce76-4514-a2e7-7ff2b81600ae" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -4666,7 +4669,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -4675,10 +4678,10 @@ "Accept-Encoding" ], "request-id": [ - "b808ab15-2f22-4646-acf2-733b1455bd55" + "ed9d3d66-ce76-4514-a2e7-7ff2b81600ae" ], "elapsed-time": [ - "20" + "22" ], "OData-Version": [ "4.0" @@ -4693,8 +4696,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"pt-PT.lucene\"\r\n}", "RequestHeaders": { @@ -4705,23 +4708,23 @@ "56" ], "client-request-id": [ - "7b6e5664-4c6c-4744-a5a1-340a8ae30890" + "b2de3379-e831-4ef9-8e47-398d6803862b" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -4733,7 +4736,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -4742,10 +4745,10 @@ "Accept-Encoding" ], "request-id": [ - "7b6e5664-4c6c-4744-a5a1-340a8ae30890" + "b2de3379-e831-4ef9-8e47-398d6803862b" ], "elapsed-time": [ - "13" + "10" ], "OData-Version": [ "4.0" @@ -4760,8 +4763,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"pa.microsoft\"\r\n}", "RequestHeaders": { @@ -4772,23 +4775,23 @@ "56" ], "client-request-id": [ - "72f71148-e8d6-4cd2-a0de-c71d704a0658" + "1ad55a88-0109-4a25-9341-f440f95eb214" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -4800,7 +4803,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:51 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -4809,10 +4812,10 @@ "Accept-Encoding" ], "request-id": [ - "72f71148-e8d6-4cd2-a0de-c71d704a0658" + "1ad55a88-0109-4a25-9341-f440f95eb214" ], "elapsed-time": [ - "21" + "23" ], "OData-Version": [ "4.0" @@ -4827,8 +4830,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ro.microsoft\"\r\n}", "RequestHeaders": { @@ -4839,23 +4842,23 @@ "56" ], "client-request-id": [ - "ea86dddb-da9f-4145-ab6e-d18b39c3aec7" + "453d79f5-7f04-479e-b25d-4b3c472a9d60" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -4867,7 +4870,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -4876,10 +4879,10 @@ "Accept-Encoding" ], "request-id": [ - "ea86dddb-da9f-4145-ab6e-d18b39c3aec7" + "453d79f5-7f04-479e-b25d-4b3c472a9d60" ], "elapsed-time": [ - "21" + "18" ], "OData-Version": [ "4.0" @@ -4894,8 +4897,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ro.lucene\"\r\n}", "RequestHeaders": { @@ -4906,23 +4909,23 @@ "53" ], "client-request-id": [ - "1b9d7a02-e71f-441c-b28f-ccd41cf68d1e" + "1ef8f8ef-91cb-4ea2-8b62-61ff1a1097b8" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -4934,7 +4937,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -4943,10 +4946,10 @@ "Accept-Encoding" ], "request-id": [ - "1b9d7a02-e71f-441c-b28f-ccd41cf68d1e" + "1ef8f8ef-91cb-4ea2-8b62-61ff1a1097b8" ], "elapsed-time": [ - "14" + "9" ], "OData-Version": [ "4.0" @@ -4961,8 +4964,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ru.microsoft\"\r\n}", "RequestHeaders": { @@ -4973,23 +4976,23 @@ "56" ], "client-request-id": [ - "3aefe46f-fe23-4fb3-85e1-a37da98c8f68" + "50ea29e3-351d-4861-870f-1d23e5467fac" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5001,7 +5004,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -5010,7 +5013,7 @@ "Accept-Encoding" ], "request-id": [ - "3aefe46f-fe23-4fb3-85e1-a37da98c8f68" + "50ea29e3-351d-4861-870f-1d23e5467fac" ], "elapsed-time": [ "19" @@ -5028,8 +5031,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ru.lucene\"\r\n}", "RequestHeaders": { @@ -5040,23 +5043,23 @@ "53" ], "client-request-id": [ - "c8604f10-8f9b-40f8-9d2a-030a0543db84" + "7f7a9c1f-ce18-4fbc-bcb4-4ba0d39434d2" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5068,7 +5071,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -5077,10 +5080,10 @@ "Accept-Encoding" ], "request-id": [ - "c8604f10-8f9b-40f8-9d2a-030a0543db84" + "7f7a9c1f-ce18-4fbc-bcb4-4ba0d39434d2" ], "elapsed-time": [ - "14" + "9" ], "OData-Version": [ "4.0" @@ -5095,8 +5098,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"sr-cyrillic.microsoft\"\r\n}", "RequestHeaders": { @@ -5107,23 +5110,23 @@ "65" ], "client-request-id": [ - "33daa3bf-ae45-4f09-94eb-3b858ec0a640" + "e278594a-babe-46d5-bcd6-61b48a7faaa1" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5135,7 +5138,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -5144,10 +5147,10 @@ "Accept-Encoding" ], "request-id": [ - "33daa3bf-ae45-4f09-94eb-3b858ec0a640" + "e278594a-babe-46d5-bcd6-61b48a7faaa1" ], "elapsed-time": [ - "20" + "18" ], "OData-Version": [ "4.0" @@ -5162,8 +5165,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"sr-latin.microsoft\"\r\n}", "RequestHeaders": { @@ -5174,23 +5177,23 @@ "62" ], "client-request-id": [ - "c9342782-47c6-4596-b485-8dcb097815ab" + "c31aa8c9-407b-47cc-92cb-e67df5b050a3" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"ona\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"onaj\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"ona\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"onaj\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5202,7 +5205,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -5211,10 +5214,10 @@ "Accept-Encoding" ], "request-id": [ - "c9342782-47c6-4596-b485-8dcb097815ab" + "c31aa8c9-407b-47cc-92cb-e67df5b050a3" ], "elapsed-time": [ - "23" + "19" ], "OData-Version": [ "4.0" @@ -5229,8 +5232,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"sk.microsoft\"\r\n}", "RequestHeaders": { @@ -5241,23 +5244,23 @@ "56" ], "client-request-id": [ - "cb262c78-8e44-4816-aee3-33c2e6469c23" + "a63891f2-9f1a-46ae-8eab-785d6f1c437d" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5269,7 +5272,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -5278,7 +5281,7 @@ "Accept-Encoding" ], "request-id": [ - "cb262c78-8e44-4816-aee3-33c2e6469c23" + "a63891f2-9f1a-46ae-8eab-785d6f1c437d" ], "elapsed-time": [ "16" @@ -5296,8 +5299,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"sl.microsoft\"\r\n}", "RequestHeaders": { @@ -5308,23 +5311,23 @@ "56" ], "client-request-id": [ - "377c9bf7-a744-4d9f-9247-430e06915ae2" + "388986be-9b42-41a1-a146-4a9bb7c0f5da" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"oni\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"twa\",\"startOffset\":4,\"endOffset\":7,\"position\":1},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"oni\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"twa\",\"startOffset\":4,\"endOffset\":7,\"position\":1},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5336,7 +5339,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -5345,10 +5348,10 @@ "Accept-Encoding" ], "request-id": [ - "377c9bf7-a744-4d9f-9247-430e06915ae2" + "388986be-9b42-41a1-a146-4a9bb7c0f5da" ], "elapsed-time": [ - "19" + "226" ], "OData-Version": [ "4.0" @@ -5363,8 +5366,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"es.microsoft\"\r\n}", "RequestHeaders": { @@ -5375,23 +5378,23 @@ "56" ], "client-request-id": [ - "a046c995-f6b8-4bd1-9475-c46c25a785f2" + "e82bcaa3-229b-4691-80f1-b518f0e07790" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5403,7 +5406,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -5412,10 +5415,10 @@ "Accept-Encoding" ], "request-id": [ - "a046c995-f6b8-4bd1-9475-c46c25a785f2" + "e82bcaa3-229b-4691-80f1-b518f0e07790" ], "elapsed-time": [ - "27" + "20" ], "OData-Version": [ "4.0" @@ -5430,8 +5433,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"es.lucene\"\r\n}", "RequestHeaders": { @@ -5442,23 +5445,23 @@ "53" ], "client-request-id": [ - "9364a3b4-fecd-4d2f-a8d7-aa6429de3612" + "94189dca-2607-433a-b497-05194ee33d40" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5470,7 +5473,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -5479,10 +5482,10 @@ "Accept-Encoding" ], "request-id": [ - "9364a3b4-fecd-4d2f-a8d7-aa6429de3612" + "94189dca-2607-433a-b497-05194ee33d40" ], "elapsed-time": [ - "13" + "8" ], "OData-Version": [ "4.0" @@ -5497,8 +5500,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"sv.microsoft\"\r\n}", "RequestHeaders": { @@ -5509,23 +5512,23 @@ "56" ], "client-request-id": [ - "b7f54e8a-4c1b-44ec-be5b-581a594f2ae7" + "a8d0e112-dc70-49d1-bab4-a15dea198ebc" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5537,7 +5540,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -5546,10 +5549,10 @@ "Accept-Encoding" ], "request-id": [ - "b7f54e8a-4c1b-44ec-be5b-581a594f2ae7" + "a8d0e112-dc70-49d1-bab4-a15dea198ebc" ], "elapsed-time": [ - "20" + "21" ], "OData-Version": [ "4.0" @@ -5564,8 +5567,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"sv.lucene\"\r\n}", "RequestHeaders": { @@ -5576,23 +5579,23 @@ "53" ], "client-request-id": [ - "dae2c29c-a584-4c64-8ced-9748afbb6411" + "0f4a96e7-7b09-41c4-a714-be9749261777" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5604,7 +5607,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -5613,10 +5616,10 @@ "Accept-Encoding" ], "request-id": [ - "dae2c29c-a584-4c64-8ced-9748afbb6411" + "0f4a96e7-7b09-41c4-a714-be9749261777" ], "elapsed-time": [ - "13" + "9" ], "OData-Version": [ "4.0" @@ -5631,8 +5634,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ta.microsoft\"\r\n}", "RequestHeaders": { @@ -5643,23 +5646,23 @@ "56" ], "client-request-id": [ - "07350193-8d40-4c97-ba42-b9e537b7a797" + "2c878fba-1929-495a-85ce-0a720b988cde" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5671,7 +5674,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -5680,10 +5683,10 @@ "Accept-Encoding" ], "request-id": [ - "07350193-8d40-4c97-ba42-b9e537b7a797" + "2c878fba-1929-495a-85ce-0a720b988cde" ], "elapsed-time": [ - "20" + "26" ], "OData-Version": [ "4.0" @@ -5698,8 +5701,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"te.microsoft\"\r\n}", "RequestHeaders": { @@ -5710,23 +5713,23 @@ "56" ], "client-request-id": [ - "77d155cb-f03b-46e0-b24a-8c278f0c94a7" + "dc9b6937-dc7d-4c10-9255-f3e804daf8d9" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5738,7 +5741,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:30 GMT" ], "Pragma": [ "no-cache" @@ -5747,10 +5750,10 @@ "Accept-Encoding" ], "request-id": [ - "77d155cb-f03b-46e0-b24a-8c278f0c94a7" + "dc9b6937-dc7d-4c10-9255-f3e804daf8d9" ], "elapsed-time": [ - "20" + "25" ], "OData-Version": [ "4.0" @@ -5765,8 +5768,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"th.microsoft\"\r\n}", "RequestHeaders": { @@ -5777,23 +5780,23 @@ "56" ], "client-request-id": [ - "ef928dd5-fb5d-493e-be5c-ddbf19fd6084" + "10e469ab-11cb-4230-b3ab-e545e1ce201a" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5805,7 +5808,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -5814,10 +5817,10 @@ "Accept-Encoding" ], "request-id": [ - "ef928dd5-fb5d-493e-be5c-ddbf19fd6084" + "10e469ab-11cb-4230-b3ab-e545e1ce201a" ], "elapsed-time": [ - "15" + "243" ], "OData-Version": [ "4.0" @@ -5832,8 +5835,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"th.lucene\"\r\n}", "RequestHeaders": { @@ -5844,23 +5847,23 @@ "53" ], "client-request-id": [ - "7987198e-276c-444b-8b0e-ec29d9f723f4" + "d1f1b08a-b0df-417f-ad1f-d5ff82c0a630" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5872,7 +5875,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -5881,10 +5884,10 @@ "Accept-Encoding" ], "request-id": [ - "7987198e-276c-444b-8b0e-ec29d9f723f4" + "d1f1b08a-b0df-417f-ad1f-d5ff82c0a630" ], "elapsed-time": [ - "12" + "27" ], "OData-Version": [ "4.0" @@ -5899,8 +5902,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"tr.microsoft\"\r\n}", "RequestHeaders": { @@ -5911,23 +5914,23 @@ "56" ], "client-request-id": [ - "157b2d2f-637a-4cd7-b1a1-b73881bf5723" + "a2d7885b-66e5-445a-a841-deb01f2f5cc9" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -5939,7 +5942,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -5948,10 +5951,10 @@ "Accept-Encoding" ], "request-id": [ - "157b2d2f-637a-4cd7-b1a1-b73881bf5723" + "a2d7885b-66e5-445a-a841-deb01f2f5cc9" ], "elapsed-time": [ - "19" + "16" ], "OData-Version": [ "4.0" @@ -5966,8 +5969,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"tr.lucene\"\r\n}", "RequestHeaders": { @@ -5978,23 +5981,23 @@ "53" ], "client-request-id": [ - "09800993-f2c0-42cb-9520-f48e049dc1ef" + "fcf73138-fd30-491c-b7f0-24d9023c8215" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6006,7 +6009,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6015,10 +6018,10 @@ "Accept-Encoding" ], "request-id": [ - "09800993-f2c0-42cb-9520-f48e049dc1ef" + "fcf73138-fd30-491c-b7f0-24d9023c8215" ], "elapsed-time": [ - "13" + "10" ], "OData-Version": [ "4.0" @@ -6033,8 +6036,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"uk.microsoft\"\r\n}", "RequestHeaders": { @@ -6045,23 +6048,23 @@ "56" ], "client-request-id": [ - "e808a2eb-b7b1-44b8-bcda-83a43145d0fc" + "e953b17e-c624-4613-a149-c9673576fc24" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6073,7 +6076,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6082,10 +6085,10 @@ "Accept-Encoding" ], "request-id": [ - "e808a2eb-b7b1-44b8-bcda-83a43145d0fc" + "e953b17e-c624-4613-a149-c9673576fc24" ], "elapsed-time": [ - "38" + "19" ], "OData-Version": [ "4.0" @@ -6100,8 +6103,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"ur.microsoft\"\r\n}", "RequestHeaders": { @@ -6112,23 +6115,23 @@ "56" ], "client-request-id": [ - "58f20735-5c19-4809-952a-57ef813ad68f" + "b77e2a50-4e37-459a-9c38-0a06ec9869cc" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6140,7 +6143,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6149,10 +6152,10 @@ "Accept-Encoding" ], "request-id": [ - "58f20735-5c19-4809-952a-57ef813ad68f" + "b77e2a50-4e37-459a-9c38-0a06ec9869cc" ], "elapsed-time": [ - "22" + "37" ], "OData-Version": [ "4.0" @@ -6167,8 +6170,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"vi.microsoft\"\r\n}", "RequestHeaders": { @@ -6179,23 +6182,23 @@ "56" ], "client-request-id": [ - "af582ed6-5b64-4cbd-a9b3-10f3b2d9725f" + "831a9bcc-c96c-4a42-8792-fe857c38463e" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6207,7 +6210,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6216,10 +6219,10 @@ "Accept-Encoding" ], "request-id": [ - "af582ed6-5b64-4cbd-a9b3-10f3b2d9725f" + "831a9bcc-c96c-4a42-8792-fe857c38463e" ], "elapsed-time": [ - "16" + "13" ], "OData-Version": [ "4.0" @@ -6234,8 +6237,75 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"standard.lucene\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "59" + ], + "client-request-id": [ + "5d465480-2b2d-45d6-950a-c44a1c53ea99" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "9C747DAC975294606708FB47FFC266E4" + ], + "Prefer": [ + "return=representation" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" + ] + }, + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 19:56:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "5d465480-2b2d-45d6-950a-c44a1c53ea99" + ], + "elapsed-time": [ + "8" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"standardasciifolding.lucene\"\r\n}", "RequestHeaders": { @@ -6246,23 +6316,23 @@ "71" ], "client-request-id": [ - "0cd8241a-93f4-4aa6-aece-72f0be0aed57" + "654c63f2-4e9e-4237-9263-377d381a4fb9" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6274,7 +6344,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6283,10 +6353,10 @@ "Accept-Encoding" ], "request-id": [ - "0cd8241a-93f4-4aa6-aece-72f0be0aed57" + "654c63f2-4e9e-4237-9263-377d381a4fb9" ], "elapsed-time": [ - "15" + "11" ], "OData-Version": [ "4.0" @@ -6301,8 +6371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"keyword\"\r\n}", "RequestHeaders": { @@ -6313,23 +6383,23 @@ "51" ], "client-request-id": [ - "bfd6d0dd-93a2-4989-ac80-b4020bc28492" + "1fdd56f7-7903-4f63-b53b-33082557fc84" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One two\",\"startOffset\":0,\"endOffset\":7,\"position\":0}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One two\",\"startOffset\":0,\"endOffset\":7,\"position\":0}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6341,7 +6411,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6350,10 +6420,10 @@ "Accept-Encoding" ], "request-id": [ - "bfd6d0dd-93a2-4989-ac80-b4020bc28492" + "1fdd56f7-7903-4f63-b53b-33082557fc84" ], "elapsed-time": [ - "12" + "14" ], "OData-Version": [ "4.0" @@ -6368,8 +6438,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"pattern\"\r\n}", "RequestHeaders": { @@ -6380,23 +6450,23 @@ "51" ], "client-request-id": [ - "f56e8bc7-1f74-4f37-9f3a-ec73b06c8d6d" + "c430972e-2afd-4f77-a545-6dc810c277b5" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6408,7 +6478,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:52 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6417,10 +6487,10 @@ "Accept-Encoding" ], "request-id": [ - "f56e8bc7-1f74-4f37-9f3a-ec73b06c8d6d" + "c430972e-2afd-4f77-a545-6dc810c277b5" ], "elapsed-time": [ - "14" + "9" ], "OData-Version": [ "4.0" @@ -6435,8 +6505,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"simple\"\r\n}", "RequestHeaders": { @@ -6447,23 +6517,23 @@ "50" ], "client-request-id": [ - "4d405d57-b686-40fc-845c-2cceb1d88d24" + "731c2914-d451-4b4f-9e85-9e00adc29387" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6475,7 +6545,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6484,10 +6554,10 @@ "Accept-Encoding" ], "request-id": [ - "4d405d57-b686-40fc-845c-2cceb1d88d24" + "731c2914-d451-4b4f-9e85-9e00adc29387" ], "elapsed-time": [ - "12" + "9" ], "OData-Version": [ "4.0" @@ -6502,8 +6572,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"stop\"\r\n}", "RequestHeaders": { @@ -6514,23 +6584,23 @@ "48" ], "client-request-id": [ - "530b539b-d79e-4049-bba2-05292e555e60" + "737a3701-3f82-4546-9213-ed02132162ba" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6542,7 +6612,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6551,10 +6621,10 @@ "Accept-Encoding" ], "request-id": [ - "530b539b-d79e-4049-bba2-05292e555e60" + "737a3701-3f82-4546-9213-ed02132162ba" ], "elapsed-time": [ - "12" + "9" ], "OData-Version": [ "4.0" @@ -6569,8 +6639,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"analyzer\": \"whitespace\"\r\n}", "RequestHeaders": { @@ -6581,23 +6651,23 @@ "54" ], "client-request-id": [ - "8db3d5cd-ad35-44fe-8f5c-b0b5d0efe1f3" + "cb683928-b87c-4446-8d09-31c4a6cc2d13" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6609,7 +6679,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6618,10 +6688,10 @@ "Accept-Encoding" ], "request-id": [ - "8db3d5cd-ad35-44fe-8f5c-b0b5d0efe1f3" + "cb683928-b87c-4446-8d09-31c4a6cc2d13" ], "elapsed-time": [ - "14" + "8" ], "OData-Version": [ "4.0" @@ -6636,8 +6706,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"tokenizer\": \"classic\"\r\n}", "RequestHeaders": { @@ -6648,23 +6718,23 @@ "52" ], "client-request-id": [ - "6f1e3667-c1ed-4c63-beb4-9f8693c2ff8f" + "16932cad-84ac-4b19-b9f4-e5720e142e81" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6676,7 +6746,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6685,10 +6755,10 @@ "Accept-Encoding" ], "request-id": [ - "6f1e3667-c1ed-4c63-beb4-9f8693c2ff8f" + "16932cad-84ac-4b19-b9f4-e5720e142e81" ], "elapsed-time": [ - "12" + "27" ], "OData-Version": [ "4.0" @@ -6703,8 +6773,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"tokenizer\": \"edgeNGram\"\r\n}", "RequestHeaders": { @@ -6715,23 +6785,23 @@ "54" ], "client-request-id": [ - "8b553eb8-fa70-45da-9b4f-782b5ea6fbd4" + "51924124-eb18-4b8d-b113-362459ae2721" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"O\",\"startOffset\":0,\"endOffset\":1,\"position\":0}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"O\",\"startOffset\":0,\"endOffset\":1,\"position\":0}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6743,7 +6813,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6752,10 +6822,10 @@ "Accept-Encoding" ], "request-id": [ - "8b553eb8-fa70-45da-9b4f-782b5ea6fbd4" + "51924124-eb18-4b8d-b113-362459ae2721" ], "elapsed-time": [ - "12" + "16" ], "OData-Version": [ "4.0" @@ -6770,8 +6840,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"tokenizer\": \"keyword_v2\"\r\n}", "RequestHeaders": { @@ -6782,23 +6852,23 @@ "55" ], "client-request-id": [ - "b9e0f508-01bc-424d-b764-3c0251416b92" + "66bd6296-1c96-4666-8121-81752354e86b" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One two\",\"startOffset\":0,\"endOffset\":7,\"position\":0}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One two\",\"startOffset\":0,\"endOffset\":7,\"position\":0}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6810,7 +6880,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6819,10 +6889,10 @@ "Accept-Encoding" ], "request-id": [ - "b9e0f508-01bc-424d-b764-3c0251416b92" + "66bd6296-1c96-4666-8121-81752354e86b" ], "elapsed-time": [ - "13" + "9" ], "OData-Version": [ "4.0" @@ -6837,8 +6907,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"tokenizer\": \"letter\"\r\n}", "RequestHeaders": { @@ -6849,23 +6919,23 @@ "51" ], "client-request-id": [ - "3f6d81ac-660e-4168-8586-b35a703aeee1" + "7469b6c7-23f1-4448-a9cf-c8307f52bec6" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6877,7 +6947,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6886,10 +6956,10 @@ "Accept-Encoding" ], "request-id": [ - "3f6d81ac-660e-4168-8586-b35a703aeee1" + "7469b6c7-23f1-4448-a9cf-c8307f52bec6" ], "elapsed-time": [ - "12" + "10" ], "OData-Version": [ "4.0" @@ -6904,8 +6974,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"tokenizer\": \"lowercase\"\r\n}", "RequestHeaders": { @@ -6916,23 +6986,23 @@ "54" ], "client-request-id": [ - "f55c886c-39f2-4def-834a-a6442868458d" + "8a48878f-e076-4381-af7f-a7a1cc6d97a0" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"one\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -6944,7 +7014,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:31 GMT" ], "Pragma": [ "no-cache" @@ -6953,7 +7023,74 @@ "Accept-Encoding" ], "request-id": [ - "f55c886c-39f2-4def-834a-a6442868458d" + "8a48878f-e076-4381-af7f-a7a1cc6d97a0" + ], + "elapsed-time": [ + "8" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"tokenizer\": \"microsoft_language_tokenizer\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "73" + ], + "client-request-id": [ + "66b1181b-f2eb-43aa-9138-c27418ccc861" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "9C747DAC975294606708FB47FFC266E4" + ], + "Prefer": [ + "return=representation" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" + ] + }, + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 19:56:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "66b1181b-f2eb-43aa-9138-c27418ccc861" ], "elapsed-time": [ "12" @@ -6971,8 +7108,75 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"tokenizer\": \"microsoft_language_stemming_tokenizer\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "82" + ], + "client-request-id": [ + "3569d6c3-35b1-4b9e-8d5e-de799520c2e1" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "9C747DAC975294606708FB47FFC266E4" + ], + "Prefer": [ + "return=representation" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" + ] + }, + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 19:56:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "3569d6c3-35b1-4b9e-8d5e-de799520c2e1" + ], + "elapsed-time": [ + "18" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"tokenizer\": \"nGram\"\r\n}", "RequestHeaders": { @@ -6983,23 +7187,23 @@ "50" ], "client-request-id": [ - "5d0c1f32-d485-42b8-872f-73aed81ad2d4" + "48aed166-95a4-4d76-a883-a7d384759c02" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"O\",\"startOffset\":0,\"endOffset\":1,\"position\":0},{\"token\":\"On\",\"startOffset\":0,\"endOffset\":2,\"position\":1},{\"token\":\"ne\",\"startOffset\":1,\"endOffset\":3,\"position\":2},{\"token\":\"n\",\"startOffset\":1,\"endOffset\":2,\"position\":3},{\"token\":\"e\",\"startOffset\":2,\"endOffset\":3,\"position\":4},{\"token\":\"e \",\"startOffset\":2,\"endOffset\":4,\"position\":5},{\"token\":\" t\",\"startOffset\":3,\"endOffset\":5,\"position\":6},{\"token\":\" \",\"startOffset\":3,\"endOffset\":4,\"position\":7},{\"token\":\"tw\",\"startOffset\":4,\"endOffset\":6,\"position\":8},{\"token\":\"t\",\"startOffset\":4,\"endOffset\":5,\"position\":9},{\"token\":\"wo\",\"startOffset\":5,\"endOffset\":7,\"position\":10},{\"token\":\"w\",\"startOffset\":5,\"endOffset\":6,\"position\":11},{\"token\":\"o\",\"startOffset\":6,\"endOffset\":7,\"position\":12}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"O\",\"startOffset\":0,\"endOffset\":1,\"position\":0},{\"token\":\"On\",\"startOffset\":0,\"endOffset\":2,\"position\":1},{\"token\":\"ne\",\"startOffset\":1,\"endOffset\":3,\"position\":2},{\"token\":\"n\",\"startOffset\":1,\"endOffset\":2,\"position\":3},{\"token\":\"e\",\"startOffset\":2,\"endOffset\":3,\"position\":4},{\"token\":\"e \",\"startOffset\":2,\"endOffset\":4,\"position\":5},{\"token\":\" t\",\"startOffset\":3,\"endOffset\":5,\"position\":6},{\"token\":\" \",\"startOffset\":3,\"endOffset\":4,\"position\":7},{\"token\":\"tw\",\"startOffset\":4,\"endOffset\":6,\"position\":8},{\"token\":\"t\",\"startOffset\":4,\"endOffset\":5,\"position\":9},{\"token\":\"wo\",\"startOffset\":5,\"endOffset\":7,\"position\":10},{\"token\":\"w\",\"startOffset\":5,\"endOffset\":6,\"position\":11},{\"token\":\"o\",\"startOffset\":6,\"endOffset\":7,\"position\":12}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -7011,7 +7215,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:32 GMT" ], "Pragma": [ "no-cache" @@ -7020,10 +7224,10 @@ "Accept-Encoding" ], "request-id": [ - "5d0c1f32-d485-42b8-872f-73aed81ad2d4" + "48aed166-95a4-4d76-a883-a7d384759c02" ], "elapsed-time": [ - "12" + "9" ], "OData-Version": [ "4.0" @@ -7038,8 +7242,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"tokenizer\": \"path_hierarchy_v2\"\r\n}", "RequestHeaders": { @@ -7050,23 +7254,23 @@ "62" ], "client-request-id": [ - "6a584f0a-32d5-44ce-bd69-a218f97c80cb" + "ce158f5c-ca2d-4fba-987a-98531ad15e7f" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -7078,7 +7282,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:32 GMT" ], "Pragma": [ "no-cache" @@ -7087,10 +7291,10 @@ "Accept-Encoding" ], "request-id": [ - "6a584f0a-32d5-44ce-bd69-a218f97c80cb" + "ce158f5c-ca2d-4fba-987a-98531ad15e7f" ], "elapsed-time": [ - "14" + "8" ], "OData-Version": [ "4.0" @@ -7105,8 +7309,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"tokenizer\": \"pattern\"\r\n}", "RequestHeaders": { @@ -7117,23 +7321,23 @@ "52" ], "client-request-id": [ - "52405860-41c3-4cbc-8aab-d3b98a6dd706" + "3ec29df5-49ef-4d60-b4ad-66daa0b8bc61" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -7145,7 +7349,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:32 GMT" ], "Pragma": [ "no-cache" @@ -7154,10 +7358,10 @@ "Accept-Encoding" ], "request-id": [ - "52405860-41c3-4cbc-8aab-d3b98a6dd706" + "3ec29df5-49ef-4d60-b4ad-66daa0b8bc61" ], "elapsed-time": [ - "13" + "9" ], "OData-Version": [ "4.0" @@ -7172,8 +7376,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"tokenizer\": \"standard_v2\"\r\n}", "RequestHeaders": { @@ -7184,23 +7388,23 @@ "56" ], "client-request-id": [ - "7883c16b-e664-405d-8389-ec6efb59de02" + "ea278637-fc3d-4c12-b9e1-b1009f7dca90" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -7212,7 +7416,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:32 GMT" ], "Pragma": [ "no-cache" @@ -7221,10 +7425,10 @@ "Accept-Encoding" ], "request-id": [ - "7883c16b-e664-405d-8389-ec6efb59de02" + "ea278637-fc3d-4c12-b9e1-b1009f7dca90" ], "elapsed-time": [ - "10" + "9" ], "OData-Version": [ "4.0" @@ -7239,8 +7443,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"tokenizer\": \"uax_url_email\"\r\n}", "RequestHeaders": { @@ -7251,23 +7455,23 @@ "58" ], "client-request-id": [ - "ca6da3f0-484d-4fc4-9d58-b88c11d3226d" + "b9e125ff-09e8-4870-ab76-cdf3aa286b2d" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -7279,7 +7483,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:32 GMT" ], "Pragma": [ "no-cache" @@ -7288,10 +7492,10 @@ "Accept-Encoding" ], "request-id": [ - "ca6da3f0-484d-4fc4-9d58-b88c11d3226d" + "b9e125ff-09e8-4870-ab76-cdf3aa286b2d" ], "elapsed-time": [ - "39" + "37" ], "OData-Version": [ "4.0" @@ -7306,8 +7510,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"tokenizer\": \"whitespace\"\r\n}", "RequestHeaders": { @@ -7318,23 +7522,23 @@ "55" ], "client-request-id": [ - "a9f5d497-6a79-463d-815f-47de56fa7cb7" + "71389754-5f14-41b4-a098-6475b29280e5" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -7346,7 +7550,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:32 GMT" ], "Pragma": [ "no-cache" @@ -7355,10 +7559,10 @@ "Accept-Encoding" ], "request-id": [ - "a9f5d497-6a79-463d-815f-47de56fa7cb7" + "71389754-5f14-41b4-a098-6475b29280e5" ], "elapsed-time": [ - "14" + "9" ], "OData-Version": [ "4.0" @@ -7373,8 +7577,8 @@ "StatusCode": 200 }, { - "RequestUri": "/indexes('azsmnet9050')/search.analyze?api-version=2016-09-01", - "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ5MDUwJykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/indexes('azsmnet6388')/search.analyze?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ2Mzg4Jykvc2VhcmNoLmFuYWx5emU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"One two\",\r\n \"tokenizer\": \"whitespace\",\r\n \"tokenFilters\": [\r\n \"arabic_normalization\",\r\n \"apostrophe\",\r\n \"asciifolding\",\r\n \"cjk_bigram\",\r\n \"cjk_width\",\r\n \"classic\",\r\n \"common_grams\",\r\n \"edgeNGram_v2\",\r\n \"elision\",\r\n \"german_normalization\",\r\n \"hindi_normalization\",\r\n \"indic_normalization\",\r\n \"keyword_repeat\",\r\n \"kstem\",\r\n \"length\",\r\n \"limit\",\r\n \"lowercase\",\r\n \"nGram_v2\",\r\n \"persian_normalization\",\r\n \"phonetic\",\r\n \"porter_stem\",\r\n \"reverse\",\r\n \"scandinavian_normalization\",\r\n \"scandinavian_folding\",\r\n \"shingle\",\r\n \"snowball\",\r\n \"sorani_normalization\",\r\n \"stemmer\",\r\n \"stopwords\",\r\n \"trim\",\r\n \"truncate\",\r\n \"unique\",\r\n \"uppercase\",\r\n \"word_delimiter\"\r\n ],\r\n \"charFilters\": [\r\n \"html_strip\"\r\n ]\r\n}", "RequestHeaders": { @@ -7385,23 +7589,23 @@ "820" ], "client-request-id": [ - "cbd8369c-a5e3-4393-9ba5-e9164db6c9bb" + "dee040af-d234-49f9-a608-f93ccd75ee70" ], "accept-language": [ "en-US" ], "api-key": [ - "C0112890AC467F0D05E9B6F23EC86404" + "9C747DAC975294606708FB47FFC266E4" ], "Prefer": [ "return=representation" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Search.SearchServiceClient/3.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" ] }, - "ResponseBody": "{\"@odata.context\":\"https://azs-9455.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"O\",\"startOffset\":0,\"endOffset\":3,\"position\":0}]}", + "ResponseBody": "{\"@odata.context\":\"https://azs-1141.search-dogfood.windows-int.net/$metadata#Microsoft.Azure.Search.V2016_09_01.AnalyzeResult\",\"tokens\":[{\"token\":\"O\",\"startOffset\":0,\"endOffset\":3,\"position\":0}]}", "ResponseHeaders": { "Content-Type": [ "application/json; odata.metadata=minimal" @@ -7413,7 +7617,7 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:53 GMT" + "Tue, 07 Mar 2017 19:56:32 GMT" ], "Pragma": [ "no-cache" @@ -7422,10 +7626,10 @@ "Accept-Encoding" ], "request-id": [ - "cbd8369c-a5e3-4393-9ba5-e9164db6c9bb" + "dee040af-d234-49f9-a608-f93ccd75ee70" ], "elapsed-time": [ - "149" + "239" ], "OData-Version": [ "4.0" @@ -7440,20 +7644,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet9502/providers/Microsoft.Search/searchServices/azs-9455?api-version=2015-08-19", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy05NDU1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet8601/providers/Microsoft.Search/searchServices/azs-1141?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4NjAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy0xMTQxP2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "173f45a8-d000-425d-adc2-4ee83367f665" + "4f27ecab-b4f9-42e0-9eee-e4c3ffeb154f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.24214.01", - "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.0-rc" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -7468,19 +7672,19 @@ "no-cache" ], "Date": [ - "Wed, 23 Nov 2016 18:53:54 GMT" + "Tue, 07 Mar 2017 19:56:34 GMT" ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "173f45a8-d000-425d-adc2-4ee83367f665" + "4f27ecab-b4f9-42e0-9eee-e4c3ffeb154f" ], "request-id": [ - "173f45a8-d000-425d-adc2-4ee83367f665" + "4f27ecab-b4f9-42e0-9eee-e4c3ffeb154f" ], "elapsed-time": [ - "540" + "872" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7489,13 +7693,13 @@ "4.0.30319" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1133" + "1182" ], "x-ms-correlation-request-id": [ - "81386625-9d87-460b-8d3e-bf87be864d91" + "64e9a9a5-2ce7-44c3-b694-ce80e49009d1" ], "x-ms-routing-request-id": [ - "CENTRALUS:20161123T185355Z:81386625-9d87-460b-8d3e-bf87be864d91" + "CENTRALUS:20170307T195634Z:64e9a9a5-2ce7-44c3-b694-ce80e49009d1" ] }, "StatusCode": 200 @@ -7503,12 +7707,12 @@ ], "Names": { "GenerateName": [ - "azsmnet9502", - "azsmnet1192", - "azsmnet9050" + "azsmnet8601", + "azsmnet520", + "azsmnet6388" ], "GenerateServiceName": [ - "azs-9455" + "azs-1141" ] }, "Variables": { diff --git a/src/Search/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexingTests/CanRoundtripBoundaryValues.json b/src/Search/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexingTests/CanRoundtripBoundaryValues.json new file mode 100644 index 000000000000..23d5a70ea5a7 --- /dev/null +++ b/src/Search/Search.Tests/SessionRecords/Microsoft.Azure.Search.Tests.IndexingTests/CanRoundtripBoundaryValues.json @@ -0,0 +1,911 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/providers/Microsoft.Search/register?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3JlZ2lzdGVyP2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c39b2c79-8770-4cd2-bd1b-b514a3a20070" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesCit\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesNxt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesInt\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"searchServicesPpe\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityNxt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityCit\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityNxt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityInt\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailabilityPpe\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\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, 23 Feb 2017 03:50:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-request-id": [ + "c49ddea8-afaa-455e-bea4-7097248a0625" + ], + "x-ms-correlation-request-id": [ + "c49ddea8-afaa-455e-bea4-7097248a0625" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170223T035025Z:c49ddea8-afaa-455e-bea4-7097248a0625" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourcegroups/azsmnet5916?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ1OTE2P2FwaS12ZXJzaW9uPTIwMTYtMDItMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ], + "x-ms-client-request-id": [ + "63b97228-c6b2-4780-8602-c6d54bd79b9e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.1-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet5916\",\r\n \"name\": \"azsmnet5916\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "175" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 23 Feb 2017 03:50:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1177" + ], + "x-ms-request-id": [ + "7bee1f12-0756-4e24-b3c7-eac28aa7a704" + ], + "x-ms-correlation-request-id": [ + "7bee1f12-0756-4e24-b3c7-eac28aa7a704" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170223T035025Z:7bee1f12-0756-4e24-b3c7-eac28aa7a704" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet5916/providers/Microsoft.Search/searchServices/azs-6259?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1OTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MjU5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"free\"\r\n },\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "1e11c9e7-1381-4ad3-a884-6ce04521d801" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet5916/providers/Microsoft.Search/searchServices/azs-6259\",\r\n \"name\": \"azs-6259\",\r\n \"type\": \"Microsoft.Search/searchServices\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"replicaCount\": 1,\r\n \"partitionCount\": 1,\r\n \"status\": \"running\",\r\n \"statusDetails\": \"\",\r\n \"provisioningState\": \"succeeded\",\r\n \"hostingMode\": \"Default\"\r\n },\r\n \"sku\": {\r\n \"name\": \"free\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 23 Feb 2017 03:50:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"datetime'2017-02-23T03%3A50%3A27.3715502Z'\"" + ], + "x-ms-request-id": [ + "1e11c9e7-1381-4ad3-a884-6ce04521d801" + ], + "request-id": [ + "1e11c9e7-1381-4ad3-a884-6ce04521d801" + ], + "elapsed-time": [ + "746" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1177" + ], + "x-ms-correlation-request-id": [ + "1e68f05d-a1f6-47be-a8e9-3f47fb1749d1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170223T035027Z:1e68f05d-a1f6-47be-a8e9-3f47fb1749d1" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet5916/providers/Microsoft.Search/searchServices/azs-6259/listAdminKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1OTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MjU5L2xpc3RBZG1pbktleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "264bd365-40f0-465c-a29a-8d0430d3e607" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"primaryKey\": \"6EEAB44C598F49730C5789F5395F85AB\",\r\n \"secondaryKey\": \"4DFA12AB510A07A64B7ECBC37736A762\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 23 Feb 2017 03:50:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "264bd365-40f0-465c-a29a-8d0430d3e607" + ], + "request-id": [ + "264bd365-40f0-465c-a29a-8d0430d3e607" + ], + "elapsed-time": [ + "160" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1176" + ], + "x-ms-correlation-request-id": [ + "4eb000f6-48a3-4655-8e7a-d649324a70b3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170223T035028Z:4eb000f6-48a3-4655-8e7a-d649324a70b3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet5916/providers/Microsoft.Search/searchServices/azs-6259/listQueryKeys?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1OTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MjU5L2xpc3RRdWVyeUtleXM/YXBpLXZlcnNpb249MjAxNS0wOC0xOQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a0c924b-954b-41b4-8efa-220fba457122" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": null,\r\n \"key\": \"DB84FE4C40D0C1484AF23CF4162B6BEC\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 23 Feb 2017 03:50:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6a0c924b-954b-41b4-8efa-220fba457122" + ], + "request-id": [ + "6a0c924b-954b-41b4-8efa-220fba457122" + ], + "elapsed-time": [ + "159" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "fbaad36d-a3e0-404e-b697-0298e9874f65" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170223T035028Z:fbaad36d-a3e0-404e-b697-0298e9874f65" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/indexes?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"azsmnet4790\",\r\n \"fields\": [\r\n {\r\n \"name\": \"hotelId\",\r\n \"type\": \"Edm.String\",\r\n \"key\": true,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"baseRate\",\r\n \"type\": \"Edm.Double\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"description\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"descriptionFr\",\r\n \"type\": \"Edm.String\",\r\n \"analyzer\": \"fr.lucene\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"hotelName\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"Edm.String\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"tags\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"key\": false,\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"sortable\": false,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"parkingIncluded\",\r\n \"type\": \"Edm.Boolean\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"smokingAllowed\",\r\n \"type\": \"Edm.Boolean\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"lastRenovationDate\",\r\n \"type\": \"Edm.DateTimeOffset\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"rating\",\r\n \"type\": \"Edm.Int32\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"retrievable\": true\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"Edm.GeographyPoint\",\r\n \"key\": false,\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"sortable\": true,\r\n \"facetable\": false,\r\n \"retrievable\": true\r\n }\r\n ],\r\n \"scoringProfiles\": [\r\n {\r\n \"name\": \"nearest\",\r\n \"functions\": [\r\n {\r\n \"type\": \"distance\",\r\n \"distance\": {\r\n \"referencePointParameter\": \"myloc\",\r\n \"boostingDistance\": 100.0\r\n },\r\n \"fieldName\": \"location\",\r\n \"boost\": 2.0\r\n }\r\n ],\r\n \"functionAggregation\": \"sum\"\r\n }\r\n ],\r\n \"suggesters\": [\r\n {\r\n \"name\": \"sg\",\r\n \"searchMode\": \"analyzingInfixMatching\",\r\n \"sourceFields\": [\r\n \"description\",\r\n \"hotelName\"\r\n ]\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3401" + ], + "client-request-id": [ + "76b3783f-388b-4283-9451-ce5dc20bcf56" + ], + "accept-language": [ + "en-US" + ], + "api-key": [ + "6EEAB44C598F49730C5789F5395F85AB" + ], + "Prefer": [ + "return=representation" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Search.SearchServiceClient/3.0.2" + ] + }, + "ResponseBody": "{\r\n \"@odata.context\": \"https://azs-6259.search-dogfood.windows-int.net/$metadata#indexes/$entity\",\r\n \"@odata.etag\": \"\\\"0x8D45B9F1C8433D5\\\"\",\r\n \"name\": \"azsmnet4790\",\r\n \"fields\": [\r\n {\r\n \"name\": \"hotelId\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": true,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"baseRate\",\r\n \"type\": \"Edm.Double\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"description\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"descriptionFr\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": false,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": \"fr.lucene\"\r\n },\r\n {\r\n \"name\": \"hotelName\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"category\",\r\n \"type\": \"Edm.String\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"tags\",\r\n \"type\": \"Collection(Edm.String)\",\r\n \"searchable\": true,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": false,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"parkingIncluded\",\r\n \"type\": \"Edm.Boolean\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"smokingAllowed\",\r\n \"type\": \"Edm.Boolean\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"lastRenovationDate\",\r\n \"type\": \"Edm.DateTimeOffset\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"rating\",\r\n \"type\": \"Edm.Int32\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": true,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n },\r\n {\r\n \"name\": \"location\",\r\n \"type\": \"Edm.GeographyPoint\",\r\n \"searchable\": false,\r\n \"filterable\": true,\r\n \"retrievable\": true,\r\n \"sortable\": true,\r\n \"facetable\": false,\r\n \"key\": false,\r\n \"indexAnalyzer\": null,\r\n \"searchAnalyzer\": null,\r\n \"analyzer\": null\r\n }\r\n ],\r\n \"scoringProfiles\": [\r\n {\r\n \"name\": \"nearest\",\r\n \"text\": null,\r\n \"functions\": [\r\n {\r\n \"fieldName\": \"location\",\r\n \"freshness\": null,\r\n \"interpolation\": \"linear\",\r\n \"magnitude\": null,\r\n \"distance\": {\r\n \"referencePointParameter\": \"myloc\",\r\n \"boostingDistance\": 100.0\r\n },\r\n \"tag\": null,\r\n \"type\": \"distance\",\r\n \"boost\": 2.0\r\n }\r\n ],\r\n \"functionAggregation\": \"sum\"\r\n }\r\n ],\r\n \"defaultScoringProfile\": null,\r\n \"corsOptions\": null,\r\n \"suggesters\": [\r\n {\r\n \"name\": \"sg\",\r\n \"searchMode\": \"analyzingInfixMatching\",\r\n \"sourceFields\": [\r\n \"description\",\r\n \"hotelName\"\r\n ]\r\n }\r\n ],\r\n \"analyzers\": [],\r\n \"tokenizers\": [],\r\n \"tokenFilters\": [],\r\n \"charFilters\": []\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "3141" + ], + "Content-Type": [ + "application/json; odata.metadata=minimal" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 23 Feb 2017 03:50:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0x8D45B9F1C8433D5\"" + ], + "Location": [ + "https://azs-6259.search-dogfood.windows-int.net/indexes('azsmnet4790')?api-version=2016-09-01" + ], + "request-id": [ + "76b3783f-388b-4283-9451-ce5dc20bcf56" + ], + "elapsed-time": [ + "922" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/indexes('azsmnet4790')/docs/search.index?api-version=2016-09-01", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ0NzkwJykvZG9jcy9zZWFyY2guaW5kZXg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"value\": [\r\n {\r\n \"@search.action\": \"upload\",\r\n \"hotelId\": \"1\",\r\n \"baseRate\": -1.7976931348623157E+308,\r\n \"category\": \"\",\r\n \"tags\": [],\r\n \"parkingIncluded\": false,\r\n \"lastRenovationDate\": \"0001-01-01T00:00:00+00:00\",\r\n \"rating\": -2147483648,\r\n \"location\": {\r\n \"type\": \"Point\",\r\n \"coordinates\": [\r\n -180.0,\r\n -90.0\r\n ]\r\n }\r\n },\r\n {\r\n \"@search.action\": \"upload\",\r\n \"hotelId\": \"2\",\r\n \"baseRate\": 1.7976931348623157E+308,\r\n \"category\": \"test\",\r\n \"tags\": [\r\n \"test\"\r\n ],\r\n \"parkingIncluded\": true,\r\n \"lastRenovationDate\": \"9999-12-31T23:59:59.9999999+00:00\",\r\n \"rating\": 2147483647,\r\n \"location\": {\r\n \"type\": \"Point\",\r\n \"coordinates\": [\r\n 180.0,\r\n 90.0\r\n ]\r\n }\r\n },\r\n {\r\n \"@search.action\": \"upload\",\r\n \"hotelId\": \"3\",\r\n \"baseRate\": \"-INF\",\r\n \"tags\": [],\r\n \"location\": {\r\n \"type\": \"Point\",\r\n \"coordinates\": [\r\n 0.0,\r\n 0.0\r\n ]\r\n }\r\n },\r\n {\r\n \"@search.action\": \"upload\",\r\n \"hotelId\": \"4\",\r\n \"baseRate\": \"INF\",\r\n \"tags\": []\r\n },\r\n {\r\n \"@search.action\": \"upload\",\r\n \"hotelId\": \"5\",\r\n \"baseRate\": \"NaN\",\r\n \"tags\": []\r\n },\r\n {\r\n \"@search.action\": \"upload\",\r\n \"hotelId\": \"6\",\r\n \"tags\": []\r\n }\r\n ]\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1441" + ], + "accept-language": [ + "en-US" + ], + "Accept": [ + "application/json; odata.metadata=none" + ], + "api-key": [ + "6EEAB44C598F49730C5789F5395F85AB" + ], + "Prefer": [ + "return=representation" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Search.SearchIndexClient/3.0.2" + ] + }, + "ResponseBody": "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=none" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 23 Feb 2017 03:50:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "76df546d-34ec-41d6-a9b0-7bf739cb5442" + ], + "elapsed-time": [ + "433" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/indexes('azsmnet4790')/docs('1')?api-version=2016-09-01&$select=*", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ0NzkwJykvZG9jcygnMScpP2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmJHNlbGVjdD0lMkE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "accept-language": [ + "en-US" + ], + "Accept": [ + "application/json; odata.metadata=none" + ], + "api-key": [ + "6EEAB44C598F49730C5789F5395F85AB" + ], + "Prefer": [ + "return=representation" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Search.SearchIndexClient/3.0.2" + ] + }, + "ResponseBody": "{\"hotelId\":\"1\",\"baseRate\":-1.7976931348623157E+308,\"description\":null,\"descriptionFr\":null,\"hotelName\":null,\"category\":\"\",\"tags\":[],\"parkingIncluded\":false,\"smokingAllowed\":null,\"lastRenovationDate\":\"0001-01-01T00:00:00Z\",\"rating\":-2147483648,\"location\":{\"type\":\"Point\",\"coordinates\":[-180.0,-90.0],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=none" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 23 Feb 2017 03:50:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "bd3f9940-a8e6-4a6c-bb96-a7595fcded62" + ], + "elapsed-time": [ + "4" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/indexes('azsmnet4790')/docs('2')?api-version=2016-09-01&$select=*", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ0NzkwJykvZG9jcygnMicpP2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmJHNlbGVjdD0lMkE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "accept-language": [ + "en-US" + ], + "Accept": [ + "application/json; odata.metadata=none" + ], + "api-key": [ + "6EEAB44C598F49730C5789F5395F85AB" + ], + "Prefer": [ + "return=representation" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Search.SearchIndexClient/3.0.2" + ] + }, + "ResponseBody": "{\"hotelId\":\"2\",\"baseRate\":1.7976931348623157E+308,\"description\":null,\"descriptionFr\":null,\"hotelName\":null,\"category\":\"test\",\"tags\":[\"test\"],\"parkingIncluded\":true,\"smokingAllowed\":null,\"lastRenovationDate\":\"9999-12-31T23:59:59.999Z\",\"rating\":2147483647,\"location\":{\"type\":\"Point\",\"coordinates\":[180.0,90.0],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=none" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 23 Feb 2017 03:50:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "26d1612a-7f82-48dc-98e6-08c629509a8c" + ], + "elapsed-time": [ + "6" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/indexes('azsmnet4790')/docs('3')?api-version=2016-09-01&$select=*", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ0NzkwJykvZG9jcygnMycpP2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmJHNlbGVjdD0lMkE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "accept-language": [ + "en-US" + ], + "Accept": [ + "application/json; odata.metadata=none" + ], + "api-key": [ + "6EEAB44C598F49730C5789F5395F85AB" + ], + "Prefer": [ + "return=representation" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Search.SearchIndexClient/3.0.2" + ] + }, + "ResponseBody": "{\"hotelId\":\"3\",\"baseRate\":\"-INF\",\"description\":null,\"descriptionFr\":null,\"hotelName\":null,\"category\":null,\"tags\":[],\"parkingIncluded\":null,\"smokingAllowed\":null,\"lastRenovationDate\":null,\"rating\":null,\"location\":{\"type\":\"Point\",\"coordinates\":[0.0,0.0],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}}}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=none" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 23 Feb 2017 03:50:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "198c8c9e-396e-4f5d-8e61-88322f24a809" + ], + "elapsed-time": [ + "5" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/indexes('azsmnet4790')/docs('4')?api-version=2016-09-01&$select=*", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ0NzkwJykvZG9jcygnNCcpP2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmJHNlbGVjdD0lMkE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "accept-language": [ + "en-US" + ], + "Accept": [ + "application/json; odata.metadata=none" + ], + "api-key": [ + "6EEAB44C598F49730C5789F5395F85AB" + ], + "Prefer": [ + "return=representation" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Search.SearchIndexClient/3.0.2" + ] + }, + "ResponseBody": "{\"hotelId\":\"4\",\"baseRate\":\"INF\",\"description\":null,\"descriptionFr\":null,\"hotelName\":null,\"category\":null,\"tags\":[],\"parkingIncluded\":null,\"smokingAllowed\":null,\"lastRenovationDate\":null,\"rating\":null,\"location\":null}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=none" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 23 Feb 2017 03:50:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "eeeb9b55-a3ef-4727-86ce-c3c0913b0ddc" + ], + "elapsed-time": [ + "3" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/indexes('azsmnet4790')/docs('5')?api-version=2016-09-01&$select=*", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ0NzkwJykvZG9jcygnNScpP2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmJHNlbGVjdD0lMkE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "accept-language": [ + "en-US" + ], + "Accept": [ + "application/json; odata.metadata=none" + ], + "api-key": [ + "6EEAB44C598F49730C5789F5395F85AB" + ], + "Prefer": [ + "return=representation" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Search.SearchIndexClient/3.0.2" + ] + }, + "ResponseBody": "{\"hotelId\":\"5\",\"baseRate\":\"NaN\",\"description\":null,\"descriptionFr\":null,\"hotelName\":null,\"category\":null,\"tags\":[],\"parkingIncluded\":null,\"smokingAllowed\":null,\"lastRenovationDate\":null,\"rating\":null,\"location\":null}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=none" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 23 Feb 2017 03:50:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "ef254b4d-f4d2-46f2-99d9-53b5a99d4a33" + ], + "elapsed-time": [ + "4" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/indexes('azsmnet4790')/docs('6')?api-version=2016-09-01&$select=*", + "EncodedRequestUri": "L2luZGV4ZXMoJ2F6c21uZXQ0NzkwJykvZG9jcygnNicpP2FwaS12ZXJzaW9uPTIwMTYtMDktMDEmJHNlbGVjdD0lMkE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "accept-language": [ + "en-US" + ], + "Accept": [ + "application/json; odata.metadata=none" + ], + "api-key": [ + "6EEAB44C598F49730C5789F5395F85AB" + ], + "Prefer": [ + "return=representation" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Search.SearchIndexClient/3.0.2" + ] + }, + "ResponseBody": "{\"hotelId\":\"6\",\"baseRate\":null,\"description\":null,\"descriptionFr\":null,\"hotelName\":null,\"category\":null,\"tags\":[],\"parkingIncluded\":null,\"smokingAllowed\":null,\"lastRenovationDate\":null,\"rating\":null,\"location\":null}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; odata.metadata=none" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 23 Feb 2017 03:50:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "request-id": [ + "2ce3ab21-51d2-4180-9b3b-e89966cd9446" + ], + "elapsed-time": [ + "4" + ], + "OData-Version": [ + "4.0" + ], + "Preference-Applied": [ + "odata.include-annotations=\"*\"" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b80cf239-2c72-47ab-b309-b26aec4656b1/resourceGroups/azsmnet5916/providers/Microsoft.Search/searchServices/azs-6259?api-version=2015-08-19", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjgwY2YyMzktMmM3Mi00N2FiLWIzMDktYjI2YWVjNDY1NmIxL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ1OTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VhcmNoL3NlYXJjaFNlcnZpY2VzL2F6cy02MjU5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMTk=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3dce469-2c08-4d76-be70-19f46fd85783" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.Search.SearchManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 23 Feb 2017 03:50:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d3dce469-2c08-4d76-be70-19f46fd85783" + ], + "request-id": [ + "d3dce469-2c08-4d76-be70-19f46fd85783" + ], + "elapsed-time": [ + "417" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-correlation-request-id": [ + "d445d646-e4b0-4dcc-ae57-23262f49caa9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170223T035054Z:d445d646-e4b0-4dcc-ae57-23262f49caa9" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "GenerateName": [ + "azsmnet5916", + "azsmnet4790" + ], + "GenerateServiceName": [ + "azs-6259" + ] + }, + "Variables": { + "SubscriptionId": "b80cf239-2c72-47ab-b309-b26aec4656b1" + } +} \ No newline at end of file diff --git a/src/Search/Search.Tests/Tests/CustomAnalyzerTests.cs b/src/Search/Search.Tests/Tests/CustomAnalyzerTests.cs index 8fbcf8bb418d..cb76d8b92f6d 100644 --- a/src/Search/Search.Tests/Tests/CustomAnalyzerTests.cs +++ b/src/Search/Search.Tests/Tests/CustomAnalyzerTests.cs @@ -162,10 +162,7 @@ public void CanAnalyzeWithAllPossibleNames() client.Indexes.Create(index); AnalyzerName[] allAnalyzerNames = GetAllExtensibleEnumValues(); - - //TODO,brjohnst: Remove this logic after Analyze API validation has been fixed - allAnalyzerNames = allAnalyzerNames.Except(new[] { AnalyzerName.StandardLucene }).ToArray(); - + var requests = allAnalyzerNames.Select(an => new AnalyzeRequest() { Text = "One two", Analyzer = an }); foreach (var req in requests) @@ -174,13 +171,6 @@ public void CanAnalyzeWithAllPossibleNames() } TokenizerName[] allTokenizerNames = GetAllExtensibleEnumValues(); - - //TODO,brjohnst: Remove this logic after Analyze API validation has been fixed - allTokenizerNames = - allTokenizerNames - .Except(new[] { TokenizerName.MicrosoftLanguageTokenizer, TokenizerName.MicrosoftLanguageStemmingTokenizer }) - .ToArray(); - requests = allTokenizerNames.Select(tn => new AnalyzeRequest() { Text = "One two", Tokenizer = tn }); foreach (var req in requests) diff --git a/src/Search/Search.Tests/Tests/IndexingParametersTests.cs b/src/Search/Search.Tests/Tests/IndexingParametersTests.cs index aa5fb57ca154..20057ced6ff4 100644 --- a/src/Search/Search.Tests/Tests/IndexingParametersTests.cs +++ b/src/Search/Search.Tests/Tests/IndexingParametersTests.cs @@ -11,6 +11,15 @@ namespace Microsoft.Azure.Search.Tests public sealed class IndexingParametersTests { + private const string ExpectedParsingModeKey = "parsingMode"; + + [Fact] + public void ParseJsonSetCorrectly() + { + var parameters = new IndexingParameters().ParseJson(); + AssertHasConfigItem(parameters, ExpectedParsingModeKey, "json"); + } + [Fact] public void IndexFileNameExtensionsSetCorrectly() { diff --git a/src/Search/Search.Tests/Tests/IndexingTests.cs b/src/Search/Search.Tests/Tests/IndexingTests.cs index 7862466076ac..f88d92bcae29 100644 --- a/src/Search/Search.Tests/Tests/IndexingTests.cs +++ b/src/Search/Search.Tests/Tests/IndexingTests.cs @@ -785,6 +785,89 @@ public void CanUseIndexWithReservedName() }); } + [Fact] + public void CanRoundtripBoundaryValues() + { + Run(() => + { + SearchIndexClient client = Data.GetSearchIndexClient(); + + var expectedDocs = new[] + { + // Minimum values + new Hotel() + { + HotelId = "1", + BaseRate = Double.MinValue, + Category = String.Empty, + LastRenovationDate = DateTimeOffset.MinValue, + Location = GeographyPoint.Create(-90, -180), // South pole, date line from the west + ParkingIncluded = false, + Rating = Int32.MinValue, + Tags = new string[0] + }, + // Maximimum values + new Hotel() + { + HotelId = "2", + BaseRate = Double.MaxValue, + Category = "test", // No meaningful string max since there is no length limit (other than payload size or term length). + LastRenovationDate = DateTimeOffset.MaxValue, + Location = GeographyPoint.Create(90, 180), // North pole, date line from the east + ParkingIncluded = true, + Rating = Int32.MaxValue, + Tags = new string[] { "test" } // No meaningful string max; see above. + }, + // Other boundary values #1 + new Hotel() + { + HotelId = "3", + BaseRate = Double.NegativeInfinity, + Category = null, + LastRenovationDate = null, + Location = GeographyPoint.Create(0, 0), // Equator, meridian + ParkingIncluded = null, + Rating = null, + Tags = new string[0] + }, + // Other boundary values #2 + new Hotel() + { + HotelId = "4", + BaseRate = Double.PositiveInfinity, + Location = null, + Tags = new string[0] + }, + // Other boundary values #3 + new Hotel() + { + HotelId = "5", + BaseRate = Double.NaN, + Tags = new string[0] + }, + // Other boundary values #4 + new Hotel() + { + HotelId = "6", + BaseRate = null, + Tags = new string[0] + } + }; + + var batch = IndexBatch.Upload(expectedDocs); + + client.Documents.Index(batch); + + SearchTestUtilities.WaitForIndexing(); + + Hotel[] actualDocs = expectedDocs.Select(d => client.Documents.Get(d.HotelId)).ToArray(); + for (int i = 0; i < actualDocs.Length; i++) + { + Assert.Equal(expectedDocs[i], actualDocs[i]); + } + }); + } + private void TestCanIndexAndRetrieveWithCustomConverter(Action customizeSettings = null) where T : CustomBook, new() { diff --git a/src/Search/Search.Tests/Tests/Models/Hotel.cs b/src/Search/Search.Tests/Tests/Models/Hotel.cs index dac1c2ad8250..365cad715c10 100644 --- a/src/Search/Search.Tests/Tests/Models/Hotel.cs +++ b/src/Search/Search.Tests/Tests/Models/Hotel.cs @@ -48,7 +48,7 @@ public override bool Equals(object obj) return this.HotelId == other.HotelId && - this.BaseRate == other.BaseRate && + DoublesEqual(this.BaseRate, other.BaseRate) && this.Description == other.Description && this.DescriptionFr == other.DescriptionFr && this.HotelName == other.HotelName && @@ -56,7 +56,7 @@ public override bool Equals(object obj) ((this.Tags == null) ? (other.Tags == null || other.Tags.Length == 0) : this.Tags.SequenceEqual(other.Tags ?? new string[0])) && this.ParkingIncluded == other.ParkingIncluded && this.SmokingAllowed == other.SmokingAllowed && - this.LastRenovationDate == other.LastRenovationDate && + DateTimeOffsetsEqual(this.LastRenovationDate, other.LastRenovationDate) && this.Rating == other.Rating && ((this.Location == null) ? other.Location == null : this.Location.Equals(other.Location)); } @@ -108,5 +108,44 @@ public Document AsDocument() { "tags", this.Tags ?? new string[0] } // OData always gives [] instead of null for collections. }; } + + private static bool DoublesEqual(double? x, double? y) + { + if (x == null) + { + return y == null; + } + + if (Double.IsNaN(x.Value)) + { + return y != null && Double.IsNaN(y.Value); + } + + return x == y; + } + + private static bool DateTimeOffsetsEqual(DateTimeOffset? a, DateTimeOffset? b) + { + if (a == null) + { + return b == null; + } + + if (b == null) + { + return false; + } + + if (a.Value.EqualsExact(b.Value)) + { + return true; + } + + // Allow for some loss of precision in the tick count. + long aTicks = a.Value.UtcTicks; + long bTicks = b.Value.UtcTicks; + + return (aTicks / 10000) == (bTicks / 10000); + } } } diff --git a/src/Search/Search.Tests/Tests/Serialization/DocumentConverterTests.cs b/src/Search/Search.Tests/Tests/Serialization/DocumentConverterTests.cs index 45c832d8ea35..14f4258d38c2 100644 --- a/src/Search/Search.Tests/Tests/Serialization/DocumentConverterTests.cs +++ b/src/Search/Search.Tests/Tests/Serialization/DocumentConverterTests.cs @@ -21,7 +21,16 @@ public sealed class DocumentConverterTests private readonly JsonSerializerSettings _settings = new JsonSerializerSettings() { - Converters = new JsonConverter[] { new DocumentConverter(), new GeographyPointConverter(), new DateTimeConverter() }, + Converters = + new JsonConverter[] + { + new DocumentConverter(), + new GeographyPointConverter(), + new DateTimeConverter(), + // DoubleConverter shouldn't make a difference since it only kicks in when deserializing NaN/INF/-INF, and that case + // is currently not covered by DocumentConverter. However, including it for completeness anyway. + new DoubleConverter() + }, DateParseHandling = DateParseHandling.DateTimeOffset, NullValueHandling = NullValueHandling.Include }; @@ -108,16 +117,16 @@ public void SpecialDoublesAreReadAsStrings() const string Json = @"{ ""field1"": ""NaN"", - ""field2"": ""Infinity"", - ""field3"": ""-Infinity"" + ""field2"": ""INF"", + ""field3"": ""-INF"" }"; Document doc = JsonConvert.DeserializeObject(Json, _settings); Assert.Equal(3, doc.Count); Assert.Equal("NaN", doc["field1"]); - Assert.Equal("Infinity", doc["field2"]); - Assert.Equal("-Infinity", doc["field3"]); + Assert.Equal("INF", doc["field2"]); + Assert.Equal("-INF", doc["field3"]); } // This is a pinning test. It is not ideal behavior, but it's the best we can do without type information. diff --git a/src/Search/Search.Tests/Tests/Serialization/DoubleConverterTests.cs b/src/Search/Search.Tests/Tests/Serialization/DoubleConverterTests.cs new file mode 100644 index 000000000000..b3da9406d68f --- /dev/null +++ b/src/Search/Search.Tests/Tests/Serialization/DoubleConverterTests.cs @@ -0,0 +1,124 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +namespace Microsoft.Azure.Search.Tests +{ + using System; + using System.Collections.Generic; + using System.IO; + using Microsoft.Azure.Search.Serialization; + using Newtonsoft.Json; + using Newtonsoft.Json.Linq; + using Xunit; + + public sealed class DoubleConverterTests + { + private readonly JsonSerializerSettings _serializerSettings = + new JsonSerializerSettings() { Converters = new List() { new DoubleConverter() } }; + + private readonly JsonSerializerSettings _deserializerSettings = + new JsonSerializerSettings() { Converters = new List() { new DoubleConverter() } }; + + private readonly Tuple[] _writeTestCases = + new[] + { + Tuple.Create(3.14d, "3.14"), + Tuple.Create(123d, "123.0"), + Tuple.Create(0d, "0.0"), + Tuple.Create(0.0d, "0.0"), + Tuple.Create(1.0d, "1.0"), + Tuple.Create(Double.NegativeInfinity, @"""-INF"""), + Tuple.Create(Double.PositiveInfinity, @"""INF"""), + Tuple.Create(Double.NaN, @"""NaN"""), + Tuple.Create(Double.MinValue, "-1.7976931348623157E+308"), + Tuple.Create(Double.MaxValue, "1.7976931348623157E+308") + }; + + private readonly Tuple[] _readTestCases = + new[] + { + Tuple.Create(3.14d, "3.14"), + Tuple.Create(123d, "123"), + Tuple.Create(0d, "0"), + Tuple.Create(0.0d, "0"), + Tuple.Create(1.0d, "1"), + Tuple.Create(Double.NegativeInfinity, @"""-INF"""), + Tuple.Create(Double.PositiveInfinity, @"""INF"""), + Tuple.Create(Double.NaN, @"""NaN"""), + Tuple.Create(Double.MinValue, "-1.7976931348623157E+308"), + Tuple.Create(Double.MaxValue, "1.7976931348623157E+308") + }; + + [Fact] + public void CanWriteDoubleValues() + { + foreach (var testCase in _writeTestCases) + { + double doubleValue = testCase.Item1; + string expectedJson = testCase.Item2; + + string json = JsonConvert.SerializeObject(doubleValue, _serializerSettings); + Assert.Equal(expectedJson, json); + } + } + + [Fact] + public void CanWriteNullableDouble() + { + double? nullableDouble = 3.14159; + + // Due to some JSON.NET weirdness, we need to wrap it in an object to trigger the double? detection path. + object obj = new { PI = nullableDouble }; + string json = JsonConvert.SerializeObject(obj, _serializerSettings); + Assert.Equal(@"{""PI"":3.14159}", json); + } + + [Fact] + public void CanReadDoubleValues() + { + foreach (var testCase in _readTestCases) + { + double expectedDoubleValue = testCase.Item1; + string json = testCase.Item2; + + double actualDoubleValue = JsonConvert.DeserializeObject(json, _deserializerSettings); + Assert.Equal(expectedDoubleValue, actualDoubleValue); + } + } + + [Fact] + public void CanReadNullableDouble() + { + double? expectedDouble = 3.14159; + double? actualDouble = JsonConvert.DeserializeObject("3.14159", _deserializerSettings); + Assert.Equal(expectedDouble, actualDouble); + } + + [Fact] + public void CanReadNullDouble() + { + double? nullDouble = null; + double? actualDouble = JsonConvert.DeserializeObject("null", _deserializerSettings); + Assert.Equal(nullDouble, actualDouble); + } + + [Fact] + public void CanReadPreParsedDouble() + { + const string Json = @"{""Price"":""3.50""}"; + using (JsonReader reader = new JsonTextReader(new StringReader(Json))) + { + JsonSerializer serializer = JsonSerializer.Create(_deserializerSettings); + JObject propertyBag = serializer.Deserialize(reader); + Model model = serializer.Deserialize(new JTokenReader(propertyBag)); + Assert.Equal(3.5, model.Price); + } + } + + private class Model + { + public double Price { get; set; } + } + } +} diff --git a/src/Search/Search.Tests/project.json b/src/Search/Search.Tests/project.json index dd3105207293..a314f91a010f 100644 --- a/src/Search/Search.Tests/project.json +++ b/src/Search/Search.Tests/project.json @@ -29,7 +29,7 @@ "version": "1.0.0" }, "Search.Management.Tests": "1.0.0", - "Microsoft.Azure.Search": "3.0.2", + "Microsoft.Azure.Search": "3.0.3", "Microsoft.AspNetCore.WebUtilities": "1.0.0" } } \ No newline at end of file From 0721bf6e8c6fc5e4a21cd7186e0eae702c226e69 Mon Sep 17 00:00:00 2001 From: Pooneh Mortazavi Date: Wed, 5 Apr 2017 09:49:22 -0700 Subject: [PATCH 53/56] Key Vault soft-delete preview (#3021) * KeyVault: Add soft delete capability to C# SDK. - Includes session recording changes. * KeyVault: Add restore, backup, recover, purge perm. * KeyVault: Increase management SDK version. - 2.0.2 for official release of management SDK. * KeyVault: Add optin soft delete flag to key vaults. * Vault-level soft-delete support. * key vault package upgrade * adding purge disabled property for key and vault purge * Regenerate the SDK based on version 1.0.0 --- .../KeyVault_KeyResolver_ResolveKey.json | 110 +- ...lt_KeyResolver_ResolveSecret128Base64.json | 132 +- ...lt_KeyResolver_ResolveSecret192Base64.json | 132 +- ...lt_KeyResolver_ResolveSecret256Base64.json | 132 +- .../Tests/KeyVaultKeyResolverTests.cs | 28 +- .../appsettings.json | 3 +- .../project.json | 2 +- .../project.json | 2 +- .../KeyVaultTestFixture.cs | 44 +- .../SoftDeleteErrorDetectionStrategy.cs | 34 + .../project.json | 2 +- .../KeyVaultOperationsTest.cs | 500 ++- .../ObjectIdentifierTests.cs | 52 + .../KeyVaultBackupRestoreTest.json | 149 +- ...ltCertificateAsyncDeleteOperationTest.json | 116 +- ...rtificateAsyncRequestCancellationTest.json | 103 +- .../KeyVaultCertificateContactsTest.json | 109 +- ...ltCertificateCreateLongSelfSignedTest.json | 116 +- ...ltCertificateCreateManualEnrolledTest.json | 63 +- ...yVaultCertificateCreateSelfSignedTest.json | 116 +- ...yVaultCertificateCreateTestIssuerTest.json | 135 +- .../KeyVaultCertificateImportTest.json | 120 +- .../KeyVaultCertificateImportTest2.json | 105 +- .../KeyVaultCertificateImportTest3.json | 113 +- .../KeyVaultCertificateIssuersTest.json | 151 +- .../KeyVaultCertificateListTest.json | 99 +- .../KeyVaultCertificateListVersionsTest.json | 88 +- .../KeyVaultCertificatePolicyTest.json | 99 +- .../KeyVaultCertificateUpdateTest.json | 99 +- .../KeyVaultConstructor.json | 18 +- .../KeyVaultCreateGetDeleteKeyTest.json | 82 +- .../KeyVaultCreateHsmKeyTest.json | 61 +- .../KeyVaultEncryptDecryptRsa15Test.json | 48 +- .../KeyVaultEncryptDecryptRsaOaepTest.json | 44 +- ...ncryptDecryptWithDifferentKeyVersions.json | 69 +- ...aultEncryptDecryptWithOlderKeyVersion.json | 63 +- .../KeyVaultGetDeletedKeyTest.json | 650 ++++ .../KeyVaultGetDeletedSecretTest.json | 458 +++ .../KeyVaultGetSecretVersionTest.json | 118 +- .../KeyVaultImportSoftKeyTest.json | 63 +- ...yVaultKeyCreateDeleteRecoverPurgeTest.json | 1290 +++++++ .../KeyVaultListDeletedKeysTest.json | 1866 ++++++++++ .../KeyVaultListDeletedSecretsTest.json | 1930 ++++++++++ .../KeyVaultListKeyVersionsTest.json | 553 +-- .../KeyVaultListKeysTest.json | 175 +- .../KeyVaultListSecretVersionsTest.json | 553 +-- .../KeyVaultListSecretsTest.json | 171 +- ...ultSecretCreateDeleteRecoverPurgeTest.json | 1482 ++++++++ .../KeyVaultSecretCreateUpdateDeleteTest.json | 135 +- .../KeyVaultSignVerifyRS256Test.json | 42 +- .../KeyVaultSignVerifyRS384Test.json | 42 +- .../KeyVaultSignVerifyRS512Test.json | 42 +- .../KeyVaultTestSecretExtendedAttributes.json | 42 +- .../KeyVaultUpdateKeyAttributesTest.json | 99 +- ...ltUpdateKeyAttributesWithNoChangeTest.json | 67 +- .../KeyVaultWrapUnwrapRsa15Test.json | 48 +- .../KeyVaultWrapUnwrapRsaOaepTest.json | 44 +- .../appsettings.json | 3 +- .../project.json | 2 +- .../Customized/DeletedKeyBundle.cs | 24 + .../Customized/DeletedKeyItem.cs | 24 + .../Customized/DeletedSecretBundle.cs | 24 + .../Customized/DeletedSecretItem.cs | 24 + .../Customized/KeyVaultClientExtensions.cs | 88 +- .../Customized/ObjectIdentifier.cs | 80 +- .../Generated/IKeyVaultClient.cs | 171 +- .../Generated/KeyVaultClient.cs | 3208 +++++++++++++---- .../Generated/KeyVaultClientExtensions.cs | 224 +- .../Generated/Models/DeletedKeyBundle.cs | 79 + .../Generated/Models/DeletedKeyItem.cs | 78 + .../Generated/Models/DeletedSecretBundle.cs | 83 + .../Generated/Models/DeletedSecretItem.cs | 79 + .../Generated/Models/KeyAttributes.cs | 13 +- .../Properties/AssemblyInfo.cs | 2 +- .../Microsoft.Azure.KeyVault/project.json | 2 +- .../KeyVaultTestBase.cs | 48 +- .../KeyVaultManagementListDeletedVaults.json | 2043 +++++++++++ .../KeyVaultManagementListVaults.json | 308 +- ...KeyVaultManagementRecoverDeletedVault.json | 849 +++++ ...aultManagementVaultCreateUpdateDelete.json | 199 +- ...stCompoundIdentityAccessControlPolicy.json | 172 +- .../VaultOperationsTest.cs | 578 +-- .../KeyVaultManagement.Tests/project.json | 6 +- .../Generated/IVaultsOperations.cs | 112 + .../Generated/KeyVaultManagementClient.cs | 2 +- .../Models/CertificatePermissions.cs | 1 - .../Generated/Models/CreateMode.cs | 26 + .../Generated/Models/DeletedVault.cs | 69 + .../Models/DeletedVaultProperties.cs | 78 + .../Generated/Models/KeyPermissions.cs | 3 +- .../Generated/Models/SecretPermissions.cs | 5 +- .../Models/VaultCreateOrUpdateParameters.cs | 2 +- .../Generated/Models/VaultProperties.cs | 46 +- .../Generated/VaultsOperations.cs | 719 ++++ .../Generated/VaultsOperationsExtensions.cs | 180 + .../generate.cmd | 2 +- 96 files changed, 18880 insertions(+), 3985 deletions(-) create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/SoftDeleteErrorDetectionStrategy.cs create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedKeyTest.json create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedSecretTest.json create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultKeyCreateDeleteRecoverPurgeTest.json create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedKeysTest.json create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedSecretsTest.json create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretCreateDeleteRecoverPurgeTest.json create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedKeyBundle.cs create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedKeyItem.cs create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedSecretBundle.cs create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedSecretItem.cs create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedKeyBundle.cs create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedKeyItem.cs create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedSecretBundle.cs create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedSecretItem.cs create mode 100644 src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementListDeletedVaults.json create mode 100644 src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementRecoverDeletedVault.json create mode 100644 src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/CreateMode.cs create mode 100644 src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/DeletedVault.cs create mode 100644 src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/DeletedVaultProperties.cs diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveKey.json b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveKey.json index be269b1d60d1..e6630cc6f3a7 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveKey.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveKey.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//keys/TestKey/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL1Rlc3RLZXkvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/TestKey/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvVGVzdEtleS9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"kty\": \"RSA\"\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "20" ], "x-ms-client-request-id": [ - "99215b0b-0317-4a6c-8e94-90fdd5f2d9d0" + "656a604c-c0b1-440f-b660-10d5a8500214" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/TestKey/3252020a4ce74c278cf3f7b97460f34b\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"xo8QY0dc5cLy2ZkvhtKqGzZmGwKSo_MJLmA6rN7mG55lraft_3sH-IAbFvyf7IUxq6IuAOF5Vq3uR47XriI3e1-FA81jaaVSz3yTPsDS5Ct1yMnBMrxc4Ji19-tCa84HQgV4-XJ4K3q9dmQOlwvPMm5p5Vo6ZfhviBBiRohIXb9BFcnH09MXTKseZ_e7bA5AdUAjPOfMJekepqv3ezdzuor0YlzDkGF-ic327fdvV-kFppDJ3j6W3b_oR2hvuR48Fi1pLqFmE1WIgV60njOq_Vwp3zc4dck2O8EdonuDwWZ53i8O3q_lvX5Yf5F456NFtWI-XFPTyfv0oK03MWFAlQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082032,\r\n \"updated\": 1477082032\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/TestKey/6e367d5c4f7e4c9ba49bd5825bdd6b15\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"ygGn88nucVPRRC2Aox6WieLX-CJQQPmusNFNWpHR5P8547aF1YX--okRZSkyF7iJDug-On0hxrwYE4iY6K1GOmh9Fc6wOJFeKib9_znl9-j7KiM_aA9MC9p7wc9WE3q7jdEexE9wVmGSE4LMnA8CSK_dQxFmXXSBvJZM7wk10bfOA8qLi8DXtLkaGr2haTg-yeSq6PMZcPXIoSH8DZ-f_4LU_76mT4-EMc93y445hsZxL0_LfFWP_PWPJwZVm1xJ3mSzfDuir3S1lUiioTpvRvmr8PkFNx9hhVHM-Lwt09_reeuEK7ERX6nEWJoV_K97UEZl6acjsBBoCQ3l72yCvw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188936,\r\n \"updated\": 1482188936\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "615" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:51 GMT" + "Mon, 19 Dec 2016 23:08:56 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "4901265c-e126-4b99-b4b3-a557b71ca2a6" + "f9027a8c-2be6-4723-bdfa-7a75c90218d1" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -76,16 +77,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d5ae255-d7b2-4116-9e8d-16ed0f73ab0b" + "68ce5289-c427-4bbc-a673-72f359001ea2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/TestKey/3252020a4ce74c278cf3f7b97460f34b\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"xo8QY0dc5cLy2ZkvhtKqGzZmGwKSo_MJLmA6rN7mG55lraft_3sH-IAbFvyf7IUxq6IuAOF5Vq3uR47XriI3e1-FA81jaaVSz3yTPsDS5Ct1yMnBMrxc4Ji19-tCa84HQgV4-XJ4K3q9dmQOlwvPMm5p5Vo6ZfhviBBiRohIXb9BFcnH09MXTKseZ_e7bA5AdUAjPOfMJekepqv3ezdzuor0YlzDkGF-ic327fdvV-kFppDJ3j6W3b_oR2hvuR48Fi1pLqFmE1WIgV60njOq_Vwp3zc4dck2O8EdonuDwWZ53i8O3q_lvX5Yf5F456NFtWI-XFPTyfv0oK03MWFAlQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082032,\r\n \"updated\": 1477082032\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/TestKey/6e367d5c4f7e4c9ba49bd5825bdd6b15\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"ygGn88nucVPRRC2Aox6WieLX-CJQQPmusNFNWpHR5P8547aF1YX--okRZSkyF7iJDug-On0hxrwYE4iY6K1GOmh9Fc6wOJFeKib9_znl9-j7KiM_aA9MC9p7wc9WE3q7jdEexE9wVmGSE4LMnA8CSK_dQxFmXXSBvJZM7wk10bfOA8qLi8DXtLkaGr2haTg-yeSq6PMZcPXIoSH8DZ-f_4LU_76mT4-EMc93y445hsZxL0_LfFWP_PWPJwZVm1xJ3mSzfDuir3S1lUiioTpvRvmr8PkFNx9hhVHM-Lwt09_reeuEK7ERX6nEWJoV_K97UEZl6acjsBBoCQ3l72yCvw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188936,\r\n \"updated\": 1482188936\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "615" @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:51 GMT" + "Mon, 19 Dec 2016 23:08:56 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "0f80412d-3940-4a36-9380-68a170eedefa" + "4477fe19-4a13-43b0-ac74-a3b0de285c72" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,16 +141,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "163fdf22-2715-4718-bea4-9f89ced03d51" + "dfec0b9c-b6eb-4e12-9a9b-785cc1bf6dcf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/TestKey/3252020a4ce74c278cf3f7b97460f34b\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"xo8QY0dc5cLy2ZkvhtKqGzZmGwKSo_MJLmA6rN7mG55lraft_3sH-IAbFvyf7IUxq6IuAOF5Vq3uR47XriI3e1-FA81jaaVSz3yTPsDS5Ct1yMnBMrxc4Ji19-tCa84HQgV4-XJ4K3q9dmQOlwvPMm5p5Vo6ZfhviBBiRohIXb9BFcnH09MXTKseZ_e7bA5AdUAjPOfMJekepqv3ezdzuor0YlzDkGF-ic327fdvV-kFppDJ3j6W3b_oR2hvuR48Fi1pLqFmE1WIgV60njOq_Vwp3zc4dck2O8EdonuDwWZ53i8O3q_lvX5Yf5F456NFtWI-XFPTyfv0oK03MWFAlQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082032,\r\n \"updated\": 1477082032\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/TestKey/6e367d5c4f7e4c9ba49bd5825bdd6b15\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"ygGn88nucVPRRC2Aox6WieLX-CJQQPmusNFNWpHR5P8547aF1YX--okRZSkyF7iJDug-On0hxrwYE4iY6K1GOmh9Fc6wOJFeKib9_znl9-j7KiM_aA9MC9p7wc9WE3q7jdEexE9wVmGSE4LMnA8CSK_dQxFmXXSBvJZM7wk10bfOA8qLi8DXtLkaGr2haTg-yeSq6PMZcPXIoSH8DZ-f_4LU_76mT4-EMc93y445hsZxL0_LfFWP_PWPJwZVm1xJ3mSzfDuir3S1lUiioTpvRvmr8PkFNx9hhVHM-Lwt09_reeuEK7ERX6nEWJoV_K97UEZl6acjsBBoCQ3l72yCvw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188936,\r\n \"updated\": 1482188936\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "615" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:51 GMT" + "Mon, 19 Dec 2016 23:08:56 GMT" ], "Pragma": [ "no-cache" @@ -172,13 +175,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "9c5d5bab-d4e7-4ec7-beaa-972f4b77ecf5" + "dea1e86e-d548-41c5-951a-327c608e215f" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -196,22 +199,23 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/TestKey/3252020a4ce74c278cf3f7b97460f34b?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvVGVzdEtleS8zMjUyMDIwYTRjZTc0YzI3OGNmM2Y3Yjk3NDYwZjM0Yj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/keys/TestKey/6e367d5c4f7e4c9ba49bd5825bdd6b15?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvVGVzdEtleS82ZTM2N2Q1YzRmN2U0YzliYTQ5YmQ1ODI1YmRkNmIxNT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91f9946e-b0af-4ff8-91a9-feb20c7d3c74" + "205e20be-00e1-4884-8801-cf96d8ef7b1f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/TestKey/3252020a4ce74c278cf3f7b97460f34b\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"xo8QY0dc5cLy2ZkvhtKqGzZmGwKSo_MJLmA6rN7mG55lraft_3sH-IAbFvyf7IUxq6IuAOF5Vq3uR47XriI3e1-FA81jaaVSz3yTPsDS5Ct1yMnBMrxc4Ji19-tCa84HQgV4-XJ4K3q9dmQOlwvPMm5p5Vo6ZfhviBBiRohIXb9BFcnH09MXTKseZ_e7bA5AdUAjPOfMJekepqv3ezdzuor0YlzDkGF-ic327fdvV-kFppDJ3j6W3b_oR2hvuR48Fi1pLqFmE1WIgV60njOq_Vwp3zc4dck2O8EdonuDwWZ53i8O3q_lvX5Yf5F456NFtWI-XFPTyfv0oK03MWFAlQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082032,\r\n \"updated\": 1477082032\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/TestKey/6e367d5c4f7e4c9ba49bd5825bdd6b15\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"ygGn88nucVPRRC2Aox6WieLX-CJQQPmusNFNWpHR5P8547aF1YX--okRZSkyF7iJDug-On0hxrwYE4iY6K1GOmh9Fc6wOJFeKib9_znl9-j7KiM_aA9MC9p7wc9WE3q7jdEexE9wVmGSE4LMnA8CSK_dQxFmXXSBvJZM7wk10bfOA8qLi8DXtLkaGr2haTg-yeSq6PMZcPXIoSH8DZ-f_4LU_76mT4-EMc93y445hsZxL0_LfFWP_PWPJwZVm1xJ3mSzfDuir3S1lUiioTpvRvmr8PkFNx9hhVHM-Lwt09_reeuEK7ERX6nEWJoV_K97UEZl6acjsBBoCQ3l72yCvw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188936,\r\n \"updated\": 1482188936\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "615" @@ -226,7 +230,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:51 GMT" + "Mon, 19 Dec 2016 23:08:56 GMT" ], "Pragma": [ "no-cache" @@ -235,13 +239,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "2af6a7d5-545d-4b44-a172-89831b5ff7b1" + "f287e155-88f6-42ac-8329-0fb3803b8c4e" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -259,22 +263,23 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/TestKey/3252020a4ce74c278cf3f7b97460f34b?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvVGVzdEtleS8zMjUyMDIwYTRjZTc0YzI3OGNmM2Y3Yjk3NDYwZjM0Yj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/keys/TestKey/6e367d5c4f7e4c9ba49bd5825bdd6b15?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvVGVzdEtleS82ZTM2N2Q1YzRmN2U0YzliYTQ5YmQ1ODI1YmRkNmIxNT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76686a57-3215-4c34-ad05-2025531cde43" + "a1f4a79a-d170-4a53-881a-c1b8e7f54bad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/TestKey/3252020a4ce74c278cf3f7b97460f34b\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"xo8QY0dc5cLy2ZkvhtKqGzZmGwKSo_MJLmA6rN7mG55lraft_3sH-IAbFvyf7IUxq6IuAOF5Vq3uR47XriI3e1-FA81jaaVSz3yTPsDS5Ct1yMnBMrxc4Ji19-tCa84HQgV4-XJ4K3q9dmQOlwvPMm5p5Vo6ZfhviBBiRohIXb9BFcnH09MXTKseZ_e7bA5AdUAjPOfMJekepqv3ezdzuor0YlzDkGF-ic327fdvV-kFppDJ3j6W3b_oR2hvuR48Fi1pLqFmE1WIgV60njOq_Vwp3zc4dck2O8EdonuDwWZ53i8O3q_lvX5Yf5F456NFtWI-XFPTyfv0oK03MWFAlQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082032,\r\n \"updated\": 1477082032\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/TestKey/6e367d5c4f7e4c9ba49bd5825bdd6b15\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"ygGn88nucVPRRC2Aox6WieLX-CJQQPmusNFNWpHR5P8547aF1YX--okRZSkyF7iJDug-On0hxrwYE4iY6K1GOmh9Fc6wOJFeKib9_znl9-j7KiM_aA9MC9p7wc9WE3q7jdEexE9wVmGSE4LMnA8CSK_dQxFmXXSBvJZM7wk10bfOA8qLi8DXtLkaGr2haTg-yeSq6PMZcPXIoSH8DZ-f_4LU_76mT4-EMc93y445hsZxL0_LfFWP_PWPJwZVm1xJ3mSzfDuir3S1lUiioTpvRvmr8PkFNx9hhVHM-Lwt09_reeuEK7ERX6nEWJoV_K97UEZl6acjsBBoCQ3l72yCvw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188936,\r\n \"updated\": 1482188936\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "615" @@ -289,7 +294,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:51 GMT" + "Mon, 19 Dec 2016 23:08:56 GMT" ], "Pragma": [ "no-cache" @@ -298,13 +303,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "23265ac9-e504-4411-96aa-a94c91f6fd2e" + "deeccf75-2b4f-4a93-a523-2df2cec072a9" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -322,22 +327,23 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/TestKey?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL1Rlc3RLZXk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/keys/TestKey?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvVGVzdEtleT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1075db8b-af53-4e29-a670-34d74c5c20ca" + "b958219b-96de-4e1f-b3f0-9afd62c4db73" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/TestKey/3252020a4ce74c278cf3f7b97460f34b\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"xo8QY0dc5cLy2ZkvhtKqGzZmGwKSo_MJLmA6rN7mG55lraft_3sH-IAbFvyf7IUxq6IuAOF5Vq3uR47XriI3e1-FA81jaaVSz3yTPsDS5Ct1yMnBMrxc4Ji19-tCa84HQgV4-XJ4K3q9dmQOlwvPMm5p5Vo6ZfhviBBiRohIXb9BFcnH09MXTKseZ_e7bA5AdUAjPOfMJekepqv3ezdzuor0YlzDkGF-ic327fdvV-kFppDJ3j6W3b_oR2hvuR48Fi1pLqFmE1WIgV60njOq_Vwp3zc4dck2O8EdonuDwWZ53i8O3q_lvX5Yf5F456NFtWI-XFPTyfv0oK03MWFAlQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082032,\r\n \"updated\": 1477082032\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/TestKey/6e367d5c4f7e4c9ba49bd5825bdd6b15\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"ygGn88nucVPRRC2Aox6WieLX-CJQQPmusNFNWpHR5P8547aF1YX--okRZSkyF7iJDug-On0hxrwYE4iY6K1GOmh9Fc6wOJFeKib9_znl9-j7KiM_aA9MC9p7wc9WE3q7jdEexE9wVmGSE4LMnA8CSK_dQxFmXXSBvJZM7wk10bfOA8qLi8DXtLkaGr2haTg-yeSq6PMZcPXIoSH8DZ-f_4LU_76mT4-EMc93y445hsZxL0_LfFWP_PWPJwZVm1xJ3mSzfDuir3S1lUiioTpvRvmr8PkFNx9hhVHM-Lwt09_reeuEK7ERX6nEWJoV_K97UEZl6acjsBBoCQ3l72yCvw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188936,\r\n \"updated\": 1482188936\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "615" @@ -352,7 +358,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:52 GMT" + "Mon, 19 Dec 2016 23:08:58 GMT" ], "Pragma": [ "no-cache" @@ -361,13 +367,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "8cbd4a9c-f7df-4baf-8a89-65a925e3a6d0" + "e5e7bdf4-5042-42aa-97e4-86b80015e21e" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -387,8 +393,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "78f1ce45c15047b99f90e7dd0d02d59c" + "KeyVersion": "555b0da502934f30a0d284ddd9e2a861" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveSecret128Base64.json b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveSecret128Base64.json index 41927029ea02..7603b1f0bbd0 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveSecret128Base64.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveSecret128Base64.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "//secrets/TestSecret?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL1Rlc3RTZWNyZXQ/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/ResolveSecret128Base64?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDEyOEJhc2U2ND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"value\": \"JNn1RDsbjsUpw5fpefzGCQ==\",\r\n \"contentType\": \"application/octet-stream\"\r\n}", + "RequestBody": "{\r\n \"value\": \"vQv47OVnwOXSVHZx5vTWPw==\",\r\n \"contentType\": \"application/octet-stream\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,19 +13,20 @@ "89" ], "x-ms-client-request-id": [ - "ba9b8438-5945-402f-8dff-3fec062555a4" + "f8084df0-5818-41a7-9a8d-2218f75bbed2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"JNn1RDsbjsUpw5fpefzGCQ==\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/ef99814b0916421f997cc0d796d2ea27\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082028,\r\n \"updated\": 1477082028\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"vQv47OVnwOXSVHZx5vTWPw==\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret128Base64/216766c1ab7642dda349da670ffb600f\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188932,\r\n \"updated\": 1482188932\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "246" + "258" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:48 GMT" + "Mon, 19 Dec 2016 23:08:52 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "a5e6fff0-b454-4fc5-90dd-bbe1dcfa18a3" + "f3c92cf4-8ec6-4c4c-83c3-1d4dcfbe3ee0" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,25 +71,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/TestSecret/?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvVGVzdFNlY3JldC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/ResolveSecret128Base64/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDEyOEJhc2U2NC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9de94e01-772d-4ead-b558-fd6e616cc822" + "16601944-4c7a-4aeb-91da-9a2fca740fb5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"JNn1RDsbjsUpw5fpefzGCQ==\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/ef99814b0916421f997cc0d796d2ea27\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082028,\r\n \"updated\": 1477082028\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"vQv47OVnwOXSVHZx5vTWPw==\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret128Base64/216766c1ab7642dda349da670ffb600f\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188932,\r\n \"updated\": 1482188932\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "246" + "258" ], "Content-Type": [ "application/json; charset=utf-8" @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:48 GMT" + "Mon, 19 Dec 2016 23:08:52 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "1a362bc6-5576-4253-b8c4-653a599038fb" + "b8168af8-ee11-47fd-ab67-02070d152f09" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -133,25 +135,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/TestSecret/?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvVGVzdFNlY3JldC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/ResolveSecret128Base64/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDEyOEJhc2U2NC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0de1c085-9fb9-434a-adc0-2769d7717847" + "fab8ab6f-d332-4541-86a7-7325bda1c330" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"JNn1RDsbjsUpw5fpefzGCQ==\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/ef99814b0916421f997cc0d796d2ea27\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082028,\r\n \"updated\": 1477082028\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"vQv47OVnwOXSVHZx5vTWPw==\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret128Base64/216766c1ab7642dda349da670ffb600f\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188932,\r\n \"updated\": 1482188932\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "246" + "258" ], "Content-Type": [ "application/json; charset=utf-8" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:48 GMT" + "Mon, 19 Dec 2016 23:08:52 GMT" ], "Pragma": [ "no-cache" @@ -172,13 +175,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "0ce7ffc0-097f-4a94-8f11-16a3f29daff0" + "ed67b9bc-380b-45a6-8214-c99a757204ff" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -196,25 +199,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/TestSecret/ef99814b0916421f997cc0d796d2ea27?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvVGVzdFNlY3JldC9lZjk5ODE0YjA5MTY0MjFmOTk3Y2MwZDc5NmQyZWEyNz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/ResolveSecret128Base64/216766c1ab7642dda349da670ffb600f?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDEyOEJhc2U2NC8yMTY3NjZjMWFiNzY0MmRkYTM0OWRhNjcwZmZiNjAwZj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b18aad9e-a35c-4f93-91b0-e26fb443b174" + "70799be2-fb86-4bd2-be23-3bc4c9a3325f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"JNn1RDsbjsUpw5fpefzGCQ==\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/ef99814b0916421f997cc0d796d2ea27\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082028,\r\n \"updated\": 1477082028\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"vQv47OVnwOXSVHZx5vTWPw==\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret128Base64/216766c1ab7642dda349da670ffb600f\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188932,\r\n \"updated\": 1482188932\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "246" + "258" ], "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +230,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:48 GMT" + "Mon, 19 Dec 2016 23:08:52 GMT" ], "Pragma": [ "no-cache" @@ -235,13 +239,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "d5cc28d4-ff61-497d-8ca6-12d577c37c31" + "654db453-2f40-4efc-9eed-80883e8a2843" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -259,25 +263,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/TestSecret/ef99814b0916421f997cc0d796d2ea27?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvVGVzdFNlY3JldC9lZjk5ODE0YjA5MTY0MjFmOTk3Y2MwZDc5NmQyZWEyNz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/ResolveSecret128Base64/216766c1ab7642dda349da670ffb600f?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDEyOEJhc2U2NC8yMTY3NjZjMWFiNzY0MmRkYTM0OWRhNjcwZmZiNjAwZj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc32acb7-4fd7-4937-9362-02c11cfb12cf" + "09725f0b-dccf-4e91-a26d-916bcb56e809" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"JNn1RDsbjsUpw5fpefzGCQ==\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/ef99814b0916421f997cc0d796d2ea27\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082028,\r\n \"updated\": 1477082028\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"vQv47OVnwOXSVHZx5vTWPw==\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret128Base64/216766c1ab7642dda349da670ffb600f\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188932,\r\n \"updated\": 1482188932\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "246" + "258" ], "Content-Type": [ "application/json; charset=utf-8" @@ -289,7 +294,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:48 GMT" + "Mon, 19 Dec 2016 23:08:52 GMT" ], "Pragma": [ "no-cache" @@ -298,13 +303,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "157047d5-8569-47db-ac9d-426aac70f703" + "aff48031-d92c-4e5f-9ced-3353e2ad2525" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -322,25 +327,26 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/TestSecret?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL1Rlc3RTZWNyZXQ/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/ResolveSecret128Base64?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDEyOEJhc2U2ND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f19cea38-481e-4f00-b6cf-e12ca69008d2" + "81274ef9-0922-4677-a37c-2cc597678d4b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/ef99814b0916421f997cc0d796d2ea27\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082028,\r\n \"updated\": 1477082028\r\n }\r\n}", + "ResponseBody": "{\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret128Base64/216766c1ab7642dda349da670ffb600f\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188932,\r\n \"updated\": 1482188932\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "211" + "223" ], "Content-Type": [ "application/json; charset=utf-8" @@ -352,7 +358,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:49 GMT" + "Mon, 19 Dec 2016 23:08:53 GMT" ], "Pragma": [ "no-cache" @@ -361,13 +367,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "54f1f7d1-ed77-4e42-8752-db8618b67efb" + "f5e89231-898c-43b6-bafb-d0e253e06ef3" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -387,8 +393,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "78f1ce45c15047b99f90e7dd0d02d59c" + "KeyVersion": "555b0da502934f30a0d284ddd9e2a861" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveSecret192Base64.json b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveSecret192Base64.json index 3adc3d144ece..6abdf733641d 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveSecret192Base64.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveSecret192Base64.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "//secrets/TestSecret?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL1Rlc3RTZWNyZXQ/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/ResolveSecret192Base64?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDE5MkJhc2U2ND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"value\": \"eMj9yf/6mULKG0NM2QWNww98Lm4ilzE7\",\r\n \"contentType\": \"application/octet-stream\"\r\n}", + "RequestBody": "{\r\n \"value\": \"MUq9WZ0NjGOhLpP9OkPMYypaxtehyvOT\",\r\n \"contentType\": \"application/octet-stream\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,19 +13,20 @@ "97" ], "x-ms-client-request-id": [ - "a5a33460-b573-4432-a12a-c6b1c9daeb6b" + "42a96702-0e3d-4fb8-b1e5-3eaccc5a8288" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"eMj9yf/6mULKG0NM2QWNww98Lm4ilzE7\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/68268ea885d24cf78e5ffba83ed6ea81\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082030,\r\n \"updated\": 1477082030\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"MUq9WZ0NjGOhLpP9OkPMYypaxtehyvOT\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret192Base64/3069c58629a3416a8ea57c03fa8c372f\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188934,\r\n \"updated\": 1482188934\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "254" + "266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:49 GMT" + "Mon, 19 Dec 2016 23:08:54 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "ee53105e-a30c-467f-9726-f40d2113d34a" + "d9bc704d-37d8-409f-9c49-2ec0a422ca74" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,25 +71,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/TestSecret/?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvVGVzdFNlY3JldC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/ResolveSecret192Base64/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDE5MkJhc2U2NC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa677860-ff64-4c0c-8718-9852dac73d89" + "d7659651-380e-4a13-b9a7-db6b781aa9e8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"eMj9yf/6mULKG0NM2QWNww98Lm4ilzE7\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/68268ea885d24cf78e5ffba83ed6ea81\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082030,\r\n \"updated\": 1477082030\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"MUq9WZ0NjGOhLpP9OkPMYypaxtehyvOT\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret192Base64/3069c58629a3416a8ea57c03fa8c372f\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188934,\r\n \"updated\": 1482188934\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "254" + "266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:50 GMT" + "Mon, 19 Dec 2016 23:08:54 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "e0bd7c39-ac86-4ab8-8d83-8f81245b8244" + "65e90200-a6c9-4062-bb7e-9d3b337125bd" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -133,25 +135,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/TestSecret/?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvVGVzdFNlY3JldC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/ResolveSecret192Base64/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDE5MkJhc2U2NC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "995b869c-34bd-43aa-8030-ace913dad9fb" + "5ea53e20-fda0-463d-b5c0-b2b3047bc28b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"eMj9yf/6mULKG0NM2QWNww98Lm4ilzE7\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/68268ea885d24cf78e5ffba83ed6ea81\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082030,\r\n \"updated\": 1477082030\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"MUq9WZ0NjGOhLpP9OkPMYypaxtehyvOT\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret192Base64/3069c58629a3416a8ea57c03fa8c372f\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188934,\r\n \"updated\": 1482188934\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "254" + "266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:50 GMT" + "Mon, 19 Dec 2016 23:08:55 GMT" ], "Pragma": [ "no-cache" @@ -172,13 +175,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "8f575cf3-e33a-40c9-97c6-01b839d0170e" + "8b6756fd-34c0-4c15-b6d5-3926e673644c" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -196,25 +199,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/TestSecret/68268ea885d24cf78e5ffba83ed6ea81?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvVGVzdFNlY3JldC82ODI2OGVhODg1ZDI0Y2Y3OGU1ZmZiYTgzZWQ2ZWE4MT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/ResolveSecret192Base64/3069c58629a3416a8ea57c03fa8c372f?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDE5MkJhc2U2NC8zMDY5YzU4NjI5YTM0MTZhOGVhNTdjMDNmYThjMzcyZj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4018e13-50a4-4b23-ace1-1158d507bff6" + "26f7d9d5-3a73-470c-85ea-3d741db100b0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"eMj9yf/6mULKG0NM2QWNww98Lm4ilzE7\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/68268ea885d24cf78e5ffba83ed6ea81\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082030,\r\n \"updated\": 1477082030\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"MUq9WZ0NjGOhLpP9OkPMYypaxtehyvOT\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret192Base64/3069c58629a3416a8ea57c03fa8c372f\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188934,\r\n \"updated\": 1482188934\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "254" + "266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +230,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:50 GMT" + "Mon, 19 Dec 2016 23:08:54 GMT" ], "Pragma": [ "no-cache" @@ -235,13 +239,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "051b14f4-bc07-4812-809b-09c812ccf7cc" + "bc902d29-6a93-4cf6-b9eb-2f48a7ac8e35" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -259,25 +263,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/TestSecret/68268ea885d24cf78e5ffba83ed6ea81?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvVGVzdFNlY3JldC82ODI2OGVhODg1ZDI0Y2Y3OGU1ZmZiYTgzZWQ2ZWE4MT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/ResolveSecret192Base64/3069c58629a3416a8ea57c03fa8c372f?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDE5MkJhc2U2NC8zMDY5YzU4NjI5YTM0MTZhOGVhNTdjMDNmYThjMzcyZj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6953a4d1-16ac-4d85-ad24-630945e23acd" + "f91b7fc9-1e35-43f3-95e7-cb7f52591eac" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"eMj9yf/6mULKG0NM2QWNww98Lm4ilzE7\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/68268ea885d24cf78e5ffba83ed6ea81\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082030,\r\n \"updated\": 1477082030\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"MUq9WZ0NjGOhLpP9OkPMYypaxtehyvOT\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret192Base64/3069c58629a3416a8ea57c03fa8c372f\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188934,\r\n \"updated\": 1482188934\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "254" + "266" ], "Content-Type": [ "application/json; charset=utf-8" @@ -289,7 +294,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:50 GMT" + "Mon, 19 Dec 2016 23:08:55 GMT" ], "Pragma": [ "no-cache" @@ -298,13 +303,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "ca9bb6ed-c65c-469a-9890-cf6cc0e07f1b" + "d30ef45e-b23e-4798-becd-e7d9aa5c7988" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -322,25 +327,26 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/TestSecret?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL1Rlc3RTZWNyZXQ/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/ResolveSecret192Base64?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDE5MkJhc2U2ND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9d60691-331b-4877-a277-1bdf695d82bb" + "c08f70c3-03f2-45ec-aa53-9b5f46aff451" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/68268ea885d24cf78e5ffba83ed6ea81\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082030,\r\n \"updated\": 1477082030\r\n }\r\n}", + "ResponseBody": "{\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret192Base64/3069c58629a3416a8ea57c03fa8c372f\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188934,\r\n \"updated\": 1482188934\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "211" + "223" ], "Content-Type": [ "application/json; charset=utf-8" @@ -352,7 +358,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:50 GMT" + "Mon, 19 Dec 2016 23:08:55 GMT" ], "Pragma": [ "no-cache" @@ -361,13 +367,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "1f1fba35-60d7-4f50-9851-d9c7288c620f" + "3fcf13e1-665e-437d-a001-1e6acd55238a" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -387,8 +393,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "78f1ce45c15047b99f90e7dd0d02d59c" + "KeyVersion": "555b0da502934f30a0d284ddd9e2a861" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveSecret256Base64.json b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveSecret256Base64.json index 22ccf19f5334..715577f5e241 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveSecret256Base64.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/SessionRecords/Microsoft.Azure.KeyVault.Extensions.Tests.KeyVaultKeyResolverTests/KeyVault_KeyResolver_ResolveSecret256Base64.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "//secrets/TestSecret?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL1Rlc3RTZWNyZXQ/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/ResolveSecret256Base64?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDI1NkJhc2U2ND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"value\": \"8SEskHRR0RjJtJMNQ71olPkhl7qFymmM2z7dF7JJDz0=\",\r\n \"contentType\": \"application/octet-stream\"\r\n}", + "RequestBody": "{\r\n \"value\": \"6vepnVZZ+Y+K/JbUOWu14qFVhbQ4xjteTaMrf3BaNdA=\",\r\n \"contentType\": \"application/octet-stream\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,19 +13,20 @@ "109" ], "x-ms-client-request-id": [ - "05d65943-9622-48f4-874d-14bb5845a0f0" + "b0ea2acb-e61a-4fd9-8824-f52abbf2f06c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"8SEskHRR0RjJtJMNQ71olPkhl7qFymmM2z7dF7JJDz0=\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/596f248db685404bac8d30ec8ff75e2c\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082032,\r\n \"updated\": 1477082032\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"6vepnVZZ+Y+K/JbUOWu14qFVhbQ4xjteTaMrf3BaNdA=\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret256Base64/668d60e2c16549fc95effb5e8faddefc\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188939,\r\n \"updated\": 1482188939\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "266" + "278" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:52 GMT" + "Mon, 19 Dec 2016 23:08:59 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "48282025-8215-4831-af08-5c98ed57d6b4" + "97fbcdfd-0774-4693-903b-73f64e7685d2" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,25 +71,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/TestSecret/?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvVGVzdFNlY3JldC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/ResolveSecret256Base64/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDI1NkJhc2U2NC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6befc77-cba1-4d48-be9f-a7510926922c" + "fbed12ed-0724-4266-9b4f-8188a964f159" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"8SEskHRR0RjJtJMNQ71olPkhl7qFymmM2z7dF7JJDz0=\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/596f248db685404bac8d30ec8ff75e2c\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082032,\r\n \"updated\": 1477082032\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"6vepnVZZ+Y+K/JbUOWu14qFVhbQ4xjteTaMrf3BaNdA=\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret256Base64/668d60e2c16549fc95effb5e8faddefc\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188939,\r\n \"updated\": 1482188939\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "266" + "278" ], "Content-Type": [ "application/json; charset=utf-8" @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:52 GMT" + "Mon, 19 Dec 2016 23:08:59 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "6f6bf913-4ce1-4283-879f-ab94da18b057" + "0875cf78-862a-4018-b2d5-87e0bad2a654" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -133,25 +135,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/TestSecret/?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvVGVzdFNlY3JldC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/ResolveSecret256Base64/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDI1NkJhc2U2NC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f988a69-0542-40d3-bfcb-7263797ab8b9" + "ed608c5d-31cd-4acb-a93d-708885f270a0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"8SEskHRR0RjJtJMNQ71olPkhl7qFymmM2z7dF7JJDz0=\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/596f248db685404bac8d30ec8ff75e2c\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082032,\r\n \"updated\": 1477082032\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"6vepnVZZ+Y+K/JbUOWu14qFVhbQ4xjteTaMrf3BaNdA=\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret256Base64/668d60e2c16549fc95effb5e8faddefc\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188939,\r\n \"updated\": 1482188939\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "266" + "278" ], "Content-Type": [ "application/json; charset=utf-8" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:52 GMT" + "Mon, 19 Dec 2016 23:08:59 GMT" ], "Pragma": [ "no-cache" @@ -172,13 +175,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "f6451c7f-e6f8-4da8-a2b4-199acaccc9b3" + "14591347-ed18-4e8c-912b-be6a2a384b2b" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -196,25 +199,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/TestSecret/596f248db685404bac8d30ec8ff75e2c?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvVGVzdFNlY3JldC81OTZmMjQ4ZGI2ODU0MDRiYWM4ZDMwZWM4ZmY3NWUyYz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/ResolveSecret256Base64/668d60e2c16549fc95effb5e8faddefc?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDI1NkJhc2U2NC82NjhkNjBlMmMxNjU0OWZjOTVlZmZiNWU4ZmFkZGVmYz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4bdeeeab-8f46-4fba-aa42-29740689dcb5" + "361748aa-7942-4f85-a470-563e74d0da63" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"8SEskHRR0RjJtJMNQ71olPkhl7qFymmM2z7dF7JJDz0=\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/596f248db685404bac8d30ec8ff75e2c\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082032,\r\n \"updated\": 1477082032\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"6vepnVZZ+Y+K/JbUOWu14qFVhbQ4xjteTaMrf3BaNdA=\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret256Base64/668d60e2c16549fc95effb5e8faddefc\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188939,\r\n \"updated\": 1482188939\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "266" + "278" ], "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +230,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:52 GMT" + "Mon, 19 Dec 2016 23:08:59 GMT" ], "Pragma": [ "no-cache" @@ -235,13 +239,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "cd175faa-4b91-4049-b935-078db7d14c54" + "3191b002-8aff-4770-b4cf-548d95bbe961" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -259,25 +263,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/TestSecret/596f248db685404bac8d30ec8ff75e2c?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvVGVzdFNlY3JldC81OTZmMjQ4ZGI2ODU0MDRiYWM4ZDMwZWM4ZmY3NWUyYz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/ResolveSecret256Base64/668d60e2c16549fc95effb5e8faddefc?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDI1NkJhc2U2NC82NjhkNjBlMmMxNjU0OWZjOTVlZmZiNWU4ZmFkZGVmYz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6349d3c-b73b-4407-911e-30687e466ff8" + "2969b888-6fd2-4973-a5f4-364b8fbafad2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"8SEskHRR0RjJtJMNQ71olPkhl7qFymmM2z7dF7JJDz0=\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/596f248db685404bac8d30ec8ff75e2c\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082032,\r\n \"updated\": 1477082032\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"6vepnVZZ+Y+K/JbUOWu14qFVhbQ4xjteTaMrf3BaNdA=\",\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret256Base64/668d60e2c16549fc95effb5e8faddefc\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188939,\r\n \"updated\": 1482188939\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "266" + "278" ], "Content-Type": [ "application/json; charset=utf-8" @@ -289,7 +294,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:52 GMT" + "Mon, 19 Dec 2016 23:08:59 GMT" ], "Pragma": [ "no-cache" @@ -298,13 +303,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "bb41f83b-3007-4f34-8545-8b6581196749" + "0c207cfb-0f93-4747-bc91-209c8650e1c2" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -322,25 +327,26 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/TestSecret?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL1Rlc3RTZWNyZXQ/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/ResolveSecret256Base64?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvUmVzb2x2ZVNlY3JldDI1NkJhc2U2ND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7e6e1af-74a5-4a50-a0c8-cb0610e4cf0c" + "eb862830-b420-4d44-8c5c-2bdba98299d9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/TestSecret/596f248db685404bac8d30ec8ff75e2c\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082032,\r\n \"updated\": 1477082032\r\n }\r\n}", + "ResponseBody": "{\r\n \"contentType\": \"application/octet-stream\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/ResolveSecret256Base64/668d60e2c16549fc95effb5e8faddefc\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188939,\r\n \"updated\": 1482188939\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "211" + "223" ], "Content-Type": [ "application/json; charset=utf-8" @@ -352,7 +358,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:52 GMT" + "Mon, 19 Dec 2016 23:09:00 GMT" ], "Pragma": [ "no-cache" @@ -361,13 +367,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "30ca3fae-52e6-475a-9962-7e55f433c577" + "f518388e-f4fa-4afa-aabf-d8b116e0fa36" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -387,8 +393,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "78f1ce45c15047b99f90e7dd0d02d59c" + "KeyVersion": "555b0da502934f30a0d284ddd9e2a861" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/Tests/KeyVaultKeyResolverTests.cs b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/Tests/KeyVaultKeyResolverTests.cs index 32170ab61f00..32a4fb3fbdb7 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/Tests/KeyVaultKeyResolverTests.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/Tests/KeyVaultKeyResolverTests.cs @@ -32,6 +32,7 @@ public KeyVaultKeyResolverTests(KeyVaultTestFixture fixture) { this.fixture = fixture; _standardVaultOnly = fixture.standardVaultOnly; + _softDeleteEnabled = fixture.softDeleteEnabled; _vaultAddress = fixture.vaultAddress; _keyName = fixture.keyName; _keyVersion = fixture.keyVersion; @@ -43,6 +44,7 @@ public KeyVaultKeyResolverTests(KeyVaultTestFixture fixture) private string _keyName = ""; private string _keyVersion = ""; private KeyIdentifier _keyIdentifier; + private bool _softDeleteEnabled = false; private KeyVaultClient GetKeyVaultClient() { @@ -86,6 +88,13 @@ public void KeyVault_KeyResolver_ResolveKey() { // Delete the key client.DeleteKeyAsync(vault, "TestKey").GetAwaiter().GetResult(); + + if(_softDeleteEnabled) + { + this.fixture.WaitOnDeletedKey(client, vault, "TestKey"); + + client.PurgeDeletedKeyAsync(vault, "TestKey").GetAwaiter().GetResult(); + } } } } @@ -99,7 +108,7 @@ public void KeyVault_KeyResolver_ResolveSecret128Base64() { using (MockContext context = MockContext.Start(this.GetType().FullName)) { - VerifyResolveSecretBase64(128, VerifyResolver); + VerifyResolveSecretBase64(128, VerifyResolver, "ResolveSecret128Base64"); } } @@ -111,7 +120,7 @@ public void KeyVault_KeyResolver_ResolveSecret192Base64() { using (MockContext context = MockContext.Start(this.GetType().FullName)) { - VerifyResolveSecretBase64(192, VerifyResolver); + VerifyResolveSecretBase64(192, VerifyResolver, "ResolveSecret192Base64"); } } @@ -123,12 +132,12 @@ public void KeyVault_KeyResolver_ResolveSecret256Base64() { using (MockContext context = MockContext.Start(this.GetType().FullName)) { - VerifyResolveSecretBase64(256, VerifyResolver); + VerifyResolveSecretBase64(256, VerifyResolver, "ResolveSecret256Base64"); } } private void VerifyResolveSecretBase64(int secretSize, - Action verifyResolverCallback) + Action verifyResolverCallback, string secretName = "TestSecret") { // Arrange var client = GetKeyVaultClient(); @@ -139,7 +148,7 @@ private void VerifyResolveSecretBase64(int secretSize, RandomNumberGenerator.Create().GetBytes(keyBytes); var secret = - client.SetSecretAsync(vault, "TestSecret", Convert.ToBase64String(keyBytes), null, + client.SetSecretAsync(vault, secretName, Convert.ToBase64String(keyBytes), null, "application/octet-stream").GetAwaiter().GetResult(); if (secret != null) @@ -152,7 +161,14 @@ private void VerifyResolveSecretBase64(int secretSize, finally { // Delete the key - client.DeleteSecretAsync(vault, "TestSecret").GetAwaiter().GetResult(); + client.DeleteSecretAsync(vault, secretName).GetAwaiter().GetResult(); + + if(_softDeleteEnabled) + { + this.fixture.WaitOnDeletedSecret(client, vault, secretName); + + client.PurgeDeletedSecretAsync(vault, secretName).GetAwaiter().GetResult(); + } } } } diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/appsettings.json b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/appsettings.json index dfe2c47dab1a..651cd3c044db 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/appsettings.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/appsettings.json @@ -3,6 +3,7 @@ "VaultUrl": "", "AuthClientId": "", "AuthClientSecret": "", - "StandardVaultOnly": "false" + "StandardVaultOnly": "false", + "SoftDeleteEnabled": "false" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/project.json b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/project.json index 93d55ab34f39..20fe30e24e38 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/project.json @@ -34,7 +34,7 @@ }, "dependencies": { - "Microsoft.Azure.KeyVault": "[2.0.6, 3.0)", + "Microsoft.Azure.KeyVault": "[2.1.0-preview, 3.0)", "Microsoft.Azure.KeyVault.Cryptography": "[2.0.5, 3.0)", "Microsoft.Azure.KeyVault.Extensions": "[2.0.5, 3.0)", "Microsoft.Azure.KeyVault.Core": "[2.0.4, 3.0)", diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions/project.json b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions/project.json index 0d1039c81752..cae0c9e7467f 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions/project.json @@ -20,7 +20,7 @@ }, "dependencies": { - "Microsoft.Azure.KeyVault": "[2.0.6, 3.0)", + "Microsoft.Azure.KeyVault": "[2.1.0-preview, 3.0)", "Microsoft.Azure.KeyVault.Core": "[2.0.4, 3.0)", "Microsoft.Azure.KeyVault.Cryptography": "[2.0.5, 3.0)", "Microsoft.Azure.KeyVault.WebKey": "[2.0.4, 3.0)" diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/KeyVaultTestFixture.cs b/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/KeyVaultTestFixture.cs index 96e29c56cf13..15830252c5a0 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/KeyVaultTestFixture.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/KeyVaultTestFixture.cs @@ -15,6 +15,8 @@ using Microsoft.IdentityModel.Clients.ActiveDirectory; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Microsoft.Azure.Management.ResourceManager; +using System.Net; +using Microsoft.Rest.TransientFaultHandling; namespace KeyVault.TestFramework { @@ -23,10 +25,12 @@ public class KeyVaultTestFixture : IDisposable // Required in test code public string vaultAddress; public bool standardVaultOnly; + public bool softDeleteEnabled; public string keyName; public string keyVersion; public KeyIdentifier keyIdentifier; public ClientCredential clientCredential; + public RetryPolicy retryExecutor; // Required for cleaning up at the end of the test private string rgName = "", appObjectId = ""; @@ -49,6 +53,10 @@ public KeyVaultTestFixture() keyName = keyIdentifier.Name; keyVersion = keyIdentifier.Version; tokenCache = new TokenCache(); + retryExecutor = new RetryPolicy(new ExponentialBackoffRetryStrategy(8, TimeSpan.FromSeconds(1), TimeSpan.FromSeconds(60), TimeSpan.FromSeconds(5))); + } else + { + retryExecutor = new RetryPolicy(new FixedIntervalRetryStrategy(0)); } } @@ -118,10 +126,17 @@ private bool FromConfiguration() string authClientId = TestConfigurationManager.TryGetEnvironmentOrAppSetting("AuthClientId"); string authSecret = TestConfigurationManager.TryGetEnvironmentOrAppSetting("AuthClientSecret"); string standardVaultOnlyString = TestConfigurationManager.TryGetEnvironmentOrAppSetting("StandardVaultOnly"); - bool result; - if (!bool.TryParse(standardVaultOnlyString, out result)) + string softDeleteEnabledString = TestConfigurationManager.TryGetEnvironmentOrAppSetting("SoftDeleteEnabled"); + bool standardVaultOnlyresult; + if (!bool.TryParse(standardVaultOnlyString, out standardVaultOnlyresult)) + { + standardVaultOnlyresult = false; + } + + bool softDeleteEnabledresult; + if (!bool.TryParse(softDeleteEnabledString, out softDeleteEnabledresult)) { - result = false; + softDeleteEnabledresult = false; } if (string.IsNullOrWhiteSpace(vault) || string.IsNullOrWhiteSpace(authClientId) || string.IsNullOrWhiteSpace(authSecret)) @@ -130,7 +145,8 @@ private bool FromConfiguration() { this.vaultAddress = vault; this.clientCredential = new ClientCredential(authClientId, authSecret); - this.standardVaultOnly = result; + this.standardVaultOnly = standardVaultOnlyresult; + this.softDeleteEnabled = softDeleteEnabledresult; return true; } } @@ -149,6 +165,26 @@ public KeyVaultClient CreateKeyVaultClient() return myclient; } + public void WaitOnDeletedKey(KeyVaultClient client, string vaultAddress, string keyName) + { + this.retryExecutor.ExecuteAction(() => client.GetDeletedKeyAsync(vaultAddress, keyName).GetAwaiter().GetResult()); + } + + public void WaitOnDeletedSecret(KeyVaultClient client, string vaultAddress, string secretName) + { + this.retryExecutor.ExecuteAction(() => client.GetDeletedSecretAsync(vaultAddress, secretName).GetAwaiter().GetResult()); + } + + public void WaitOnKey(KeyVaultClient client, string vaultAddress, string keyName) + { + this.retryExecutor.ExecuteAction(() => client.GetKeyAsync(vaultAddress, keyName).GetAwaiter().GetResult()); + } + + public void WaitOnSecret(KeyVaultClient client, string vaultAddress, string secretName) + { + this.retryExecutor.ExecuteAction(() => client.GetSecretAsync(vaultAddress, secretName).GetAwaiter().GetResult()); + } + public DelegatingHandler[] GetHandlers() { HttpMockServer server = HttpMockServer.CreateInstance(); diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/SoftDeleteErrorDetectionStrategy.cs b/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/SoftDeleteErrorDetectionStrategy.cs new file mode 100644 index 000000000000..f396fd643bfa --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/SoftDeleteErrorDetectionStrategy.cs @@ -0,0 +1,34 @@ +using Microsoft.Azure.KeyVault.Models; +using Microsoft.Rest.TransientFaultHandling; +using System; +using System.Net; + +namespace KeyVault.TestFramework +{ + /// + /// A retry strategy that will wait until keys/secrets have been deleted or purged entirely. + /// Since this is a long running operation that is not guaranteed to complete immediately. + /// + public class SoftDeleteErrorDetectionStrategy : ITransientErrorDetectionStrategy + { + public bool IsTransient(Exception ex) + { + if (ex != null) + { + // Key vault will use this error type for all exceptions. + KeyVaultErrorException kvException; + if((kvException = ex as KeyVaultErrorException) != null) + { + // Retry on not found and conflict while object is in transitioning state. + if (kvException.Response.StatusCode == HttpStatusCode.NotFound || + kvException.Response.StatusCode == HttpStatusCode.Conflict) + { + return true; + } + } + } + return false; + + } + } +} diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/project.json b/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/project.json index a4f50b02e348..12a0854ac59f 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/project.json @@ -15,7 +15,7 @@ "Microsoft.Rest.ClientRuntime": "[2.3.3, 3.0)", "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1, 4.0)", "Microsoft.Azure.Graph.RBAC": "2.2.2-preview", - "Microsoft.Azure.KeyVault": "[2.0.6, 3.0)", + "Microsoft.Azure.KeyVault": "[2.1.0-preview, 3.0)", "Microsoft.Azure.Management.ResourceManager": "1.1.4-preview", "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.3.5-preview, 2.0.0)", "Microsoft.Extensions.Configuration": "1.0.0", diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/KeyVaultOperationsTest.cs b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/KeyVaultOperationsTest.cs index c30380be078d..36bf5911ae19 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/KeyVaultOperationsTest.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/KeyVaultOperationsTest.cs @@ -31,6 +31,7 @@ public KeyVaultOperationsTest(KeyVaultTestFixture fixture) { this.fixture = fixture; _standardVaultOnly = fixture.standardVaultOnly; + _softDeleteEnabled = fixture.softDeleteEnabled; _vaultAddress = fixture.vaultAddress; _keyName = fixture.keyName; _keyVersion = fixture.keyVersion; @@ -38,6 +39,7 @@ public KeyVaultOperationsTest(KeyVaultTestFixture fixture) } private bool _standardVaultOnly = false; + private bool _softDeleteEnabled = false; private string _vaultAddress = ""; private string _keyName = ""; private string _keyVersion = ""; @@ -249,6 +251,13 @@ public void KeyVaultCreateGetDeleteKeyTest() if (ex.Response.StatusCode != HttpStatusCode.NotFound || ex.Body.Error.Message != ex.Message) throw ex; } + + if (_softDeleteEnabled) + { + this.fixture.WaitOnDeletedKey(client, _vaultAddress, "CreateSoftKeyTest"); + + client.PurgeDeletedKeyAsync(_vaultAddress, "CreateSoftKeyTest").GetAwaiter().GetResult(); + } } } } @@ -272,6 +281,7 @@ public void KeyVaultCreateHsmKeyTest() //Trace.WriteLine("Verify generated key is as expected"); VerifyKeyAttributesAreEqual(attributes, createdKey.Attributes); Assert.Equal(JsonWebKeyType.RsaHsm, createdKey.Key.Kty); + Assert.NotNull(createdKey.Attributes.PurgeDisabled); //Trace.WriteLine("Get the key"); var retrievedKey = client.GetKeyAsync(createdKey.Key.Kid).GetAwaiter().GetResult(); @@ -286,6 +296,14 @@ public void KeyVaultCreateHsmKeyTest() VerifyKeyAttributesAreEqual(deletedKey.Attributes, createdKey.Attributes); VerifyWebKeysAreEqual(deletedKey.Key, createdKey.Key); + Assert.NotNull(deletedKey.Attributes.PurgeDisabled); + + if (_softDeleteEnabled) + { + this.fixture.WaitOnDeletedKey(client, _vaultAddress, "CreateHsmKeyTest"); + + client.PurgeDeletedKeyAsync(_vaultAddress, "CreateHsmKeyTest").Wait(); + } } } } @@ -309,6 +327,7 @@ public void KeyVaultImportSoftKeyTest() var importedKey = client.ImportKeyAsync(_vaultAddress, "ImportSoftKeyTest", keyBundle).GetAwaiter().GetResult(); + Assert.NotNull(importedKey.Attributes.PurgeDisabled); try { @@ -320,10 +339,18 @@ public void KeyVaultImportSoftKeyTest() VerifyKeyAttributesAreEqual(importedKey.Attributes, retrievedKey.Attributes); VerifyWebKeysAreEqual(importedKey.Key, retrievedKey.Key); + Assert.NotNull(retrievedKey.Attributes.PurgeDisabled); } finally { client.DeleteKeyAsync(_vaultAddress, "ImportSoftKeyTest").Wait(); + + if(_softDeleteEnabled) + { + this.fixture.WaitOnDeletedKey(client, _vaultAddress, "ImportSoftKeyTest"); + + client.PurgeDeletedKeyAsync(_vaultAddress, "ImportSoftKeyTest").GetAwaiter().GetResult(); + } } } } @@ -360,6 +387,7 @@ public void KeyVaultUpdateKeyAttributesTest() VerifyKeyOperationsAreEqual(updatedKey.Key.KeyOps, operations); updatedKey.Key.KeyOps = JsonWebKeyOperation.AllOperations; VerifyWebKeysAreEqual(updatedKey.Key, createdKey.Key); + Assert.NotNull(updatedKey.Attributes.PurgeDisabled); // Create a new version of the key var newkeyVersion = client.CreateKeyAsync(_vaultAddress, keyName, JsonWebKeyType.Rsa, 2048, @@ -377,10 +405,18 @@ public void KeyVaultUpdateKeyAttributesTest() VerifyKeyOperationsAreEqual(updatedKey.Key.KeyOps, operations); updatedKey.Key.KeyOps = JsonWebKeyOperation.AllOperations; VerifyWebKeysAreEqual(updatedKey.Key, createdKey.Key); + Assert.NotNull(updatedKey.Attributes.PurgeDisabled); } finally { client.DeleteKeyAsync(_vaultAddress, keyName).Wait(); + + if(_softDeleteEnabled) + { + this.fixture.WaitOnDeletedKey(client, _vaultAddress, keyName); + + client.PurgeDeletedKeyAsync(_vaultAddress, keyName).GetAwaiter().GetResult(); + } } } } @@ -421,10 +457,18 @@ public void KeyVaultUpdateKeyAttributesWithNoChangeTest() VerifyKeyAttributesAreEqual(updatedKey.Attributes, createdKey.Attributes); VerifyKeyOperationsAreEqual(updatedKey.Key.KeyOps, createdKey.Key.KeyOps); VerifyWebKeysAreEqual(updatedKey.Key, createdKey.Key); + Assert.NotNull(updatedKey.Attributes.PurgeDisabled); } finally { client.DeleteKeyAsync(_vaultAddress, keyName).Wait(); + + if (_softDeleteEnabled) + { + this.fixture.WaitOnDeletedKey(client, _vaultAddress, keyName); + + client.PurgeDeletedKeyAsync(_vaultAddress, keyName).GetAwaiter().GetResult(); + } } } } @@ -451,21 +495,39 @@ public void KeyVaultBackupRestoreTest() try { - // Restore a deleted key + // Backup the key var backupResponse = client.BackupKeyAsync(_vaultAddress, keyName).GetAwaiter().GetResult(); client.DeleteKeyAsync(_vaultAddress, keyName).Wait(); + if (_softDeleteEnabled) + { + this.fixture.WaitOnDeletedKey(client, _vaultAddress, keyName); + + client.PurgeDeletedKeyAsync(_vaultAddress, keyName).Wait(); + } + + // Restore the backedup key var restoredDeletedKey = - client.RestoreKeyAsync(_vaultAddress, backupResponse.Value).GetAwaiter().GetResult(); + this.fixture.retryExecutor.ExecuteAction(() => client.RestoreKeyAsync(_vaultAddress, backupResponse.Value).GetAwaiter().GetResult()); VerifyKeyAttributesAreEqual(restoredDeletedKey.Attributes, createdKey.Attributes); Assert.Equal(restoredDeletedKey.Key.Kty, createdKey.Key.Kty); Assert.Equal(createdKey.Key.Kid, restoredDeletedKey.Key.Kid); + Assert.NotNull(restoredDeletedKey.Attributes.PurgeDisabled); } finally { + this.fixture.WaitOnKey(client, _vaultAddress, keyName); + client.DeleteKeyAsync(_vaultAddress, keyName).Wait(); + + if(_softDeleteEnabled) + { + this.fixture.WaitOnDeletedKey(client, _vaultAddress, keyName); + + client.PurgeDeletedKeyAsync(_vaultAddress, keyName).Wait(); + } } } } @@ -575,6 +637,212 @@ public void KeyVaultListKeyVersionsTest() } #endregion + #region Deleted Key Operations + + [Fact] + public void KeyVaultGetDeletedKeyTest() + { + if (!_softDeleteEnabled) return; + + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var client = GetKeyVaultClient(); + + var keyName = "GetDeletedKeyTest"; + var attributes = new KeyAttributes(); + var tags = new Dictionary() { { "purpose", "unit test" }, { "test name ", "GetDeletedKeyTest" } }; + var createdKey = client.CreateKeyAsync(_vaultAddress, keyName, JsonWebKeyType.Rsa, 2048, + JsonWebKeyOperation.AllOperations, attributes, tags).GetAwaiter().GetResult(); + var deletedKey = client.DeleteKeyAsync(_vaultAddress, createdKey.KeyIdentifier.Name).GetAwaiter().GetResult(); + + try + { + this.fixture.WaitOnDeletedKey(client, _vaultAddress, keyName); + + // Get the deleted key using its recovery identifier + var getDeletedKey = client.GetDeletedKeyAsync(_vaultAddress, createdKey.KeyIdentifier.Name).GetAwaiter().GetResult(); + VerifyIdsAreEqual(createdKey.Key.Kid, getDeletedKey.Key.Kid); + VerifyIdsAreEqual(deletedKey.RecoveryId, getDeletedKey.RecoveryId); + } + finally + { + this.fixture.WaitOnDeletedKey(client, _vaultAddress, keyName); + + // Purge the key + client.PurgeDeletedKeyAsync(_vaultAddress, keyName).GetAwaiter().GetResult(); + } + } + } + + [Fact] + public void KeyVaultKeyCreateDeleteRecoverPurgeTest() + { + if (!_softDeleteEnabled) return; + + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + + var client = GetKeyVaultClient(); + + var keyName = "CreateDeleteRecoverPurgeTest"; + var attributes = new KeyAttributes(); + var tags = new Dictionary() { { "purpose", "unit test" }, { "test name ", "CreateDeleteRecoverPurgeTest" } }; + var createdKey = client.CreateKeyAsync(_vaultAddress, keyName, JsonWebKeyType.Rsa, 2048, + JsonWebKeyOperation.AllOperations, attributes, tags).GetAwaiter().GetResult(); + var originalKey = client.GetKeyAsync(_vaultAddress, createdKey.KeyIdentifier.Name).GetAwaiter().GetResult(); + + try + { + // Delete the key + var deletedKey = client.DeleteKeyAsync(_vaultAddress, keyName).GetAwaiter().GetResult(); + + //verify the key is deleted + try + { + client.GetKeyAsync(_vaultAddress, keyName).GetAwaiter().GetResult(); + } + catch (KeyVaultErrorException ex) + { + if (ex.Response.StatusCode != HttpStatusCode.NotFound || ex.Body.Error.Message != ex.Message) + throw ex; + } + + this.fixture.WaitOnDeletedKey(client, _vaultAddress, keyName); + + // Recover the key + var recoveredKey = client.RecoverDeletedKeyAsync(deletedKey.RecoveryId).GetAwaiter().GetResult(); + VerifyKeyAttributesAreEqual(recoveredKey.Attributes, originalKey.Attributes); + VerifyKeyOperationsAreEqual(recoveredKey.Key.KeyOps, originalKey.Key.KeyOps); + Assert.Equal(keyName, recoveredKey.KeyIdentifier.Name); + Assert.Equal(originalKey.Key.Kid, recoveredKey.Key.Kid); + Assert.NotNull(recoveredKey.Attributes.PurgeDisabled); + + this.fixture.WaitOnKey(client, _vaultAddress, keyName); + + var recoveredGetKey = client.GetKeyAsync(_vaultAddress, keyName).GetAwaiter().GetResult(); + VerifyKeyAttributesAreEqual(recoveredGetKey.Attributes, originalKey.Attributes); + VerifyKeyOperationsAreEqual(recoveredGetKey.Key.KeyOps, originalKey.Key.KeyOps); + Assert.Equal(keyName, recoveredGetKey.KeyIdentifier.Name); + Assert.Equal(originalKey.Key.Kid, recoveredGetKey.Key.Kid); + Assert.NotNull(recoveredGetKey.Attributes.PurgeDisabled); + } + finally + { + this.fixture.WaitOnKey(client, _vaultAddress, keyName); + + // Delete the key + var deletedKey = client.DeleteKeyAsync(_vaultAddress, keyName).GetAwaiter().GetResult(); + + //verify the key is deleted + try + { + client.GetKeyAsync(_vaultAddress, keyName).GetAwaiter().GetResult(); + } + catch (KeyVaultErrorException ex) + { + if (ex.Response.StatusCode != HttpStatusCode.NotFound || ex.Body.Error.Message != ex.Message) + throw ex; + } + + this.fixture.WaitOnDeletedKey(client, _vaultAddress, keyName); + + // Purge the key + client.PurgeDeletedKeyAsync(deletedKey.RecoveryId).GetAwaiter().GetResult(); + + //verify the key is purged + try + { + client.GetDeletedKeyAsync(_vaultAddress, keyName).GetAwaiter().GetResult(); + } + catch (KeyVaultErrorException ex) + { + if (ex.Response.StatusCode != HttpStatusCode.NotFound || ex.Body.Error.Message != ex.Message) + throw ex; + } + } + } + } + + [Fact] + public void KeyVaultListDeletedKeysTest() + { + if (!_softDeleteEnabled) return; + + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var client = GetKeyVaultClient(); + string keyNamePrefix = "listdeletedkeytest"; + int numKeys = 3; + int maxResults = 1; + + var addedObjects = new HashSet(); + var removedObjects = new HashSet(); + + //Create and delete the keys + for (int i = 0; i < numKeys; i++) + { + string keyName = keyNamePrefix + i.ToString(); + + var addedKey = + client.CreateKeyAsync(_vaultAddress, keyName, JsonWebKeyType.Rsa).GetAwaiter().GetResult(); + client.DeleteKeyAsync(_vaultAddress, keyName).GetAwaiter().GetResult(); + + this.fixture.WaitOnDeletedKey(client, _vaultAddress, keyName); + + addedObjects.Add(GetKidWithoutVersion(addedKey.Key.Kid)); + } + + //List the deleted keys + var listResponse = client.GetDeletedKeysAsync(_vaultAddress, maxResults).GetAwaiter().GetResult(); + Assert.NotNull(listResponse); + foreach (DeletedKeyItem m in listResponse) + { + if (addedObjects.Contains(m.Kid)) + { + Assert.True(m.Identifier.Name.StartsWith(keyNamePrefix)); + Assert.NotNull(m.RecoveryId); + Assert.NotNull(m.ScheduledPurgeDate); + Assert.NotNull(m.DeletedDate); + Assert.Equal(m.RecoveryIdentifier.Name, m.Identifier.Name); + Assert.True(m.RecoveryIdentifier.Name.StartsWith(keyNamePrefix)); + addedObjects.Remove(m.Kid); + removedObjects.Add(m.RecoveryId); + } + } + + var nextLink = listResponse.NextPageLink; + while (!string.IsNullOrEmpty(nextLink)) + { + var listNextResponse = client.GetDeletedKeysNextAsync(nextLink).GetAwaiter().GetResult(); + Assert.NotNull(listNextResponse); + foreach (DeletedKeyItem m in listNextResponse) + { + if (addedObjects.Contains(m.Kid)) + { + Assert.True(m.Identifier.Name.StartsWith(keyNamePrefix)); + Assert.NotNull(m.RecoveryId); + Assert.NotNull(m.ScheduledPurgeDate); + Assert.NotNull(m.DeletedDate); + Assert.Equal(m.RecoveryIdentifier.Name, m.Identifier.Name); + Assert.True(m.RecoveryIdentifier.Name.StartsWith(keyNamePrefix)); + + addedObjects.Remove(m.Kid); + removedObjects.Add(m.RecoveryId); + } + } + nextLink = listNextResponse.NextPageLink; + } + + Assert.True(addedObjects.Count == 0); + + foreach(string recoveryId in removedObjects) + { + client.PurgeDeletedKeyAsync(recoveryId).Wait(); + } + } + } + #endregion + #region Secret Operations [Fact] @@ -622,6 +890,13 @@ public void KeyVaultSecretCreateUpdateDeleteTest() // Delete the secret var deletedSecret = client.DeleteSecretAsync(_vaultAddress, secretName).GetAwaiter().GetResult(); + if(_softDeleteEnabled) + { + this.fixture.WaitOnDeletedSecret(client, _vaultAddress, secretName); + + client.PurgeDeletedSecretAsync(_vaultAddress, secretName).GetAwaiter().GetResult(); + } + //verify the secret is deleted try { @@ -680,6 +955,13 @@ public void KeyVaultGetSecretVersionTest() { // Delete the secret client.DeleteSecretAsync(_vaultAddress, secretName).GetAwaiter().GetResult(); + + if (_softDeleteEnabled) + { + this.fixture.WaitOnDeletedSecret(client, _vaultAddress, secretName); + + client.PurgeDeletedSecretAsync(_vaultAddress, secretName).GetAwaiter().GetResult(); + } } } } @@ -842,6 +1124,212 @@ public void KeyVaultTestSecretExtendedAttributes() #endregion + #region Deleted Secret Operations + + [Fact] + public void KeyVaultGetDeletedSecretTest() + { + if (!_softDeleteEnabled) return; + + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var client = GetKeyVaultClient(); + + var secretName = "GetDeletedSecretTest"; + var secretValue = "mysecretvalue"; + var secretOlder = client.SetSecretAsync(_vaultAddress, secretName, secretValue).GetAwaiter().GetResult(); + var deletedSecret = client.DeleteSecretAsync(_vaultAddress, secretName).GetAwaiter().GetResult(); + + this.fixture.WaitOnDeletedSecret(client, _vaultAddress, secretName); + + try + { + // Get the deleted secret using its recovery identifier + var getDeletedSecret = client.GetDeletedSecretAsync(_vaultAddress, secretOlder.SecretIdentifier.Name).GetAwaiter().GetResult(); + VerifyIdsAreEqual(secretOlder.Id, getDeletedSecret.Id); + VerifyIdsAreEqual(deletedSecret.RecoveryId, getDeletedSecret.RecoveryId); + } + finally + { + this.fixture.WaitOnDeletedSecret(client, _vaultAddress, secretName); + + // Purge the secret + client.PurgeDeletedSecretAsync(_vaultAddress, secretName).GetAwaiter().GetResult(); + } + } + } + + [Fact] + public void KeyVaultSecretCreateDeleteRecoverPurgeTest() + { + if (!_softDeleteEnabled) return; + + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + + var client = GetKeyVaultClient(); + + string secretName = "SecretCreateDeleteRecoverPurgeTest"; + string originalSecretValue = "mysecretvalue"; + + var originalSecret = + client.SetSecretAsync(_vaultAddress, secretName, originalSecretValue).GetAwaiter().GetResult(); + + VerifySecretValuesAreEqual(originalSecret.Value, originalSecretValue); + Assert.Equal(secretName, originalSecret.SecretIdentifier.Name); + try + { + // Delete the secret + var deletedSecret = client.DeleteSecretAsync(_vaultAddress, secretName).GetAwaiter().GetResult(); + + //verify the secret is deleted + try + { + client.GetSecretAsync(_vaultAddress, secretName).GetAwaiter().GetResult(); + } + catch (KeyVaultErrorException ex) + { + if (ex.Response.StatusCode != HttpStatusCode.NotFound || ex.Body.Error.Message != ex.Message) + throw ex; + } + + this.fixture.WaitOnDeletedSecret(client, _vaultAddress, secretName); + + // Recover the secret + var recoveredSecret = client.RecoverDeletedSecretAsync(deletedSecret.RecoveryId).GetAwaiter().GetResult(); + VerifySecretValuesAreEqual(recoveredSecret.Value, null); + Assert.Equal(secretName, recoveredSecret.SecretIdentifier.Name); + + this.fixture.WaitOnSecret(client, _vaultAddress, secretName); + + // Read the recovered secret using full identifier + var recoveredReadSecret = client.GetSecretAsync(recoveredSecret.Id).GetAwaiter().GetResult(); + VerifySecretValuesAreEqual(recoveredReadSecret.Value, originalSecretValue); + VerifyIdsAreEqual(recoveredReadSecret.Id, recoveredSecret.Id); + VerifyTagsAreEqual(originalSecret.Tags, recoveredReadSecret.Tags); + + // Read the recovered secret with the version independent identifier + recoveredReadSecret = client.GetSecretAsync(_vaultAddress, secretName).GetAwaiter().GetResult(); + VerifySecretValuesAreEqual(recoveredReadSecret.Value, originalSecretValue); + VerifyIdsAreEqual(recoveredReadSecret.Id, recoveredSecret.Id); + VerifyTagsAreEqual(originalSecret.Tags, recoveredReadSecret.Tags); + } + finally + { + this.fixture.WaitOnSecret(client, _vaultAddress, secretName); + + // Delete the secret + var deletedSecret = client.DeleteSecretAsync(_vaultAddress, secretName).GetAwaiter().GetResult(); + + //verify the secret is deleted + try + { + client.GetSecretAsync(_vaultAddress, secretName).GetAwaiter().GetResult(); + } + catch (KeyVaultErrorException ex) + { + if (ex.Response.StatusCode != HttpStatusCode.NotFound || ex.Body.Error.Message != ex.Message) + throw ex; + } + + this.fixture.WaitOnDeletedSecret(client, _vaultAddress, secretName); + + // Purge the secret + client.PurgeDeletedSecretAsync(deletedSecret.RecoveryId).GetAwaiter().GetResult(); + + //verify the secret is purged + try + { + client.GetDeletedSecretAsync(_vaultAddress, secretName).GetAwaiter().GetResult(); + } + catch (KeyVaultErrorException ex) + { + if (ex.Response.StatusCode != HttpStatusCode.NotFound || ex.Body.Error.Message != ex.Message) + throw ex; + } + } + } + } + + [Fact] + public void KeyVaultListDeletedSecretsTest() + { + if (!_softDeleteEnabled) return; + + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var client = GetKeyVaultClient(); + + int numSecrets = 3; + int maxResults = 1; + + var addedObjects = new HashSet(); + var removedObjects = new HashSet(); + string secretValue = "mysecretvalue"; + + //Create and delete the secrets + for (int i = 0; i < numSecrets; i++) + { + string secretName = "listdeletedsecrettest" + i.ToString(); + + var addedSecret = + client.SetSecretAsync(_vaultAddress, secretName, secretValue, contentType: "plainText").GetAwaiter().GetResult(); + addedObjects.Add(addedSecret.Id.Substring(0, addedSecret.Id.LastIndexOf("/"))); + + client.DeleteSecretAsync(_vaultAddress, secretName).GetAwaiter().GetResult(); + + this.fixture.WaitOnDeletedSecret(client, _vaultAddress, secretName); + } + + //List the secrets + var listResponse = client.GetDeletedSecretsAsync(_vaultAddress, maxResults).GetAwaiter().GetResult(); + Assert.NotNull(listResponse); + foreach (DeletedSecretItem m in listResponse) + { + if (addedObjects.Contains(m.Id)) + { + Assert.True(m.Identifier.Name.StartsWith("listdeletedsecrettest")); + Assert.NotNull(m.RecoveryId); + Assert.NotNull(m.ScheduledPurgeDate); + Assert.NotNull(m.DeletedDate); + Assert.True(m.RecoveryIdentifier.Name.StartsWith("listdeletedsecrettest")); + addedObjects.Remove(m.Id); + removedObjects.Add(m.RecoveryId); + } + } + + var nextLink = listResponse.NextPageLink; + while (!string.IsNullOrEmpty(nextLink)) + { + var listNextResponse = client.GetDeletedSecretsNextAsync(nextLink).GetAwaiter().GetResult(); + Assert.NotNull(listNextResponse); + foreach (DeletedSecretItem m in listNextResponse) + { + if (addedObjects.Contains(m.Id)) + { + Assert.True(m.Identifier.Name.StartsWith("listdeletedsecrettest")); + Assert.NotNull(m.RecoveryId); + Assert.NotNull(m.ScheduledPurgeDate); + Assert.NotNull(m.DeletedDate); + Assert.True(m.RecoveryIdentifier.Name.StartsWith("listdeletedsecrettest")); + addedObjects.Remove(m.Id); + removedObjects.Add(m.RecoveryId); + } + } + nextLink = listNextResponse.NextPageLink; + } + + Assert.True(addedObjects.Count == 0); + + foreach (string recoveryId in removedObjects) + { + client.PurgeDeletedSecretAsync(recoveryId).Wait(); + } + } + } + + #endregion + #region Certificate Operations [Fact] public void KeyVaultCertificateImportTest() @@ -2322,11 +2810,6 @@ private void VerifyIdsAreNotEqual(string id1, string id2) Assert.NotEqual(id1, id2); } - private void ListSecrets(int secrets, int? maxResults) - { - - } - protected static byte[] RandomBytes(int length) { if (HttpMockServer.Mode == HttpRecorderMode.Record) @@ -2520,13 +3003,12 @@ private static string ToHexString(byte[] input) public static class WellKnownIssuers { public const string Self = "Self"; - + public const string Unknown = "Unknown"; public static readonly string[] AllIssuers = { Self, Unknown }; } #endregion - } } diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/ObjectIdentifierTests.cs b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/ObjectIdentifierTests.cs index 60115d8d0453..5673b017f4f7 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/ObjectIdentifierTests.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/ObjectIdentifierTests.cs @@ -3,6 +3,7 @@ // license information. using Microsoft.Azure.KeyVault; +using System; using Xunit; namespace Microsoft.Azure.KeyVault.Tests @@ -12,6 +13,7 @@ public class ObjectIdentifierTests string vault = "https://myvault.vault.azure.net:443"; string name = "myname"; string version = "myversion"; + [Fact] public void KeyIdentifierTest() { @@ -37,6 +39,31 @@ public void KeyIdentifierTest() Assert.True(KeyIdentifier.IsKeyIdentifier(versionedId)); } + [Fact] + public void DeletedKeyIdentifierTest() + { + string baseId = string.Format("{0}/deletedkeys/{1}", vault, name); + string versionedId = string.Format("{0}/{1}", baseId, version); + + //unversioned + var id = new DeletedKeyIdentifier(baseId); + Assert.Equal(baseId, id.BaseIdentifier); + Assert.Equal(baseId, id.Identifier); + Assert.Equal(vault, id.Vault); + Assert.Equal(name, id.Name); + Assert.Equal(string.Empty, id.Version); + Assert.True(DeletedKeyIdentifier.IsDeletedKeyIdentifier(baseId)); + + //versioned + id = new DeletedKeyIdentifier(versionedId); + Assert.Equal(baseId, id.BaseIdentifier); + Assert.Equal(baseId, id.Identifier); + Assert.Equal(vault, id.Vault); + Assert.Equal(name, id.Name); + Assert.Equal(string.Empty, id.Version); + Assert.True(DeletedKeyIdentifier.IsDeletedKeyIdentifier(versionedId)); + } + [Fact] public void SecretIdentifierTest() { @@ -61,6 +88,31 @@ public void SecretIdentifierTest() Assert.Equal(version, id.Version); Assert.True(SecretIdentifier.IsSecretIdentifier(versionedId)); } + + [Fact] + public void DeletedSecretIdentifierTest() + { + string baseId = string.Format("{0}/deletedsecrets/{1}", vault, name); + string versionedId = string.Format("{0}/{1}", baseId, version); + + // unversioned + var id = new DeletedSecretIdentifier(baseId); + Assert.Equal(baseId, id.BaseIdentifier); + Assert.Equal(baseId, id.Identifier); + Assert.Equal(vault, id.Vault); + Assert.Equal(name, id.Name); + Assert.Equal(string.Empty, id.Version); + Assert.True(DeletedSecretIdentifier.IsDeletedSecretIdentifier(baseId)); + + // versioned + id = new DeletedSecretIdentifier(versionedId); + Assert.Equal(baseId, id.BaseIdentifier); + Assert.Equal(baseId, id.Identifier); + Assert.Equal(vault, id.Vault); + Assert.Equal(name, id.Name); + Assert.Equal(string.Empty, id.Version); + Assert.True(DeletedSecretIdentifier.IsDeletedSecretIdentifier(versionedId)); + } [Fact] public void CertificateIdentifierTest() diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultBackupRestoreTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultBackupRestoreTest.json index b3241ab83f0f..3626b3bdf558 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultBackupRestoreTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultBackupRestoreTest.json @@ -13,16 +13,17 @@ "251" ], "x-ms-client-request-id": [ - "5166ac0f-b0f9-4bb3-b2db-372ff14faf80" + "d6a61411-869f-4ab3-a2ac-bef3385bfbb2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/BackupRestoreTest/ca1b3304124d42048dc931669190f7b7\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"g60mOugoSwfCZecx4imcSwd12D0a3ivntZmTpXqijfrO3Bfu2K8NjF54z0si5fWj_jekR538BAODTAaDrDMwdZFnZrxZinmmOaZ6UaUPGb5pQZlii5_Kq5rTKxnWhSM5s7axhrHfZXGrt-OANS6P00AT5w9Vpteo-kDY86iQ-tCf-2clXVoboKyxw0AABasUUX--wT3sbGj1rNRpsdhrzqaGfpo8xsTcmqTfwcCO0Z-wDbyQ334FbmKlPRR4Qy6YIeh_ssJwVbxyVbY1uOZnnqSoZV1TM01rAwpR5KH6Rpu-EV_BwNbwOaDQs_e8LZwjPjdSVsvjwVrDaSg6XRZqLQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1477082133,\r\n \"updated\": 1477082133\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/BackupRestoreTest/de83072dee6d4f7886947b6776e66d1a\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"qIJMru9B0l7lPVzdxoYXMnRmKZnodMkXRoBTTmUSgeV3FWZcEnOQ_OKrP1UJJF2nrhYU3ExcAqf8Z86flgSMhQrlSIe1V49r8psggNHgtWrI_gCNs0HOp4JPlwaCTp1i1GscnKAYXoDuEg7a3X5yAW7bwYxV_UQREOodFz9QYpMjt4nvKHLajGO6h2jJ5W71fXMUpsuhAR3BL9GFfBq6uJmdl-MwOZZanQGqcqZMt5gThUXS2g_7Xnm7aiKtEaztXlr3S9LLfA791sZW5lWv5WaHcVilKybBVfR0Y0urCEC9GykfE3Epkm0boKRj6BudaBMk0t-VWNRgCP2sXySP5w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1483991568,\r\n \"updated\": 1483991568\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "660" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:33 GMT" + "Mon, 09 Jan 2017 19:52:48 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "97cf2404-b1bb-446d-9ab0-3fa057fa12a8" + "c97d79f0-6dde-4564-bd48-e7849d2429e6" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -76,19 +77,20 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45da2a2a-0a92-46b2-a379-d72b2ef946a4" + "d6bd6eef-6724-40ec-bb36-6cf1b71f1811" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLlRhWmVRTk5MT2w4Ui1lUkN2NG1QdjVKaWVGOElxaGFma09QNER6Y2c4SjRWUXlPRFNjc204d1dJTExRMENPLW4xQ2FLMktFZTJXVFU1X1B5eUE3UkNEM2dlQUx3clRBWVZYdmxnYmxqS1BaWjc5elNNZFNxTjFPWkNlalhnR0FqR2o4S3IwcHBtdHU1RW42T0lOdV94d1VXRFBJSVlhaGZhRnRfVjAwWmJLTEtud2ZTenJyQWx3cHhBQVNtS3U4VzN6TjdrR1gtWlAwMU8yNEpGblhIRE1pak5PeFRHTlBVZmVPTnc1ZFA0ZVBsX2phU2tTVFVudk5vNUtoRGZnOXNyWjJ3UVZRdFBYcGkzWldaTmJ0Q250ZEQxYl92MnROeGxUNFRjbnNtNlJlanRGQnBWXzZ4RnlWZHdpSTU1QThSWlJfS05ndG5aTXMtVUhJMGE3a0lHQS5NbndEUUt2TUxYdnA2Nng2UHZaNFVRLlFhRWZ4QUdxMXE1c0swTGlHUjVFUWFkVGNWb1I3XzBoYlJNNXNsWFZkVGw5eWFHcy1zdEllTjRWVlNOMlNKZHhIRElwVDZVREpTeUdRZktFYzd4ZU1hLXd6MXFyWUZBYWJZZG5FeHlpd3JpckdpYjI5b1VLZnBUNVZDcTY3VGVPS1RHZDFBZTlIMVZBM2ZlaExtTTlTV194MzJyOHppbDE4TFEyMnhITW1uSWFxX2RYaTJmNURyX2tWdmUyM0h1dUN1cy1VZWdNWDVqM0NHRjBDMmpPNXNhN0llamJBZnJKa0VRbWlaSHZFaEJmTk05YnFIdkZPbEpydzQ2MUtuZnZUOGhIN1MxY3BKR3VlTUZkSUpfYU5nNkV1MFY4VHlxVjM1QnJta2ttdTF4Ymh6Z2gyUmNZSUpnQU8tY2RHOG1BYkNmMGt4QUVPNnJMNEthSkQzUENDRmExQUJ1MmVIR2JTY0JIMGZ2eXllSER3a3VMeUQzYkNadjFnNFlPcUFFWGY0Y2J2dlVXczFNVlFNN19IVnRNclVLOXdaOUtUaElCbDR0R0RSRmJmamRVM2tYV2o5RWY2VGd6OEo4ME9HVTJ3eC1xbXYzbHl4UnBVRXV2WnZ5SUNVRUE2eXZka2dUNW1FTTExWHVNRHBMa3VjYkdkMGltcVhJVFplamYtZWZRRTJtU21QZGpCd3U4WHJ4a1hBa1V3bk5iM1F0Mlk3ZWk3Z2xvZVdvbHIxU0Q1cDZONlBvejFMd2ZyY3NpQmJkNWwyUFFXcGNHUi1TV3I0V21Sb3lCMWtzR3RhbU1mdDVTMkpTM2xmcGxHelRpbUpQa3F1cUpmUGlZNG9vLVZTY3FqYU4wOElxZEZnc2pvNnptem5Wektnbm82ekZIcW5jME10N3NoNFdqU0FtVDVJOURpY1RrNmhqbVRzV21xMFlFallkZHZzR1EzdWdQdlFiYVFWXzhIMlRLTHJVWWNFbVpLMXBraDNsNmhLMURtM0hfQzI4alotU2czRkJXRENGZEJ5anByZWFKV0tESFdSSVpTS1NLaWJBdHI4RHJIVVRSVUxLQ3hpMjJsSmtCdFhrdEVhb0tveUNRamFYTU52OHg4WGtVeGdmUFpCbGZfTzZmaGctZTBOY0NUNGVYdHBGS3lXbG5wY1NkRDUzT2t3NkNaRTN2RHhaUjJEb3pzTXVTN0NSdmI0Rzg0M0FDck4ybnVMRTBoVzJVRHF4R0xJMlJPTWN5UldoUDBCRjNQcVFMWUR4MkZ2MjlrdGI3M2pJckgxN2h3emVuUzNmVFNWVGpndnVpWTJHeEtvSEpabXdGRXJubGVQUGhNNkpQVFkwYzUwQU52RkZoaE90eC1kV3hnN01OTm5pVE9fRlNWMmQtY0FiOU1pQXVtUlBFaGR6S1Z1dzkzLTRmNEVxS3A5M1hIaGlIRDc3ZGJSZHFVdTdoMElON3FWOTlrbkRKd2Jvc043X1BtSzQ4WnlXcnRFckQwRTUwTkcyLWxqaHg4YVUySlhxQmFncW9LNU01NVhYV0xMZG5PYmdIMnppTFNiOXhmc2pBUm1oc0RRYi1vVDRBMm5Yb0ZaVDJYUTN0QWM0VFFqbGVpYkdycTVIekh5RnZLSElvYTR3OGx0THY0LUk3aXhxVF85SlF0MHhZeTVOYy1VWDFtTmt6cHY4WGpUOUFtOHBxZWRoQktRN1dYckNQS2FqS1dCUlFBZXNOOXR1TTY4Y0U1YWJ1MlVTclloM2NseklNbDVvOElKUHkxR2ZfYjUyREVmOXBXRDFERGl6UUFaNUZNUTBOSlpFeTJoWjBXY1FvbFgwV0ROTm4zTFo0bjU1RkFlZ0Nuc0NXN0F5eHUweFJsUUNPbC1BVFJpZVdkLXdaY1picGhaMnV6S0RxYXl6bThDWE1YSlNaZE1yUjg0YjV4THg1MG5zLXNjQ2sxWU5fWGRkZ096Q2dqN2Ruc0RIUVdpdHVpLUt4bjUwTldhdnBmYXo5NXBUdlZlUlRIanROei1vQWVZVWF4VWZzUnRuUE52ZnB4TlFoempkOVJuU2g4aXBOQ2lKN25BMmV0aXJtYUNrZ3VMYmVwMGpUei13azBlLXVjWFpGalotdkNYQV9VTExuZlhnQzJaWnZmalgyTEdpejhtRm9fSWJjeDRBZ3I1TGlUMTJwYnNNaV9femZLcHFnQnlsZ3VrVWhGNlZrekE0M2o3aENITnJfaWJTeVJ4U0RPMHRvZTlXWFVsaDFKam9VMXVHMVNmaG1WR1htYkhqUjYtelIzMHl4S3U3cTNDOVQ1a1Y1MEplNGgxMVR3YXFQNkQxSUF5WUlRdW9VVDY0ajV0TEdiU0tJS29qLXpQMWRSbVRoMVlyOEJNY1NxR25vOGpiUUZEdmFhS0JGV2pRZHNsa0xEdjZDMVpqRFVqZmNWRE9wOTU5UUFKNUZWTnB6TllaU3pjQUV5WndBTy0wbVZEZjF1LWhKS1BBa09nb2VncW9KMl94UElzNW5DMHZhRHdmVWNWTHZaa3NMY2V3d1JybTc2WjliSGVhN3QzM0xLTDBSTXU5blVBeGFPcGVXNGs0czNtdjFCTnJNcXE4UWVSeDk4alZJX0lLSU9kbnAwYVFDbXE1cWZWWWhrU2t4dEhyTEFhY2hDc0Rzc0NnaDZIODcybHRYeXlyV0p4NE9mcnhjVV9uYzl5ZHdTMUVrdDVvWnE1ZlZWZ0hONmJtWU42SDRTVWg2VnFjYW5oRGZrUHRqcE1zQkpDTHZRMFJWMHJibzY2cWtkbnktbnBFcEQyUWU1Z3NNbnBMODJvaTFNSUExaGduZFZQdURFX09RdE5uUVZpT1hmYThPd1BGRlduM3VWLUQtU21QTXdYVXdKOFMtc1ZSOEZGbDI2TE84c1pqclMwNi12ZW4zUVdKZ3RZSDl6d21xNGc5dGZxY083ZThDT2RLSHAtOWRuTjdwdVNaNVF2dlI4eGhPOUswQjlwaG9hRHRoeFpET3NjUG1hSy1valBuTGZvZVNCUk1RYkhJNko5cjdqNHJCZkVDNXFVSFpwZFdvMWZ2X1h5YzZBb01iMnNXWVBYYURSeURUblNQNjdOTEVnY2NROFEyc1pMSV9UMkhEaVNMMzFuczJtS3daUnNUblJkNWhndmZ2NmhFcm4xV1F3ZDJ0cEZ3R1VTUlpDLW1UZWVZMnk4OHdIei1rRUZyaGVFRldVbVBVVnRsOVBGbk45RDZOM200REc1RlZ1aC11bWdiRE9SclBJQTNrR1BSM0NvWENkRHVuYkNUTkpRMEFqemExMnBHM1k4amROVXgyM0pzZUhiVWdjT0hfMW5EM2d2bWZGem1IenNqeDJ2Y19WWDgyTUE2WTBwaGo0X2ZieTJKRGxIWVo0d2lyVlpiZjNHT1Y2VHk4UlEyRnNHU3hoMVU3aVNoeVZJYU1LNjRlQy1sdWt4OFZUY29ybkxtQVlvZk9lRndZX0FRQkZzLU5QbmdGdEIteDZkRHdON2JXQjNLNm5oQ2pNNDFOUllXOVd3dFNtay1Ub2hZMFJsQmwxSHpQX0ZVYzQ0WnFlX0IwQXBWTmFHVGl5bkFDRGdQLVA5V1p3RGdVOXNGcXFNZXZSMFNlLURYNW1BdHZWdWlyX3VUNHVta0pqRll2d3lqTnRjN2kySzBrSUlhTVZjLXRoLXZsRk9ZbjU3TmswYzdNOEV5TlZOYl9mcGdtcW1ZMUg1ZmF5bms3RmRBckMzRUlFTjVDa1dPNFZEMzRXcmU0a0lLbUc0d1ZSYkxUV2JLa0J6NmRhLWJsTFpOeENUdFBpTHdpU0R5Z0ZPNEZfbGxmV3JmWWFlMDc2Z0p3OVAyRzJyZXl2bVFSa25FaDNUSXBjNzhZWWsyeWpSbmQ1V3VaTHJpb2EzeXdpVm4wYlUtTFhOWlduYWhfV0c1R0NzZlQ5dVh0QTM0OURLcVBDa3pIMGg2VUpNREtHbkVpWVIzWXJLRi1IelR4anJIRW84M2FmRHMzSnpRd1FhVFJlQVdEMXc2LWgyZzMzeHZxZGdFZGVlblR5ZmtWY3BsdFJub1dLN2k4REtnVmVhTjJrS3l0a3RLckFZRDl3dEl5bGk4WFM5bUxYMlctbjVudS03R0o2NUNldDZJa0VXVWlkOFlKcVpJTHJNRlNyMmdkS1c4b1A2VlZLOHdtVGsyblVqLXIzOHpPX0xLa0ZDVjRFZE9KMS1WcFY3WnRxY2l3NklBLTVxM09jZVowcXhJcHdvemFzek5OS2o4SndyLUphRmFRTTlzOE5kT2ZzWUxXZnFLR0s5Vk80M2J3ZHlmZVhRNzBXRTRsNjRWcjBIakZZNTN1U3BmWl9iLWxkWkxwdWJuYUlqWHo2MnlNTUtFSy00VkZUQUtlMTZURjlMMUw3RWxSTDdqVUs3bFAxMUdHUjZud21kYUlBRFlLRnlSd2hibEoxTkFqU09GZlFBZF9tb1VnZUJfVTE0eXo1dUF2T3RRUTBVMHlYRnJTN3ozc3lDYXNnS3p6MlA3NGxDM3JuTVhyRk1GR3VxWnk0aDFXNHl4Tl93M3lXbnl1eHE4WVVzQ2xTQzNDV1R6cG1TeTZJRXV4UzVWUTVJYUFBa0lQOTVuSjNRMlVBYWdCamxUSVR2YW1xZXFxSi1qMldEeERBUl9xYUVNWnZiTkN0U1JrMlZNZGdoRGtFN3BibkU5eFRHaGpXWXlDLXRoUnF3TVo1UmZralBJWVU2ZFp6RHBrXzJTa3NQUTVoWnZLLW9kVk9RSWtQV2xRc2tObHp4YWRWOGM0cks3QkdtTUR5LTRYaHAtVlBySzZWSTdjUUNUVkFxeVNBc3p3OHEtcEVyNGIxQS0xVk9nYk9SOUxLazNOMmU3alNWMzFZZURnNnVrNVNWbVoxUlpsRUhWVUNsaWpRZG9Ebm9ENTZyekJnYURrM3hFUC1GNmVKNlJBLVJ5MGdDSUg4S0FWNHlfX25la0U0Mm1ZQVBvMWRHaWk0ZUVsekxuRG93WEp0Q2hGRTdTZXJodWFzQXBmYUw4b3c4dUtPU0pIQVhDZkdSYnBFaS1uZmZaUF9uakdXVXNIODN6LVlLQXJBN1NwcFB1NUdwR0FCNmRFZ0hFemFCOERZLUNIczNTUmZyOW0zV002eGNBeUVqZnA4SkRzTmZveXk5UUFEUElpdmtFT0hwczVDdG54cDI5Z1pmZTNZMmZraHFaWFl2VmtYOGFXYU1rVDZBQUNDWGEtVDZMUmRadXljcFp1NTd0WkZKZHVpdzk4WGNTV1VoY2NpdUxLRTRxRXViZG1SU0lwMGg0UjB3WEZ3Y2k0WW1paE5BcmItcDl0QVhSbzhXMS15MDBxU1Nsc3lnT1BRVlAxUXBJYmZ6RHE0Nnk4QVRzR0pxR3RHYjNRMWIxZEJJY1c3SjZiUE56RC1tR1ZlWW1oLVJBLUdDalRvTnBkRlBFWThVekdwQTBWLU9aSTlqcXg5N21LOWNzTUZFckR5SnR5NzV4X1NoUzRCLVVpQmRsdzRzU0pHbWJBdTg3VlNuQktzckZxSlR5RzJxWnIybHd4N0RTd3BOU2xLTFJRZnR0aXBUcVFIN1JxdDlMeTJPQm40bmRPeEVNLWQwWHZ5NzhnMHpQWVZ4T3RKdUtkN2s0dGVnTHpZdUN4eVoxSTd4V0RYeVlZdE1hb055U3pBUWhzaUhBc0kwWnJrdzJQeUpNWFFWay1Ga1BlNzZENGlTcXl4V3NNZEU0a2dITUhrQ3FXYklZLWpkdTNuU2xsMi1McWNHbDFRMWNkWVNvX3RLX0RaQVJLT0pNb21XT09LYVkydmV4eHFXQ3FDNFNqZm9VbHYzYVV5QU5WNEplMEIzbENPU3I5a2pFS2k3bmhlMHpCdGdrVUNjNU00TFZVSnhKQURCNzNZNUpCaDFCdUlmN1Rna1RFTmp2VDFXQmk1bVZQOHR4bXNlZVVHV1JLSVNMMW1mT0RlUE9RMG1RQkFla3F6eGJGcVlLRXB5YUJCMkpTcVZ0OVJtdi1oQnV1bEplYTc2YzV1bi13U0dON3NaVDM5YUNaaWtjdTdZT0NDa0tFTkRMbG1wbG9ELWxTNlRIaE55RDFKLWxGQW44aGpJbnQ0ejdqbUVYM19COUFLcnd3Qi1BczR4aHNxV0REM0pjV0g0RWJvZkxYd1RySm1wUEkzTElMS1VheWppcUhUNGlfajF2X3NjbzhaNkhVWVNHYjd3aV9JTTA0ajZBd29aWW5qaVlCdUZkTjBZWEVCZHBtTzlPNV85VTc5TE1YT2ttdjJLeXROWkVUamdBdkR3QU9IbllPV24xaENjMms0TjlhZnB5b01iS1Z2VlJ5NEFFSE9SeUVrRzctc3dxZklQQmFlT3hXVWhCZU1BVjVOZjJ0a2pkc19yOFJPTjJhQnpOVndGTXJvZFV5d1VncnRvZ0hFMlN0Um1hTXhRNFUxYUhzb0RqZmJsRVEzR3YzSEpRaG5qQU5ET0dkYy14T3gwNktCY2N4a2d0YlU3MnBVMVhVMWZIOURmT3pmSDNxY0JJOEVEZnN1dHoyZERTVm5KSV9tdDZMRWR4bFUtWVhabm5QSlc0ellxSEQwQ0g2bGExUFd1SEZPZm5OdXRKZjFBdHRVQjhCRXFMaUFHaEh3SnBfZTRKekdJMUdfMzk2ZHNUR01EeUxkbWRsc2lCZE1HemVEdl9XdmxyVk1xQ0w4MFctUzUycVVpUXdJc1FCcEVjLWFWRS1IN21tNDc1b3Y5em1nVExBVHRuS3RwTkE1dFl0ejVYWXRRVno5SGZ0R0pEUXhIZmZkVk41LVdyc3ZEcG9oRmdkWDdTblRMUmJFNlYteVNaWFBaWmMzeFp0ZW85ZF9UbU5rOUx2YWdsdGZSMlJDQTFMVWg2Rkcxb1BadEJxV1VrV2Z1cFQ0NWVFNUluT2w2ZUd6NWcwN0JWOTFHenlBWDB5ay1LYlp6bHJsQ2ZyeHM1T3FUbHpQbG1aRjRodlFuQlZ6OUhibXhLcEc1YTlmdHpDWHlzRFhzd20waVRsOExfVm51b0otSGtJejVfNnVCcXdGVWhGTjRjeG5sMVFETWVYREhYVEVmNHJGYVllcWpLR1dqVDZvMDJlUlNmY0ZhRDZtVmdmVkdKbDhfOXlEaFRUcGFiZHZUazJvaE9tREZwTHRBdnNKOGRweVhvYW9oQVhMOWVfenllT2ZGQXhKOU15QXJZM21hTHB2cXhGRlBsblZDVkJYWmJOSjcyLTZYbXdhQjhENmhrWlR2UXRXTTZjQTdFZ1MwN2hjSkxWaWNzenJOR2tSOXdsLVBsWTgwVmUzVkloRml2bkFydzJycFFZRVkzXzZLVjUyZnBma3Q2VmhnN2s0djZzSkMydEYxb2J0bVVvM1Nrd1pYY2NvQmZ3YWlPaHFibDhDX2RrZVlPeVVjajZJWjZDSmNwd0VvRWttc3ZEZnlLR0Z1UkxVNEdIVEtJYXY1Wm93dXY2akR4VDZfYkZPRThpMlFHT1B1bmc0b1F6OXZTMU0tZUtuY1BSV2U5V1RRQndpYV9IbjAySjltN0gyWVJvbWhoazhnM1pIbmV0UjVpR0RRVTNPWDdjZXFEZUxnT0o3c3dNUjlwaDJHeTdqVDdKS3Rac0UtbF91RjJLdTVrWkhnVkF1MVBHaDRQaWVpcmRqbDVqSDlTSlNleUUyYll3SkZVUlp5N21FZmowWHUwWmNibFVrR2lGbTdwaVZSLUlQbFYzYXJFT0VPWlE0SVczcGoxX3J4alljSlNFS0ZiVzRVSThHOHJaZHVHeUN1bGFUR1NsTkJXSThWd0ZRcEN6UFgwYjR3bUZYeUZrSTlhdVZ1VEZsSUs5VVZrYklUNHZXSGtwRDFnanVaTGNNc2d1N2czODQ4UTJzOWZCRS1VdHp5QUp1WExuRFBWaVdSMFBMc3Z2NUc2MndtMVhkTE5WTzhSTXJfeWV0VzdXbzlRTDlIaFFSTjU0c3FCREpEaFRZa0hJTzVEVU5JYnFZdDFmcTg2czg2VzNqcEFPQUJqRG9pQ3lzemNhdmd4RFMxQzRLTFYyQkVKemhPVk83VlgwV3pPaTNQblVKWE12dFltYkdvMjM0aDREeDhvZE9sR0M1c0hFVXlmSFROX0pVZmNYbzFsemhYa05jdXpFY0ZSbW5YN056RU15cjJuSmFidGRHNGFwMUdLNzcyZlc3alFqc1ZTUENXRFpQc09NQXUzakRmRElIUzJPN3d0dm9LdzVSSmtQRmtJN3FoQVhaRjVIQXc2X242XzJ3cUlCQjBQZm81c09tXy1OT3pOell4b2xocGFDN1M0dDBKYnlIYTdBd3V1VEd5RU1ZRlJ4Y2JlNElmbTQwdGRSYWxhRmlnVC0tdmN5aVhPQ0d2VE5uRlBoS1ZzRXFiQ1g0YUx0SHF3OTlkeTR5bUJxMFRldlFhcndEcTROaXRyT3dIR05hR0dSWUdwbjBJU3kzZDdObG5ieVNVdWZ0NzFtV0RmbnRsd0RWa1JVWkVFWTZZNGlnb3FPa0ZoeC1SUEhNeEFwcFN1b2R3QWUuZXBKWFRuU2syOWxmR0hFajktSHI2QQ\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLkg3Q2dzYktfejRVMExDOEFtRXJyamtvOTZlcUpmX1U2R252b2hrTGdUMllXdWQ1dFlVSnlmQWlMbDZ1Y2VVc28wX29xc3N0TktzT3dYZU9nX3FVWUQtV194aDlkOFR5RE9iZ0k0eWxROEg0bXd2TU95cGlOSzJoQUtSQ1JzUFpTVWlESGJLa3lPSEI1bGFscVZyV3IwQUhoX3RGQ3pUTWE5ejVHd2E1My1HbWxid3VYLUhvZG5LNkJncVVWUWktdFlhRjc1UlJXZHBaZGg3Ti1naHBCWG4wVDhaWlRDN0ZscDJaNnE1RlotYjNxQll2RWhPVjlwUVFtTXVHSTBNQl9vRzFQSWY2MXhIN2VlbDZkSWVtRGZobHpvMlJSSGdUVFFJWFBfSFQtZnQ5T0pXdkh1MUhUNE41ZURrUnY0ZFFfbzg1MWRpZFRxdVZhV2FNTTJYd2pzZy42N0w1a0ZSdXU3MDdHbHpiaTNMV1RRLmZSb194T0hiVVMtbTlaRnNVVkpyTFpCaTg1eGxFX1JDMHBQRy1ZdXZyN3Q4TVctN1JBd0NkTldDazVpT1VMaXZpWlRORktfQUxTeFJTLVY4U1c2SDMzY0FuUWNKdUhnZTRFaGxyYklfQkZqWE5LdUlsTkNhS1Fpc2lVdkx4RGpTQkpFaGpxNHBVTUl1anROMVFqSVk1aDB1aHN5LW94WnVULXgtX2RuU2F6dkwtWGF5RWZieTM1dU9Wb1JfWFNoUU1DeEY1MEF2aS1FZE1IbWJwdmd3aXlIYVpkLXR6SGtyOXg1cXo2TlV6TG15SVZyX1d3RUNaUkZLM1RILU1nZ05zd1Q4SHNiRGxlN0txU1JkNVk5Z2RzNUxGUVFWN2pfMGpob0pjb3BnOEFyNFM2by1FMVZDQ296azU2bDdreHNvTU40blRGd2ZKVElzTUg5QU5QdXlMM0RLalZuOXAxc2lzRER4ZktSb2lYZTdMVC1vT1Q3QmM0dU4zOFZiSVdIaktMLUxVSjBzYTBKM2ZXRllKUTVWMUgyU3JPNkNrQWQ3akMtcmpsSFpsUWIwLWNvcDU2T3EyRXR6YU40Vi05REQ2LTNya0ZfcUxsekpDUG1kZm5jU211eG9FZmJDcnFuQTN0c044XzZMUTJpUHdLTE5HWnpCMUFaRGlaeWtYTDA2RUdwZUVPMWJzTFd6Y3ozaEV4TVVNejlRZDdCWnEwT1RtMG5hZ0k0S3hpaXdNRUtfcU14RlZGSGhtZTNNcEJnaE50NnhJT2lCSTlOdnhUd2M2MTV3VEtXT0tmZVZfNkhtcndjMmJLellwOVJoM09xM3dYWUtnbzFyTVJCdnpJQ3BhZ0FGSEFrek1wRlNxZ25lbnRKQV9rRnNRWWVfdHVsODNUN0FhZ2Q4eF9nTE1COEdyc1ExLURvcTVIWjJRM3hHaUUtS3hRRkRYYnVEWkhBbzR0VC1ZWjR5b0c1SE91OEVSZGRUcllJVHJMVW9lMlB4a0FQSXR0ejREZVduRU4tYmp5QUdnOVpPUG9Md3JZS1V4eTVYU2FFTHRhM2o4RTV6UTU0eXg5TmY5UGlPMTFFWi1DVW9DVlpyenRZNXRWaUFHOUdVWGhEdTdEZjZUbTk4YXZaRGMyOFl2VHpaaGNfaVY2Tk1JUUVmYkI1dEVJb3JYRE5LdkVLWW45akFGRTc2MldQejJ0VUNDMExZcjgzbXZzcEtja1dReE9IR2ZBcUNSZWFxa3EtN3U5QU9zVzVxRnhFa2FoZTlwWjZ5ZzJaaTBmUW9uVkNrcFZIdDhGWGFhWWcwb05aMTNvRk1MbWY3ZnBlVG5Ta3VVdmZScVJKcjVTS09vX0czdG12bkc1V2dtaDVRSEJPcnYxb0QyekhUSF9sTnBXQ0JVZnRGYS1HY1BhUkdlYk1OMm9NY1ZJUUNzSDdwVHVwTHJkdEphRVQ2aHNxYm5QeTJPWlo1OXRkaE9yb3A5TEdEMDJSckRpR3VFTDBpYmZ4aThLOVpaQlk3cnRJeEo0N1hpWlBpejFrbWM0eWRsdFZtaUdWVGExbFV5ZlFTeWphcE1pckY4YUxFUHk4amxXTjZ6ell4aHd6dUQtMWhKbFVWX3ZjV3dBcDJvQXNLTXA5NnZJRmxhQmp4bVN2TXdUckhHcDlOeldnOHo3WWJrUDh2SWl6anZ5eGNfVnNGRDFNODFVS284RHhwTDFVeVItY3RCWHg0aTJJVDRBLXVkeWtYcURiN0o5X2RUOGFfeFl4NHJ3ZngyTHI1cHpjbS1RNGl0U3JHUVdfX3Z4cnVXWTZlOHRrM284UUZoemNtQzh6Smh0X25jb2c5UlAtR2s0Q3RDVEgxTWdXa1lpQ0NzMGdFUG9NOWU0MUtLak9IMUFRcERqTnRhMGpGZm03aFBRYU5odXpjaEJ2eHZLT3JhT1RCaGZLS2FjbkJJSVBQS0E3c2pqTFdza3lIM3FhNGo4ZFZBUUVQSEE0eWhZS1cxMGFJS2lCLTdoeXU3dEV0S1NkVDh5SXlKSzRfaXlzanFzTmZ4REZPMU5QbzVlVVlza1V0c1B2TXFNSGR2dWh6RWg3bEI4czVheFVjZjAzeThQd3Y2TVBHU1YxVXVIaGhsNURaSHRSdURJaThWMUJFcm9SMWZzRUlxTGZlRTZtRFRmdDl2UDFUOEJjTl9XQUM4djNYVGo5TWwxY05wZnFlQ3RQRVl0U3JCeFdpQ08wMVpYVEJVbm5LMGc5allrTVJWWGJCRkxPZUVGWVYwdkxpbUt4bmVvdjhNNTZZOVk3S3VHOE1LWlVVeXA1bjBpbTc2RXZLMXd4cVNGTFNzY0JIS3VPRzJfeF8wNE54U2x2ZXo0aGluNy1vUW9IOHhLOUpvR2Y2dVlLZFJBY201S0hZbGNPRkVscFk3ZUxPNmtBSFhvQ0RJSlpaXzF5dnlNV29GeHVlUjF2b28wU1BLWWc5V1gyczk0aVI5MWhvSkZfZ2tVSjN5eFdGQmVFVk9GQ0VINmdyWTN5X2pObzRIeTY1MnE1QlcxampkUHhCRXlkVVRUenhWeG5lOFV2Qk4ydUtBYkhyTXZkT2ZYcjNfa3FvSUg5RS1VLXNzVENpeUVIS185VWpMLTBEOUpkYmVyMl8zdlZVUmVWTTRaTWVFY3pucU8xRFJhYlJDVzQ5Uy1GaGFsT0t5bzNsVExMSlR2OXZpcjFnYVNFcU1ZNGYwN3ZXZmJtcTFWNDRYMFVmakhLYmpWYlZaYldjVmZpbVZGeEY4cl90blBVcnExZVUzM2hxNGJtVmlFQkZLOFZSZ1N2eTF3WXZRZHBVbFlTamgxTThVNlNOZVktRGFPOTA5SXJUQThzZmFOR3pOcTlLNkljaVgwWFhJMnEzeGw5RVhOWVByQWg4M1UxSXY1a0c3Tmx6eXZhMkxWLV9SUnVMUjF3YjJ5ZnhUTy1BSXZ1UUx3VnJqa2tmXy1uNVltc2t4aW8xRFp3ZzlPYzBYYzFjZGNOS1RBb1NTdlUwUV9zNWFWNi02QzE0cV93SjhzZXJtR05mUnlJVm9tb0tBZ3hVdTdTSkZCQjg4TWg0dEJJN25fa2x6UGVReXZjMU8wV2EzTlRfOFd6Q2I5YUdiZlQxYXhTaEY1RlZBMXRpTzNSdkNBZjBjM0VzLUQyc1BONHp5M09RNWRIY2xBV09VRGtHakliVFlzVnc2ajlCalo5V0txSTdXbk9aeXBXOWZjeTZIU0JwWDlwUHB0XzFya1RDbkxWTXdCU0htTXZTLVlTTVZjWVlSZjN0a2UzMFRIMjV2NUh5MVpwRnBWa1RkTm82WkhWNEROeWJNeHNWQzBlZmpCeFNCUFNUSjdoZmw1Wm1JLVJfd2RpbkZGUGY5WFE2ZlF3OW9oV1ZBVWhEZ1pBVVVleHV4MjZsYVUxYktrY2luMm15RE51M2U5aGtZSTVSOWxQclJCOFo2c3JkRmxiU0RPSVg1UENnVTVQYU1TZml1SmNnNmVfVC1Bd3pvRTJoZGVNaTZOVVpxSzA3S1gzOWJoRkp1b1NjVm5mNmpTdVpGbDlQSG5pZUJuZnVMV1F5cW9WTm9jdmpfV2pYZng0ZGVmcHQ4MzVDNkxpRVhaR2pFZTFiR3pJcnNXTW9ZeXVIcGoyRDFsM19rZi1pdEdPYkhlVm9NV3lJS2pLZnZBbFlMNmtUMmVjRFVhNEtKRnFCSmhnM3pKWkYwb2F2S2dKc0JDSkhXenV2RXR0T1F0R3hGQUozSmE4ZmdDNTA0cXJJYVlsVVdYaUdvcGxLNVI5bkZHdEFXQnV4MUpYYkhMNVVfUE00YUw4UmFKNVl3ZThyQkktby0zR1FITFFXX3RJS2xjQzdyUm5pZTgwSjFOTUNXVTVxejl2QWExbXhZQ2VVU2Y0VHlMcXk0eHpBNEp6VTlKWW5EWGxid1N4VE8wQUNKSUIteGVjN0lTWDdzS21SYmoxOE44X0ZJYnEzaTEtQTd6VWM3UExXd0pqWlFoS2p4ODdoUkN0djRmNzE0V2w2dDF0djhvczF6UkdTZURKMWgteHZ2dW44RUxadTdQeGJVZzBla0plRVhnX09tc3NPMzlXYUpNMHkxNVM2YTlIQ2xsZ3ctWjhqT1dzanQwVlhBOEhhNmpJOEROb2tiZTVTSXp0amRGQTV3Wkc1Y3BZbHN1b3R6YmlPbHFqSWNxSS1hZkcxMzFLSUdDbU02bC1QbnQzNUdqSHJkVzlnd3RUSkE4Q0FfdUdlRHJuUnlQWlVDX2luUlpycl9DRFcxN19nT0xOSnhuampKM0g1VTRzaDBoanZYVk1nY1BkdllFOXlFcU84Z0pYQWk0b1FRSUMtM2loYm9qYWtpblBNdjV1US05aG02XzdUVk1mTlFMejN6b09tT0l5emprQnpPV1RmUmpPSFhJRjgzYjYwaGNJWmhwVm85Y3ZvbWtzT2ktWTc0TjlOVUlDVUdvdmxNdldVSG1aYWJTNmd1VHRFczZSTm13akYyNzQ0cDhxTnNmMVJ0V2x0TEY3UXpwaS1XaW9WUm5tT0pqQVJ0Q29Wcy1BSjdvcVNnN0l3OEhYUVJDdXc1NXk0T1NWRW54Wm9NZ0tsdTNXVlBCUHN5NU5YODN1YTNwVjZwSzNKMDRMZE4zQk1WbWV6MkRDcUV0ZWdJT1J5WTljT0NZM1NtbUQtM3dEUzdXd3ZQSFp6U3JBbWt3X05CMUZLZkZDWkJ0T3liN2lCNDRkVDRxVjlVcHAybDEwcHJ0LVJxMjRwZlRaU0dqZFJ3MWJtcXJ2RGo0WjBiNWFCaHFYMVFCckoxZXdYSjIwcUJZekdLMERoLTRLUG9BcVBJSXVjc2lWLTV4YVI2TVFJVXVXbC1OS3VKZkZBamFsd2hYU2x5QXZycl9EUGFNWkhYOGxxd0VtdHBubmZPUGpiR1dNc1pLWW1LY3pGVGViaEVUb2V0R3FmWGQ0bXpQaGkyX240by1RTjU0YThvMFdJWWxwaE5kT0pNNGZ3ejdhZVMyMGFxYnZKc05iSi1BYVZ6VFJCc0tRSEZSMzhlcTk4aWNKc1hSd2FQcmpKTUtzbDlrT0ctZEFKNWZYR282eGlINUt2MUVWNGVya1FkTFRrLXhva1hlb3ZuNmx3QkNfMVF3MzJPUWNmQWh0UExFcDRaaHREdEVKWkZrTmxrRmlvZGFKNFBJa2lOdkdGMzlwVWNLNnlHeElIWThUejAyeC1pd2xhR2pPZU9CbkRzZjM4UVg1STNWTUczOE0zaDN6V3UzdUVYZnBkOVg0UlMybngxb3VTdEtrdFZFcjZuSHhSTmhNdTVMcFZ2bzBWa1JvS1ZIdkJaeWF3STI2Yno2RkdPaTgyUlMzU3Q5VXdsWkpndmI4X08xZmFIUlZhbEh0MHpJSDYxRlhNdXA4Wl9LanJ2Q0dYdEYxV2FWRlJMNjBOMFVBQVpSaFc1ejU4dmpsLU14RC1za2FhUlBlZzd3S0Y1QVB3RlBBb21KZy1NTzA3TW9ZajhLcDdVOE5Ybzg0dXQ5b0pDN0diYi1USndXbHQ5QllLN0d6Y2NhMU9VU1ZESlVkYk55Y3dwWGlieDNKdkljUTZwbHFVSlpzVW9mX2xySUtqZ1VGTjR5ajdzSlJmdUNZZmdHSU5yLWRTNXRqTEpucWZpRjBHUk56MEZZU3lfNmtTdFJEa3pwQ09Xam1LNDhZaHhLa3dUSktFVG9GNXp2T2o5WDRHX0t1YmFFZ0p2dDlwNkZvWkRVTEhlVTRHdFVTRnRyRVdNVGFRT3FPeWJDSHA2NGxydXdQSFJuN2k0VjJaa1lFa1p3WUw5dGRQMzFicEdOSkhGVlJjYU1fYlpFZnpCVTdaVzFfMktUQVY5ZWFza085TUpGZTlraVg2X2xydVNMQWlXMjFmUEhfZEZWR0VLeVozOE1DS1dKZHIwZDRGanBkWUhyYXU3bFJ0bUdjSWtTcWZ4NXhCdkR1dERmdXFkM1hSMnUzMXVzUVJRcVVMOGJJZTRkUFlZX2p1YmpLRjNDbWJRa01QNXlkZmlRaTdjc19qanZnVGVIYUxrc056bmoyUjlFa082dWMwaFhEdGRoMUZDbDZSTU1pTTJBZDd5MDJ2RU9raG1GU2RraDFieUQ2eWJvYUN0T2JrcEdXYTI2TjlTNWFQMk5DUS1HQmVhTF83SXc1NkhQN1lYN0VxWngxOVRBYVNNQWM1WGFZZVFtUEc1WXRqSEliOXdOMTVjQ2tkcmNQWDlxTUp4clNwdm9zbXRHc3FrTjhLTWFyUEJEempRMm4tUENYOTB2Y05sUk9kZFg5a2M0dUNaSnRkUXFIbG5WMHhDa0lpWXJBbjl6Um9kdW52eTRLQVM5OGdwZmdzcVV3QVN6LWFmQ3lOSDFMVGZQakZPTEIyLVFuQjBYWWZqcjdVbG9Ba0JMZ1Rla3ZOM0hCcXB3Um1ydUpQQVRmdG4tUUNtNUpFSmlQaUpRM0UxZzQtX3h5RnlTeFRNMXdQVmR1THhqRDNZd0lEZ3hsRE5hSTBBY2pHRGNXdmhyU2dmcmpVU2xWWjZ5NXRXaWtrTE01TENpMEZYUmxlYWdNZXJKQVhmQTVtdE1MQ1o5T3BMVFMxOFRIOTVJTHNXbG10cXlXRUthOFRqYTBYYVVHeWdOLTN6d3FCNXFjYXFiNUJLUUM4TTlRcmJrTE5neENVUDdlREVEdktoVnNIYVpFUm5MYldmMUNTQXFIcDRRN2Eza0toNEVDRW5tQ1F2VHAyM3JPclZlRG0xUVJFQVRZVy1YRzMwZHAyT1BCRW51dmlpU2U1Tl9JUGpoWktidEI4QW1FcVFKUUpMZ3dtZmRtdWNhb25NdTRfMFI4elVwX1Z5MkFibnI4elJsUTVrcTlSVnI0R3c5UkdOdDRFeTZ0ZU1RNnNPcW5BaXk4NkZ0Q0txRm8wTTZ2NENHdjFpUzI3MUVDTkRjZFNIYVJNUFVDNFEtQjdMZjVIYlRBdTNTcUc3NHZPYmF1YXRrODhJRkNNWEI4Z3MtMEdtZWVfemFxTlNGTDd1aWlrOGltcEt2Q1NIYi13THBfWXBRWnMwRGVYdjdYWTBWV0xFd1VVeW53XzUwNkNBVFlTYk9FV08xeTVWc0JuNmxuSWxSUEVNdlA0QV9aQ1pPWERQWk9KMWFsU0F5MXlLdUhqb0k5RzZsWnNLTEt0eElBZ2U1bjNvb1Q3c211WVdfUU9MSzgzaEdTMy0yc2tob0dXWkF2SkxUM3Y4RldyVFZ4R3FYanR2WjhEMk5UUHNjNGVmVGJ6Y0pfZnJ2UlJEZUtGSkhseVFDU3N0MldOdllfNTFtczRHam1WMzNYWDFmZjdMTzNWVVcwNV9uX0NlWThKMkt4MGhFZTlmNnFpaUpzYXd2OHhXNDZvS0pOU2dPZGFLV0g0d0Exb0dVVURFSVczclBsU2hkUGpDYl9tOEdGZHd0VlRDcEtVVjhlTFJPbnEyZ3hiSUFPQmF6MVVVdm91clZtX25WTHRTSTlxdjlVVWdLbGNOOU1qUlk2dkpEdllma21tMk9QbTNkTGRIeUhDc08zR3d5MGJoUFlScVZ3MFoySUw1dkNLT2JuZVA4UkRxMmp0aXBTTkZrajdlbl8xa1lyc3lnd1lXWVRsU2NXSGE4VlpYUTM0T1JLMVZ1cUppMVpYUHlmbGFEN2RIQ0JSV2JacHQ4cE5TUkJCMGNNdWNTd3pDdGhrczVGclQ5U1NpU2Nob0Y2a2VudGZtZ3c4ck9OVzRfa1JJaEVNbXpCNnd6dnlMeHAzSFdvV2Zac2t1ZDRXWEpTTk16VDMyMUl6TkE3aXRRZ2ozQ3djRjk3SG9zWGdpczFhSzNNYThSMUl0U0dwRmhVTGZFT25oeVBURDhwTWo2ZWdrcjZ1WWFHSEVSNmhmNVdoNFJScU1DNkQ5RDdTeTBESWp1NzgxN2RVVE1SMXFXTkhBbDZJNEk5R2pHaXZnRlZKZEViREtJXzBaaGVFbmFOUHA2S1ROZnItTkZIUDhzYmllQVZBcC1RSUNqOXdGRG13OTBqTTZsWklhOXpYbkFMSGI4SlBSOEtLUzJrT3JJaXFLUjhJSEhXd3NlcF9nOXJwTnA4YVBxRDF6N3pGdExMSjFLdEFIMDRJWkFEbndmZmxTdkF1WVlaY2R4OU1saTlON1RDbkV3TllSRnFFMHZiR182ZE9wdmQtV21KbVBHWXRqYTN0dTJ6M1lsUnZqaTJaSHlCVTdZaEt3RG80bDBaTjIxQ3c2T0ZiV09JVFR5Z3haRjdDVEZlaW05Z2dXQjUxWkFrSWtuM2J6bHpkTkxycnhHaTdxb0pjeHMxMUhmdkREcXZ0eThhN2kzWjBJblNTX0lnajlmaXlrNlBueUZkRlJNM25ZMWhQVHI4Yk9wMDhGYVI2TFRaN3JYSmZ2UkZaRzZNR3haSjZNS2dQVHpEZDZycmFmQWJtZlZuenZNY3k0cnlwZm9CLVhuTVZzb2NTYUU1UXhQbkNPV3FRVzNaLXdIR0JrZWM3Q1dacjNlVUdEWmhqUWstR0k4UFA1bEpWUTBCT25aclFBWktCMHkyMERjaWMyUm9JeHdnSnhMUzAtakVMMmRvVm1EaTJTUGY5eXVxYmNIVEpLLW9Ba0o4MC1yNzk5N2JNSGpCUWpHd2JiV2ZLdnEtNDBxYVpBYVNqNGZicGc1TkJteVNhNVNFaXBmemR0a0lYc2Jfb08xUWRGbGxxenowZGNCRG1HbE9FaENpb3lxWHpoNVFkeEEuRkFfYzA3ZTR3ODNoaURQMERrTGNQZw\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "9270" + "9470" ], "Content-Type": [ "application/json; charset=utf-8" @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:33 GMT" + "Mon, 09 Jan 2017 19:52:48 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "e380ef1d-0f57-4284-9839-4590aa3fc952" + "79e421a0-cbd9-466e-a476-cdbc9cbf21c4" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,16 +141,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c8f89d9-7419-4a69-a99e-c3be7dfb368b" + "89d1800d-0b4a-49a4-ad41-e62e51cf841c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/BackupRestoreTest/ca1b3304124d42048dc931669190f7b7\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"g60mOugoSwfCZecx4imcSwd12D0a3ivntZmTpXqijfrO3Bfu2K8NjF54z0si5fWj_jekR538BAODTAaDrDMwdZFnZrxZinmmOaZ6UaUPGb5pQZlii5_Kq5rTKxnWhSM5s7axhrHfZXGrt-OANS6P00AT5w9Vpteo-kDY86iQ-tCf-2clXVoboKyxw0AABasUUX--wT3sbGj1rNRpsdhrzqaGfpo8xsTcmqTfwcCO0Z-wDbyQ334FbmKlPRR4Qy6YIeh_ssJwVbxyVbY1uOZnnqSoZV1TM01rAwpR5KH6Rpu-EV_BwNbwOaDQs_e8LZwjPjdSVsvjwVrDaSg6XRZqLQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1477082133,\r\n \"updated\": 1477082133\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/BackupRestoreTest/de83072dee6d4f7886947b6776e66d1a\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"qIJMru9B0l7lPVzdxoYXMnRmKZnodMkXRoBTTmUSgeV3FWZcEnOQ_OKrP1UJJF2nrhYU3ExcAqf8Z86flgSMhQrlSIe1V49r8psggNHgtWrI_gCNs0HOp4JPlwaCTp1i1GscnKAYXoDuEg7a3X5yAW7bwYxV_UQREOodFz9QYpMjt4nvKHLajGO6h2jJ5W71fXMUpsuhAR3BL9GFfBq6uJmdl-MwOZZanQGqcqZMt5gThUXS2g_7Xnm7aiKtEaztXlr3S9LLfA791sZW5lWv5WaHcVilKybBVfR0Y0urCEC9GykfE3Epkm0boKRj6BudaBMk0t-VWNRgCP2sXySP5w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1483991568,\r\n \"updated\": 1483991568\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "660" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:33 GMT" + "Mon, 09 Jan 2017 19:52:48 GMT" ], "Pragma": [ "no-cache" @@ -172,13 +175,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "c30e85c9-ea4a-4a8a-b1d5-79d205447f42" + "a60587f9-3934-49d0-a496-8cc749fe9bbe" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -202,16 +205,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e69d0d4-ad7c-41a5-8055-f70160a4b61f" + "afaf0483-abce-44e2-b08b-b86a5a1d7c35" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/BackupRestoreTest/ca1b3304124d42048dc931669190f7b7\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"g60mOugoSwfCZecx4imcSwd12D0a3ivntZmTpXqijfrO3Bfu2K8NjF54z0si5fWj_jekR538BAODTAaDrDMwdZFnZrxZinmmOaZ6UaUPGb5pQZlii5_Kq5rTKxnWhSM5s7axhrHfZXGrt-OANS6P00AT5w9Vpteo-kDY86iQ-tCf-2clXVoboKyxw0AABasUUX--wT3sbGj1rNRpsdhrzqaGfpo8xsTcmqTfwcCO0Z-wDbyQ334FbmKlPRR4Qy6YIeh_ssJwVbxyVbY1uOZnnqSoZV1TM01rAwpR5KH6Rpu-EV_BwNbwOaDQs_e8LZwjPjdSVsvjwVrDaSg6XRZqLQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1477082133,\r\n \"updated\": 1477082133\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/BackupRestoreTest/de83072dee6d4f7886947b6776e66d1a\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"qIJMru9B0l7lPVzdxoYXMnRmKZnodMkXRoBTTmUSgeV3FWZcEnOQ_OKrP1UJJF2nrhYU3ExcAqf8Z86flgSMhQrlSIe1V49r8psggNHgtWrI_gCNs0HOp4JPlwaCTp1i1GscnKAYXoDuEg7a3X5yAW7bwYxV_UQREOodFz9QYpMjt4nvKHLajGO6h2jJ5W71fXMUpsuhAR3BL9GFfBq6uJmdl-MwOZZanQGqcqZMt5gThUXS2g_7Xnm7aiKtEaztXlr3S9LLfA791sZW5lWv5WaHcVilKybBVfR0Y0urCEC9GykfE3Epkm0boKRj6BudaBMk0t-VWNRgCP2sXySP5w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1483991568,\r\n \"updated\": 1483991568\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "660" @@ -226,7 +230,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:33 GMT" + "Mon, 09 Jan 2017 19:52:48 GMT" ], "Pragma": [ "no-cache" @@ -235,13 +239,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "6753b20d-1c18-4c34-a9ed-b99e3d5885c8" + "fd17307a-0be6-49fa-8e08-f1ecc8e6a6dc" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -262,25 +266,26 @@ "RequestUri": "//keys/restore?api-version=2016-10-01", "EncodedRequestUri": "Ly9rZXlzL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"value\": \"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLlRhWmVRTk5MT2w4Ui1lUkN2NG1QdjVKaWVGOElxaGFma09QNER6Y2c4SjRWUXlPRFNjc204d1dJTExRMENPLW4xQ2FLMktFZTJXVFU1X1B5eUE3UkNEM2dlQUx3clRBWVZYdmxnYmxqS1BaWjc5elNNZFNxTjFPWkNlalhnR0FqR2o4S3IwcHBtdHU1RW42T0lOdV94d1VXRFBJSVlhaGZhRnRfVjAwWmJLTEtud2ZTenJyQWx3cHhBQVNtS3U4VzN6TjdrR1gtWlAwMU8yNEpGblhIRE1pak5PeFRHTlBVZmVPTnc1ZFA0ZVBsX2phU2tTVFVudk5vNUtoRGZnOXNyWjJ3UVZRdFBYcGkzWldaTmJ0Q250ZEQxYl92MnROeGxUNFRjbnNtNlJlanRGQnBWXzZ4RnlWZHdpSTU1QThSWlJfS05ndG5aTXMtVUhJMGE3a0lHQS5NbndEUUt2TUxYdnA2Nng2UHZaNFVRLlFhRWZ4QUdxMXE1c0swTGlHUjVFUWFkVGNWb1I3XzBoYlJNNXNsWFZkVGw5eWFHcy1zdEllTjRWVlNOMlNKZHhIRElwVDZVREpTeUdRZktFYzd4ZU1hLXd6MXFyWUZBYWJZZG5FeHlpd3JpckdpYjI5b1VLZnBUNVZDcTY3VGVPS1RHZDFBZTlIMVZBM2ZlaExtTTlTV194MzJyOHppbDE4TFEyMnhITW1uSWFxX2RYaTJmNURyX2tWdmUyM0h1dUN1cy1VZWdNWDVqM0NHRjBDMmpPNXNhN0llamJBZnJKa0VRbWlaSHZFaEJmTk05YnFIdkZPbEpydzQ2MUtuZnZUOGhIN1MxY3BKR3VlTUZkSUpfYU5nNkV1MFY4VHlxVjM1QnJta2ttdTF4Ymh6Z2gyUmNZSUpnQU8tY2RHOG1BYkNmMGt4QUVPNnJMNEthSkQzUENDRmExQUJ1MmVIR2JTY0JIMGZ2eXllSER3a3VMeUQzYkNadjFnNFlPcUFFWGY0Y2J2dlVXczFNVlFNN19IVnRNclVLOXdaOUtUaElCbDR0R0RSRmJmamRVM2tYV2o5RWY2VGd6OEo4ME9HVTJ3eC1xbXYzbHl4UnBVRXV2WnZ5SUNVRUE2eXZka2dUNW1FTTExWHVNRHBMa3VjYkdkMGltcVhJVFplamYtZWZRRTJtU21QZGpCd3U4WHJ4a1hBa1V3bk5iM1F0Mlk3ZWk3Z2xvZVdvbHIxU0Q1cDZONlBvejFMd2ZyY3NpQmJkNWwyUFFXcGNHUi1TV3I0V21Sb3lCMWtzR3RhbU1mdDVTMkpTM2xmcGxHelRpbUpQa3F1cUpmUGlZNG9vLVZTY3FqYU4wOElxZEZnc2pvNnptem5Wektnbm82ekZIcW5jME10N3NoNFdqU0FtVDVJOURpY1RrNmhqbVRzV21xMFlFallkZHZzR1EzdWdQdlFiYVFWXzhIMlRLTHJVWWNFbVpLMXBraDNsNmhLMURtM0hfQzI4alotU2czRkJXRENGZEJ5anByZWFKV0tESFdSSVpTS1NLaWJBdHI4RHJIVVRSVUxLQ3hpMjJsSmtCdFhrdEVhb0tveUNRamFYTU52OHg4WGtVeGdmUFpCbGZfTzZmaGctZTBOY0NUNGVYdHBGS3lXbG5wY1NkRDUzT2t3NkNaRTN2RHhaUjJEb3pzTXVTN0NSdmI0Rzg0M0FDck4ybnVMRTBoVzJVRHF4R0xJMlJPTWN5UldoUDBCRjNQcVFMWUR4MkZ2MjlrdGI3M2pJckgxN2h3emVuUzNmVFNWVGpndnVpWTJHeEtvSEpabXdGRXJubGVQUGhNNkpQVFkwYzUwQU52RkZoaE90eC1kV3hnN01OTm5pVE9fRlNWMmQtY0FiOU1pQXVtUlBFaGR6S1Z1dzkzLTRmNEVxS3A5M1hIaGlIRDc3ZGJSZHFVdTdoMElON3FWOTlrbkRKd2Jvc043X1BtSzQ4WnlXcnRFckQwRTUwTkcyLWxqaHg4YVUySlhxQmFncW9LNU01NVhYV0xMZG5PYmdIMnppTFNiOXhmc2pBUm1oc0RRYi1vVDRBMm5Yb0ZaVDJYUTN0QWM0VFFqbGVpYkdycTVIekh5RnZLSElvYTR3OGx0THY0LUk3aXhxVF85SlF0MHhZeTVOYy1VWDFtTmt6cHY4WGpUOUFtOHBxZWRoQktRN1dYckNQS2FqS1dCUlFBZXNOOXR1TTY4Y0U1YWJ1MlVTclloM2NseklNbDVvOElKUHkxR2ZfYjUyREVmOXBXRDFERGl6UUFaNUZNUTBOSlpFeTJoWjBXY1FvbFgwV0ROTm4zTFo0bjU1RkFlZ0Nuc0NXN0F5eHUweFJsUUNPbC1BVFJpZVdkLXdaY1picGhaMnV6S0RxYXl6bThDWE1YSlNaZE1yUjg0YjV4THg1MG5zLXNjQ2sxWU5fWGRkZ096Q2dqN2Ruc0RIUVdpdHVpLUt4bjUwTldhdnBmYXo5NXBUdlZlUlRIanROei1vQWVZVWF4VWZzUnRuUE52ZnB4TlFoempkOVJuU2g4aXBOQ2lKN25BMmV0aXJtYUNrZ3VMYmVwMGpUei13azBlLXVjWFpGalotdkNYQV9VTExuZlhnQzJaWnZmalgyTEdpejhtRm9fSWJjeDRBZ3I1TGlUMTJwYnNNaV9femZLcHFnQnlsZ3VrVWhGNlZrekE0M2o3aENITnJfaWJTeVJ4U0RPMHRvZTlXWFVsaDFKam9VMXVHMVNmaG1WR1htYkhqUjYtelIzMHl4S3U3cTNDOVQ1a1Y1MEplNGgxMVR3YXFQNkQxSUF5WUlRdW9VVDY0ajV0TEdiU0tJS29qLXpQMWRSbVRoMVlyOEJNY1NxR25vOGpiUUZEdmFhS0JGV2pRZHNsa0xEdjZDMVpqRFVqZmNWRE9wOTU5UUFKNUZWTnB6TllaU3pjQUV5WndBTy0wbVZEZjF1LWhKS1BBa09nb2VncW9KMl94UElzNW5DMHZhRHdmVWNWTHZaa3NMY2V3d1JybTc2WjliSGVhN3QzM0xLTDBSTXU5blVBeGFPcGVXNGs0czNtdjFCTnJNcXE4UWVSeDk4alZJX0lLSU9kbnAwYVFDbXE1cWZWWWhrU2t4dEhyTEFhY2hDc0Rzc0NnaDZIODcybHRYeXlyV0p4NE9mcnhjVV9uYzl5ZHdTMUVrdDVvWnE1ZlZWZ0hONmJtWU42SDRTVWg2VnFjYW5oRGZrUHRqcE1zQkpDTHZRMFJWMHJibzY2cWtkbnktbnBFcEQyUWU1Z3NNbnBMODJvaTFNSUExaGduZFZQdURFX09RdE5uUVZpT1hmYThPd1BGRlduM3VWLUQtU21QTXdYVXdKOFMtc1ZSOEZGbDI2TE84c1pqclMwNi12ZW4zUVdKZ3RZSDl6d21xNGc5dGZxY083ZThDT2RLSHAtOWRuTjdwdVNaNVF2dlI4eGhPOUswQjlwaG9hRHRoeFpET3NjUG1hSy1valBuTGZvZVNCUk1RYkhJNko5cjdqNHJCZkVDNXFVSFpwZFdvMWZ2X1h5YzZBb01iMnNXWVBYYURSeURUblNQNjdOTEVnY2NROFEyc1pMSV9UMkhEaVNMMzFuczJtS3daUnNUblJkNWhndmZ2NmhFcm4xV1F3ZDJ0cEZ3R1VTUlpDLW1UZWVZMnk4OHdIei1rRUZyaGVFRldVbVBVVnRsOVBGbk45RDZOM200REc1RlZ1aC11bWdiRE9SclBJQTNrR1BSM0NvWENkRHVuYkNUTkpRMEFqemExMnBHM1k4amROVXgyM0pzZUhiVWdjT0hfMW5EM2d2bWZGem1IenNqeDJ2Y19WWDgyTUE2WTBwaGo0X2ZieTJKRGxIWVo0d2lyVlpiZjNHT1Y2VHk4UlEyRnNHU3hoMVU3aVNoeVZJYU1LNjRlQy1sdWt4OFZUY29ybkxtQVlvZk9lRndZX0FRQkZzLU5QbmdGdEIteDZkRHdON2JXQjNLNm5oQ2pNNDFOUllXOVd3dFNtay1Ub2hZMFJsQmwxSHpQX0ZVYzQ0WnFlX0IwQXBWTmFHVGl5bkFDRGdQLVA5V1p3RGdVOXNGcXFNZXZSMFNlLURYNW1BdHZWdWlyX3VUNHVta0pqRll2d3lqTnRjN2kySzBrSUlhTVZjLXRoLXZsRk9ZbjU3TmswYzdNOEV5TlZOYl9mcGdtcW1ZMUg1ZmF5bms3RmRBckMzRUlFTjVDa1dPNFZEMzRXcmU0a0lLbUc0d1ZSYkxUV2JLa0J6NmRhLWJsTFpOeENUdFBpTHdpU0R5Z0ZPNEZfbGxmV3JmWWFlMDc2Z0p3OVAyRzJyZXl2bVFSa25FaDNUSXBjNzhZWWsyeWpSbmQ1V3VaTHJpb2EzeXdpVm4wYlUtTFhOWlduYWhfV0c1R0NzZlQ5dVh0QTM0OURLcVBDa3pIMGg2VUpNREtHbkVpWVIzWXJLRi1IelR4anJIRW84M2FmRHMzSnpRd1FhVFJlQVdEMXc2LWgyZzMzeHZxZGdFZGVlblR5ZmtWY3BsdFJub1dLN2k4REtnVmVhTjJrS3l0a3RLckFZRDl3dEl5bGk4WFM5bUxYMlctbjVudS03R0o2NUNldDZJa0VXVWlkOFlKcVpJTHJNRlNyMmdkS1c4b1A2VlZLOHdtVGsyblVqLXIzOHpPX0xLa0ZDVjRFZE9KMS1WcFY3WnRxY2l3NklBLTVxM09jZVowcXhJcHdvemFzek5OS2o4SndyLUphRmFRTTlzOE5kT2ZzWUxXZnFLR0s5Vk80M2J3ZHlmZVhRNzBXRTRsNjRWcjBIakZZNTN1U3BmWl9iLWxkWkxwdWJuYUlqWHo2MnlNTUtFSy00VkZUQUtlMTZURjlMMUw3RWxSTDdqVUs3bFAxMUdHUjZud21kYUlBRFlLRnlSd2hibEoxTkFqU09GZlFBZF9tb1VnZUJfVTE0eXo1dUF2T3RRUTBVMHlYRnJTN3ozc3lDYXNnS3p6MlA3NGxDM3JuTVhyRk1GR3VxWnk0aDFXNHl4Tl93M3lXbnl1eHE4WVVzQ2xTQzNDV1R6cG1TeTZJRXV4UzVWUTVJYUFBa0lQOTVuSjNRMlVBYWdCamxUSVR2YW1xZXFxSi1qMldEeERBUl9xYUVNWnZiTkN0U1JrMlZNZGdoRGtFN3BibkU5eFRHaGpXWXlDLXRoUnF3TVo1UmZralBJWVU2ZFp6RHBrXzJTa3NQUTVoWnZLLW9kVk9RSWtQV2xRc2tObHp4YWRWOGM0cks3QkdtTUR5LTRYaHAtVlBySzZWSTdjUUNUVkFxeVNBc3p3OHEtcEVyNGIxQS0xVk9nYk9SOUxLazNOMmU3alNWMzFZZURnNnVrNVNWbVoxUlpsRUhWVUNsaWpRZG9Ebm9ENTZyekJnYURrM3hFUC1GNmVKNlJBLVJ5MGdDSUg4S0FWNHlfX25la0U0Mm1ZQVBvMWRHaWk0ZUVsekxuRG93WEp0Q2hGRTdTZXJodWFzQXBmYUw4b3c4dUtPU0pIQVhDZkdSYnBFaS1uZmZaUF9uakdXVXNIODN6LVlLQXJBN1NwcFB1NUdwR0FCNmRFZ0hFemFCOERZLUNIczNTUmZyOW0zV002eGNBeUVqZnA4SkRzTmZveXk5UUFEUElpdmtFT0hwczVDdG54cDI5Z1pmZTNZMmZraHFaWFl2VmtYOGFXYU1rVDZBQUNDWGEtVDZMUmRadXljcFp1NTd0WkZKZHVpdzk4WGNTV1VoY2NpdUxLRTRxRXViZG1SU0lwMGg0UjB3WEZ3Y2k0WW1paE5BcmItcDl0QVhSbzhXMS15MDBxU1Nsc3lnT1BRVlAxUXBJYmZ6RHE0Nnk4QVRzR0pxR3RHYjNRMWIxZEJJY1c3SjZiUE56RC1tR1ZlWW1oLVJBLUdDalRvTnBkRlBFWThVekdwQTBWLU9aSTlqcXg5N21LOWNzTUZFckR5SnR5NzV4X1NoUzRCLVVpQmRsdzRzU0pHbWJBdTg3VlNuQktzckZxSlR5RzJxWnIybHd4N0RTd3BOU2xLTFJRZnR0aXBUcVFIN1JxdDlMeTJPQm40bmRPeEVNLWQwWHZ5NzhnMHpQWVZ4T3RKdUtkN2s0dGVnTHpZdUN4eVoxSTd4V0RYeVlZdE1hb055U3pBUWhzaUhBc0kwWnJrdzJQeUpNWFFWay1Ga1BlNzZENGlTcXl4V3NNZEU0a2dITUhrQ3FXYklZLWpkdTNuU2xsMi1McWNHbDFRMWNkWVNvX3RLX0RaQVJLT0pNb21XT09LYVkydmV4eHFXQ3FDNFNqZm9VbHYzYVV5QU5WNEplMEIzbENPU3I5a2pFS2k3bmhlMHpCdGdrVUNjNU00TFZVSnhKQURCNzNZNUpCaDFCdUlmN1Rna1RFTmp2VDFXQmk1bVZQOHR4bXNlZVVHV1JLSVNMMW1mT0RlUE9RMG1RQkFla3F6eGJGcVlLRXB5YUJCMkpTcVZ0OVJtdi1oQnV1bEplYTc2YzV1bi13U0dON3NaVDM5YUNaaWtjdTdZT0NDa0tFTkRMbG1wbG9ELWxTNlRIaE55RDFKLWxGQW44aGpJbnQ0ejdqbUVYM19COUFLcnd3Qi1BczR4aHNxV0REM0pjV0g0RWJvZkxYd1RySm1wUEkzTElMS1VheWppcUhUNGlfajF2X3NjbzhaNkhVWVNHYjd3aV9JTTA0ajZBd29aWW5qaVlCdUZkTjBZWEVCZHBtTzlPNV85VTc5TE1YT2ttdjJLeXROWkVUamdBdkR3QU9IbllPV24xaENjMms0TjlhZnB5b01iS1Z2VlJ5NEFFSE9SeUVrRzctc3dxZklQQmFlT3hXVWhCZU1BVjVOZjJ0a2pkc19yOFJPTjJhQnpOVndGTXJvZFV5d1VncnRvZ0hFMlN0Um1hTXhRNFUxYUhzb0RqZmJsRVEzR3YzSEpRaG5qQU5ET0dkYy14T3gwNktCY2N4a2d0YlU3MnBVMVhVMWZIOURmT3pmSDNxY0JJOEVEZnN1dHoyZERTVm5KSV9tdDZMRWR4bFUtWVhabm5QSlc0ellxSEQwQ0g2bGExUFd1SEZPZm5OdXRKZjFBdHRVQjhCRXFMaUFHaEh3SnBfZTRKekdJMUdfMzk2ZHNUR01EeUxkbWRsc2lCZE1HemVEdl9XdmxyVk1xQ0w4MFctUzUycVVpUXdJc1FCcEVjLWFWRS1IN21tNDc1b3Y5em1nVExBVHRuS3RwTkE1dFl0ejVYWXRRVno5SGZ0R0pEUXhIZmZkVk41LVdyc3ZEcG9oRmdkWDdTblRMUmJFNlYteVNaWFBaWmMzeFp0ZW85ZF9UbU5rOUx2YWdsdGZSMlJDQTFMVWg2Rkcxb1BadEJxV1VrV2Z1cFQ0NWVFNUluT2w2ZUd6NWcwN0JWOTFHenlBWDB5ay1LYlp6bHJsQ2ZyeHM1T3FUbHpQbG1aRjRodlFuQlZ6OUhibXhLcEc1YTlmdHpDWHlzRFhzd20waVRsOExfVm51b0otSGtJejVfNnVCcXdGVWhGTjRjeG5sMVFETWVYREhYVEVmNHJGYVllcWpLR1dqVDZvMDJlUlNmY0ZhRDZtVmdmVkdKbDhfOXlEaFRUcGFiZHZUazJvaE9tREZwTHRBdnNKOGRweVhvYW9oQVhMOWVfenllT2ZGQXhKOU15QXJZM21hTHB2cXhGRlBsblZDVkJYWmJOSjcyLTZYbXdhQjhENmhrWlR2UXRXTTZjQTdFZ1MwN2hjSkxWaWNzenJOR2tSOXdsLVBsWTgwVmUzVkloRml2bkFydzJycFFZRVkzXzZLVjUyZnBma3Q2VmhnN2s0djZzSkMydEYxb2J0bVVvM1Nrd1pYY2NvQmZ3YWlPaHFibDhDX2RrZVlPeVVjajZJWjZDSmNwd0VvRWttc3ZEZnlLR0Z1UkxVNEdIVEtJYXY1Wm93dXY2akR4VDZfYkZPRThpMlFHT1B1bmc0b1F6OXZTMU0tZUtuY1BSV2U5V1RRQndpYV9IbjAySjltN0gyWVJvbWhoazhnM1pIbmV0UjVpR0RRVTNPWDdjZXFEZUxnT0o3c3dNUjlwaDJHeTdqVDdKS3Rac0UtbF91RjJLdTVrWkhnVkF1MVBHaDRQaWVpcmRqbDVqSDlTSlNleUUyYll3SkZVUlp5N21FZmowWHUwWmNibFVrR2lGbTdwaVZSLUlQbFYzYXJFT0VPWlE0SVczcGoxX3J4alljSlNFS0ZiVzRVSThHOHJaZHVHeUN1bGFUR1NsTkJXSThWd0ZRcEN6UFgwYjR3bUZYeUZrSTlhdVZ1VEZsSUs5VVZrYklUNHZXSGtwRDFnanVaTGNNc2d1N2czODQ4UTJzOWZCRS1VdHp5QUp1WExuRFBWaVdSMFBMc3Z2NUc2MndtMVhkTE5WTzhSTXJfeWV0VzdXbzlRTDlIaFFSTjU0c3FCREpEaFRZa0hJTzVEVU5JYnFZdDFmcTg2czg2VzNqcEFPQUJqRG9pQ3lzemNhdmd4RFMxQzRLTFYyQkVKemhPVk83VlgwV3pPaTNQblVKWE12dFltYkdvMjM0aDREeDhvZE9sR0M1c0hFVXlmSFROX0pVZmNYbzFsemhYa05jdXpFY0ZSbW5YN056RU15cjJuSmFidGRHNGFwMUdLNzcyZlc3alFqc1ZTUENXRFpQc09NQXUzakRmRElIUzJPN3d0dm9LdzVSSmtQRmtJN3FoQVhaRjVIQXc2X242XzJ3cUlCQjBQZm81c09tXy1OT3pOell4b2xocGFDN1M0dDBKYnlIYTdBd3V1VEd5RU1ZRlJ4Y2JlNElmbTQwdGRSYWxhRmlnVC0tdmN5aVhPQ0d2VE5uRlBoS1ZzRXFiQ1g0YUx0SHF3OTlkeTR5bUJxMFRldlFhcndEcTROaXRyT3dIR05hR0dSWUdwbjBJU3kzZDdObG5ieVNVdWZ0NzFtV0RmbnRsd0RWa1JVWkVFWTZZNGlnb3FPa0ZoeC1SUEhNeEFwcFN1b2R3QWUuZXBKWFRuU2syOWxmR0hFajktSHI2QQ\"\r\n}", + "RequestBody": "{\r\n \"value\": \"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLkg3Q2dzYktfejRVMExDOEFtRXJyamtvOTZlcUpmX1U2R252b2hrTGdUMllXdWQ1dFlVSnlmQWlMbDZ1Y2VVc28wX29xc3N0TktzT3dYZU9nX3FVWUQtV194aDlkOFR5RE9iZ0k0eWxROEg0bXd2TU95cGlOSzJoQUtSQ1JzUFpTVWlESGJLa3lPSEI1bGFscVZyV3IwQUhoX3RGQ3pUTWE5ejVHd2E1My1HbWxid3VYLUhvZG5LNkJncVVWUWktdFlhRjc1UlJXZHBaZGg3Ti1naHBCWG4wVDhaWlRDN0ZscDJaNnE1RlotYjNxQll2RWhPVjlwUVFtTXVHSTBNQl9vRzFQSWY2MXhIN2VlbDZkSWVtRGZobHpvMlJSSGdUVFFJWFBfSFQtZnQ5T0pXdkh1MUhUNE41ZURrUnY0ZFFfbzg1MWRpZFRxdVZhV2FNTTJYd2pzZy42N0w1a0ZSdXU3MDdHbHpiaTNMV1RRLmZSb194T0hiVVMtbTlaRnNVVkpyTFpCaTg1eGxFX1JDMHBQRy1ZdXZyN3Q4TVctN1JBd0NkTldDazVpT1VMaXZpWlRORktfQUxTeFJTLVY4U1c2SDMzY0FuUWNKdUhnZTRFaGxyYklfQkZqWE5LdUlsTkNhS1Fpc2lVdkx4RGpTQkpFaGpxNHBVTUl1anROMVFqSVk1aDB1aHN5LW94WnVULXgtX2RuU2F6dkwtWGF5RWZieTM1dU9Wb1JfWFNoUU1DeEY1MEF2aS1FZE1IbWJwdmd3aXlIYVpkLXR6SGtyOXg1cXo2TlV6TG15SVZyX1d3RUNaUkZLM1RILU1nZ05zd1Q4SHNiRGxlN0txU1JkNVk5Z2RzNUxGUVFWN2pfMGpob0pjb3BnOEFyNFM2by1FMVZDQ296azU2bDdreHNvTU40blRGd2ZKVElzTUg5QU5QdXlMM0RLalZuOXAxc2lzRER4ZktSb2lYZTdMVC1vT1Q3QmM0dU4zOFZiSVdIaktMLUxVSjBzYTBKM2ZXRllKUTVWMUgyU3JPNkNrQWQ3akMtcmpsSFpsUWIwLWNvcDU2T3EyRXR6YU40Vi05REQ2LTNya0ZfcUxsekpDUG1kZm5jU211eG9FZmJDcnFuQTN0c044XzZMUTJpUHdLTE5HWnpCMUFaRGlaeWtYTDA2RUdwZUVPMWJzTFd6Y3ozaEV4TVVNejlRZDdCWnEwT1RtMG5hZ0k0S3hpaXdNRUtfcU14RlZGSGhtZTNNcEJnaE50NnhJT2lCSTlOdnhUd2M2MTV3VEtXT0tmZVZfNkhtcndjMmJLellwOVJoM09xM3dYWUtnbzFyTVJCdnpJQ3BhZ0FGSEFrek1wRlNxZ25lbnRKQV9rRnNRWWVfdHVsODNUN0FhZ2Q4eF9nTE1COEdyc1ExLURvcTVIWjJRM3hHaUUtS3hRRkRYYnVEWkhBbzR0VC1ZWjR5b0c1SE91OEVSZGRUcllJVHJMVW9lMlB4a0FQSXR0ejREZVduRU4tYmp5QUdnOVpPUG9Md3JZS1V4eTVYU2FFTHRhM2o4RTV6UTU0eXg5TmY5UGlPMTFFWi1DVW9DVlpyenRZNXRWaUFHOUdVWGhEdTdEZjZUbTk4YXZaRGMyOFl2VHpaaGNfaVY2Tk1JUUVmYkI1dEVJb3JYRE5LdkVLWW45akFGRTc2MldQejJ0VUNDMExZcjgzbXZzcEtja1dReE9IR2ZBcUNSZWFxa3EtN3U5QU9zVzVxRnhFa2FoZTlwWjZ5ZzJaaTBmUW9uVkNrcFZIdDhGWGFhWWcwb05aMTNvRk1MbWY3ZnBlVG5Ta3VVdmZScVJKcjVTS09vX0czdG12bkc1V2dtaDVRSEJPcnYxb0QyekhUSF9sTnBXQ0JVZnRGYS1HY1BhUkdlYk1OMm9NY1ZJUUNzSDdwVHVwTHJkdEphRVQ2aHNxYm5QeTJPWlo1OXRkaE9yb3A5TEdEMDJSckRpR3VFTDBpYmZ4aThLOVpaQlk3cnRJeEo0N1hpWlBpejFrbWM0eWRsdFZtaUdWVGExbFV5ZlFTeWphcE1pckY4YUxFUHk4amxXTjZ6ell4aHd6dUQtMWhKbFVWX3ZjV3dBcDJvQXNLTXA5NnZJRmxhQmp4bVN2TXdUckhHcDlOeldnOHo3WWJrUDh2SWl6anZ5eGNfVnNGRDFNODFVS284RHhwTDFVeVItY3RCWHg0aTJJVDRBLXVkeWtYcURiN0o5X2RUOGFfeFl4NHJ3ZngyTHI1cHpjbS1RNGl0U3JHUVdfX3Z4cnVXWTZlOHRrM284UUZoemNtQzh6Smh0X25jb2c5UlAtR2s0Q3RDVEgxTWdXa1lpQ0NzMGdFUG9NOWU0MUtLak9IMUFRcERqTnRhMGpGZm03aFBRYU5odXpjaEJ2eHZLT3JhT1RCaGZLS2FjbkJJSVBQS0E3c2pqTFdza3lIM3FhNGo4ZFZBUUVQSEE0eWhZS1cxMGFJS2lCLTdoeXU3dEV0S1NkVDh5SXlKSzRfaXlzanFzTmZ4REZPMU5QbzVlVVlza1V0c1B2TXFNSGR2dWh6RWg3bEI4czVheFVjZjAzeThQd3Y2TVBHU1YxVXVIaGhsNURaSHRSdURJaThWMUJFcm9SMWZzRUlxTGZlRTZtRFRmdDl2UDFUOEJjTl9XQUM4djNYVGo5TWwxY05wZnFlQ3RQRVl0U3JCeFdpQ08wMVpYVEJVbm5LMGc5allrTVJWWGJCRkxPZUVGWVYwdkxpbUt4bmVvdjhNNTZZOVk3S3VHOE1LWlVVeXA1bjBpbTc2RXZLMXd4cVNGTFNzY0JIS3VPRzJfeF8wNE54U2x2ZXo0aGluNy1vUW9IOHhLOUpvR2Y2dVlLZFJBY201S0hZbGNPRkVscFk3ZUxPNmtBSFhvQ0RJSlpaXzF5dnlNV29GeHVlUjF2b28wU1BLWWc5V1gyczk0aVI5MWhvSkZfZ2tVSjN5eFdGQmVFVk9GQ0VINmdyWTN5X2pObzRIeTY1MnE1QlcxampkUHhCRXlkVVRUenhWeG5lOFV2Qk4ydUtBYkhyTXZkT2ZYcjNfa3FvSUg5RS1VLXNzVENpeUVIS185VWpMLTBEOUpkYmVyMl8zdlZVUmVWTTRaTWVFY3pucU8xRFJhYlJDVzQ5Uy1GaGFsT0t5bzNsVExMSlR2OXZpcjFnYVNFcU1ZNGYwN3ZXZmJtcTFWNDRYMFVmakhLYmpWYlZaYldjVmZpbVZGeEY4cl90blBVcnExZVUzM2hxNGJtVmlFQkZLOFZSZ1N2eTF3WXZRZHBVbFlTamgxTThVNlNOZVktRGFPOTA5SXJUQThzZmFOR3pOcTlLNkljaVgwWFhJMnEzeGw5RVhOWVByQWg4M1UxSXY1a0c3Tmx6eXZhMkxWLV9SUnVMUjF3YjJ5ZnhUTy1BSXZ1UUx3VnJqa2tmXy1uNVltc2t4aW8xRFp3ZzlPYzBYYzFjZGNOS1RBb1NTdlUwUV9zNWFWNi02QzE0cV93SjhzZXJtR05mUnlJVm9tb0tBZ3hVdTdTSkZCQjg4TWg0dEJJN25fa2x6UGVReXZjMU8wV2EzTlRfOFd6Q2I5YUdiZlQxYXhTaEY1RlZBMXRpTzNSdkNBZjBjM0VzLUQyc1BONHp5M09RNWRIY2xBV09VRGtHakliVFlzVnc2ajlCalo5V0txSTdXbk9aeXBXOWZjeTZIU0JwWDlwUHB0XzFya1RDbkxWTXdCU0htTXZTLVlTTVZjWVlSZjN0a2UzMFRIMjV2NUh5MVpwRnBWa1RkTm82WkhWNEROeWJNeHNWQzBlZmpCeFNCUFNUSjdoZmw1Wm1JLVJfd2RpbkZGUGY5WFE2ZlF3OW9oV1ZBVWhEZ1pBVVVleHV4MjZsYVUxYktrY2luMm15RE51M2U5aGtZSTVSOWxQclJCOFo2c3JkRmxiU0RPSVg1UENnVTVQYU1TZml1SmNnNmVfVC1Bd3pvRTJoZGVNaTZOVVpxSzA3S1gzOWJoRkp1b1NjVm5mNmpTdVpGbDlQSG5pZUJuZnVMV1F5cW9WTm9jdmpfV2pYZng0ZGVmcHQ4MzVDNkxpRVhaR2pFZTFiR3pJcnNXTW9ZeXVIcGoyRDFsM19rZi1pdEdPYkhlVm9NV3lJS2pLZnZBbFlMNmtUMmVjRFVhNEtKRnFCSmhnM3pKWkYwb2F2S2dKc0JDSkhXenV2RXR0T1F0R3hGQUozSmE4ZmdDNTA0cXJJYVlsVVdYaUdvcGxLNVI5bkZHdEFXQnV4MUpYYkhMNVVfUE00YUw4UmFKNVl3ZThyQkktby0zR1FITFFXX3RJS2xjQzdyUm5pZTgwSjFOTUNXVTVxejl2QWExbXhZQ2VVU2Y0VHlMcXk0eHpBNEp6VTlKWW5EWGxid1N4VE8wQUNKSUIteGVjN0lTWDdzS21SYmoxOE44X0ZJYnEzaTEtQTd6VWM3UExXd0pqWlFoS2p4ODdoUkN0djRmNzE0V2w2dDF0djhvczF6UkdTZURKMWgteHZ2dW44RUxadTdQeGJVZzBla0plRVhnX09tc3NPMzlXYUpNMHkxNVM2YTlIQ2xsZ3ctWjhqT1dzanQwVlhBOEhhNmpJOEROb2tiZTVTSXp0amRGQTV3Wkc1Y3BZbHN1b3R6YmlPbHFqSWNxSS1hZkcxMzFLSUdDbU02bC1QbnQzNUdqSHJkVzlnd3RUSkE4Q0FfdUdlRHJuUnlQWlVDX2luUlpycl9DRFcxN19nT0xOSnhuampKM0g1VTRzaDBoanZYVk1nY1BkdllFOXlFcU84Z0pYQWk0b1FRSUMtM2loYm9qYWtpblBNdjV1US05aG02XzdUVk1mTlFMejN6b09tT0l5emprQnpPV1RmUmpPSFhJRjgzYjYwaGNJWmhwVm85Y3ZvbWtzT2ktWTc0TjlOVUlDVUdvdmxNdldVSG1aYWJTNmd1VHRFczZSTm13akYyNzQ0cDhxTnNmMVJ0V2x0TEY3UXpwaS1XaW9WUm5tT0pqQVJ0Q29Wcy1BSjdvcVNnN0l3OEhYUVJDdXc1NXk0T1NWRW54Wm9NZ0tsdTNXVlBCUHN5NU5YODN1YTNwVjZwSzNKMDRMZE4zQk1WbWV6MkRDcUV0ZWdJT1J5WTljT0NZM1NtbUQtM3dEUzdXd3ZQSFp6U3JBbWt3X05CMUZLZkZDWkJ0T3liN2lCNDRkVDRxVjlVcHAybDEwcHJ0LVJxMjRwZlRaU0dqZFJ3MWJtcXJ2RGo0WjBiNWFCaHFYMVFCckoxZXdYSjIwcUJZekdLMERoLTRLUG9BcVBJSXVjc2lWLTV4YVI2TVFJVXVXbC1OS3VKZkZBamFsd2hYU2x5QXZycl9EUGFNWkhYOGxxd0VtdHBubmZPUGpiR1dNc1pLWW1LY3pGVGViaEVUb2V0R3FmWGQ0bXpQaGkyX240by1RTjU0YThvMFdJWWxwaE5kT0pNNGZ3ejdhZVMyMGFxYnZKc05iSi1BYVZ6VFJCc0tRSEZSMzhlcTk4aWNKc1hSd2FQcmpKTUtzbDlrT0ctZEFKNWZYR282eGlINUt2MUVWNGVya1FkTFRrLXhva1hlb3ZuNmx3QkNfMVF3MzJPUWNmQWh0UExFcDRaaHREdEVKWkZrTmxrRmlvZGFKNFBJa2lOdkdGMzlwVWNLNnlHeElIWThUejAyeC1pd2xhR2pPZU9CbkRzZjM4UVg1STNWTUczOE0zaDN6V3UzdUVYZnBkOVg0UlMybngxb3VTdEtrdFZFcjZuSHhSTmhNdTVMcFZ2bzBWa1JvS1ZIdkJaeWF3STI2Yno2RkdPaTgyUlMzU3Q5VXdsWkpndmI4X08xZmFIUlZhbEh0MHpJSDYxRlhNdXA4Wl9LanJ2Q0dYdEYxV2FWRlJMNjBOMFVBQVpSaFc1ejU4dmpsLU14RC1za2FhUlBlZzd3S0Y1QVB3RlBBb21KZy1NTzA3TW9ZajhLcDdVOE5Ybzg0dXQ5b0pDN0diYi1USndXbHQ5QllLN0d6Y2NhMU9VU1ZESlVkYk55Y3dwWGlieDNKdkljUTZwbHFVSlpzVW9mX2xySUtqZ1VGTjR5ajdzSlJmdUNZZmdHSU5yLWRTNXRqTEpucWZpRjBHUk56MEZZU3lfNmtTdFJEa3pwQ09Xam1LNDhZaHhLa3dUSktFVG9GNXp2T2o5WDRHX0t1YmFFZ0p2dDlwNkZvWkRVTEhlVTRHdFVTRnRyRVdNVGFRT3FPeWJDSHA2NGxydXdQSFJuN2k0VjJaa1lFa1p3WUw5dGRQMzFicEdOSkhGVlJjYU1fYlpFZnpCVTdaVzFfMktUQVY5ZWFza085TUpGZTlraVg2X2xydVNMQWlXMjFmUEhfZEZWR0VLeVozOE1DS1dKZHIwZDRGanBkWUhyYXU3bFJ0bUdjSWtTcWZ4NXhCdkR1dERmdXFkM1hSMnUzMXVzUVJRcVVMOGJJZTRkUFlZX2p1YmpLRjNDbWJRa01QNXlkZmlRaTdjc19qanZnVGVIYUxrc056bmoyUjlFa082dWMwaFhEdGRoMUZDbDZSTU1pTTJBZDd5MDJ2RU9raG1GU2RraDFieUQ2eWJvYUN0T2JrcEdXYTI2TjlTNWFQMk5DUS1HQmVhTF83SXc1NkhQN1lYN0VxWngxOVRBYVNNQWM1WGFZZVFtUEc1WXRqSEliOXdOMTVjQ2tkcmNQWDlxTUp4clNwdm9zbXRHc3FrTjhLTWFyUEJEempRMm4tUENYOTB2Y05sUk9kZFg5a2M0dUNaSnRkUXFIbG5WMHhDa0lpWXJBbjl6Um9kdW52eTRLQVM5OGdwZmdzcVV3QVN6LWFmQ3lOSDFMVGZQakZPTEIyLVFuQjBYWWZqcjdVbG9Ba0JMZ1Rla3ZOM0hCcXB3Um1ydUpQQVRmdG4tUUNtNUpFSmlQaUpRM0UxZzQtX3h5RnlTeFRNMXdQVmR1THhqRDNZd0lEZ3hsRE5hSTBBY2pHRGNXdmhyU2dmcmpVU2xWWjZ5NXRXaWtrTE01TENpMEZYUmxlYWdNZXJKQVhmQTVtdE1MQ1o5T3BMVFMxOFRIOTVJTHNXbG10cXlXRUthOFRqYTBYYVVHeWdOLTN6d3FCNXFjYXFiNUJLUUM4TTlRcmJrTE5neENVUDdlREVEdktoVnNIYVpFUm5MYldmMUNTQXFIcDRRN2Eza0toNEVDRW5tQ1F2VHAyM3JPclZlRG0xUVJFQVRZVy1YRzMwZHAyT1BCRW51dmlpU2U1Tl9JUGpoWktidEI4QW1FcVFKUUpMZ3dtZmRtdWNhb25NdTRfMFI4elVwX1Z5MkFibnI4elJsUTVrcTlSVnI0R3c5UkdOdDRFeTZ0ZU1RNnNPcW5BaXk4NkZ0Q0txRm8wTTZ2NENHdjFpUzI3MUVDTkRjZFNIYVJNUFVDNFEtQjdMZjVIYlRBdTNTcUc3NHZPYmF1YXRrODhJRkNNWEI4Z3MtMEdtZWVfemFxTlNGTDd1aWlrOGltcEt2Q1NIYi13THBfWXBRWnMwRGVYdjdYWTBWV0xFd1VVeW53XzUwNkNBVFlTYk9FV08xeTVWc0JuNmxuSWxSUEVNdlA0QV9aQ1pPWERQWk9KMWFsU0F5MXlLdUhqb0k5RzZsWnNLTEt0eElBZ2U1bjNvb1Q3c211WVdfUU9MSzgzaEdTMy0yc2tob0dXWkF2SkxUM3Y4RldyVFZ4R3FYanR2WjhEMk5UUHNjNGVmVGJ6Y0pfZnJ2UlJEZUtGSkhseVFDU3N0MldOdllfNTFtczRHam1WMzNYWDFmZjdMTzNWVVcwNV9uX0NlWThKMkt4MGhFZTlmNnFpaUpzYXd2OHhXNDZvS0pOU2dPZGFLV0g0d0Exb0dVVURFSVczclBsU2hkUGpDYl9tOEdGZHd0VlRDcEtVVjhlTFJPbnEyZ3hiSUFPQmF6MVVVdm91clZtX25WTHRTSTlxdjlVVWdLbGNOOU1qUlk2dkpEdllma21tMk9QbTNkTGRIeUhDc08zR3d5MGJoUFlScVZ3MFoySUw1dkNLT2JuZVA4UkRxMmp0aXBTTkZrajdlbl8xa1lyc3lnd1lXWVRsU2NXSGE4VlpYUTM0T1JLMVZ1cUppMVpYUHlmbGFEN2RIQ0JSV2JacHQ4cE5TUkJCMGNNdWNTd3pDdGhrczVGclQ5U1NpU2Nob0Y2a2VudGZtZ3c4ck9OVzRfa1JJaEVNbXpCNnd6dnlMeHAzSFdvV2Zac2t1ZDRXWEpTTk16VDMyMUl6TkE3aXRRZ2ozQ3djRjk3SG9zWGdpczFhSzNNYThSMUl0U0dwRmhVTGZFT25oeVBURDhwTWo2ZWdrcjZ1WWFHSEVSNmhmNVdoNFJScU1DNkQ5RDdTeTBESWp1NzgxN2RVVE1SMXFXTkhBbDZJNEk5R2pHaXZnRlZKZEViREtJXzBaaGVFbmFOUHA2S1ROZnItTkZIUDhzYmllQVZBcC1RSUNqOXdGRG13OTBqTTZsWklhOXpYbkFMSGI4SlBSOEtLUzJrT3JJaXFLUjhJSEhXd3NlcF9nOXJwTnA4YVBxRDF6N3pGdExMSjFLdEFIMDRJWkFEbndmZmxTdkF1WVlaY2R4OU1saTlON1RDbkV3TllSRnFFMHZiR182ZE9wdmQtV21KbVBHWXRqYTN0dTJ6M1lsUnZqaTJaSHlCVTdZaEt3RG80bDBaTjIxQ3c2T0ZiV09JVFR5Z3haRjdDVEZlaW05Z2dXQjUxWkFrSWtuM2J6bHpkTkxycnhHaTdxb0pjeHMxMUhmdkREcXZ0eThhN2kzWjBJblNTX0lnajlmaXlrNlBueUZkRlJNM25ZMWhQVHI4Yk9wMDhGYVI2TFRaN3JYSmZ2UkZaRzZNR3haSjZNS2dQVHpEZDZycmFmQWJtZlZuenZNY3k0cnlwZm9CLVhuTVZzb2NTYUU1UXhQbkNPV3FRVzNaLXdIR0JrZWM3Q1dacjNlVUdEWmhqUWstR0k4UFA1bEpWUTBCT25aclFBWktCMHkyMERjaWMyUm9JeHdnSnhMUzAtakVMMmRvVm1EaTJTUGY5eXVxYmNIVEpLLW9Ba0o4MC1yNzk5N2JNSGpCUWpHd2JiV2ZLdnEtNDBxYVpBYVNqNGZicGc1TkJteVNhNVNFaXBmemR0a0lYc2Jfb08xUWRGbGxxenowZGNCRG1HbE9FaENpb3lxWHpoNVFkeEEuRkFfYzA3ZTR3ODNoaURQMERrTGNQZw\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "9277" + "9477" ], "x-ms-client-request-id": [ - "e221a49a-18de-4caa-a151-47ffe7cd60bb" + "a833808e-138d-4026-9afe-427872f293a6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/BackupRestoreTest/ca1b3304124d42048dc931669190f7b7\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"g60mOugoSwfCZecx4imcSwd12D0a3ivntZmTpXqijfrO3Bfu2K8NjF54z0si5fWj_jekR538BAODTAaDrDMwdZFnZrxZinmmOaZ6UaUPGb5pQZlii5_Kq5rTKxnWhSM5s7axhrHfZXGrt-OANS6P00AT5w9Vpteo-kDY86iQ-tCf-2clXVoboKyxw0AABasUUX--wT3sbGj1rNRpsdhrzqaGfpo8xsTcmqTfwcCO0Z-wDbyQ334FbmKlPRR4Qy6YIeh_ssJwVbxyVbY1uOZnnqSoZV1TM01rAwpR5KH6Rpu-EV_BwNbwOaDQs_e8LZwjPjdSVsvjwVrDaSg6XRZqLQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1477082133,\r\n \"updated\": 1477082133\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/BackupRestoreTest/de83072dee6d4f7886947b6776e66d1a\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"qIJMru9B0l7lPVzdxoYXMnRmKZnodMkXRoBTTmUSgeV3FWZcEnOQ_OKrP1UJJF2nrhYU3ExcAqf8Z86flgSMhQrlSIe1V49r8psggNHgtWrI_gCNs0HOp4JPlwaCTp1i1GscnKAYXoDuEg7a3X5yAW7bwYxV_UQREOodFz9QYpMjt4nvKHLajGO6h2jJ5W71fXMUpsuhAR3BL9GFfBq6uJmdl-MwOZZanQGqcqZMt5gThUXS2g_7Xnm7aiKtEaztXlr3S9LLfA791sZW5lWv5WaHcVilKybBVfR0Y0urCEC9GykfE3Epkm0boKRj6BudaBMk0t-VWNRgCP2sXySP5w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1483991568,\r\n \"updated\": 1483991568\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "660" @@ -295,7 +300,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:33 GMT" + "Mon, 09 Jan 2017 19:52:48 GMT" ], "Pragma": [ "no-cache" @@ -304,13 +309,77 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "54e28905-8f29-4a19-bd56-08e59f51adb8" + "dffff270-81e4-4625-83b3-05f298298f94" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//keys/BackupRestoreTest/?api-version=2016-10-01", + "EncodedRequestUri": "Ly9rZXlzL0JhY2t1cFJlc3RvcmVUZXN0Lz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc00621f-9444-4495-9863-e9cef8075b72" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/BackupRestoreTest/de83072dee6d4f7886947b6776e66d1a\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"qIJMru9B0l7lPVzdxoYXMnRmKZnodMkXRoBTTmUSgeV3FWZcEnOQ_OKrP1UJJF2nrhYU3ExcAqf8Z86flgSMhQrlSIe1V49r8psggNHgtWrI_gCNs0HOp4JPlwaCTp1i1GscnKAYXoDuEg7a3X5yAW7bwYxV_UQREOodFz9QYpMjt4nvKHLajGO6h2jJ5W71fXMUpsuhAR3BL9GFfBq6uJmdl-MwOZZanQGqcqZMt5gThUXS2g_7Xnm7aiKtEaztXlr3S9LLfA791sZW5lWv5WaHcVilKybBVfR0Y0urCEC9GykfE3Epkm0boKRj6BudaBMk0t-VWNRgCP2sXySP5w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1483991568,\r\n \"updated\": 1483991568\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "660" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 09 Jan 2017 19:52:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus" + ], + "x-ms-request-id": [ + "5babc4b0-993a-4584-945a-5461d97cb694" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -330,8 +399,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net/", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "d015b4371d884032b7138b49e82102c8" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateAsyncDeleteOperationTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateAsyncDeleteOperationTest.json index 11e511ed1bda..ebc6b72100f7 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateAsyncDeleteOperationTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateAsyncDeleteOperationTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//certificates/issuers/issuer03?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaXNzdWVycy9pc3N1ZXIwMz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/issuers/issuer03?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pc3N1ZXJzL2lzc3VlcjAzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"provider\": \"Test\"\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "26" ], "x-ms-client-request-id": [ - "ca55ff28-9d14-4962-9a67-8d0a1f68925f" + "e04fc919-8bf6-43dd-86df-3eddf23d5405" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/issuers/issuer03\",\r\n \"provider\": \"Test\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477015823,\r\n \"updated\": 1477082042\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/issuers/issuer03\",\r\n \"provider\": \"Test\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1481851672,\r\n \"updated\": 1482188952\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:02 GMT" + "Mon, 19 Dec 2016 23:09:12 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "6f301083-0bd6-4dd8-b380-f4aa75865e44" + "3ac27a78-cf1b-4a10-9554-3a017080ad15" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,8 +71,8 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/deletedRequestedCert01/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvZGVsZXRlZFJlcXVlc3RlZENlcnQwMS9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/deletedRequestedCert01/create?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9kZWxldGVkUmVxdWVzdGVkQ2VydDAxL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"validity_months\": 24\r\n },\r\n \"issuer\": {\r\n \"name\": \"issuer03\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -82,16 +83,17 @@ "506" ], "x-ms-client-request-id": [ - "a7446013-b059-4e07-8cbf-a1401811e123" + "4a4a9529-eabb-432c-a2f2-49e3ac4b4082" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/deletedRequestedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer03\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnTRdwoypd5RPyN4eJzssodvXe0LSAPsuAet+Wb7eJv6+Sxonr3r3xltz0jh8wiRvdJ3ASp9xyyT46LxBkNbtSf7BqZRX5uxfSLX+jCX+iH8Zt+5M0KGv0Ngp3OJBdVlgZvp40c43bhiwP8R0GohMe3+hawTTElqjSKehd72CcVp27fXcMyswwBfZSJJKh/CdbDAfcmlGYYswcGU1BZNn6EMj1cAa7wMsY6RubAwqP3+Qk21vzWUqqRj/hX8scgZiL4HSu01i5LThniO++yNTXQO1q2vXAca7mc0zPXzGn1oNr6LqHhPcRqPpZAZfy4DU2lcuEsZNohkDZDc1gOmlAQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAJLs4M85RTxQnVlCK6pj6P/WvZhLtjr2wbwlpb/tpELrpoearmcwNGuqa54B7H2SlhfpO1msCl4DIOAXAanAELFPDsjx8tIO+FumlhjZWiIqD874njpWN4Ywycq8NCXarJmm230q0pGwcnmf0fDCPNoRqKZ6IIzvRSxGdgRokEgAXZ246sLppbXQ5kGxGzvJaAN7EYgbXwDUyDSf5nDEP7Tpjc0lA8j9xBz54GzecrEFl3Vy5sI21BKPF+SnVQgE50dCfIWpnQpKvNhEpE/IbBpNqYq+Jdc23UIPaSzDZcQ0MB7k1MACiQ5AKBOacOKxKfIDnofnIbhgJV2vBq4hv/4=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"606362bb9be44d1e8ac8dc32774cc4cb\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/deletedRequestedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer03\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApf+kGcL+5uivj/ToYbQ15zcx3caEnpzXaX2eJgL0/Kwaz4u2/bNJ9+hoXnlOFFbCp4canVoNvgu8fw5NOu9U3gJNFQwjHeAqfsg8okZGkIk0riIpp4MMb/4GQb2y3B28AcTu2FANdzLoZzBqmQs51KBe1RONkdtqDYXIvnb5G+9+P7PCy5G//Ga0JAP6Y6P8+TrE9JLEj6Sny0ljLMpMyt4rIRAtNfKYSeiWVQmYX4jZfImIW3iq91zwMsRlrzTm80mNfHPCv7V/8NmYuh0MQgCr49lLbbKCgzDyo9h8sblVQvR5TAylpIk7bSQNf4tSdVNHnsF6CJWu6Pg31hyMpQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAHVjmYFs3FmecaJ1ExhK1WCFJaQJUTVbPJ1xJ93UJlLivhzI1yhQO9nMC2DKV+E+UCxceqjae6OG5LUhXfYAziS0HTc80+ZcUqrZRb5ZRt+8HU0TPbTDDqjj8wMZ4VlgQ3eXGAGesMfZV3AqWwa5itofvqm8KAmL4Yn/XMSHcKfRx3h9WnC6RXgZ8WNYK+r5o+gHlmuF7/AaNFh8UjIsjjOZQ0Yin/vA4yBEYTt1/OC7pScs3bdL9CIf4rC98qaMSf4B2W/vfrXUo0gGPYcep25jy7xnIltSY80Trn3Mty5YQ0IT+KPQcJKhbryGg6bIy4jJDwS7zkn51MR1q3kNoOA=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"b88791e33d9c4d609d3e3cc3d2d40d11\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1385" @@ -106,25 +108,25 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:03 GMT" + "Mon, 19 Dec 2016 23:09:13 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testvault1020.vault.azure.net/certificates/deletedRequestedCert01/pending?api-version=2016-10-01&request_id=606362bb9be44d1e8ac8dc32774cc4cb" + "https://testvault1021.vault.azure.net/certificates/deletedRequestedCert01/pending?api-version=2016-10-01&request_id=b88791e33d9c4d609d3e3cc3d2d40d11" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "a0c472bd-7886-462a-8008-6ec07b30cf4e" + "ee262cbb-c50a-4b0a-b3f4-e9b9d841f198" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -142,22 +144,23 @@ "StatusCode": 202 }, { - "RequestUri": "//certificates/deletedRequestedCert01/pending?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvZGVsZXRlZFJlcXVlc3RlZENlcnQwMS9wZW5kaW5nP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/deletedRequestedCert01/pending?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9kZWxldGVkUmVxdWVzdGVkQ2VydDAxL3BlbmRpbmc/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81a214a1-476b-4909-af38-2b6d9478ab28" + "e1f14d7d-a9be-45ab-84bd-49b0135d10a1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/deletedRequestedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer03\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnTRdwoypd5RPyN4eJzssodvXe0LSAPsuAet+Wb7eJv6+Sxonr3r3xltz0jh8wiRvdJ3ASp9xyyT46LxBkNbtSf7BqZRX5uxfSLX+jCX+iH8Zt+5M0KGv0Ngp3OJBdVlgZvp40c43bhiwP8R0GohMe3+hawTTElqjSKehd72CcVp27fXcMyswwBfZSJJKh/CdbDAfcmlGYYswcGU1BZNn6EMj1cAa7wMsY6RubAwqP3+Qk21vzWUqqRj/hX8scgZiL4HSu01i5LThniO++yNTXQO1q2vXAca7mc0zPXzGn1oNr6LqHhPcRqPpZAZfy4DU2lcuEsZNohkDZDc1gOmlAQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAJLs4M85RTxQnVlCK6pj6P/WvZhLtjr2wbwlpb/tpELrpoearmcwNGuqa54B7H2SlhfpO1msCl4DIOAXAanAELFPDsjx8tIO+FumlhjZWiIqD874njpWN4Ywycq8NCXarJmm230q0pGwcnmf0fDCPNoRqKZ6IIzvRSxGdgRokEgAXZ246sLppbXQ5kGxGzvJaAN7EYgbXwDUyDSf5nDEP7Tpjc0lA8j9xBz54GzecrEFl3Vy5sI21BKPF+SnVQgE50dCfIWpnQpKvNhEpE/IbBpNqYq+Jdc23UIPaSzDZcQ0MB7k1MACiQ5AKBOacOKxKfIDnofnIbhgJV2vBq4hv/4=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"606362bb9be44d1e8ac8dc32774cc4cb\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/deletedRequestedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer03\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApf+kGcL+5uivj/ToYbQ15zcx3caEnpzXaX2eJgL0/Kwaz4u2/bNJ9+hoXnlOFFbCp4canVoNvgu8fw5NOu9U3gJNFQwjHeAqfsg8okZGkIk0riIpp4MMb/4GQb2y3B28AcTu2FANdzLoZzBqmQs51KBe1RONkdtqDYXIvnb5G+9+P7PCy5G//Ga0JAP6Y6P8+TrE9JLEj6Sny0ljLMpMyt4rIRAtNfKYSeiWVQmYX4jZfImIW3iq91zwMsRlrzTm80mNfHPCv7V/8NmYuh0MQgCr49lLbbKCgzDyo9h8sblVQvR5TAylpIk7bSQNf4tSdVNHnsF6CJWu6Pg31hyMpQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAHVjmYFs3FmecaJ1ExhK1WCFJaQJUTVbPJ1xJ93UJlLivhzI1yhQO9nMC2DKV+E+UCxceqjae6OG5LUhXfYAziS0HTc80+ZcUqrZRb5ZRt+8HU0TPbTDDqjj8wMZ4VlgQ3eXGAGesMfZV3AqWwa5itofvqm8KAmL4Yn/XMSHcKfRx3h9WnC6RXgZ8WNYK+r5o+gHlmuF7/AaNFh8UjIsjjOZQ0Yin/vA4yBEYTt1/OC7pScs3bdL9CIf4rC98qaMSf4B2W/vfrXUo0gGPYcep25jy7xnIltSY80Trn3Mty5YQ0IT+KPQcJKhbryGg6bIy4jJDwS7zkn51MR1q3kNoOA=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"b88791e33d9c4d609d3e3cc3d2d40d11\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1385" @@ -172,7 +175,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:03 GMT" + "Mon, 19 Dec 2016 23:09:13 GMT" ], "Pragma": [ "no-cache" @@ -181,13 +184,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "4f4c6a18-2ed5-4d1a-87d0-7567f5d1020b" + "dd1a2395-bd2e-4e5c-b4eb-f22639a53bd8" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -205,19 +208,20 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/deletedRequestedCert01/pending?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvZGVsZXRlZFJlcXVlc3RlZENlcnQwMS9wZW5kaW5nP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/deletedRequestedCert01/pending?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9kZWxldGVkUmVxdWVzdGVkQ2VydDAxL3BlbmRpbmc/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "990c54fe-8ce3-4fdc-8fcc-5292f9bafae8" + "76af9e59-4b94-4bb9-b8b3-3efb3b2d5a7e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PendingCertificateNotFound\",\r\n \"message\": \"Pending certificate not found: deletedRequestedCert01\"\r\n }\r\n}", @@ -235,7 +239,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:03 GMT" + "Mon, 19 Dec 2016 23:09:13 GMT" ], "Pragma": [ "no-cache" @@ -244,13 +248,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "4d2b607e-cb5b-49fd-acba-4ff492972cd4" + "11b90b1f-7307-42ef-a421-132ffb93c125" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -268,22 +272,23 @@ "StatusCode": 404 }, { - "RequestUri": "//certificates/deletedRequestedCert01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvZGVsZXRlZFJlcXVlc3RlZENlcnQwMT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/deletedRequestedCert01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9kZWxldGVkUmVxdWVzdGVkQ2VydDAxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c251cdb-20e4-4f72-a394-8165bcd37fb1" + "d8bf688c-876f-48d9-9e82-03d87c719253" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/deletedRequestedCert01/f03fa482f8d148899392432b822cb475\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1477081442,\r\n \"exp\": 1540154042,\r\n \"created\": 1477082042,\r\n \"updated\": 1477082042\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/deletedRequestedCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 24,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"issuer03\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082043,\r\n \"updated\": 1477082043\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/deletedRequestedCert01/3fda1a30386f4eb5889dc715deab22be\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1482188353,\r\n \"exp\": 1545260953,\r\n \"created\": 1482188953,\r\n \"updated\": 1482188953\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/deletedRequestedCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 24,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"issuer03\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188953,\r\n \"updated\": 1482188953\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "919" @@ -298,7 +303,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:03 GMT" + "Mon, 19 Dec 2016 23:09:13 GMT" ], "Pragma": [ "no-cache" @@ -307,13 +312,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "0cdd33d7-77f2-484d-a1e5-30e9416dce76" + "27e0f80e-7a26-48cc-b564-73d3788b9d3f" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -331,19 +336,20 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/deletedRequestedCert01/?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvZGVsZXRlZFJlcXVlc3RlZENlcnQwMS8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/deletedRequestedCert01/?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9kZWxldGVkUmVxdWVzdGVkQ2VydDAxLz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "939e090f-8704-4203-8ce9-0a4fc35c80bb" + "ed9a4abc-e769-4ea0-8feb-4cc69cafc41a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": \"Certificate deletedRequestedCert01 not found\"\r\n }\r\n}", @@ -361,7 +367,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:04 GMT" + "Mon, 19 Dec 2016 23:09:13 GMT" ], "Pragma": [ "no-cache" @@ -370,13 +376,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "83a3ed46-8455-4db2-9c50-01dfe1d17c48" + "1d39b9fb-89ce-4e10-b91b-ca0abafa14f2" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -396,8 +402,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateAsyncRequestCancellationTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateAsyncRequestCancellationTest.json index c59dd6b1fc13..61a10d92da35 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateAsyncRequestCancellationTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateAsyncRequestCancellationTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//certificates/issuers/issuer02?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaXNzdWVycy9pc3N1ZXIwMj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/issuers/issuer02?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pc3N1ZXJzL2lzc3VlcjAyP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"provider\": \"Test\"\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "26" ], "x-ms-client-request-id": [ - "aa309905-2dfe-4f4e-826f-8dc868414647" + "8e2deed5-09e4-438f-b632-b7a271d25bed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/issuers/issuer02\",\r\n \"provider\": \"Test\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082070,\r\n \"updated\": 1477082070\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/issuers/issuer02\",\r\n \"provider\": \"Test\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188985,\r\n \"updated\": 1482188985\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:29 GMT" + "Mon, 19 Dec 2016 23:09:45 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "3f9eb8b8-2606-44a4-a456-615b04203a23" + "e7851bcd-56e4-4d3f-b97e-cf8ca2ac76ca" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,8 +71,8 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/cancellationRequestedCert01/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvY2FuY2VsbGF0aW9uUmVxdWVzdGVkQ2VydDAxL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/cancellationRequestedCert01/create?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9jYW5jZWxsYXRpb25SZXF1ZXN0ZWRDZXJ0MDEvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"validity_months\": 24\r\n },\r\n \"issuer\": {\r\n \"name\": \"issuer02\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -82,16 +83,17 @@ "506" ], "x-ms-client-request-id": [ - "5e6ab892-9107-4831-8357-7ebee7a50aae" + "0bd3a906-b281-4862-92f0-bf75b082541f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/cancellationRequestedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer02\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8yaoC5UA5iOFwOgW+7zv6q0+NJ8+cQXaJ4ltC23HWwFQo6C0+Cln8VKo3IZoyj7EqQ/KQAdMmeE86hJ/O+PEuAOH3Cd8mEIW00X50IAb3Kg9acc8zB2Se7TodlLumQWfXsZfJw4G5O9QZifYjzmCSgYGCnuXh67shb+q5IGx70LlldmQPI/3NAWrxYrKor4h8xltk11ADsCvpHXQKxZT6O5OO8qqAtb3Wz/5Omid7jQCOz547iE4OgVUha0jv4Hqd/zyJvifKF2C+nPX1xJWG1s4yPf1vPYrheUrPmAjZrb+mSWW/idjYpqyGOoFj8b/dyXGIYQTHiEOdjrv5ZHwOQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBALohxuJ17bpv7AIWmUVuorYmItyxvASU2IPuGLL6DXmCtSwLRokUmrgGtoU5iUBU+Y+V7t/xaEAE6gboPrxF77re8Jiohv4P1PSbTnHDj8BWHIO7QRUVI9OSA3ciMk/uDRLaZYcWFbGX16KoIzLLY/BFESgWJ/4vIGv2XQ8uLLWmUZ1t+oY+uQedis8pz7xBoaLgaofUORs84cRkIqSnXGvT5QBC7EqCCIKuQP2InGghEryOXgSzleaS6xkGOie+uk4bJtJ2F66htrn8zMFltYvf3nv/8noL2v0Q01zYgne+A5zvYdKWTlptsBlZmOtkUrqjlj2P0/YCxHIv5MZkeog=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"67da04636d0c428e9639b38cd63b9cb2\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/cancellationRequestedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer02\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxxM2zqnPtpH8aiHX5TdEoZLO0Y6fsjk9QcjKgnHomrwUc9vK20UYYEPKt9aGOT7HNx0do8OulPCnLPrKowci8UHu1qRW/qHvsOJQ/UrQoMCHxtXptVc7Avx8WQb045sCdgp/Cl4xO8LMZa70kE4dghZU9zmNZk8wqDIxyYdh1lqqfGe49EWOxcfszTeeKs8KCsQznjExbsudBHLLWoX4VFTGMe3VcIPcV6iFf70buHKznDMXFiRC0IYwkc/GyWIadB1CSEae8k/0evsPI5lYYZLaO/kLffEUtzysqxZNCQR+S0eVPTGTLHa+fndnPPs65XZDzSZi2fZL01oXUfCAQQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAKto/ZF9+02fQ3sLuIsRuap/O/AZz3IhAubNfyCaWvVGVAQz/Aqpf5c/liyKhxqRG6LR9Zu50oxRK5222ezR+56vJikjdXRVShf2xYsMm1CbCM1JuzsnkTeoUHHE12xx1srH/9TH+DVZIk6NXxc4wVIagbpwxiS5gR3Nly5k0ZVv7R1B79J0GUqSwK6qjuooWrBsYMEx319hz8fB/Y4jnPE8p+Cnn3AGEqnebVngXncq/QnHxnrRVfvKFVySqRvlsvM8buILmBbIaywEUqwhNtZX2i9E7reEJ8aeZcf+lAeKF3YDvffaXGTc75aiZlBk30Lv/hn0vs9T0/FedUnIae4=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"3dd81d528cc84c5a837c607f1a50f2e1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1390" @@ -106,25 +108,25 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:32 GMT" + "Mon, 19 Dec 2016 23:09:46 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testvault1020.vault.azure.net/certificates/cancellationRequestedCert01/pending?api-version=2016-10-01&request_id=67da04636d0c428e9639b38cd63b9cb2" + "https://testvault1021.vault.azure.net/certificates/cancellationRequestedCert01/pending?api-version=2016-10-01&request_id=3dd81d528cc84c5a837c607f1a50f2e1" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "60e897fd-aed1-4213-9b86-19870766b9fb" + "e967a147-c336-4e86-86d9-d5a27bbf9775" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -142,8 +144,8 @@ "StatusCode": 202 }, { - "RequestUri": "//certificates/cancellationRequestedCert01/pending?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvY2FuY2VsbGF0aW9uUmVxdWVzdGVkQ2VydDAxL3BlbmRpbmc/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/cancellationRequestedCert01/pending?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9jYW5jZWxsYXRpb25SZXF1ZXN0ZWRDZXJ0MDEvcGVuZGluZz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"cancellation_requested\": true\r\n}", "RequestHeaders": { @@ -154,16 +156,17 @@ "38" ], "x-ms-client-request-id": [ - "6bb9977d-a5ad-43e1-bacf-da0937b28ed3" + "7cce8584-66e8-41e8-aad5-2471eddc25eb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/cancellationRequestedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer02\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8yaoC5UA5iOFwOgW+7zv6q0+NJ8+cQXaJ4ltC23HWwFQo6C0+Cln8VKo3IZoyj7EqQ/KQAdMmeE86hJ/O+PEuAOH3Cd8mEIW00X50IAb3Kg9acc8zB2Se7TodlLumQWfXsZfJw4G5O9QZifYjzmCSgYGCnuXh67shb+q5IGx70LlldmQPI/3NAWrxYrKor4h8xltk11ADsCvpHXQKxZT6O5OO8qqAtb3Wz/5Omid7jQCOz547iE4OgVUha0jv4Hqd/zyJvifKF2C+nPX1xJWG1s4yPf1vPYrheUrPmAjZrb+mSWW/idjYpqyGOoFj8b/dyXGIYQTHiEOdjrv5ZHwOQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBALohxuJ17bpv7AIWmUVuorYmItyxvASU2IPuGLL6DXmCtSwLRokUmrgGtoU5iUBU+Y+V7t/xaEAE6gboPrxF77re8Jiohv4P1PSbTnHDj8BWHIO7QRUVI9OSA3ciMk/uDRLaZYcWFbGX16KoIzLLY/BFESgWJ/4vIGv2XQ8uLLWmUZ1t+oY+uQedis8pz7xBoaLgaofUORs84cRkIqSnXGvT5QBC7EqCCIKuQP2InGghEryOXgSzleaS6xkGOie+uk4bJtJ2F66htrn8zMFltYvf3nv/8noL2v0Q01zYgne+A5zvYdKWTlptsBlZmOtkUrqjlj2P0/YCxHIv5MZkeog=\",\r\n \"cancellation_requested\": true,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"67da04636d0c428e9639b38cd63b9cb2\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/cancellationRequestedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer02\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxxM2zqnPtpH8aiHX5TdEoZLO0Y6fsjk9QcjKgnHomrwUc9vK20UYYEPKt9aGOT7HNx0do8OulPCnLPrKowci8UHu1qRW/qHvsOJQ/UrQoMCHxtXptVc7Avx8WQb045sCdgp/Cl4xO8LMZa70kE4dghZU9zmNZk8wqDIxyYdh1lqqfGe49EWOxcfszTeeKs8KCsQznjExbsudBHLLWoX4VFTGMe3VcIPcV6iFf70buHKznDMXFiRC0IYwkc/GyWIadB1CSEae8k/0evsPI5lYYZLaO/kLffEUtzysqxZNCQR+S0eVPTGTLHa+fndnPPs65XZDzSZi2fZL01oXUfCAQQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAKto/ZF9+02fQ3sLuIsRuap/O/AZz3IhAubNfyCaWvVGVAQz/Aqpf5c/liyKhxqRG6LR9Zu50oxRK5222ezR+56vJikjdXRVShf2xYsMm1CbCM1JuzsnkTeoUHHE12xx1srH/9TH+DVZIk6NXxc4wVIagbpwxiS5gR3Nly5k0ZVv7R1B79J0GUqSwK6qjuooWrBsYMEx319hz8fB/Y4jnPE8p+Cnn3AGEqnebVngXncq/QnHxnrRVfvKFVySqRvlsvM8buILmBbIaywEUqwhNtZX2i9E7reEJ8aeZcf+lAeKF3YDvffaXGTc75aiZlBk30Lv/hn0vs9T0/FedUnIae4=\",\r\n \"cancellation_requested\": true,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"3dd81d528cc84c5a837c607f1a50f2e1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1389" @@ -178,7 +181,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:32 GMT" + "Mon, 19 Dec 2016 23:09:46 GMT" ], "Pragma": [ "no-cache" @@ -187,13 +190,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "cdd1541f-4707-4470-879a-ba72531e4128" + "d0281975-5851-4508-b40c-32a82024e43b" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -211,22 +214,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/cancellationRequestedCert01/pending?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvY2FuY2VsbGF0aW9uUmVxdWVzdGVkQ2VydDAxL3BlbmRpbmc/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/cancellationRequestedCert01/pending?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9jYW5jZWxsYXRpb25SZXF1ZXN0ZWRDZXJ0MDEvcGVuZGluZz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84367df3-3c0e-4fab-b015-02be6b2d8719" + "f9fb796a-7286-4040-a771-e6df0a711563" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/cancellationRequestedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer02\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8yaoC5UA5iOFwOgW+7zv6q0+NJ8+cQXaJ4ltC23HWwFQo6C0+Cln8VKo3IZoyj7EqQ/KQAdMmeE86hJ/O+PEuAOH3Cd8mEIW00X50IAb3Kg9acc8zB2Se7TodlLumQWfXsZfJw4G5O9QZifYjzmCSgYGCnuXh67shb+q5IGx70LlldmQPI/3NAWrxYrKor4h8xltk11ADsCvpHXQKxZT6O5OO8qqAtb3Wz/5Omid7jQCOz547iE4OgVUha0jv4Hqd/zyJvifKF2C+nPX1xJWG1s4yPf1vPYrheUrPmAjZrb+mSWW/idjYpqyGOoFj8b/dyXGIYQTHiEOdjrv5ZHwOQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBALohxuJ17bpv7AIWmUVuorYmItyxvASU2IPuGLL6DXmCtSwLRokUmrgGtoU5iUBU+Y+V7t/xaEAE6gboPrxF77re8Jiohv4P1PSbTnHDj8BWHIO7QRUVI9OSA3ciMk/uDRLaZYcWFbGX16KoIzLLY/BFESgWJ/4vIGv2XQ8uLLWmUZ1t+oY+uQedis8pz7xBoaLgaofUORs84cRkIqSnXGvT5QBC7EqCCIKuQP2InGghEryOXgSzleaS6xkGOie+uk4bJtJ2F66htrn8zMFltYvf3nv/8noL2v0Q01zYgne+A5zvYdKWTlptsBlZmOtkUrqjlj2P0/YCxHIv5MZkeog=\",\r\n \"cancellation_requested\": true,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"67da04636d0c428e9639b38cd63b9cb2\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/cancellationRequestedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer02\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxxM2zqnPtpH8aiHX5TdEoZLO0Y6fsjk9QcjKgnHomrwUc9vK20UYYEPKt9aGOT7HNx0do8OulPCnLPrKowci8UHu1qRW/qHvsOJQ/UrQoMCHxtXptVc7Avx8WQb045sCdgp/Cl4xO8LMZa70kE4dghZU9zmNZk8wqDIxyYdh1lqqfGe49EWOxcfszTeeKs8KCsQznjExbsudBHLLWoX4VFTGMe3VcIPcV6iFf70buHKznDMXFiRC0IYwkc/GyWIadB1CSEae8k/0evsPI5lYYZLaO/kLffEUtzysqxZNCQR+S0eVPTGTLHa+fndnPPs65XZDzSZi2fZL01oXUfCAQQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAKto/ZF9+02fQ3sLuIsRuap/O/AZz3IhAubNfyCaWvVGVAQz/Aqpf5c/liyKhxqRG6LR9Zu50oxRK5222ezR+56vJikjdXRVShf2xYsMm1CbCM1JuzsnkTeoUHHE12xx1srH/9TH+DVZIk6NXxc4wVIagbpwxiS5gR3Nly5k0ZVv7R1B79J0GUqSwK6qjuooWrBsYMEx319hz8fB/Y4jnPE8p+Cnn3AGEqnebVngXncq/QnHxnrRVfvKFVySqRvlsvM8buILmBbIaywEUqwhNtZX2i9E7reEJ8aeZcf+lAeKF3YDvffaXGTc75aiZlBk30Lv/hn0vs9T0/FedUnIae4=\",\r\n \"cancellation_requested\": true,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"3dd81d528cc84c5a837c607f1a50f2e1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1389" @@ -241,7 +245,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:32 GMT" + "Mon, 19 Dec 2016 23:09:46 GMT" ], "Pragma": [ "no-cache" @@ -250,13 +254,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "dda3a11b-04f9-4d1d-b43e-38dd643eedd4" + "ea3c8bf3-2201-4145-a1d8-c5b844cce56d" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -274,25 +278,26 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/cancellationRequestedCert01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvY2FuY2VsbGF0aW9uUmVxdWVzdGVkQ2VydDAxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/cancellationRequestedCert01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9jYW5jZWxsYXRpb25SZXF1ZXN0ZWRDZXJ0MDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2ffb533-f4f1-4801-9425-850e57da4e97" + "2af34bf1-ba5f-452c-9969-9bf09bb74ec2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/cancellationRequestedCert01/76e44ff2d87949609d6ca86ab461be95\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/cancellationRequestedCert01/76e44ff2d87949609d6ca86ab461be95\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/cancellationRequestedCert01/76e44ff2d87949609d6ca86ab461be95\",\r\n \"x5t\": \"-4-7y-Un73YP6XEX0vVCnT75NgE\",\r\n \"cer\": \"MIIDczCCAlugAwIBAgIQOhpjlfkTR/OpwqSdeYki9jANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wHhcNMTYxMDIxMTcxMDAyWhcNMTgxMDIxMTcyMDAyWjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDTDnxefPcuEydMtf62zqleFMt/g2wiA7ffRiwOYEPyxiD4bp1uaoCl82ofiP7fTY6gzAgAFntL+LeSBQleUPHVTafr4BjdnTiEFhM1+5n6M3SvAr6QXGsPmoFgF3e18893QNvZNXC5gmcxZZsiDPw3eQoKQhGW764zxn70teRcWGtv1wUBPvpakGJEf45jSM4H8KAtjbFwKq1u3/YKHeMofrLAFM/VYPIHD7DdTtl390kTbVjuwreJJnt86CMebxQ39zhEMd06IwYzvF3xPbf06rraLFeUxA2jQhR1gO9l0S8+wbI5bqmGXKl1rfC4kmiZNVNmyKPchZaSuoxQT+jhAgMBAAGjgbQwgbEwDgYDVR0PAQH/BAQDAgWgMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMDUGA1UdEQQuMCyCFm9uZWRyaXZlLm1pY3Jvc29mdC5jb22CEnhib3gubWljcm9zb2Z0LmNvbTAfBgNVHSMEGDAWgBQfOoGVh/em6ul3Ve6tTuiPzBiK7zAdBgNVHQ4EFgQURfC+s6leBifggSIvus8c7A4J/LAwDQYJKoZIhvcNAQELBQADggEBAI5CV4FLDx4rUriaLN394wrbYfJqI2Y1+mpQ3WocDTKaqz21LbtMAIemI4ntzq4uTev3uHVmXwElDZoCOf/EHeupCE43oW9c2/preXB0caETO4SUpmNU5tdRK4YrSxeHxz9VoJJPPjqanWUfX3LgJn3WRNa+wX01Ds+7waeDAEZJLqGShQMjqnUFfaeiORfTxh6m2dS8Ni7bHNPqRQWBSNk3XEyw3p+A4MBcGIEVJD0LWUG+ZNX+P8VqlpJEFc9OkRDpgwMG7yU9QDUrpYFkaLp9VUFN3+IFrxkbX+QQX5vgnexiEHip9dpIes1iVNKH6OC5JMChSdnRr3iEuU0FP3U=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1477069802,\r\n \"exp\": 1540142402,\r\n \"created\": 1477070403,\r\n \"updated\": 1477070403\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/cancellationRequestedCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 24,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"issuer02\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082071,\r\n \"updated\": 1477082071\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/cancellationRequestedCert01/pending\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/cancellationRequestedCert01/c1d7c70cee414744a34909368aa01b82\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1482188385,\r\n \"exp\": 1545260985,\r\n \"created\": 1482188985,\r\n \"updated\": 1482188985\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/cancellationRequestedCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 24,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"issuer02\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188986,\r\n \"updated\": 1482188986\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/cancellationRequestedCert01/pending\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2491" + "1035" ], "Content-Type": [ "application/json; charset=utf-8" @@ -304,7 +309,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:32 GMT" + "Mon, 19 Dec 2016 23:09:47 GMT" ], "Pragma": [ "no-cache" @@ -313,13 +318,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "e5b16137-dbd6-40bd-abde-5e221fd4fe31" + "59e2621b-9018-48e6-ae2d-ccfab7a50b5e" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -339,8 +344,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateContactsTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateContactsTest.json index 0f5259fc9e55..5de831cfa859 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateContactsTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateContactsTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//certificates/contacts?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvY29udGFjdHM/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/contacts?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9jb250YWN0cz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"contacts\": [\r\n {\r\n \"email\": \"admin@contoso.com\",\r\n \"name\": \"John Doe\",\r\n \"phone\": \"1111111111\"\r\n }\r\n ]\r\n}", "RequestHeaders": { @@ -13,19 +13,20 @@ "133" ], "x-ms-client-request-id": [ - "fa6fc760-0f83-48b6-bdc6-cf1663926abd" + "26da16eb-ba5e-4eaa-aabb-339cc660160d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/contacts\",\r\n \"contacts\": [\r\n {\r\n \"email\": \"admin@contoso.com\",\r\n \"name\": \"John Doe\",\r\n \"phone\": \"1111111111\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/contacts\",\r\n \"contacts\": [\r\n {\r\n \"email\": \"admin@contoso.com\",\r\n \"name\": \"John Doe\",\r\n \"phone\": \"1111111111\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "150" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:39 GMT" + "Mon, 19 Dec 2016 23:18:59 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "7d55ced1-6bf7-4a7d-84aa-5c24890f1b85" + "b3213f02-8ba7-4bc2-a025-aa00a36b930e" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,8 +71,8 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/contacts?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvY29udGFjdHM/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/contacts?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9jb250YWN0cz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"contacts\": [\r\n {\r\n \"email\": \"admin@contoso.com\",\r\n \"name\": \"John Doe\",\r\n \"phone\": \"1111111111\"\r\n },\r\n {\r\n \"email\": \"admin@contoso2.com\",\r\n \"name\": \"Johnathan Doeman\",\r\n \"phone\": \"2222222222\"\r\n }\r\n ]\r\n}", "RequestHeaders": { @@ -82,19 +83,20 @@ "250" ], "x-ms-client-request-id": [ - "c7d82cb2-dbf7-413b-8c54-f1a2f5d8bcb3" + "a692f59a-00db-45eb-995e-0c8fbf7e20b8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/contacts\",\r\n \"contacts\": [\r\n {\r\n \"email\": \"admin@contoso.com\",\r\n \"name\": \"John Doe\",\r\n \"phone\": \"1111111111\"\r\n },\r\n {\r\n \"email\": \"admin@contoso2.com\",\r\n \"name\": \"Johnathan Doeman\",\r\n \"phone\": \"2222222222\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/contacts\",\r\n \"contacts\": [\r\n {\r\n \"email\": \"admin@contoso.com\",\r\n \"name\": \"John Doe\",\r\n \"phone\": \"1111111111\"\r\n },\r\n {\r\n \"email\": \"admin@contoso2.com\",\r\n \"name\": \"Johnathan Doeman\",\r\n \"phone\": \"2222222222\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "228" + "243" ], "Content-Type": [ "application/json; charset=utf-8" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:39 GMT" + "Mon, 19 Dec 2016 23:18:59 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "e3ee5420-769c-4f49-9541-c961772a9412" + "abb75f11-2cb6-4366-b3ac-c6e3b12e5df5" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,25 +141,26 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/contacts?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvY29udGFjdHM/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/contacts?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9jb250YWN0cz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17fbbe1d-704c-4992-b653-3c5d3f202348" + "20b23e97-30ac-40b8-8fa6-6d7325f98792" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/contacts\",\r\n \"contacts\": [\r\n {\r\n \"email\": \"admin@contoso.com\",\r\n \"name\": \"John Doe\",\r\n \"phone\": \"1111111111\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/contacts\",\r\n \"contacts\": [\r\n {\r\n \"email\": \"admin@contoso.com\",\r\n \"name\": \"John Doe\",\r\n \"phone\": \"1111111111\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "150" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -169,7 +172,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:39 GMT" + "Mon, 19 Dec 2016 23:18:59 GMT" ], "Pragma": [ "no-cache" @@ -178,13 +181,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "2a82d8af-9a6b-4ea0-b679-ecd36af79b67" + "731d26a1-ef08-41ac-b9b5-f2f36361097e" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -202,25 +205,26 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/contacts?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvY29udGFjdHM/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/contacts?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9jb250YWN0cz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f970a768-3ccd-4067-93e0-28279cd57969" + "893c23f8-6dd1-4d5c-a45c-ed49b8562143" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/contacts\",\r\n \"contacts\": [\r\n {\r\n \"email\": \"admin@contoso.com\",\r\n \"name\": \"John Doe\",\r\n \"phone\": \"1111111111\"\r\n },\r\n {\r\n \"email\": \"admin@contoso2.com\",\r\n \"name\": \"Johnathan Doeman\",\r\n \"phone\": \"2222222222\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/contacts\",\r\n \"contacts\": [\r\n {\r\n \"email\": \"admin@contoso.com\",\r\n \"name\": \"John Doe\",\r\n \"phone\": \"1111111111\"\r\n },\r\n {\r\n \"email\": \"admin@contoso2.com\",\r\n \"name\": \"Johnathan Doeman\",\r\n \"phone\": \"2222222222\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "228" + "243" ], "Content-Type": [ "application/json; charset=utf-8" @@ -232,7 +236,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:39 GMT" + "Mon, 19 Dec 2016 23:18:59 GMT" ], "Pragma": [ "no-cache" @@ -241,13 +245,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "d5459ad1-3636-4610-832a-6ddba2a711dd" + "81d7c886-142d-4e3c-929e-8e7b0c467855" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -265,25 +269,26 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/contacts?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvY29udGFjdHM/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/contacts?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9jb250YWN0cz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f7533cf-f1cc-4f15-a7d6-714d7f5be43f" + "7f0174ce-5ec9-45ca-bc9b-a7d5dae8360b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/contacts\",\r\n \"contacts\": [\r\n {\r\n \"email\": \"admin@contoso.com\",\r\n \"name\": \"John Doe\",\r\n \"phone\": \"1111111111\"\r\n },\r\n {\r\n \"email\": \"admin@contoso2.com\",\r\n \"name\": \"Johnathan Doeman\",\r\n \"phone\": \"2222222222\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/contacts\",\r\n \"contacts\": [\r\n {\r\n \"email\": \"admin@contoso.com\",\r\n \"name\": \"John Doe\",\r\n \"phone\": \"1111111111\"\r\n },\r\n {\r\n \"email\": \"admin@contoso2.com\",\r\n \"name\": \"Johnathan Doeman\",\r\n \"phone\": \"2222222222\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "228" + "243" ], "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +300,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:39 GMT" + "Mon, 19 Dec 2016 23:19:00 GMT" ], "Pragma": [ "no-cache" @@ -304,13 +309,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "a2b6280d-b62b-47a6-ba43-482d2bac094a" + "043caa97-e64d-4687-9470-c9abb87d8969" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -330,8 +335,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "f2a7e60b8dd0477d943b3a9fb2a63f0b" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateLongSelfSignedTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateLongSelfSignedTest.json index 8614ba1090bf..cccdcf292aef 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateLongSelfSignedTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateLongSelfSignedTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//certificates/longSelfSignedCert01/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbG9uZ1NlbGZTaWduZWRDZXJ0MDEvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/longSelfSignedCert01/create?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9sb25nU2VsZlNpZ25lZENlcnQwMS9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"validity_months\": 24\r\n },\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "502" ], "x-ms-client-request-id": [ - "98e6d742-8be1-427a-9a55-3303ce5c61a3" + "7aa0c368-721c-4eb1-93a3-5ad7201802ed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/longSelfSignedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6uA+sZTL64v8cElM12AyhKrHRfTu++zRPSAoUFd2QIhSK9tFXF3Jv5V2sTeamdSGgw7BCSzEhYR57MYdOa5842Y4Zc961LFciv1CrZmbmx6HZBbM8MBgCzyIjl9jZySDwt0zIjn7rldvl6ujyj6vO7st0aTn3uYzLFJtPF6TgqJnOPcQPbTUKPG3Ty81SszOFSY8oV2d4rjrsUNSjB+s0RVBfXvp9sG/jCHvsI1Gk7FugSUVDAkNORrWv6NaPEjWRYAZaOaXgGbqYNuUlFochgEyd/MODWGPO2tcr7uWcglTqqJDmsUgd0rIZyQ5BJG4nbdStmU8yFKpRyQSIeSlowIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAJqmbjyOoBW900cF5v4u/jalgOYc8BueU9f4CdffaeN/tzUOttQ4vt4qGQZSuILHej52rpz1X+36ySE4L2unZs7CsKrLb/+HaummSQUmS+gTQ9UEzD6WOUV7L3wTRImLEzvmC/YRCni+Yu9Vr+l6COvu24RiviJCuBA6t5VMxt8eh++Gqhfq1/OBZSFyiJzHZ7xYkU4AM81HImx8WJKEvV3rd8q/nOS47atWv1KGtQ6tvFpX4vJYiRvM2IWphtIFVYfg7gcRLAMWMI13jEbqwy3xtgBCzSUGOauZd+ZQtknZc5oDDewWZOO9EJL27uPG7dEVa4hsqckunCUTjo9Z0/M=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"ad1f27b40f3c47b69946b6c0c8699ba6\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/longSelfSignedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyYs0UBNvj6qMoJR3I5pdtEAncICkMmFVupRC5DifN5gHqmQLRMzKa9TwEdYn6EEQsU9h4dYojS7Aab9pb3zItjZLTvE6nwOQ6sHySc3bOxXDMFL13yvSFJwjV01WK3ja9d100Hv8HpkTS0cYRYU8fszUQ9MBeGABDw5jhhrXQ6m/H66SPZ7lGdr3rUGVGC2CQoxayfOMCCN9Q8KMsVktHd6tRPWX3tbSqzORJhWNY1tUVgIYHL0y2Am5cdPOFP6A9D03BlKtgOiPbpbIxxOXSloOphwM5wkpUPRilqu6XpF6wvqS0gC88/KegAsl/zrhoy+BUMx8eoR9FNLAtlpY9wIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAEyPQJdYUf8VVG4iUhHwIwLQCrNZ1ykP/HcCW1bDYehvLpmJXaTGf3ucnL3dmXpFESNEPAU8Qnkpe1UDExujs32J2cA1bV5Nif8JrRBnoDl/gKoTTGqZskngGQqH6hpCsqgqBxxmPpAp3DENKPnRW5+ZbDnZD6+/vKSeLvFO915/ZBZ5NQOXMI/eG3DrOoEx0bDvZt4ML3Rr9ykfMVOI0Td6PKM5+mSmhQUCkGSPfsLqPVVE9Oi0ZFteR2lCVJ6RBmY0IX/iOOB7UqIA5mmEE/3Fa2gHiEpP4bbinGJoqTYe/vkZxMV7NGUhGe2uusK9EBwoMIcsNn8bKABl22Wj/ec=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"f6496e5e4b464617834a86849123d67a\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1379" @@ -37,25 +38,25 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:42 GMT" + "Mon, 19 Dec 2016 23:09:58 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testvault1020.vault.azure.net/certificates/longSelfSignedCert01/pending?api-version=2016-10-01&request_id=ad1f27b40f3c47b69946b6c0c8699ba6" + "https://testvault1021.vault.azure.net/certificates/longSelfSignedCert01/pending?api-version=2016-10-01&request_id=f6496e5e4b464617834a86849123d67a" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "fa27aae3-3121-4bcc-a988-f56f5e34376c" + "18145011-fa5e-4ee1-a68c-aab1a693e508" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -73,22 +74,23 @@ "StatusCode": 202 }, { - "RequestUri": "//certificates/longSelfSignedCert01/pending?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbG9uZ1NlbGZTaWduZWRDZXJ0MDEvcGVuZGluZz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/longSelfSignedCert01/pending?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9sb25nU2VsZlNpZ25lZENlcnQwMS9wZW5kaW5nP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "504bb07a-fe2e-4503-83c7-cb40a362a6a9" + "4182d7f7-fde3-4ff3-bc35-a1063ead8f73" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/longSelfSignedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6uA+sZTL64v8cElM12AyhKrHRfTu++zRPSAoUFd2QIhSK9tFXF3Jv5V2sTeamdSGgw7BCSzEhYR57MYdOa5842Y4Zc961LFciv1CrZmbmx6HZBbM8MBgCzyIjl9jZySDwt0zIjn7rldvl6ujyj6vO7st0aTn3uYzLFJtPF6TgqJnOPcQPbTUKPG3Ty81SszOFSY8oV2d4rjrsUNSjB+s0RVBfXvp9sG/jCHvsI1Gk7FugSUVDAkNORrWv6NaPEjWRYAZaOaXgGbqYNuUlFochgEyd/MODWGPO2tcr7uWcglTqqJDmsUgd0rIZyQ5BJG4nbdStmU8yFKpRyQSIeSlowIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAJqmbjyOoBW900cF5v4u/jalgOYc8BueU9f4CdffaeN/tzUOttQ4vt4qGQZSuILHej52rpz1X+36ySE4L2unZs7CsKrLb/+HaummSQUmS+gTQ9UEzD6WOUV7L3wTRImLEzvmC/YRCni+Yu9Vr+l6COvu24RiviJCuBA6t5VMxt8eh++Gqhfq1/OBZSFyiJzHZ7xYkU4AM81HImx8WJKEvV3rd8q/nOS47atWv1KGtQ6tvFpX4vJYiRvM2IWphtIFVYfg7gcRLAMWMI13jEbqwy3xtgBCzSUGOauZd+ZQtknZc5oDDewWZOO9EJL27uPG7dEVa4hsqckunCUTjo9Z0/M=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"ad1f27b40f3c47b69946b6c0c8699ba6\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/longSelfSignedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyYs0UBNvj6qMoJR3I5pdtEAncICkMmFVupRC5DifN5gHqmQLRMzKa9TwEdYn6EEQsU9h4dYojS7Aab9pb3zItjZLTvE6nwOQ6sHySc3bOxXDMFL13yvSFJwjV01WK3ja9d100Hv8HpkTS0cYRYU8fszUQ9MBeGABDw5jhhrXQ6m/H66SPZ7lGdr3rUGVGC2CQoxayfOMCCN9Q8KMsVktHd6tRPWX3tbSqzORJhWNY1tUVgIYHL0y2Am5cdPOFP6A9D03BlKtgOiPbpbIxxOXSloOphwM5wkpUPRilqu6XpF6wvqS0gC88/KegAsl/zrhoy+BUMx8eoR9FNLAtlpY9wIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAEyPQJdYUf8VVG4iUhHwIwLQCrNZ1ykP/HcCW1bDYehvLpmJXaTGf3ucnL3dmXpFESNEPAU8Qnkpe1UDExujs32J2cA1bV5Nif8JrRBnoDl/gKoTTGqZskngGQqH6hpCsqgqBxxmPpAp3DENKPnRW5+ZbDnZD6+/vKSeLvFO915/ZBZ5NQOXMI/eG3DrOoEx0bDvZt4ML3Rr9ykfMVOI0Td6PKM5+mSmhQUCkGSPfsLqPVVE9Oi0ZFteR2lCVJ6RBmY0IX/iOOB7UqIA5mmEE/3Fa2gHiEpP4bbinGJoqTYe/vkZxMV7NGUhGe2uusK9EBwoMIcsNn8bKABl22Wj/ec=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"f6496e5e4b464617834a86849123d67a\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1379" @@ -103,7 +105,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:42 GMT" + "Mon, 19 Dec 2016 23:09:58 GMT" ], "Pragma": [ "no-cache" @@ -112,13 +114,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "91bad590-856e-4a7d-8788-3ba7e3f210ae" + "106571db-c623-4b60-860b-7c20f538f227" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -136,22 +138,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/longSelfSignedCert01/pending?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbG9uZ1NlbGZTaWduZWRDZXJ0MDEvcGVuZGluZz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/longSelfSignedCert01/pending?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9sb25nU2VsZlNpZ25lZENlcnQwMS9wZW5kaW5nP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c7972bf-4203-4493-af67-48dcca765cf4" + "65c0eefb-b9c2-4977-962c-0f5ee032e087" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/longSelfSignedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6uA+sZTL64v8cElM12AyhKrHRfTu++zRPSAoUFd2QIhSK9tFXF3Jv5V2sTeamdSGgw7BCSzEhYR57MYdOa5842Y4Zc961LFciv1CrZmbmx6HZBbM8MBgCzyIjl9jZySDwt0zIjn7rldvl6ujyj6vO7st0aTn3uYzLFJtPF6TgqJnOPcQPbTUKPG3Ty81SszOFSY8oV2d4rjrsUNSjB+s0RVBfXvp9sG/jCHvsI1Gk7FugSUVDAkNORrWv6NaPEjWRYAZaOaXgGbqYNuUlFochgEyd/MODWGPO2tcr7uWcglTqqJDmsUgd0rIZyQ5BJG4nbdStmU8yFKpRyQSIeSlowIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAJqmbjyOoBW900cF5v4u/jalgOYc8BueU9f4CdffaeN/tzUOttQ4vt4qGQZSuILHej52rpz1X+36ySE4L2unZs7CsKrLb/+HaummSQUmS+gTQ9UEzD6WOUV7L3wTRImLEzvmC/YRCni+Yu9Vr+l6COvu24RiviJCuBA6t5VMxt8eh++Gqhfq1/OBZSFyiJzHZ7xYkU4AM81HImx8WJKEvV3rd8q/nOS47atWv1KGtQ6tvFpX4vJYiRvM2IWphtIFVYfg7gcRLAMWMI13jEbqwy3xtgBCzSUGOauZd+ZQtknZc5oDDewWZOO9EJL27uPG7dEVa4hsqckunCUTjo9Z0/M=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"completed\",\r\n \"target\": \"https://testvault1020.vault.azure.net/certificates/longSelfSignedCert01\",\r\n \"request_id\": \"ad1f27b40f3c47b69946b6c0c8699ba6\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/longSelfSignedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyYs0UBNvj6qMoJR3I5pdtEAncICkMmFVupRC5DifN5gHqmQLRMzKa9TwEdYn6EEQsU9h4dYojS7Aab9pb3zItjZLTvE6nwOQ6sHySc3bOxXDMFL13yvSFJwjV01WK3ja9d100Hv8HpkTS0cYRYU8fszUQ9MBeGABDw5jhhrXQ6m/H66SPZ7lGdr3rUGVGC2CQoxayfOMCCN9Q8KMsVktHd6tRPWX3tbSqzORJhWNY1tUVgIYHL0y2Am5cdPOFP6A9D03BlKtgOiPbpbIxxOXSloOphwM5wkpUPRilqu6XpF6wvqS0gC88/KegAsl/zrhoy+BUMx8eoR9FNLAtlpY9wIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAEyPQJdYUf8VVG4iUhHwIwLQCrNZ1ykP/HcCW1bDYehvLpmJXaTGf3ucnL3dmXpFESNEPAU8Qnkpe1UDExujs32J2cA1bV5Nif8JrRBnoDl/gKoTTGqZskngGQqH6hpCsqgqBxxmPpAp3DENKPnRW5+ZbDnZD6+/vKSeLvFO915/ZBZ5NQOXMI/eG3DrOoEx0bDvZt4ML3Rr9ykfMVOI0Td6PKM5+mSmhQUCkGSPfsLqPVVE9Oi0ZFteR2lCVJ6RBmY0IX/iOOB7UqIA5mmEE/3Fa2gHiEpP4bbinGJoqTYe/vkZxMV7NGUhGe2uusK9EBwoMIcsNn8bKABl22Wj/ec=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"completed\",\r\n \"target\": \"https://testvault1021.vault.azure.net/certificates/longSelfSignedCert01\",\r\n \"request_id\": \"f6496e5e4b464617834a86849123d67a\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1297" @@ -166,7 +169,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:03 GMT" + "Mon, 19 Dec 2016 23:10:19 GMT" ], "Pragma": [ "no-cache" @@ -175,13 +178,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "cac2fc3f-b303-45d9-82b8-7c1a293f6eea" + "e4db16f6-bcd4-48df-9de8-52dd09c8954c" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -205,16 +208,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c057408e-7a09-4d29-81a3-e253def8b075" + "630cf45e-4b5a-4046-a5b6-3e500c85777e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/longSelfSignedCert01/5b2079cae48449e5b4a03dd3a0ba3b18\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/longSelfSignedCert01/5b2079cae48449e5b4a03dd3a0ba3b18\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/longSelfSignedCert01/5b2079cae48449e5b4a03dd3a0ba3b18\",\r\n \"x5t\": \"WbKidbWJU-o_XD-ZwUIzLYp8Vrg\",\r\n \"cer\": \"MIIDczCCAlugAwIBAgIQc5nVETnzQmaHLUj4r6Y37zANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wHhcNMTYxMDIxMjAyNDQ5WhcNMTgxMDIxMjAzNDQ5WjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDq4D6xlMvri/xwSUzXYDKEqsdF9O777NE9IChQV3ZAiFIr20VcXcm/lXaxN5qZ1IaDDsEJLMSFhHnsxh05rnzjZjhlz3rUsVyK/UKtmZubHodkFszwwGALPIiOX2NnJIPC3TMiOfuuV2+Xq6PKPq87uy3RpOfe5jMsUm08XpOComc49xA9tNQo8bdPLzVKzM4VJjyhXZ3iuOuxQ1KMH6zRFUF9e+n2wb+MIe+wjUaTsW6BJRUMCQ05Gta/o1o8SNZFgBlo5peAZupg25SUWhyGATJ38w4NYY87a1yvu5ZyCVOqokOaxSB3SshnJDkEkbidt1K2ZTzIUqlHJBIh5KWjAgMBAAGjgbQwgbEwDgYDVR0PAQH/BAQDAgWgMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMDUGA1UdEQQuMCyCFm9uZWRyaXZlLm1pY3Jvc29mdC5jb22CEnhib3gubWljcm9zb2Z0LmNvbTAfBgNVHSMEGDAWgBRTNs66rw6P/AZ9Jc3RVGatddIS7DAdBgNVHQ4EFgQUUzbOuq8Oj/wGfSXN0VRmrXXSEuwwDQYJKoZIhvcNAQELBQADggEBAM7VcwXI4B+V9z2kSTrPCnZeR+KPlWIHEVN+UGhHyRM4b+rW4D2Iq3yTJ/3JRgnbHoreBk6fH0UFg1t5No+ciDwa9NSs/AM4xDQlLHqB2F7nYgnyDsWZMncY8GnDAVbSy2NYD3A76f+pnYAB7/QVTryuklF6PcIY/I7QaSYaA8A9iaV0W39RtEUmTeuNoaSPCgMrziL3xkbCgPzb+fO3D2jGN+Q0MfzeMY1FDv7XH/5p4gdbXD7oO15+O6+0sQCSjnOdg1+MKyLNHk+AIDuhc9bmzGapGy18jxmXPm2kF2eSImC/aTqxyyW66wybuaj78kcZuUdlhP1Czf0muthEvls=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1477081489,\r\n \"exp\": 1540154089,\r\n \"created\": 1477082089,\r\n \"updated\": 1477082089\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/longSelfSignedCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 24,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082082,\r\n \"updated\": 1477082082\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/longSelfSignedCert01/pending\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/longSelfSignedCert01/0f4c7943215e487b85cd769dd891dd01\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/longSelfSignedCert01/0f4c7943215e487b85cd769dd891dd01\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/longSelfSignedCert01/0f4c7943215e487b85cd769dd891dd01\",\r\n \"x5t\": \"AHRzeVzkRAPJe3VX6Wg-_Y4tblw\",\r\n \"cer\": \"MIIDczCCAlugAwIBAgIQP67LkHCuS+W67oLumOkVcjANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wHhcNMTYxMjE5MjMwMDE1WhcNMTgxMjE5MjMxMDE1WjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDJizRQE2+PqoyglHcjml20QCdwgKQyYVW6lELkOJ83mAeqZAtEzMpr1PAR1ifoQRCxT2Hh1iiNLsBpv2lvfMi2NktO8TqfA5DqwfJJzds7FcMwUvXfK9IUnCNXTVYreNr13XTQe/wemRNLRxhFhTx+zNRD0wF4YAEPDmOGGtdDqb8frpI9nuUZ2vetQZUYLYJCjFrJ84wII31DwoyxWS0d3q1E9Zfe1tKrM5EmFY1jW1RWAhgcvTLYCblx084U/oD0PTcGUq2A6I9ulsjHE5dKWg6mHAznCSlQ9GKWq7pekXrC+pLSALzz8p6ACyX/OuGjL4FQzHx6hH0U0sC2Wlj3AgMBAAGjgbQwgbEwDgYDVR0PAQH/BAQDAgWgMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMDUGA1UdEQQuMCyCFm9uZWRyaXZlLm1pY3Jvc29mdC5jb22CEnhib3gubWljcm9zb2Z0LmNvbTAfBgNVHSMEGDAWgBRFBZgo1tZFswYLInoYvgXBaUZULjAdBgNVHQ4EFgQURQWYKNbWRbMGCyJ6GL4FwWlGVC4wDQYJKoZIhvcNAQELBQADggEBABFIlF498XOKBgrzHlvbj5eAMhmg9gwmIXySY+Micw5hsUrsIryi8Y26yjMnJYwPDR4b8Mqs2eFPmU4AwKWpA9ljuTa+y4BV0u+7WWR6GnoauzuY4Na34t+5R5/yRLHImBz44+QjVe7c0KoJ7x0Gn+4E8mWFxDULyKcEwHwJhFFB7TzuZmcA3EZfQCfl0CDIaVF1s6cjnzAW6cp+/RtC2f7GFW1Xhye+t4mru2BZ3pMsLKDKbO2mw9yipR23Fss1SOOp+8me18MF1QhO9Me20qOkjYOKoNuM2eTqd33obepoLhHAL1dxKPED4eDta2eO15DxrBGclm5BGl1byUNRxxw=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1482188415,\r\n \"exp\": 1545261015,\r\n \"created\": 1482189016,\r\n \"updated\": 1482189016\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/longSelfSignedCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 24,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188999,\r\n \"updated\": 1482188999\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/longSelfSignedCert01/pending\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2452" @@ -229,7 +233,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:03 GMT" + "Mon, 19 Dec 2016 23:10:19 GMT" ], "Pragma": [ "no-cache" @@ -238,13 +242,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "f1c70f49-90ba-42af-9516-5d7d4c4d4976" + "7f5a3942-6230-4121-8257-6cfde341d17d" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -262,22 +266,23 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/longSelfSignedCert01/5b2079cae48449e5b4a03dd3a0ba3b18?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvbG9uZ1NlbGZTaWduZWRDZXJ0MDEvNWIyMDc5Y2FlNDg0NDllNWI0YTAzZGQzYTBiYTNiMTg/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/longSelfSignedCert01/0f4c7943215e487b85cd769dd891dd01?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbG9uZ1NlbGZTaWduZWRDZXJ0MDEvMGY0Yzc5NDMyMTVlNDg3Yjg1Y2Q3NjlkZDg5MWRkMDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cbdf079-1d5d-457a-ad96-6ee23f105c8e" + "0df215ee-62cd-445f-8655-42c9bfe4d785" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"MIIKfAIBAzCCCjwGCSqGSIb3DQEHAaCCCi0EggopMIIKJTCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAg+WW9jdi9CSwICB9AEggTY+gOsbNwzZPs53S6ASZ6u9ULn/Dp2lgLGUL8FACdniApJiVZUhDJTWLTbGpBnaYhshvj4IfJ8Y5f7HFW4moNxKqVSXIygTCwUrZtS5cMJJNPKJ4dFmSjQVPnr/iMkqHhOQdQRpUgaITMGBwa3+lcw6HKvmnC1zMeRV4uCZ57r3LAQ3PGUHdIO5uyhIMxnyGaef40rCTiEiRDdlQk9HBwnyt8/ZxDrJ3hbFOrc+oq1qW2RY+dLWfoMXpnpoL1bOP8nMzHaQqK4gcjEdFMnCyGiVMFNy3k1rtgLciZjEZ4t/v8KTd7Ja15LBnxW5A5fE53GgIuccQcGzFsIP5lmOq/OMWWb5g1LjBsphGLVQ+OjIaWljNaxxI4dQkTQDl5fZ8h+a26VkZPPnv4WfFMvk0r2N/JNKls7XmeaE7NJMLr5zveNozZrrbqrqu/HpaVHhkWBhPCYpfOl9fj2g+WvE/iUAhIGvfd/nQza6uMHkG73jvnX8++rKWBDFSAGEucyg8RLqRcrKf9kZ55d7+Ob4nVNfFeqFIGB8Jve2iRBcf7Qaq15yjeGaAk51iXRzTPP0vTCiXpPMElO42N2uxi54dmU/I3kOdSZzzDscMTQIjgZfob/AUr54KRCJJBFFSkWDWkkPWKSlOlOt5wVGCuCDGkvRb0uyi0tJuE3ieS3TICC54+/FqjcoEDRogin29Mb3+xF3OVSyGf/AAaKKasVjZAHEWjXO7wS5Apc37bWtoYddSC7jm4RwcHl1rCHlHk/LIEa4OqpYTtdeeabWMTQSV/f6j+3goMFP1hQONUUEA/GzGJ3Xq+NaNZuxW0HOuaNHRpd36qNX5am9CL7WrPeFRNw5J/Uv3h5V+9jcZ9yrv/eObbF2bSISPFQjUlTp88G3JqAMCWR99bart7r+ahQveFh5IVCJZrj4CdZCpFkYQS+nfh7+KUD9zyb7A+hMs6JQrEbFeGIY0nABdMEvSDbjg2V9oR3qQp5kk9F60ioo3FHqW31PQeLZPw7C8blIWrhrrqQ1oHYSZLUwQ4M4+rk4aNfvp3NG4o4lEXAuGyt1dZ1H//aAlEqWCBc4DcrIGnsRve4oBaEpHEBhXChaMEDuEYIkzDnKshszv/Jw6k0jEJWUF9SsiNS5bSCb+Y/njzjLCYzxLuHwl1CLo3CUb+4oLXSWLS6IR5hZeQAhiYGqo2h6rcnhajrndt4Y7lGLIjGoKSTMN5VrpmhjwZkF/DGUx3lR06GeZwY+B+tJLjgNKN/zb82JEl1/gEw9uBfEXIRqR2I3M6PKYaBerpSVFZKb9gDVMZ/1+noqpcv9stcUgbMJ+CFQew/QEy5jTZSFR1VtgoxUIMmWOocFIBrxCR89nplj8KdRryNigywe2Im+jYVBcuxZK9fBwpEhGvRIdMi19maSA1HL62I/lVJEuJYI1pp+j7JM30bV1+Muk8q+n24QQT0H/tsMAlAjwlzrMX4LPMCN9T5c6uyA3IhQIKu8Upef+6dAIQEw6TMkmiIdQlTHJ0JHXYBEuw2FLPqigdE57ZYHbUove53D1sBlNxKbnLYRlLOH9XSUK5gq3ulRzyBZyjX+j0HwGMOz3RGmWJ+V60W6dRTkvj1IFbnEZygkM+PjDt2No4FVaC1sg0T9KiWlSc+VG+LVanEiTGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADIAZAA2AGQAMwBjAGYAOQAtADEAZgA4ADQALQA0AGQAZABiAC0AOQAzADgAZAAtAGYAOABiADkANwBkAGMAZAA2AGQAYwBkMHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIIEBwYJKoZIhvcNAQcGoIID+DCCA/QCAQAwggPtBgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAg9veeCjc9ElgICB9CAggPAKYmZB8uK6XqoVga/n7nUdY3nC0mBQLCXpmVxtLrcasJWLWW4F78z5OzstbM/ScwJXN/vxoQaJN1Nlueci90eVdZnXal+Rh7BNflg67lMhOzpRRV9/QpJ+4TTfHaxQS823/eFOWX4+AnfpgVdR7PxYLVYp5W8utAUOTV15emPYvzhWZquzhoA1Um2ympDs6gIDNAhRb2t/s97c5rZsNDgL6jGOdSpdOd2i19PHONuZk5TA1oiyAYvYuJU02bx6KLPpilhyGcquq9U2vnbXdYygUt7eXJM0xi+KNKNZSVfJzbpJSqiIJW4jtidQx9Smd7NL5F2D84//qLXrpENgXAOH+L4kAJO0vt4s2vfpRBV6BYBMEIHMGC4laJhiVLzqWQQK3Jcd9N7BY5vgsnYXk6fcyn0tzh0B1HpYlepH9Uqu0+UzaW/WezYRQUoQIG3XueutCP6ARpPtWwFzxRIWlRj8MXDsgxPn9FG2C8GGqBXUuqy/2RMwhQHhuSkaNMIFo3HU26Taj/CNom8QfKortbRQnOwHYmDcET+YnQX6O4OmtNjjL7mF2ppLd+ZNr9SMQSMqGoAa/sIO3VtD60orKlTsgXMWiv4jlOwEjnZVoTO9ys4njTdfJ9UX4xxCfBqm4T1XGWhsc4fsFB4oS1w8X0hVVB+aKI1DElT5xogEdss0VzIEGUPtTT646RnSHxXpnbgAKKvJZIXy8Bed7kU/unixcM6gbA0/ATtuPJDOEokT0J1qTy74ZZ2qP98PARpjL0aDE7LqfSKZYEvQAdQQrDxt2y71yZvES5+0fXFwTY6MUFCO/94ZObtapq2/A8zo6B1X4HzXsF0KsQ+xRCXQPssn6GRG2LfCJHMixSlxOBu7M6/025T/FYUcNu1DuojHtv29rgJQyRPDL9eHaTsOIE96BBe53bX1rQYFsDC0WWMDcvrhSsO3gEo1qGLhBfaW825P00Knl0Qdvqv4ac+YXoWFXbSHKeNjPo+eL56elANGqrkk4DHga9xQdHHS8O0N78pS4CUM4p0xWJ0P9UTdwilbapuKyV3Zjk8wH9EMS3PaFfigdgn5Lig9mEJEFPOd6nHrw6VGerq8b69MjgvAfc/2nrIfohkpRhO3T3lunQacGsXk4lf20HfkZgOkTd7fNUzZo45rnnNRZ+xmdIJKLB/ZmgaWOBSbPjIpMp8trS0988bsw9gTV3aHCcaL9VjD195vhFum1BkamZyLelHqyYLU/RODFqvfr8XhwmkjUPDt9/krsj2AVZsbfXPUNKlP7t8MDcwHzAHBgUrDgMCGgQURt1EMAU9kbrir2LGBBimonFtPoIEFCx/vMRAtl/kgPD+3DXjHt6Rwgjv\",\r\n \"contentType\": \"application/x-pkcs12\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/longSelfSignedCert01/5b2079cae48449e5b4a03dd3a0ba3b18\",\r\n \"managed\": true,\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1477081489,\r\n \"exp\": 1540154089,\r\n \"created\": 1477082089,\r\n \"updated\": 1477082089\r\n },\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/longSelfSignedCert01/5b2079cae48449e5b4a03dd3a0ba3b18\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"MIIKfAIBAzCCCjwGCSqGSIb3DQEHAaCCCi0EggopMIIKJTCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAhlvfoT2pS8OAICB9AEggTYp1n2Pq/pQv6mOOmnMUaqN+thNKJwGomD36VsH8AStPCU3H7qNHrcNzM3e5vvUzKfho3uaB1xiuKoO5LiLEo90smL0aqVZeoCnbPgQtukaLqLwGCyyKI7HYdJgu1Bzc4vN8uttbV1DWGNm+hTJUPGTmvvKTTsgfEA7rAUPKGxWzvod7lmPkBoljkvWggO3RMs2ZOb0ZdLU39CWSaecOC2flfTboPT6KqIyKevbWrd2weF+Abzhkjp/ciw5Ydenu+lB4+tiMQ1529n4RTeZ0Af9mKHcidL6M6t7eUJoV5tXztmuO8T2XSsXqzpENgb+MHUYANa0rdQwMWNuTPeajndLuULPEmjoLYZKscmDBr+u1GjYvy6i5SFMzRpi4dOlWFDXc2wceXtBWsG2gf8BWsS6kYBmkCR7rinv5UE1seuCmiTs8COyEfAY7KLvBLJpxMRPIouS2G2rK+stYwDHM516wRiS0xM7irpU0LgqYlhLYYUml9yYDBYsnntMUJXKWMMGkKqKtfBmOYEXTblxqS5soAAl+JiK2t+A0hU9AK0oOFsZ3RzlrBpEDS6xFbS9NQiy6JtY7BfEqMY15zxAJa3kqsBRfSU8Ll2f7qu39q/JkCUVYMgPGOKXmNkaaXjfSPWYnp9+OqiQ8tr6ezXAX3DOB2PmldRUuSaNVd17Doi40PVMUl7mG9ofHzEYkAgXgT54dZFxBfAn3hDYzy8PY3RXz+Iy3sLK9DNdM/kHS0Ngbb3hok0Hw9EWjGUMFCng1J+k775zvR5Jk+uoLwHLiLKaYeoUE6Es2LHJ1qGFl+PdRC8FDtRWPx+zQ2RZCSrvcDdnlpWdzJZ1tLLymRow549W0R6ozDBxQxGBLZG/vVsDIxWGhddDj0z87Fwc2miEVZptWaRUdB3MkLLZuuU0AmQVYchuOT2lRJeW6psLmwjn2fo4k0aS9I0mXNTaWGFrNOmtBd8GU/JaZonGyO2Iksx5GdJrqK/im7OvVM2wNHqWJwDuEyRxUnp0HdETWFgtHfzP86Jo8TmnRIxC9GW1vqtRcWzzQdYbzD11PiJQrrmyoV/MQgyoidy1369eqhQ8S2vOl4d81OsTnQGaXMmzEX5MC67oq09u7s8g5zwBqUkCbz063Z2K15YFO9vmFjXur+JIZhJHJxz0Cc75RLNXUV5vAMje/oJFwOZys/7Ar167q1iBvkMdUPeB2zTk3ciwE/fldmwe0y1A9+n1XjfGzp+EnMcge5r88aScaK6aGC+x6zS+KcnXnzwGLQtKtV6EzDKxSzRRNQ7Y8U4p6sIiypmIJS5AP5dNmFq6E53jqetv0F4e9YQHVtqGh32maFxDKLlL+O/1LcolaXiG+ywwnyq9XGwl/c6ID3TIh4GBnyH7YMrhu3wnwCNkg0PTDeEGbxwgoPzbT2+i31N3MKmHPULrz83zMOu7M1VZiCaBiTPQoFjm+jv/gq4c+EZI0oMh6mjAvlpOI/i/xNoDe3qa6s2zUY13qE0bahB+A3UKjO0aoiFiVRaQV9KEM0opagjAwyunH3Qlbl3IG1LSZBroV1G/aMp28/cLWH6rtYq2udSXFOf1eI9aIN+n5cH+wOQ/qHidjveTAQMtUwmyv0wIikt0UIm38KA3vyoiXNqse4cDycZ6JHHcZPUmjGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADgAZABhADkANQAyAGYAZgAtADgAMQBjADEALQA0AGIANwBkAC0AOAAwADEAOAAtADAANwAxADkAOQAwAGIAOQBmADMAZQA1MHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIIEBwYJKoZIhvcNAQcGoIID+DCCA/QCAQAwggPtBgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAjLT09xL/VEvAICB9CAggPA3/5BdfJosSMyjyT1vGtUjdpSQNFlrnwLvao+PGGuOkLCmeFtCL6k/IGdtQyrIwTu5+kjYWdgCXYgvGVuhA8tlmfqkj2HJ2PmARUcS0VF3HOl72kF4StIrbGDGQhBKkifOVAD7osMg8Kf75flqrUZO1gFJCK7MXOvKyJ9JM0jiHJ3A7FKioeWezxxdugQ12dzIKjj6/OOEnp5KzfwuSONwOja4eI86iJKO3lhncvc+2Ar/OuRCNYY1RWWHNvCYb1xq5ce7p9WDmmeiGqaRTqYWJ6NpD0C34sL9p1sAWe+aR0Vpgize/tVRF+OFWUSUkG1o6UMZtPmH0/7/UFzRJgIo5d4zVdpYz5y5BVEyWxrJ4W+FAOyagtmOfknu/uDEOH55IzwNubHawwtSB56giynPj2NPj3b7TyABseO5XyLuWAi/ZsosZa/BTx0HjyF0fMuf+X2d5hAvl6Pu36t+h84DutPhHliB5cPbBNbbhEHFTLPI1nTJP6Lhc9fl/7npl5D5wq8ND9+IBSDgcPkVubX26UtawFATZfjc3pSULs3csWExcw4MBevdV2JHQ+83laVQ8wx0s3gOHYdAU4NQLH9HDuQUWMexazhMDNNXLvN72zhrfcfACKtpsuSpu1q/hEPS8vjBj4nsXA95pfgzGsJuOQliySU88d/4NfdtvOtp6Qvc8KUeI3QmNoKZRAQf6At+lZvt+qHzG7ZmKpcmU7EJ/N8askacp59rXVreFhBi9HAWpjLyqyNnGyNWH2upwOGcljOzPyw/EkFKp/lvU9sQu76Hf8u/nnl/N5JYIAANspzyZbkuenqmPoyxtWOzihjTZcgctcfp+O1MFJMpzDL6+/b+sv9cdTVa/tAgiELZEh5IRS3Aya/g3cuNdoyfX/e3ls+Cv9voQAEHj22GO3D/OtRwHw4QB9HbrUekoNpaQ2G8/W60z+7yO8a/L5blLRtKqgiYjpGhKesH9H5FQJ9j6C1Rf1i72wYbwIIUB7P2Da4pEvtrvYtXTaC1dtWViGFiVxnrOVGIUfZK/cuTfrZs3ZA7JF31JsjGclhQwlr6RyLBivQI7VmKpI6j2oT6jDKuBIWRLxRElxLUVURiZUGuodyGESjpS8k+noxnbm6UUZ1UJkUnYjz+4EpRrAtrXSNORPhh+ACctCfmpvAW+15A1YUx/FYIBnbKGOL85UqI4BoZooAm8ZFGRZ5TBR4gsiOHBfPtpEJiKZ2Y0lvsb/CFO3JlgZDuVzgitDZF5MWRIigDOzYWyHepcMvJampLyWUMDcwHzAHBgUrDgMCGgQU4nm7mmYqm7pKEuLLxH+xS4ai1VMEFLr8Cmmtz9aFU2OI4bJfAtf++7+m\",\r\n \"contentType\": \"application/x-pkcs12\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/longSelfSignedCert01/0f4c7943215e487b85cd769dd891dd01\",\r\n \"managed\": true,\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1482188415,\r\n \"exp\": 1545261015,\r\n \"created\": 1482189016,\r\n \"updated\": 1482189016\r\n },\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/longSelfSignedCert01/0f4c7943215e487b85cd769dd891dd01\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3966" @@ -292,7 +297,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:03 GMT" + "Mon, 19 Dec 2016 23:10:19 GMT" ], "Pragma": [ "no-cache" @@ -301,13 +306,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "abe2a50f-0a47-4b81-a2d0-f3b52d6553cd" + "ad7f3f80-a1fe-4621-87fd-ce95decd478e" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -325,22 +330,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/longSelfSignedCert01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbG9uZ1NlbGZTaWduZWRDZXJ0MDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/longSelfSignedCert01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9sb25nU2VsZlNpZ25lZENlcnQwMT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb5044a5-e14a-435a-9681-e07ec4cd89eb" + "6e7c7c3b-f76d-45e5-8ae0-97ed2eed3875" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/longSelfSignedCert01/5b2079cae48449e5b4a03dd3a0ba3b18\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/longSelfSignedCert01/5b2079cae48449e5b4a03dd3a0ba3b18\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/longSelfSignedCert01/5b2079cae48449e5b4a03dd3a0ba3b18\",\r\n \"x5t\": \"WbKidbWJU-o_XD-ZwUIzLYp8Vrg\",\r\n \"cer\": \"MIIDczCCAlugAwIBAgIQc5nVETnzQmaHLUj4r6Y37zANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wHhcNMTYxMDIxMjAyNDQ5WhcNMTgxMDIxMjAzNDQ5WjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDq4D6xlMvri/xwSUzXYDKEqsdF9O777NE9IChQV3ZAiFIr20VcXcm/lXaxN5qZ1IaDDsEJLMSFhHnsxh05rnzjZjhlz3rUsVyK/UKtmZubHodkFszwwGALPIiOX2NnJIPC3TMiOfuuV2+Xq6PKPq87uy3RpOfe5jMsUm08XpOComc49xA9tNQo8bdPLzVKzM4VJjyhXZ3iuOuxQ1KMH6zRFUF9e+n2wb+MIe+wjUaTsW6BJRUMCQ05Gta/o1o8SNZFgBlo5peAZupg25SUWhyGATJ38w4NYY87a1yvu5ZyCVOqokOaxSB3SshnJDkEkbidt1K2ZTzIUqlHJBIh5KWjAgMBAAGjgbQwgbEwDgYDVR0PAQH/BAQDAgWgMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMDUGA1UdEQQuMCyCFm9uZWRyaXZlLm1pY3Jvc29mdC5jb22CEnhib3gubWljcm9zb2Z0LmNvbTAfBgNVHSMEGDAWgBRTNs66rw6P/AZ9Jc3RVGatddIS7DAdBgNVHQ4EFgQUUzbOuq8Oj/wGfSXN0VRmrXXSEuwwDQYJKoZIhvcNAQELBQADggEBAM7VcwXI4B+V9z2kSTrPCnZeR+KPlWIHEVN+UGhHyRM4b+rW4D2Iq3yTJ/3JRgnbHoreBk6fH0UFg1t5No+ciDwa9NSs/AM4xDQlLHqB2F7nYgnyDsWZMncY8GnDAVbSy2NYD3A76f+pnYAB7/QVTryuklF6PcIY/I7QaSYaA8A9iaV0W39RtEUmTeuNoaSPCgMrziL3xkbCgPzb+fO3D2jGN+Q0MfzeMY1FDv7XH/5p4gdbXD7oO15+O6+0sQCSjnOdg1+MKyLNHk+AIDuhc9bmzGapGy18jxmXPm2kF2eSImC/aTqxyyW66wybuaj78kcZuUdlhP1Czf0muthEvls=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1477081489,\r\n \"exp\": 1540154089,\r\n \"created\": 1477082089,\r\n \"updated\": 1477082089\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/longSelfSignedCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 24,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082082,\r\n \"updated\": 1477082082\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/longSelfSignedCert01/pending\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/longSelfSignedCert01/0f4c7943215e487b85cd769dd891dd01\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/longSelfSignedCert01/0f4c7943215e487b85cd769dd891dd01\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/longSelfSignedCert01/0f4c7943215e487b85cd769dd891dd01\",\r\n \"x5t\": \"AHRzeVzkRAPJe3VX6Wg-_Y4tblw\",\r\n \"cer\": \"MIIDczCCAlugAwIBAgIQP67LkHCuS+W67oLumOkVcjANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wHhcNMTYxMjE5MjMwMDE1WhcNMTgxMjE5MjMxMDE1WjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDJizRQE2+PqoyglHcjml20QCdwgKQyYVW6lELkOJ83mAeqZAtEzMpr1PAR1ifoQRCxT2Hh1iiNLsBpv2lvfMi2NktO8TqfA5DqwfJJzds7FcMwUvXfK9IUnCNXTVYreNr13XTQe/wemRNLRxhFhTx+zNRD0wF4YAEPDmOGGtdDqb8frpI9nuUZ2vetQZUYLYJCjFrJ84wII31DwoyxWS0d3q1E9Zfe1tKrM5EmFY1jW1RWAhgcvTLYCblx084U/oD0PTcGUq2A6I9ulsjHE5dKWg6mHAznCSlQ9GKWq7pekXrC+pLSALzz8p6ACyX/OuGjL4FQzHx6hH0U0sC2Wlj3AgMBAAGjgbQwgbEwDgYDVR0PAQH/BAQDAgWgMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMDUGA1UdEQQuMCyCFm9uZWRyaXZlLm1pY3Jvc29mdC5jb22CEnhib3gubWljcm9zb2Z0LmNvbTAfBgNVHSMEGDAWgBRFBZgo1tZFswYLInoYvgXBaUZULjAdBgNVHQ4EFgQURQWYKNbWRbMGCyJ6GL4FwWlGVC4wDQYJKoZIhvcNAQELBQADggEBABFIlF498XOKBgrzHlvbj5eAMhmg9gwmIXySY+Micw5hsUrsIryi8Y26yjMnJYwPDR4b8Mqs2eFPmU4AwKWpA9ljuTa+y4BV0u+7WWR6GnoauzuY4Na34t+5R5/yRLHImBz44+QjVe7c0KoJ7x0Gn+4E8mWFxDULyKcEwHwJhFFB7TzuZmcA3EZfQCfl0CDIaVF1s6cjnzAW6cp+/RtC2f7GFW1Xhye+t4mru2BZ3pMsLKDKbO2mw9yipR23Fss1SOOp+8me18MF1QhO9Me20qOkjYOKoNuM2eTqd33obepoLhHAL1dxKPED4eDta2eO15DxrBGclm5BGl1byUNRxxw=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1482188415,\r\n \"exp\": 1545261015,\r\n \"created\": 1482189016,\r\n \"updated\": 1482189016\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/longSelfSignedCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 24,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188999,\r\n \"updated\": 1482188999\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/longSelfSignedCert01/pending\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2452" @@ -355,7 +361,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:03 GMT" + "Mon, 19 Dec 2016 23:10:19 GMT" ], "Pragma": [ "no-cache" @@ -364,13 +370,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "73250df9-76b3-49a5-8349-712e16ca74bd" + "58e29d46-b90b-4880-8f48-42cab9ad6cea" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -390,8 +396,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateManualEnrolledTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateManualEnrolledTest.json index 65d1113b5af3..509d81b1c065 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateManualEnrolledTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateManualEnrolledTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//certificates/manualCert01/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbWFudWFsQ2VydDAxL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/manualCert01/create?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9tYW51YWxDZXJ0MDEvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n }\r\n },\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "475" ], "x-ms-client-request-id": [ - "7a2809da-adaf-441f-a562-a2d8a46ed54d" + "c46b4d09-e8d7-48f2-9d6d-9201e3386072" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/manualCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKuQG1Rji26RMERuUbmeCREkxdYPFvENPr7SMWTFzmpDCGDenu9qynYBNUbCKWLV1FyVJw4b0xuK46zsIj6GbbvtP69OddlkKTvSLlLBSk9/M1Q0Bx4ub19EvLFsapfXnVa4dRHwVLqTmI+E4zx8ca+VBpfnK50whhl5Pw4vTvWGg7I4GvrR3huNUsFdluCmN3P71tLI/t7aQNQc1uciUDYI8uqM4QNeZocu5L3xShwTAlZz7ZfDFQg8nKh6oNSLf3yh2I4Nj06VCm6GAoGvXgorKYZ9QAe8RrvgLNhT5eg0G6fwLqJM6KeS6jrxIFhxQcQiagT5E/ptpTQpDQeqgQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAFOImrwz1aZzbrUuRHMleV9ITubf0Dv6dfr6kpovh4lsXuyNTNp4XqrIlZWEviXF426LXS/VMFg1TKK+cnH+wmbcPuqoKW5jrmWjdMoMiOnKQX0C6HGTj7YhB7HkHAFopo7yBRFOndjScZDa54D/d+8u7FUsjtqbSh0fdzAz6JVpn9dqKvSQEjC72PDSa6htoV2plaBOGH9L/ANsoqXlGsns1fIUq9i30b6ReC6+RoLpLKS99sKO8g4ph8TPi2BYz1L7lRTy/4NhF1O52bTTCktM5DFtdBCONE/WX1p1TJ+CrKtjMlI9LJq1cOCC+XRyqUrPqQslhLpc9dvPFR+oRTo=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Please Perform Merge to complete the request.\",\r\n \"request_id\": \"4ad1a094a27f4a1f99ddffa90838ad37\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/manualCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnUVi29AP28rrz7PTp11NYc3BfdUsLZM7Eg24ni3moliLu5n0Y6R2rxZV65N1ZCXqC9P/FD5610Apy6lj/28d7GXae+emmHLtWsVDPeT6+WwBguVN9xJQf5nGdhmwSXWbpAI1z6dGwDhstqITlOexqunRNEqkqN86SWp63Tlxwn1me2g+JLq4sFm1Oa6N76WxhE92EhBnWOPeNtiQ/spfYYRZdue7i/VvEugPCUXsaUFVjJ/Ka4YZbpscEycyVuLX5BJycg8TvrCEDeZ8F5o8iuV91k+k5pXeOiRcsW5yCwkqoQCcqhdyNxw+U1Gne6/U6I0UkP26pwhf2CCpIP1VAQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBADTLoHCOrq/x+BOW4N6yMTPAJHCKN8ASoxG0G2kG79h45LWIGPndYGrlRZexxuIyVpIh/GAaTPT6PTyWhf702fAXk0E+j1PHeEHGUwd7OEDrN4lDEeGLlstbXMrDAj8ZFSaJ8Py29+ikxG3XF+o/lYvvqgV+UwRkfMgOYFL7C7//4rxoUXrwy+vud0IlaWpudrBnR2FXbNeGI1ewFKYPcU0r9OI6gr2jkIS2hQQ16RY+dmnL7xGeezSKDUV/5Q/seNk0tB4o4A+manDUJUpoBT0h/hUKlI5XnqTraMz/usmjHBBtGhll2n1mb5lSsFCs4f0il+7ysPHTLQTI6ndYI34=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Please Perform Merge to complete the request.\",\r\n \"request_id\": \"0e67e2bd62c54723948f2a18c87335af\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1304" @@ -37,25 +38,25 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:27 GMT" + "Mon, 19 Dec 2016 23:10:44 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testvault1020.vault.azure.net/certificates/manualCert01/pending?api-version=2016-10-01&request_id=4ad1a094a27f4a1f99ddffa90838ad37" + "https://testvault1021.vault.azure.net/certificates/manualCert01/pending?api-version=2016-10-01&request_id=0e67e2bd62c54723948f2a18c87335af" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "9c6bc7e6-43db-4cf4-b2b1-e8cba588cfa0" + "0554a21c-e673-490b-8d11-b754ffc28967" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -73,8 +74,8 @@ "StatusCode": 202 }, { - "RequestUri": "//certificates/manualCert01/pending?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbWFudWFsQ2VydDAxL3BlbmRpbmc/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/manualCert01/pending?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9tYW51YWxDZXJ0MDEvcGVuZGluZz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -82,16 +83,17 @@ "application/pkcs10" ], "x-ms-client-request-id": [ - "25861d59-818f-41c5-92bf-b26d9ce48b6b" + "8d3a9863-3a98-4e28-acea-34f52910bf5f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKuQG1Rji26RMERuUbmeCREkxdYPFvENPr7SMWTFzmpDCGDenu9qynYBNUbCKWLV1FyVJw4b0xuK46zsIj6GbbvtP69OddlkKTvSLlLBSk9/M1Q0Bx4ub19EvLFsapfXnVa4dRHwVLqTmI+E4zx8ca+VBpfnK50whhl5Pw4vTvWGg7I4GvrR3huNUsFdluCmN3P71tLI/t7aQNQc1uciUDYI8uqM4QNeZocu5L3xShwTAlZz7ZfDFQg8nKh6oNSLf3yh2I4Nj06VCm6GAoGvXgorKYZ9QAe8RrvgLNhT5eg0G6fwLqJM6KeS6jrxIFhxQcQiagT5E/ptpTQpDQeqgQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAFOImrwz1aZzbrUuRHMleV9ITubf0Dv6dfr6kpovh4lsXuyNTNp4XqrIlZWEviXF426LXS/VMFg1TKK+cnH+wmbcPuqoKW5jrmWjdMoMiOnKQX0C6HGTj7YhB7HkHAFopo7yBRFOndjScZDa54D/d+8u7FUsjtqbSh0fdzAz6JVpn9dqKvSQEjC72PDSa6htoV2plaBOGH9L/ANsoqXlGsns1fIUq9i30b6ReC6+RoLpLKS99sKO8g4ph8TPi2BYz1L7lRTy/4NhF1O52bTTCktM5DFtdBCONE/WX1p1TJ+CrKtjMlI9LJq1cOCC+XRyqUrPqQslhLpc9dvPFR+oRTo=", + "ResponseBody": "MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnUVi29AP28rrz7PTp11NYc3BfdUsLZM7Eg24ni3moliLu5n0Y6R2rxZV65N1ZCXqC9P/FD5610Apy6lj/28d7GXae+emmHLtWsVDPeT6+WwBguVN9xJQf5nGdhmwSXWbpAI1z6dGwDhstqITlOexqunRNEqkqN86SWp63Tlxwn1me2g+JLq4sFm1Oa6N76WxhE92EhBnWOPeNtiQ/spfYYRZdue7i/VvEugPCUXsaUFVjJ/Ka4YZbpscEycyVuLX5BJycg8TvrCEDeZ8F5o8iuV91k+k5pXeOiRcsW5yCwkqoQCcqhdyNxw+U1Gne6/U6I0UkP26pwhf2CCpIP1VAQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBADTLoHCOrq/x+BOW4N6yMTPAJHCKN8ASoxG0G2kG79h45LWIGPndYGrlRZexxuIyVpIh/GAaTPT6PTyWhf702fAXk0E+j1PHeEHGUwd7OEDrN4lDEeGLlstbXMrDAj8ZFSaJ8Py29+ikxG3XF+o/lYvvqgV+UwRkfMgOYFL7C7//4rxoUXrwy+vud0IlaWpudrBnR2FXbNeGI1ewFKYPcU0r9OI6gr2jkIS2hQQ16RY+dmnL7xGeezSKDUV/5Q/seNk0tB4o4A+manDUJUpoBT0h/hUKlI5XnqTraMz/usmjHBBtGhll2n1mb5lSsFCs4f0il+7ysPHTLQTI6ndYI34=", "ResponseHeaders": { "Content-Length": [ "992" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:27 GMT" + "Mon, 19 Dec 2016 23:10:44 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "e8a8d477-5f50-4827-b121-872a96e910c6" + "3cc4b64a-7524-4d0e-a586-785584b5f0c5" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,22 +141,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/manualCert01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbWFudWFsQ2VydDAxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/manualCert01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9tYW51YWxDZXJ0MDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "375a511e-b187-41ce-8d8d-f71e242ba645" + "e3025877-830e-4145-98b0-ac42c183734e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/manualCert01/84c1df2e72c54e3c8490bbfbc1504d92\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1477081526,\r\n \"exp\": 1508618126,\r\n \"created\": 1477082127,\r\n \"updated\": 1477082127\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/manualCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 12,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082127,\r\n \"updated\": 1477082127\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/manualCert01/pending\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/manualCert01/2a3d4fd0e7e54991b181d346eae244d9\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1482188443,\r\n \"exp\": 1513725043,\r\n \"created\": 1482189044,\r\n \"updated\": 1482189044\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/manualCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 12,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189044,\r\n \"updated\": 1482189044\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/manualCert01/pending\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "993" @@ -169,7 +172,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:27 GMT" + "Mon, 19 Dec 2016 23:10:44 GMT" ], "Pragma": [ "no-cache" @@ -178,13 +181,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "06fc6cfa-adae-457a-8aad-a961aa0e963f" + "12e43de3-fd09-491a-8e51-614785a73bb2" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -204,8 +207,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateSelfSignedTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateSelfSignedTest.json index f734d6f25453..51065a6aa8f9 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateSelfSignedTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateSelfSignedTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//certificates/selfSignedCert01/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvc2VsZlNpZ25lZENlcnQwMS9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/selfSignedCert01/create?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9zZWxmU2lnbmVkQ2VydDAxL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n }\r\n },\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "472" ], "x-ms-client-request-id": [ - "bcdd1caa-6f06-4b4a-9765-116c4cd56cf9" + "f2723b11-67e9-4eae-b806-eb32eb37e1db" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/selfSignedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0AjeDiWvk8UYUDTXRKvTpAFJnwQer15TWiWgQr+yant8IVmBUz9NQApcULZbI4SoGdZ1aAC3nKJYSwsKyMzJ6lPTJPXfHDPyYhzDLOWTcyAKesBKbRUo6OvFWhTN+MTR0u7F8N2P0zYU/VsAnz1kMfIy/TWH2qzJcG0S0PuWzzZaKTw03LFJs/pAs+BkKgTAfbyBjShwxQ44luH8FT9HJZjbG3O5gQCZlEda82WBnGIcOkCW3fIszhpl2NxXYROh3XDgBmt4molCbaa3cegk/qhR9i/Kno27m01h2EooXA1Sjm/2jTmnxYqRb7nrrlyp+l/HX4kQucA1P18ZnmrwtQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAERrnpCWOtbmk1fj5SVmTmEWDWth/LAMemta9YcXWGjs5ZFQ0fGW7dPSoPHWGCUUlIZ6qloKIXlA30OsRJ+QY+BeL7EC0t9PRAVBlo9SOtBi0/+cD33B12h1q248s2UZPgIcxlvtD4ASTz0qJogMOZe32FT9nWIAFVX7Kc3W38gBh16iRanRtym4M8Qua+qhfQlWUkRYO/thVC+jGWvMTe07IPAofTvTDtDO7uMQPF+m8u9VOZtqWQB7BFyqRRBhWAp4mSPprLknSjk0f5YW76NZZoQtHx5TLBeAZqRB5BLmhM8ijj8SN0vSiJhYOssjghqLXy9J2JiGv1dreDVkckg=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"3904cc227e0a4c639f93f10623a0f0cc\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/selfSignedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqe8aINnShK+wQC8QU7fwsviQc9+yiOnqU3adXA6qNjn21HTdRBa7cyQIk1STxHIBLTT/GaEJwqsUi6UvZaPEHokOWsr1bP9M7xOPTicBcRyMrr6bOxsmGczYtu1z2TzzXDD7q7IEignE7/LowGEaIADCIU9iuWk7TiJ+1Q/VLh/B3xPsgVjY+n7zEQ53gBiDHSl7XfELfwmslOQ28TVNogUyXsxHcVxQQYJeI7HqqY448LeleK69Ld86lkBixLEm1pD7HSbEx3WI2lyUQAGR6hD3YFaiIWVpQeEyI7p1jmtQlnfZdEL4q9wdlEEcwd3h3PAZpEBhCixahF54fci3pwIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBACiLeghirF+yCuYGVUPDB3wKQJn2iLY1za9ncxCehIVqOkFK09AphzoxF6Yid90AKCaa/dT/Ohm7oTyVQ+YcZnT00LUNFVG48AOE8YDiw9tjAG9OORsAz80xnv2qaLw2TCVIQ6NjrI83LqAm1GJ8rAnpdD/ZTuWM7TvSO5g/jm/Q0oSuKpMgj3YxpwgB9Ac6YEfVzOnm76OkUcpvR5MS4BoTfRv4thdSnU+uwqxM+HtdSVTbHQeC2U/hM1cyzDMpl1rZRklmiEOoPUeDasEIBVTJhAxR8xAeKJJD7Wzj4mJPw4UMvF8zQZzW8EKYvB1hkVYY+HQ85L+XcXd8lco7hU4=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"6faacd568ab049a2803861e8dd3ae21f\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1375" @@ -37,25 +38,25 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:06 GMT" + "Mon, 19 Dec 2016 23:10:20 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testvault1020.vault.azure.net/certificates/selfSignedCert01/pending?api-version=2016-10-01&request_id=3904cc227e0a4c639f93f10623a0f0cc" + "https://testvault1021.vault.azure.net/certificates/selfSignedCert01/pending?api-version=2016-10-01&request_id=6faacd568ab049a2803861e8dd3ae21f" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "a7b96348-23ec-4a3b-947d-d1234d30e560" + "dc8ff5eb-f254-4863-b689-e5b85546b20c" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -73,22 +74,23 @@ "StatusCode": 202 }, { - "RequestUri": "//certificates/selfSignedCert01/pending?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvc2VsZlNpZ25lZENlcnQwMS9wZW5kaW5nP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/selfSignedCert01/pending?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9zZWxmU2lnbmVkQ2VydDAxL3BlbmRpbmc/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb35f64f-d000-4ff6-a321-8b64b796effb" + "0a0a69fb-064d-4c25-9c68-f894076193a6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/selfSignedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0AjeDiWvk8UYUDTXRKvTpAFJnwQer15TWiWgQr+yant8IVmBUz9NQApcULZbI4SoGdZ1aAC3nKJYSwsKyMzJ6lPTJPXfHDPyYhzDLOWTcyAKesBKbRUo6OvFWhTN+MTR0u7F8N2P0zYU/VsAnz1kMfIy/TWH2qzJcG0S0PuWzzZaKTw03LFJs/pAs+BkKgTAfbyBjShwxQ44luH8FT9HJZjbG3O5gQCZlEda82WBnGIcOkCW3fIszhpl2NxXYROh3XDgBmt4molCbaa3cegk/qhR9i/Kno27m01h2EooXA1Sjm/2jTmnxYqRb7nrrlyp+l/HX4kQucA1P18ZnmrwtQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAERrnpCWOtbmk1fj5SVmTmEWDWth/LAMemta9YcXWGjs5ZFQ0fGW7dPSoPHWGCUUlIZ6qloKIXlA30OsRJ+QY+BeL7EC0t9PRAVBlo9SOtBi0/+cD33B12h1q248s2UZPgIcxlvtD4ASTz0qJogMOZe32FT9nWIAFVX7Kc3W38gBh16iRanRtym4M8Qua+qhfQlWUkRYO/thVC+jGWvMTe07IPAofTvTDtDO7uMQPF+m8u9VOZtqWQB7BFyqRRBhWAp4mSPprLknSjk0f5YW76NZZoQtHx5TLBeAZqRB5BLmhM8ijj8SN0vSiJhYOssjghqLXy9J2JiGv1dreDVkckg=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"3904cc227e0a4c639f93f10623a0f0cc\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/selfSignedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqe8aINnShK+wQC8QU7fwsviQc9+yiOnqU3adXA6qNjn21HTdRBa7cyQIk1STxHIBLTT/GaEJwqsUi6UvZaPEHokOWsr1bP9M7xOPTicBcRyMrr6bOxsmGczYtu1z2TzzXDD7q7IEignE7/LowGEaIADCIU9iuWk7TiJ+1Q/VLh/B3xPsgVjY+n7zEQ53gBiDHSl7XfELfwmslOQ28TVNogUyXsxHcVxQQYJeI7HqqY448LeleK69Ld86lkBixLEm1pD7HSbEx3WI2lyUQAGR6hD3YFaiIWVpQeEyI7p1jmtQlnfZdEL4q9wdlEEcwd3h3PAZpEBhCixahF54fci3pwIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBACiLeghirF+yCuYGVUPDB3wKQJn2iLY1za9ncxCehIVqOkFK09AphzoxF6Yid90AKCaa/dT/Ohm7oTyVQ+YcZnT00LUNFVG48AOE8YDiw9tjAG9OORsAz80xnv2qaLw2TCVIQ6NjrI83LqAm1GJ8rAnpdD/ZTuWM7TvSO5g/jm/Q0oSuKpMgj3YxpwgB9Ac6YEfVzOnm76OkUcpvR5MS4BoTfRv4thdSnU+uwqxM+HtdSVTbHQeC2U/hM1cyzDMpl1rZRklmiEOoPUeDasEIBVTJhAxR8xAeKJJD7Wzj4mJPw4UMvF8zQZzW8EKYvB1hkVYY+HQ85L+XcXd8lco7hU4=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"6faacd568ab049a2803861e8dd3ae21f\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1375" @@ -103,7 +105,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:06 GMT" + "Mon, 19 Dec 2016 23:10:20 GMT" ], "Pragma": [ "no-cache" @@ -112,13 +114,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "73981d34-5955-4f9d-a164-e8d0090f4f92" + "27ab4f80-04af-4e2a-aee5-041812d80872" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -136,22 +138,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/selfSignedCert01/pending?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvc2VsZlNpZ25lZENlcnQwMS9wZW5kaW5nP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/selfSignedCert01/pending?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9zZWxmU2lnbmVkQ2VydDAxL3BlbmRpbmc/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ccb03ad-d4f4-4555-b1a4-8c61dd5faf90" + "55ca971c-a17f-4329-b8c1-636c3b0e8fa1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/selfSignedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0AjeDiWvk8UYUDTXRKvTpAFJnwQer15TWiWgQr+yant8IVmBUz9NQApcULZbI4SoGdZ1aAC3nKJYSwsKyMzJ6lPTJPXfHDPyYhzDLOWTcyAKesBKbRUo6OvFWhTN+MTR0u7F8N2P0zYU/VsAnz1kMfIy/TWH2qzJcG0S0PuWzzZaKTw03LFJs/pAs+BkKgTAfbyBjShwxQ44luH8FT9HJZjbG3O5gQCZlEda82WBnGIcOkCW3fIszhpl2NxXYROh3XDgBmt4molCbaa3cegk/qhR9i/Kno27m01h2EooXA1Sjm/2jTmnxYqRb7nrrlyp+l/HX4kQucA1P18ZnmrwtQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAERrnpCWOtbmk1fj5SVmTmEWDWth/LAMemta9YcXWGjs5ZFQ0fGW7dPSoPHWGCUUlIZ6qloKIXlA30OsRJ+QY+BeL7EC0t9PRAVBlo9SOtBi0/+cD33B12h1q248s2UZPgIcxlvtD4ASTz0qJogMOZe32FT9nWIAFVX7Kc3W38gBh16iRanRtym4M8Qua+qhfQlWUkRYO/thVC+jGWvMTe07IPAofTvTDtDO7uMQPF+m8u9VOZtqWQB7BFyqRRBhWAp4mSPprLknSjk0f5YW76NZZoQtHx5TLBeAZqRB5BLmhM8ijj8SN0vSiJhYOssjghqLXy9J2JiGv1dreDVkckg=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"completed\",\r\n \"target\": \"https://testvault1020.vault.azure.net/certificates/selfSignedCert01\",\r\n \"request_id\": \"3904cc227e0a4c639f93f10623a0f0cc\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/selfSignedCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqe8aINnShK+wQC8QU7fwsviQc9+yiOnqU3adXA6qNjn21HTdRBa7cyQIk1STxHIBLTT/GaEJwqsUi6UvZaPEHokOWsr1bP9M7xOPTicBcRyMrr6bOxsmGczYtu1z2TzzXDD7q7IEignE7/LowGEaIADCIU9iuWk7TiJ+1Q/VLh/B3xPsgVjY+n7zEQ53gBiDHSl7XfELfwmslOQ28TVNogUyXsxHcVxQQYJeI7HqqY448LeleK69Ld86lkBixLEm1pD7HSbEx3WI2lyUQAGR6hD3YFaiIWVpQeEyI7p1jmtQlnfZdEL4q9wdlEEcwd3h3PAZpEBhCixahF54fci3pwIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBACiLeghirF+yCuYGVUPDB3wKQJn2iLY1za9ncxCehIVqOkFK09AphzoxF6Yid90AKCaa/dT/Ohm7oTyVQ+YcZnT00LUNFVG48AOE8YDiw9tjAG9OORsAz80xnv2qaLw2TCVIQ6NjrI83LqAm1GJ8rAnpdD/ZTuWM7TvSO5g/jm/Q0oSuKpMgj3YxpwgB9Ac6YEfVzOnm76OkUcpvR5MS4BoTfRv4thdSnU+uwqxM+HtdSVTbHQeC2U/hM1cyzDMpl1rZRklmiEOoPUeDasEIBVTJhAxR8xAeKJJD7Wzj4mJPw4UMvF8zQZzW8EKYvB1hkVYY+HQ85L+XcXd8lco7hU4=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"completed\",\r\n \"target\": \"https://testvault1021.vault.azure.net/certificates/selfSignedCert01\",\r\n \"request_id\": \"6faacd568ab049a2803861e8dd3ae21f\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1289" @@ -166,7 +169,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:27 GMT" + "Mon, 19 Dec 2016 23:10:40 GMT" ], "Pragma": [ "no-cache" @@ -175,13 +178,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "f0fcff0a-3f08-47e4-a3a4-95242f5b1202" + "33d41c38-2974-4a3b-9044-68ac197831af" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -205,16 +208,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7901b9ad-60be-469f-9dd8-314e89904d70" + "70bca587-7d31-44ea-a98e-a048dcdb37e9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/selfSignedCert01/c33bf2e04e76444b83d2911c7a478bad\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/selfSignedCert01/c33bf2e04e76444b83d2911c7a478bad\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/selfSignedCert01/c33bf2e04e76444b83d2911c7a478bad\",\r\n \"x5t\": \"xum-Nyiy-y6T3Q-0yvo9UPM-xho\",\r\n \"cer\": \"MIIDczCCAlugAwIBAgIQGu3+BenNRpmDAf/CZhTDazANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wHhcNMTYxMDIxMjAyNTIxWhcNMTcxMDIxMjAzNTIxWjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDQCN4OJa+TxRhQNNdEq9OkAUmfBB6vXlNaJaBCv7Jqe3whWYFTP01AClxQtlsjhKgZ1nVoALecolhLCwrIzMnqU9Mk9d8cM/JiHMMs5ZNzIAp6wEptFSjo68VaFM34xNHS7sXw3Y/TNhT9WwCfPWQx8jL9NYfarMlwbRLQ+5bPNlopPDTcsUmz+kCz4GQqBMB9vIGNKHDFDjiW4fwVP0clmNsbc7mBAJmUR1rzZYGcYhw6QJbd8izOGmXY3FdhE6HdcOAGa3iaiUJtprdx6CT+qFH2L8qejbubTWHYSihcDVKOb/aNOafFipFvueuuXKn6X8dfiRC5wDU/XxmeavC1AgMBAAGjgbQwgbEwDgYDVR0PAQH/BAQDAgWgMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMDUGA1UdEQQuMCyCFm9uZWRyaXZlLm1pY3Jvc29mdC5jb22CEnhib3gubWljcm9zb2Z0LmNvbTAfBgNVHSMEGDAWgBQRu+2ZtCV/U4TDnvhmC9IAREfurDAdBgNVHQ4EFgQUEbvtmbQlf1OEw574ZgvSAERH7qwwDQYJKoZIhvcNAQELBQADggEBAKluT52SPG15kBk1zerChujOPEmIuVm0ih2hTcKUJnvNVYOYx7PrqKB95xYp/S1ywHgqXdgxPnwXBVUEqSKetsFRjIDsByWZo0shi7imvcwiGN/Lx/7oOwbaL1xxviG31AI6wpECXCIo5pifrvaaS8TFhhobeWLKuxSchO4OQir9YOpMmWgd3pInfn+zKdl9DFeVQlKj6DhczYrYnSVOcSqZngq/nnkrT41Ikzf7f6NFCIpBVrc21soHIYCD4q04rVcw6SYYhW0ai/FZS5FFMh27JzPvqBGQJbLjMLOMyESdG73GuC2MFoEnMIwrM0IoEC/C6VwwI8W2Q8vvlstp2vg=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1477081521,\r\n \"exp\": 1508618121,\r\n \"created\": 1477082122,\r\n \"updated\": 1477082122\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/selfSignedCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 12,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082106,\r\n \"updated\": 1477082106\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/selfSignedCert01/pending\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/selfSignedCert01/c1b1ea94326a4aef9752d66a229b2bc5\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/selfSignedCert01/c1b1ea94326a4aef9752d66a229b2bc5\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/selfSignedCert01/c1b1ea94326a4aef9752d66a229b2bc5\",\r\n \"x5t\": \"bn5Uz8I-fksX8SgKSmIJcHo1VWc\",\r\n \"cer\": \"MIIDczCCAlugAwIBAgIQTQi/4JAhSc6Ckuxva8beWjANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wHhcNMTYxMjE5MjMwMDMxWhcNMTcxMjE5MjMxMDMxWjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCp7xog2dKEr7BALxBTt/Cy+JBz37KI6epTdp1cDqo2OfbUdN1EFrtzJAiTVJPEcgEtNP8ZoQnCqxSLpS9lo8QeiQ5ayvVs/0zvE49OJwFxHIyuvps7GyYZzNi27XPZPPNcMPursgSKCcTv8ujAYRogAMIhT2K5aTtOIn7VD9UuH8HfE+yBWNj6fvMRDneAGIMdKXtd8Qt/CayU5DbxNU2iBTJezEdxXFBBgl4jseqpjjjwt6V4rr0t3zqWQGLEsSbWkPsdJsTHdYjaXJRAAZHqEPdgVqIhZWlB4TIjunWOa1CWd9l0Qvir3B2UQRzB3eHc8BmkQGEKLFqEXnh9yLenAgMBAAGjgbQwgbEwDgYDVR0PAQH/BAQDAgWgMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMDUGA1UdEQQuMCyCFm9uZWRyaXZlLm1pY3Jvc29mdC5jb22CEnhib3gubWljcm9zb2Z0LmNvbTAfBgNVHSMEGDAWgBSgcqSgsLuoFJpsnPS8NP45CPLAbjAdBgNVHQ4EFgQUoHKkoLC7qBSabJz0vDT+OQjywG4wDQYJKoZIhvcNAQELBQADggEBAFDmhBCFYNuw0ZHBI04NWgSuYZ/g6pbp0uzb1SS9Ka/nGVrY1T0fWHzSmZYq9Fn/xM/HYtOFuWg+A7zV+oQBaFkKsIC7L/977ZbEBXGs6QgpBRZRTpvKfgF9KXDdSoHML98Ud2dVmUenykBdYe9+9FOo5AaYSfJLHQJV7hBCwmeZKOVUfjfdHNQoZTmEZfYb6bXu+nZ8e85dL8d2Xm3qnfmTyg2g+tUNR5YEDEjSAP/VGom6AM4XrNa3sYbFw9EmcIn6gHKMqCEX1FpmS2zZiTVjwgAd6oDX2ijaObl1DCtoX9g0PzB01tHlewTYc11K3aBM8l5YdmG/KpSQ8k4f9Cg=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1482188431,\r\n \"exp\": 1513725031,\r\n \"created\": 1482189032,\r\n \"updated\": 1482189032\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/selfSignedCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 12,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189021,\r\n \"updated\": 1482189021\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/selfSignedCert01/pending\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2432" @@ -229,7 +233,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:27 GMT" + "Mon, 19 Dec 2016 23:10:40 GMT" ], "Pragma": [ "no-cache" @@ -238,13 +242,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "23fbb21b-6af2-4685-b839-4558a8a806e9" + "a90b8b39-e03a-47a1-af02-50b9e0de7441" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -262,22 +266,23 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/selfSignedCert01/c33bf2e04e76444b83d2911c7a478bad?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvc2VsZlNpZ25lZENlcnQwMS9jMzNiZjJlMDRlNzY0NDRiODNkMjkxMWM3YTQ3OGJhZD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/selfSignedCert01/c1b1ea94326a4aef9752d66a229b2bc5?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvc2VsZlNpZ25lZENlcnQwMS9jMWIxZWE5NDMyNmE0YWVmOTc1MmQ2NmEyMjliMmJjNT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b49019e-d474-45d6-9a5d-0602f1f40e84" + "0c3d9344-23d7-422d-b026-01de72c296fa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"MIIKfAIBAzCCCjwGCSqGSIb3DQEHAaCCCi0EggopMIIKJTCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAgXFp7nS5xKpAICB9AEggTYu6/69KGHpsaId3EiUaUXGVdG2B9v66QwCMVNPNUa8JqRcqy1WtloJhnomKbRyZx4eBwV70yls5XjClVMET1Nl3ZH8VCDxy12ALo0SDVXKHXPCcRNWbZu5Yt7yQfAUveGmlk5gE+ecGGZA8TXW4Edu7zze2Ff+KvLAnIeE82cVKWl972Nx6pGb7uJCatXD6+7VBjq6gOWKundelck2IWrbcFJUGxB2becJ4+xKSM/WElkitWtkFbQjW5krXHaZ/07G3RMTElw+GW7fkgBNZKkaeU2tS2RCGJc1F/mhDH9yNrCY1JiUlHfnLo0VV33+oLo5Uoxq0vP/GUoKCQuXDRv89N5bicKoW3UMuhVc7A4z2mReYp+Vm/i4kk1WRh3izzyNp/PzYR1qoUEf8jH+7mEy1whibZEyXEjjmZEzQhtiZlU9Yccd2GoiCFx6pbhIVv0ujek4oKK9/ctc4isYOQ2/PLYoYLXESeEkGEegUh6Dx0wy7Vjk/ZDRNN9g6Hwf7meynTe07tyTabI6uoz7viq7Yow4L5GpAG6vj23U1LwagkfbCqbewoEYPzUXLZq1h0/vsu/l1SsoxmM5jUnd6B7+jYHneih3kdmFvIwjDC9ZHJfqt6S1g+9ZuAmojAc7qnhXf3K815470WLSmNLjQhef6c1/WMDrsiRqHKk7Ihz1pj/qLFutSKjnHWxOeBfBQC2waOO+/FpmS3/226E2a0qKawN0JZ8/KzF8471rYQMFyteY0dfmlSY21fs4mdgO7vRB9j2b3kMd2WH26yq5M0iLZwFzHBEWdPNI+E6NP8jLB2vReVpZ6Lph82VOvGb8vC4da9QviBVUoR9mx6PJv27T8A13XAqZX4DcCd0egDjbbZX/HhcB0eUfK5bnJtY7gh4pQdimnM8IiybFE8w9LbSbv7dOd9W7PHfMNaixaYb6iqSgMnUvzWI4SOwQT0P2zhCnJr+SN2gWzwwFr+7yCT7fgaBB78GqnUgrqfzsThMjaKFWtWZh2JCrGm7o5xVzj1BQkQK/GBaRigiY2xnmK88DbSZTbPSd5LECqR5pj5uv9/Ma4dieYBOhZmm2Vd2LvdRfFx4N0wPovXgLUpzoqTxmJlvNsDw5P3BLgeOmIXN0j6Ir8s1oKY1CHKPif14owOPlyWqBzDJTKQdJ8c2AwuH6EoEvp6cFbsbT5HjbqsloE5DPe0uKGGLLEPjXRLeyvvqVbKU4odRhjiTxwo2vfBomrn10FXM1B239u1kcGDIpnP9Ce/pvBB8CfEpmF6oPlQU4VIUWbIs4fTHeV+pBC3KoIZOCRfgW2/nJYA/n34B8qTuzElfKIGIs4+5lwNuwRq5N7u+DiuJ6tSsUURdYTYsD7fhVAWokR7nrfCpBCPqvSWKe2UcbwerJoHGO6SE2SgnfQDb0ixlJ/Yiud9+TQxYJOCo1oT0tqePzNJUGoQbJgeWCjltlqHpTprV6kchcsr409FFCf7OOOPFlXTPMJ7bsP3Y/60c8o3MOnnodPJ0bnz742p4HXdnFsfCrlzaOfQ/4lB924DQCFvNVTxFbgm4sxZv6qZpvcwsmxtIoW3zqCRyDlBZgeTeIvw+Ue2ywOJBbdLIoYK570vyy4GldOHFiBWrWkPJaxvw1iLaZI9hFRR9cH0eqstgxzGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADUAYgA5AGQAYQBkADEAMgAtAGIAYgAzAGYALQA0ADkAZAA4AC0AOQA4ADcAZQAtADMAYgA3AGEANwBiADIAMQAzADAAZQBhMHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIIEBwYJKoZIhvcNAQcGoIID+DCCA/QCAQAwggPtBgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAjjJWBAk82s/wICB9CAggPA4D67Pim80ImCKc6h2G9WpeyPXqdghk0oqe0rhuh5KBedIQLqmD5xb1NvXleTIus453PVfZVEgw1wkqqKZk743pa9Pg+hHodlY9uWgemXxyRzymyiaW96BrKfekhlIHCfAuu6qK5PypGvXsisvWlA4831bXmPrJlz8kuWuxSFRuaSOoorurYvtmNRZ/QWy/5c+i0RXgQGO9y1ux98I6C4KIg4i/XZs3dgrok3gUUeatbdck12sV2NZ/8W+Uk41Oy6blCWF/vwFE6wMj4hx9Nt+yMxpVxoL5sc5K++tHaGutUDIU0XVvtOv4loRNb2bRjSo0xZKKC4upOAUNOTs7c8MTIeZ6c/ulxlUdkUYMnsf6DjGfKVzoA9KvtEz0QCFv3CWpDviyc9VYv/QWa8K/pDtm7sHViccdAkMNyjzIrPO/Y/mIdS4UJQqb7ltqgTMxy7KLbCRw/mueeRPZytJR1aLjyJlW4S8yytCF/+NN19Hk7Se5EkiMc45T8ADpvg0Apq1lkOT+DNgDIy/kyrO64awc6xqvZ91evVFqSS1IPXz/qLbqr5m1N84VsMllW96QoxWRqFm4Iyv1slFRXHr9ikj2ShbN9LxuxBQwr+DfIMGXTfscdYMyCzi/xUip1Rf80di/ZW7sz1q07OimkQVlVKhrxD2DOmXr+iw8XTMBocLfTLRLlFPQ8QWNpWpB2EUR8s09oHByE6XTXa0PlHXljrw28yGrY8Gd6MiW9kq6JPW14WR/5u/wOMX0fBzSk4JOZFGNKNS8wWTJyqzQ6TzrfkyX7bTywp5klR6Bd7A+jhAVlYBpKXBPdZUNFzOorplivWhQGf1KfAc5Kj+OSVPAyWNbm3s+dHp8EhAEsKNyYGMkcGRR+ViSJ+EYGFC4ZzczjgXGyxqFKHcNZkdCMmAdmaJsKXKBPonOwkEKL/V2gYn3HrkUSLEpJiUAz9wejaQiXZv+YwIlnyvcFS0ILrJqFXFaGy4ZDlyNLnAsVmY/wT821I7BVsJ+fcRFKRo083UUOmfOx4ofAjrnN2BtDW+pqTzpcx2ATUyFYE/4bWSFh5L8P2tcEKPTnxl+ymHiPHCNbefLglLOvSyxMg+9N18ke+JvNb+KR4bLUiJPrrtML+k9Q38ngXOjNLc5YauSSgNIVpe24HbJuu+VsTThS0bZKvfNQ04illrKPCq3n+3gtvbswcFkCYxCPtxuBDgJZgRM/UG4hU5oGtzVIca7wgC1r3dCfYOEsRfLGzuiRy0dg8oYF0nhQubMB71fRh5XCPsu3UMDcwHzAHBgUrDgMCGgQU85Zt2xWoua/Ez/Co5TU+VmdyO80EFDdtpzPWoGOa9EXTcl4hDgjVfVwj\",\r\n \"contentType\": \"application/x-pkcs12\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/selfSignedCert01/c33bf2e04e76444b83d2911c7a478bad\",\r\n \"managed\": true,\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1477081521,\r\n \"exp\": 1508618121,\r\n \"created\": 1477082122,\r\n \"updated\": 1477082122\r\n },\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/selfSignedCert01/c33bf2e04e76444b83d2911c7a478bad\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"MIIKfAIBAzCCCjwGCSqGSIb3DQEHAaCCCi0EggopMIIKJTCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAjc9ePOr4xI5gICB9AEggTYQ3rSygmbd/huXtxK0+reFlL7RmkS7cF5c/NnUM98OmhSk/Ma8kQJdooskG5xMW4A0VpnpwIm+X1cZJXYSZsja6cwGXrhnv1oekVeV2n27VrDMxM5LehNOLTjx5cEqL2i2NnwPqOaVfvFzQmrtyUpvPMo9da5B55Ht6FINko7cOmh5vxf+omtosFaacyI4f77H+gTpoooOVkXjqr/5DCDPlWna7k2f1+mjzKSrzzKFSrbbxiozMHwAmcon8nSuqpBCmKpyx9mF3IMNFSohK5wZ7GKo513cEgRS8xR/FoG0BwcmQ5ymJpvDjKNzXVcWfY+LegEKLzIB4H92XePAuV4W1CIZAiDP+YbSSc6127IIrj5Vy2tgsW6w+W/Qon3fUovHT6jAZDNpGawbDOEFrjq/4Z/F8LTj5RsWU9WxXxXpbsXnX1hFnhs6bw+y1iIzyzRS0xF82Jldt0/ZIJKWHiy9kiDA6AQY3M/Y2XAy1pM04TgYL8IVSnRadklP00iLz9mYvcXyszespamF+V2cBi+tOj4YY3buQwoA/DkmQqFFMFCAoHijw0E25NVP9zGuU5EDs15ne176OJdyTrNIUIwwGb06PPqpMQFWnr9O6gQdUXm8ClwA9xnphAT1IciHYWnmIoJjU3J4VvqslkEsGgOlXk0IFhD8oBnJE1FWJNNmGx8FBIvlB+mOfDNEIiXSL7K6+QgPvMCZr9zK+loQj8C3YwRuLur7rUBzvlz23HWmh4RBNXUquaW545A8L1PUlOaV7gw7sjS9hSLQG+W4FL6tV+ST/6lGxyirEu/EDn9kgy3LjwR/6czsRV7jwHRy1FPbUZ7QWOiQ+WaQfoZcIrtvpVCVy3jwQm3aky5LyxWLyGIvqeOkPLUB7BYhRbhmhDvM7wc4WXzhd7B1RHjZyDQ8WFxYnLLgCy1uWHd5xQ0UzV58xNiN3TQ6tr5+faXJSUz/EiIdu5YPVN1JDQR1eweQ+95421zPTXWTQj2GhGqC6EleaRDo3uzeItYFrb/qQ+svGBCXJ1XdtskVNJrJfY8SBSwXAQD3TsHaSLgsYOHpCU3+BUK5Za7NRoXi20QDtbw17hDp1uOM+A8/IbDek3csBt0W+umxQIVgQ+qOFZJmyFbVHKmWBC+QBAzUTOjJq0z/Q7Ru1gTHt3Zkx+FjJdzw2J4TtHqx4e5f47vPZnsv0MRbOW2XLcrdPpwHeyY9dl1DUPfDrnB40RWXyREOdZJhgUBhIG/Sbg3m60YghQES0jg1ugPSq7yZSng5lsYV5R++UxhyPKUMsWj162lG3n/ldOGCeEH5CcQF8dqqI+05HRVqSx0Bjc6gRHPqL0CEJS8L34qmlT0KJ5L7Q4ZDnbiFlv/Kt+4m7FHU1xCyZdS66RM8w85IZGy/7IvaPEWfgRvyTfEaFQwympztvlev+lmX7ffWyjv9QGBmTUbqFnfLAcUN8bsg/29Y1JTaw0rAUW4tDjORzcetKr3XZhaevvNqKnlMRFp9BJNezUxpc97bZHcMJuK6VAMgTrGGDMKg9OqwJQJGO+X9hKqr8KgzDGSdbXHvtSkNiXZsUQZFmbknU0TLqUoAOXEE/Olt0uSuO9p97TWuzAQ/eu1U+2CF9kl4/ul0mlQrfGuoFowvNWMR8cCNqyCM6/93jGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADIAYgBiADAAMgA0ADEAZAAtAGMAMwBjAGUALQA0AGQAZQBjAC0AOAAzADEAYgAtAGMANgAzADMANABhADAANABiAGEANQAzMHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIIEBwYJKoZIhvcNAQcGoIID+DCCA/QCAQAwggPtBgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAg/NnxzGrSrugICB9CAggPAC13KueNJisSLUnSM5VfOLYzCzQ1Wto7bMo1T3zMF0lo23qsI5qNb/1MpeHuI6mB/EXQjHgUCFMMJPXZv2AAR/UiWU71UnXFenA9ua7v0bgRudFCKwsnsQfhpI/50uve00qbu9E4Pdyyob+xczNHT++SdYJ4S2FQj/OQXmw17zL/gKLp/K2TRZ1vnInNv0yOOcunsiucqT3xrDuODdNdYPRcCy+cLwRmHJzJcaBT4/Z1pFZ0LERMxqFrbGcALXpAAWAbx1RPkj9pdMEeLxLEW47XvwKPLUUazZNL4qwMDeqJQYyKtRZOSex0207keidrGlOBQOfHfgdI6oVY0P2MfPzOeoRyj60up2SREcyuG1O3yIAcWFz6lTZhk14/sSiAGAvB+ghW3W5mIs/9mKXYfWqO2oXaDYEFtYBBZaNqZli7t+E7kWl2tMMq0BrFWbzmdIJD+mLGbQ0SeFa6tcJ/kjNStnZ08d+RU0oMFhmo2hG/x3rMjfMdJkhLaVwsJXvnyvtJgZN5rYJgUpNU4Mucw+3pfdJZucG1medIjCxX8V7LwX3U7pCwg0XjczPW9bLOqR2aszk8JlqndhSi15JeHomTq4vnJ8cCRUue2ijOeo96UHr+5Q3CEXSVBHbZtAuWVWlgQvWfwefw24OXlCMlkBU8hyP4yiG7OUw0zYg5hMSOOuNVhQjdGMxg+wTzIeT9Kzxcb1igaI+hdWIVKhlrBGv/aii+3Q83DqXCGxu9ZZ1wHSfkpU8p1gn4m1PkS9d2gyuxAGEvydAV8GBemWNQqYttVapd4Z+m2j/0KIg4jyfj5ybNK87YTYJ9Tjb2yQOxKP5RCoNBhRaC6ErDTksooPNysko6g8qQ1iNkqH0GV840zKlEFJIoLc5e5fbBviyIVjYnY7lxo/ucTac33Gez6EWFY3ejDx+wIZJZIW4+1p121u7L+Jo93OlLCVyE4R4AdML1wR+3JvdgY2wyxAZsNyQgEaSTuF4A6FtvVp5BHp3h7Ohq8tTIzGi88xsF8JUyxFGiiawAiSJhWw3BW4082qo03c4ruyeyvYoh6EBit3suR2dQM/AgG4qsyDT7mrfGNDYcE8F7oBM/UAAtOpTNjrhzOYWkOA44jSWKkqJWm2h4q0F3Yvxwkd+r+rA5Ck339rq1+RATkgv9hEqZhekLoeY0TN7EEq2P3PBIcFtPzHVMGuaWZGzThSff02G5UmfT+8R+FlCqRH0Aq4+qtJkw6eJBn37/uINa9EVOCFB9GkBQ8rt+OCkXYjGEICrcKiEe1MDcwHzAHBgUrDgMCGgQUfCWkLXowF/a9Tzjma1O0k7Sq2HQEFFaCdSS555V2kSSbgjvVMJcjNv50\",\r\n \"contentType\": \"application/x-pkcs12\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/selfSignedCert01/c1b1ea94326a4aef9752d66a229b2bc5\",\r\n \"managed\": true,\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1482188431,\r\n \"exp\": 1513725031,\r\n \"created\": 1482189032,\r\n \"updated\": 1482189032\r\n },\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/selfSignedCert01/c1b1ea94326a4aef9752d66a229b2bc5\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3958" @@ -292,7 +297,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:27 GMT" + "Mon, 19 Dec 2016 23:10:41 GMT" ], "Pragma": [ "no-cache" @@ -301,13 +306,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "73844047-6644-482c-80a8-9a891701994d" + "f402ed37-d148-4575-bd7a-44cb0c342656" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -325,22 +330,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/selfSignedCert01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvc2VsZlNpZ25lZENlcnQwMT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/selfSignedCert01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9zZWxmU2lnbmVkQ2VydDAxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43f00340-5497-4b9b-8384-d2cc40fb467e" + "b1f2ded7-d959-4046-87f0-e3ff597945e5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/selfSignedCert01/c33bf2e04e76444b83d2911c7a478bad\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/selfSignedCert01/c33bf2e04e76444b83d2911c7a478bad\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/selfSignedCert01/c33bf2e04e76444b83d2911c7a478bad\",\r\n \"x5t\": \"xum-Nyiy-y6T3Q-0yvo9UPM-xho\",\r\n \"cer\": \"MIIDczCCAlugAwIBAgIQGu3+BenNRpmDAf/CZhTDazANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wHhcNMTYxMDIxMjAyNTIxWhcNMTcxMDIxMjAzNTIxWjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDQCN4OJa+TxRhQNNdEq9OkAUmfBB6vXlNaJaBCv7Jqe3whWYFTP01AClxQtlsjhKgZ1nVoALecolhLCwrIzMnqU9Mk9d8cM/JiHMMs5ZNzIAp6wEptFSjo68VaFM34xNHS7sXw3Y/TNhT9WwCfPWQx8jL9NYfarMlwbRLQ+5bPNlopPDTcsUmz+kCz4GQqBMB9vIGNKHDFDjiW4fwVP0clmNsbc7mBAJmUR1rzZYGcYhw6QJbd8izOGmXY3FdhE6HdcOAGa3iaiUJtprdx6CT+qFH2L8qejbubTWHYSihcDVKOb/aNOafFipFvueuuXKn6X8dfiRC5wDU/XxmeavC1AgMBAAGjgbQwgbEwDgYDVR0PAQH/BAQDAgWgMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMDUGA1UdEQQuMCyCFm9uZWRyaXZlLm1pY3Jvc29mdC5jb22CEnhib3gubWljcm9zb2Z0LmNvbTAfBgNVHSMEGDAWgBQRu+2ZtCV/U4TDnvhmC9IAREfurDAdBgNVHQ4EFgQUEbvtmbQlf1OEw574ZgvSAERH7qwwDQYJKoZIhvcNAQELBQADggEBAKluT52SPG15kBk1zerChujOPEmIuVm0ih2hTcKUJnvNVYOYx7PrqKB95xYp/S1ywHgqXdgxPnwXBVUEqSKetsFRjIDsByWZo0shi7imvcwiGN/Lx/7oOwbaL1xxviG31AI6wpECXCIo5pifrvaaS8TFhhobeWLKuxSchO4OQir9YOpMmWgd3pInfn+zKdl9DFeVQlKj6DhczYrYnSVOcSqZngq/nnkrT41Ikzf7f6NFCIpBVrc21soHIYCD4q04rVcw6SYYhW0ai/FZS5FFMh27JzPvqBGQJbLjMLOMyESdG73GuC2MFoEnMIwrM0IoEC/C6VwwI8W2Q8vvlstp2vg=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1477081521,\r\n \"exp\": 1508618121,\r\n \"created\": 1477082122,\r\n \"updated\": 1477082122\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/selfSignedCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 12,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082106,\r\n \"updated\": 1477082106\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/selfSignedCert01/pending\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/selfSignedCert01/c1b1ea94326a4aef9752d66a229b2bc5\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/selfSignedCert01/c1b1ea94326a4aef9752d66a229b2bc5\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/selfSignedCert01/c1b1ea94326a4aef9752d66a229b2bc5\",\r\n \"x5t\": \"bn5Uz8I-fksX8SgKSmIJcHo1VWc\",\r\n \"cer\": \"MIIDczCCAlugAwIBAgIQTQi/4JAhSc6Ckuxva8beWjANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wHhcNMTYxMjE5MjMwMDMxWhcNMTcxMjE5MjMxMDMxWjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCp7xog2dKEr7BALxBTt/Cy+JBz37KI6epTdp1cDqo2OfbUdN1EFrtzJAiTVJPEcgEtNP8ZoQnCqxSLpS9lo8QeiQ5ayvVs/0zvE49OJwFxHIyuvps7GyYZzNi27XPZPPNcMPursgSKCcTv8ujAYRogAMIhT2K5aTtOIn7VD9UuH8HfE+yBWNj6fvMRDneAGIMdKXtd8Qt/CayU5DbxNU2iBTJezEdxXFBBgl4jseqpjjjwt6V4rr0t3zqWQGLEsSbWkPsdJsTHdYjaXJRAAZHqEPdgVqIhZWlB4TIjunWOa1CWd9l0Qvir3B2UQRzB3eHc8BmkQGEKLFqEXnh9yLenAgMBAAGjgbQwgbEwDgYDVR0PAQH/BAQDAgWgMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMDUGA1UdEQQuMCyCFm9uZWRyaXZlLm1pY3Jvc29mdC5jb22CEnhib3gubWljcm9zb2Z0LmNvbTAfBgNVHSMEGDAWgBSgcqSgsLuoFJpsnPS8NP45CPLAbjAdBgNVHQ4EFgQUoHKkoLC7qBSabJz0vDT+OQjywG4wDQYJKoZIhvcNAQELBQADggEBAFDmhBCFYNuw0ZHBI04NWgSuYZ/g6pbp0uzb1SS9Ka/nGVrY1T0fWHzSmZYq9Fn/xM/HYtOFuWg+A7zV+oQBaFkKsIC7L/977ZbEBXGs6QgpBRZRTpvKfgF9KXDdSoHML98Ud2dVmUenykBdYe9+9FOo5AaYSfJLHQJV7hBCwmeZKOVUfjfdHNQoZTmEZfYb6bXu+nZ8e85dL8d2Xm3qnfmTyg2g+tUNR5YEDEjSAP/VGom6AM4XrNa3sYbFw9EmcIn6gHKMqCEX1FpmS2zZiTVjwgAd6oDX2ijaObl1DCtoX9g0PzB01tHlewTYc11K3aBM8l5YdmG/KpSQ8k4f9Cg=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1482188431,\r\n \"exp\": 1513725031,\r\n \"created\": 1482189032,\r\n \"updated\": 1482189032\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/selfSignedCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 12,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189021,\r\n \"updated\": 1482189021\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/selfSignedCert01/pending\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2432" @@ -355,7 +361,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:27 GMT" + "Mon, 19 Dec 2016 23:10:41 GMT" ], "Pragma": [ "no-cache" @@ -364,13 +370,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "a67d4771-cce4-424f-9d72-de4346f3f254" + "bfb2d4d1-537b-43ab-bda2-bb1952c34dc3" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -390,8 +396,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateTestIssuerTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateTestIssuerTest.json index b0512f18035f..b994a08a2378 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateTestIssuerTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateCreateTestIssuerTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//certificates/issuers/issuer01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaXNzdWVycy9pc3N1ZXIwMT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/issuers/issuer01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pc3N1ZXJzL2lzc3VlcjAxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"provider\": \"Test\"\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "26" ], "x-ms-client-request-id": [ - "a5748abc-32e3-42d3-95cb-cddf29222e5b" + "ca06e419-62b0-4fe4-9f05-60385918b686" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/issuers/issuer01\",\r\n \"provider\": \"Test\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082045,\r\n \"updated\": 1477082045\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/issuers/issuer01\",\r\n \"provider\": \"Test\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188955,\r\n \"updated\": 1482188955\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "166" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:04 GMT" + "Mon, 19 Dec 2016 23:09:15 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "92ee9067-28a9-4715-9e2c-aef6b7f17124" + "5b07d622-be23-4f7d-8ef5-e4e54b4b4d0d" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,8 +71,8 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/testIssuerCert01/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvdGVzdElzc3VlckNlcnQwMS9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/testIssuerCert01/create?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy90ZXN0SXNzdWVyQ2VydDAxL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"validity_months\": 24\r\n },\r\n \"issuer\": {\r\n \"name\": \"issuer01\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -82,16 +83,17 @@ "506" ], "x-ms-client-request-id": [ - "9ea12233-722e-49d9-bbfe-55e2a6fdce41" + "b6828074-d4f6-4028-aac8-e8526da85777" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/testIssuerCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer01\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4LwcrRd2m35/Thq0mwXzj0l96svDrVj9ZD6RVGNqvjH8SEbmJR3pGzSDg0pdGKWTcfa3Cm95ZybvRwwo9L1qW9sKZ+8K4YmDIyH9I7zwx8axuBWgEBU7oHN9TdtUnjZdyaWkC2lWtBm70Q6RdZ95NBqO0NR0bpjl7BgHM2D7/v8bSChLAiw2tUbLh4gBThVWlSpnnBwFD+h3ZrnSZ36L8jZdvKYAv5e7ilQLCozu/VzhQuEXpqWhXhW3nUHalxo+aJ21Cm8gjPyt5LikvJD8nUV/+64HVnvn1TpqIgACMMxfAdZMDd4NMW8+CndYFp+WLEy7Wq+k84k87Q28n7pl2QIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAH9BcomuxmTqzrCtuYSCIElgY03q34b/l0RbcFtoZ2Ftefo+8df09VH/C9zZUu91N+xNB/ETBOtK+xw/5mQcH+vgl2DJ8BvKL1HdvcVY4xnFdVlCrI+j9ZjZ7aLFTAT1gMA4pgp0xpEfopZ5Fk5ejeqYYSYy9qh0LH2LoCDuEB1dO+YlXHo9qZHaL557tXoraf0nXGT99/TaLkuAkp2HH1PJjuE1fTh/4sym1JtDubfUUcscaGV9a5Bb37Q2EwnU1WOTK8XulNd6BmCz8Sqc+Y6Liww5lo9ZJUKPaG2mtYgMlCt3yj2gWPmv+bm7DweoFlLkPBzr1M8kxgFzlfouVtU=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"395bb93941ed4566ae9df20475f006fb\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/testIssuerCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer01\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2LgIhoNIaK7aAGCu7Ufpt9Z2DKbTzjw1cnc5J3U8xSJGHIgva5Wr80DAvsRwG7jt53+iRksYJgW/gIF0ncN8kEX14A8YLsRKBZ5JXyHOVyUl05qXXA9IP2kra3s1RC650lwrwUhCs2c3QFoDwmzhac+Rcaypua6+jdGoY50OZNpgF5JsBXckSLqU2oeH5tCUN//x0kkL5ki5nHDPdOYFoa1MWPKCm43xahB4T6bPlKy1UabeMGGQRN2QY9gRn5RJ2NDDXmBpYGJ+eo7SorFfWvz0NbmNG1O/fCOsEoSsrRVLeSAFRhiWOkrTZ6N5gapqEETQxh4Y45IJVdvwY/JWPQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBACqcD+hG2LC4deX02IY0nMDfFkZZqabBfJXMRTEP2aOCNn+zoCHYjRkNDORT0eYefR8PyYGfx4cmCTRlZBHtHp5N47e1XD+2+MUOUmm8Hh72plWZZAswXy5xaVi/G41Vr+rim1noMg4bRBuKAAjNo+tZNa0Ty02UKx9VzyVJZwLe08tIPSkNcaWr+QIZX21GfQPS6qUPpXtih1CFt3AGpqRBH5Nt/QzXwXQMJzycBBJqidjKOj+ouSKDMUCDF9TVm5Wln8d5cVBIEbM8ovRtLHhs/wiIwoX88B7yju4QI/QjyD8cGPfSHhVt70VZOeXD8LE8z3T6BJE2Kym1E1O2brs=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"c1ca41f4fdea4df9a90906a0e9ed1ef0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1379" @@ -106,25 +108,25 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:05 GMT" + "Mon, 19 Dec 2016 23:09:16 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://testvault1020.vault.azure.net/certificates/testIssuerCert01/pending?api-version=2016-10-01&request_id=395bb93941ed4566ae9df20475f006fb" + "https://testvault1021.vault.azure.net/certificates/testIssuerCert01/pending?api-version=2016-10-01&request_id=c1ca41f4fdea4df9a90906a0e9ed1ef0" ], "Server": [ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "45cb73e1-68f0-4638-8b59-0f5f63a805d4" + "e2ee646e-9da6-4a06-aaa1-5f9d7fad440a" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -142,22 +144,23 @@ "StatusCode": 202 }, { - "RequestUri": "//certificates/testIssuerCert01/pending?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvdGVzdElzc3VlckNlcnQwMS9wZW5kaW5nP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/testIssuerCert01/pending?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy90ZXN0SXNzdWVyQ2VydDAxL3BlbmRpbmc/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9f3d334-92ee-4564-aebd-a53b66461948" + "922d1f65-9501-46d4-92aa-eb7fb19b27f7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/testIssuerCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer01\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4LwcrRd2m35/Thq0mwXzj0l96svDrVj9ZD6RVGNqvjH8SEbmJR3pGzSDg0pdGKWTcfa3Cm95ZybvRwwo9L1qW9sKZ+8K4YmDIyH9I7zwx8axuBWgEBU7oHN9TdtUnjZdyaWkC2lWtBm70Q6RdZ95NBqO0NR0bpjl7BgHM2D7/v8bSChLAiw2tUbLh4gBThVWlSpnnBwFD+h3ZrnSZ36L8jZdvKYAv5e7ilQLCozu/VzhQuEXpqWhXhW3nUHalxo+aJ21Cm8gjPyt5LikvJD8nUV/+64HVnvn1TpqIgACMMxfAdZMDd4NMW8+CndYFp+WLEy7Wq+k84k87Q28n7pl2QIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAH9BcomuxmTqzrCtuYSCIElgY03q34b/l0RbcFtoZ2Ftefo+8df09VH/C9zZUu91N+xNB/ETBOtK+xw/5mQcH+vgl2DJ8BvKL1HdvcVY4xnFdVlCrI+j9ZjZ7aLFTAT1gMA4pgp0xpEfopZ5Fk5ejeqYYSYy9qh0LH2LoCDuEB1dO+YlXHo9qZHaL557tXoraf0nXGT99/TaLkuAkp2HH1PJjuE1fTh/4sym1JtDubfUUcscaGV9a5Bb37Q2EwnU1WOTK8XulNd6BmCz8Sqc+Y6Liww5lo9ZJUKPaG2mtYgMlCt3yj2gWPmv+bm7DweoFlLkPBzr1M8kxgFzlfouVtU=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"395bb93941ed4566ae9df20475f006fb\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/testIssuerCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer01\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2LgIhoNIaK7aAGCu7Ufpt9Z2DKbTzjw1cnc5J3U8xSJGHIgva5Wr80DAvsRwG7jt53+iRksYJgW/gIF0ncN8kEX14A8YLsRKBZ5JXyHOVyUl05qXXA9IP2kra3s1RC650lwrwUhCs2c3QFoDwmzhac+Rcaypua6+jdGoY50OZNpgF5JsBXckSLqU2oeH5tCUN//x0kkL5ki5nHDPdOYFoa1MWPKCm43xahB4T6bPlKy1UabeMGGQRN2QY9gRn5RJ2NDDXmBpYGJ+eo7SorFfWvz0NbmNG1O/fCOsEoSsrRVLeSAFRhiWOkrTZ6N5gapqEETQxh4Y45IJVdvwY/JWPQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBACqcD+hG2LC4deX02IY0nMDfFkZZqabBfJXMRTEP2aOCNn+zoCHYjRkNDORT0eYefR8PyYGfx4cmCTRlZBHtHp5N47e1XD+2+MUOUmm8Hh72plWZZAswXy5xaVi/G41Vr+rim1noMg4bRBuKAAjNo+tZNa0Ty02UKx9VzyVJZwLe08tIPSkNcaWr+QIZX21GfQPS6qUPpXtih1CFt3AGpqRBH5Nt/QzXwXQMJzycBBJqidjKOj+ouSKDMUCDF9TVm5Wln8d5cVBIEbM8ovRtLHhs/wiIwoX88B7yju4QI/QjyD8cGPfSHhVt70VZOeXD8LE8z3T6BJE2Kym1E1O2brs=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"inProgress\",\r\n \"status_details\": \"Pending certificate created. Certificate request is in progress. This may take some time based on the issuer provider. Please check again later.\",\r\n \"request_id\": \"c1ca41f4fdea4df9a90906a0e9ed1ef0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1379" @@ -172,7 +175,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:05 GMT" + "Mon, 19 Dec 2016 23:09:16 GMT" ], "Pragma": [ "no-cache" @@ -181,13 +184,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "55de5d5b-339c-4b67-9b5d-600c34faf3ad" + "c0fa8c68-6046-4491-9a8f-80fc061819fe" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -205,22 +208,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/testIssuerCert01/pending?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvdGVzdElzc3VlckNlcnQwMS9wZW5kaW5nP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/testIssuerCert01/pending?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy90ZXN0SXNzdWVyQ2VydDAxL3BlbmRpbmc/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b37fd2f8-0be6-4429-8f1d-83066fb1513a" + "62609b67-02a3-4a9b-8af1-d816566706bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/testIssuerCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer01\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4LwcrRd2m35/Thq0mwXzj0l96svDrVj9ZD6RVGNqvjH8SEbmJR3pGzSDg0pdGKWTcfa3Cm95ZybvRwwo9L1qW9sKZ+8K4YmDIyH9I7zwx8axuBWgEBU7oHN9TdtUnjZdyaWkC2lWtBm70Q6RdZ95NBqO0NR0bpjl7BgHM2D7/v8bSChLAiw2tUbLh4gBThVWlSpnnBwFD+h3ZrnSZ36L8jZdvKYAv5e7ilQLCozu/VzhQuEXpqWhXhW3nUHalxo+aJ21Cm8gjPyt5LikvJD8nUV/+64HVnvn1TpqIgACMMxfAdZMDd4NMW8+CndYFp+WLEy7Wq+k84k87Q28n7pl2QIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAH9BcomuxmTqzrCtuYSCIElgY03q34b/l0RbcFtoZ2Ftefo+8df09VH/C9zZUu91N+xNB/ETBOtK+xw/5mQcH+vgl2DJ8BvKL1HdvcVY4xnFdVlCrI+j9ZjZ7aLFTAT1gMA4pgp0xpEfopZ5Fk5ejeqYYSYy9qh0LH2LoCDuEB1dO+YlXHo9qZHaL557tXoraf0nXGT99/TaLkuAkp2HH1PJjuE1fTh/4sym1JtDubfUUcscaGV9a5Bb37Q2EwnU1WOTK8XulNd6BmCz8Sqc+Y6Liww5lo9ZJUKPaG2mtYgMlCt3yj2gWPmv+bm7DweoFlLkPBzr1M8kxgFzlfouVtU=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"completed\",\r\n \"target\": \"https://testvault1020.vault.azure.net/certificates/testIssuerCert01\",\r\n \"request_id\": \"395bb93941ed4566ae9df20475f006fb\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/testIssuerCert01/pending\",\r\n \"issuer\": {\r\n \"name\": \"issuer01\"\r\n },\r\n \"csr\": \"MIIC4zCCAcsCAQAwGjEYMBYGA1UEAwwPKi5taWNyb3NvZnQuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2LgIhoNIaK7aAGCu7Ufpt9Z2DKbTzjw1cnc5J3U8xSJGHIgva5Wr80DAvsRwG7jt53+iRksYJgW/gIF0ncN8kEX14A8YLsRKBZ5JXyHOVyUl05qXXA9IP2kra3s1RC650lwrwUhCs2c3QFoDwmzhac+Rcaypua6+jdGoY50OZNpgF5JsBXckSLqU2oeH5tCUN//x0kkL5ki5nHDPdOYFoa1MWPKCm43xahB4T6bPlKy1UabeMGGQRN2QY9gRn5RJ2NDDXmBpYGJ+eo7SorFfWvz0NbmNG1O/fCOsEoSsrRVLeSAFRhiWOkrTZ6N5gapqEETQxh4Y45IJVdvwY/JWPQIDAQABoIGDMIGABgkqhkiG9w0BCQ4xczBxMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNQYDVR0RBC4wLIIWb25lZHJpdmUubWljcm9zb2Z0LmNvbYISeGJveC5taWNyb3NvZnQuY29tMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBACqcD+hG2LC4deX02IY0nMDfFkZZqabBfJXMRTEP2aOCNn+zoCHYjRkNDORT0eYefR8PyYGfx4cmCTRlZBHtHp5N47e1XD+2+MUOUmm8Hh72plWZZAswXy5xaVi/G41Vr+rim1noMg4bRBuKAAjNo+tZNa0Ty02UKx9VzyVJZwLe08tIPSkNcaWr+QIZX21GfQPS6qUPpXtih1CFt3AGpqRBH5Nt/QzXwXQMJzycBBJqidjKOj+ouSKDMUCDF9TVm5Wln8d5cVBIEbM8ovRtLHhs/wiIwoX88B7yju4QI/QjyD8cGPfSHhVt70VZOeXD8LE8z3T6BJE2Kym1E1O2brs=\",\r\n \"cancellation_requested\": false,\r\n \"status\": \"completed\",\r\n \"target\": \"https://testvault1021.vault.azure.net/certificates/testIssuerCert01\",\r\n \"request_id\": \"c1ca41f4fdea4df9a90906a0e9ed1ef0\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1293" @@ -235,7 +239,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:25 GMT" + "Mon, 19 Dec 2016 23:09:37 GMT" ], "Pragma": [ "no-cache" @@ -244,13 +248,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "e81af40c-24b1-4509-9ca0-c6b61b39309e" + "55f4ead3-5251-4137-8520-17e328613fa4" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -274,16 +278,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b8b0973-90cf-4ad6-9e73-dc413b8a1ee4" + "6c997c2d-29ae-44e6-86b2-d7b4c2a4a803" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/testIssuerCert01/9eb064d5ee1644cd8edb08195fb93f51\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/testIssuerCert01/9eb064d5ee1644cd8edb08195fb93f51\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/testIssuerCert01/9eb064d5ee1644cd8edb08195fb93f51\",\r\n \"x5t\": \"tpDa3LOl-lcqYNabAzqfECZbudU\",\r\n \"cer\": \"MIIDczCCAlugAwIBAgIQJd1dQ3PSTQ+ZOwngDDbCfDANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wHhcNMTYxMDIxMjAyNDE5WhcNMTgxMDIxMjAzNDE5WjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDgvBytF3abfn9OGrSbBfOPSX3qy8OtWP1kPpFUY2q+MfxIRuYlHekbNIODSl0YpZNx9rcKb3lnJu9HDCj0vWpb2wpn7wrhiYMjIf0jvPDHxrG4FaAQFTugc31N21SeNl3JpaQLaVa0GbvRDpF1n3k0Go7Q1HRumOXsGAczYPv+/xtIKEsCLDa1RsuHiAFOFVaVKmecHAUP6HdmudJnfovyNl28pgC/l7uKVAsKjO79XOFC4RempaFeFbedQdqXGj5onbUKbyCM/K3kuKS8kPydRX/7rgdWe+fVOmoiAAIwzF8B1kwN3g0xbz4Kd1gWn5YsTLtar6TziTztDbyfumXZAgMBAAGjgbQwgbEwDgYDVR0PAQH/BAQDAgWgMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMDUGA1UdEQQuMCyCFm9uZWRyaXZlLm1pY3Jvc29mdC5jb22CEnhib3gubWljcm9zb2Z0LmNvbTAfBgNVHSMEGDAWgBQbNfnSubGgauEZiUvao7vexGmGyjAdBgNVHQ4EFgQUwbw30awLcs5jQJNSVBTPoN4QsWcwDQYJKoZIhvcNAQELBQADggEBALaCRrg/4J5Uja9eLp3HYd8t9jumhjjGh8/PZwOfEb0W2EHf+nHrF9EOsrcsnjtxVcZU5l6Y8pBr0y2JO8IM4dLejsjGwUmGlf4gwlBGFeNQBt2VZvM8C22jqhiGgTYPTfUWuKfZWKfDrDgjqcLTKEFgjZMjmYXHyT5BhkAfpbql1HundIfHy8vPBm3kQCNyqBF2h9UFLb39wLvb1T807Icv1rvgNjCfeunZEd9/dIAjuKUCJbYIxGTfMYIDy/2ty44a5q256BVdU9lQRrcCSun8SgCriTpErRUZv4CBqWUCmolR1p0YRORARhK2ZHh0Ia+8Ij60U16sz9KPdVZ5kiY=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1477081459,\r\n \"exp\": 1540154059,\r\n \"created\": 1477082060,\r\n \"updated\": 1477082060\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/testIssuerCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 24,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"issuer01\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082045,\r\n \"updated\": 1477082045\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/testIssuerCert01/pending\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/testIssuerCert01/a9ec84387e424a149a82d939cf8d866a\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/testIssuerCert01/a9ec84387e424a149a82d939cf8d866a\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/testIssuerCert01/a9ec84387e424a149a82d939cf8d866a\",\r\n \"x5t\": \"G64zxnE07Ew0bHXSOApprMJnORo\",\r\n \"cer\": \"MIIDczCCAlugAwIBAgIQW06TE791T2aDHdDNX0nbLTANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wHhcNMTYxMjE5MjI1OTMwWhcNMTgxMjE5MjMwOTMwWjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYuAiGg0hortoAYK7tR+m31nYMptPOPDVydzkndTzFIkYciC9rlavzQMC+xHAbuO3nf6JGSxgmBb+AgXSdw3yQRfXgDxguxEoFnklfIc5XJSXTmpdcD0g/aStrezVELrnSXCvBSEKzZzdAWgPCbOFpz5FxrKm5rr6N0ahjnQ5k2mAXkmwFdyRIupTah4fm0JQ3//HSSQvmSLmccM905gWhrUxY8oKbjfFqEHhPps+UrLVRpt4wYZBE3ZBj2BGflEnY0MNeYGlgYn56jtKisV9a/PQ1uY0bU798I6wShKytFUt5IAVGGJY6StNno3mBqmoQRNDGHhjjkglV2/Bj8lY9AgMBAAGjgbQwgbEwDgYDVR0PAQH/BAQDAgWgMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMDUGA1UdEQQuMCyCFm9uZWRyaXZlLm1pY3Jvc29mdC5jb22CEnhib3gubWljcm9zb2Z0LmNvbTAfBgNVHSMEGDAWgBQxj6r2FTw/dVo5oDZ2tZzcd8xq7DAdBgNVHQ4EFgQUcyPSNSX8D2JJIM4b8idXfiTy/1YwDQYJKoZIhvcNAQELBQADggEBAKJFtjiiFp6L4Pw1fzq3QdtchrtEQ1Hkw8/WiZgOKklzNNuyWAxF+ydcLb47PeDptJ3IwT8/d3slGxY+vUupdQS6fpy+1MxyOZWY6E3UcjHqm6mmYb2DGqA3tk5wuYR4/WjQttHcvnM06+6QksJ09Y4vj7Q+jZaJ5wO5g2NnSy2QlcMdeKKVbtywLd2PlwDP2nvFPNTywKiOy66TdTQRSH9TnKecVh2v3JMLiYEs4gbpHvYFl3orKJIcjjnfDAhZfz3V72ThvNOEiv2RJbdQADzV/UruFoWSVvr4l9RXjseF3ca1Z0k/DMerJK+m7RH90stc95GSdAa91A2AoNZsrE8=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1482188370,\r\n \"exp\": 1545260970,\r\n \"created\": 1482188970,\r\n \"updated\": 1482188970\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/testIssuerCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 24,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"issuer01\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188956,\r\n \"updated\": 1482188956\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/testIssuerCert01/pending\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2436" @@ -298,7 +303,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:25 GMT" + "Mon, 19 Dec 2016 23:09:37 GMT" ], "Pragma": [ "no-cache" @@ -307,13 +312,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "cc36da22-7039-428b-bdde-f21c2d92e295" + "bc4d703f-d661-45f7-b5f2-bbdb8b8a8625" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -331,22 +336,23 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/testIssuerCert01/9eb064d5ee1644cd8edb08195fb93f51?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvdGVzdElzc3VlckNlcnQwMS85ZWIwNjRkNWVlMTY0NGNkOGVkYjA4MTk1ZmI5M2Y1MT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/testIssuerCert01/a9ec84387e424a149a82d939cf8d866a?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvdGVzdElzc3VlckNlcnQwMS9hOWVjODQzODdlNDI0YTE0OWE4MmQ5MzljZjhkODY2YT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67c1ed0f-ac34-4871-8187-a82787754174" + "4f3e2e46-58ea-4b63-82a5-41e0c6ccde48" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"MIIKfAIBAzCCCjwGCSqGSIb3DQEHAaCCCi0EggopMIIKJTCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAh8POic8D+NjAICB9AEggTYcC94XJ4lcxE5bH8DbnYMqVt330mR3Vb9zXqjdECfII+uKX8pVeTx6OtEus//bajEj76c8jF9sa5cS/zzFKGgC1A823IY+Raniq2jOfM1u5eONqk7HxJoryaXC23dOCqf3bxECWmBSC0L/So2Z7bFX7F0NuSdpp6imGCjpb1X8faJTQhXMuw24lpWV2k/1MqpFDEEvLXtzzNRYBbrb9TsX+wDyS94dGg9zsSX+v0lW/79Q1vkK9k3EugAWe3X4jrl+J8gdGZTo1LZzK9o+hAWVEKOnSQTR+0wj02HaJ6G7OQOx6nJRCOp/dtPuS7xZ2GvFUSPe5XsKr8KFnjAlxnfjNFChXvYGwctAsgx8iVHlRQ2m4/Ov62rb7UcWriQ3lb+hViTYDfz0EfO7G6wBs+NchFvUXUXMuH3xCCePQJA37Tn8FXSE1yvePRD/uHhQDoaiIYIe5BbNqjs9/i8uriuvorrGnIcN3o+PkhTaVDYwQzCpjy5AoQGr+2Ik97/3mh7W+tDCLxrQc3JYgaKwX6V3pkv2MK/lxKOfVGslg0SmD7tKTI4HIa4X4imQUFCDBNonvJzLib+UOfSW+IQRGZzKuGh1whxW+fkjW/tj7E7cGPLpOaRpdKdiD7LXd6e6Ie6SM/XguPhaLj+bP+T/AUXDakYkqkLBQB+PROKdMlfFrc152/Pt8GqLXuz05h6QXTpl7/4Dx5HgxVqg8fJT6jDpmbm2cc2CcOA2pmsQZZVIHWWUW7wMELBWOFClHbfTiStuYNwLGoy/m3NL51OaLf1EIO6xabtRF6XY6+e0SzRAv4cxtoKhfp9kfWJf3hDEF9hK2khsRHytq2jIRIj+/tqzffK4p8Wc1YTiHX5+HH9NT24h3Gw1wA2EqCAit2oeqdTExK+aGs21eU+/+v0JomSavX/txIxGTef5d7/+b+sW5Iz3Cc4s0cJSdvptl9J78GE+boW1QcyzWXk4vuqRoy0GoIWkO//4H1vOd7E3YitFFu18cUYp0DD4KC4FcX6Xzq1SXaG5/J8Mf3aWLjWam8XzRURo6F5tECjWvblGmhYFbfrgy5VWPY3iXAl+ooylgC+zDHwHbi2WOSDFUyN735rB2Bb71UuzjOpXgEkmKfvCGwVftxIQ6br+82LLoM5qwALIHNBTe6UjLITfsHoEUldyQfS6jEexVZkrJnLK/YspzLRIVvVslZvS1QW6d7sWEhGogQszJw6gvvuj8MqbZ1mOHIaA+6ikjCFbFvckVp4riVw36zIPtmGP1jd45T3ZpBbUOI5CS2etdNSVrdxt6kS/97qHOgbWJObiS7YbplG1dKdildevsTQpdXX7bxgmNMzV1XspXCiAXSbFAONCaMXYgwI3uKqloYWE8i1xiXI3AHAAbLKMxMMzhOrKkZWKoWfRgcJwafFnLKcjXIxBT1ZKGAjHRneiau4NE0A0NphofhFVH5WmRV8QYKrSicJpg7NUusQF40uWv9RYjr+/2eSz0Ofp9hPBaYnHaju7vjnteND9gg7Ws7t6sC3HokH0aETiU3dN0pXi/A/CAzJsRduxcy+r4QMxcuy2qT+6pyLXLuJC1SH1dEFm1uy6fasX9D1ymY37ej8++Z1zH7+URDMvx07OyXlQEG6vSHjGFFu/kbLu2PmvoUW6jGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADMANwA4ADEAYwAxADAANQAtADQAZABhADYALQA0AGEAYwBhAC0AYQBkAGIAZAAtADYAZAA0ADAAYwA2ADUANAAzAGEANAAyMHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIIEBwYJKoZIhvcNAQcGoIID+DCCA/QCAQAwggPtBgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAgfBb9VcYv6hwICB9CAggPAHLAM7c7Dk3lfHckHKTWKIpPBjdp0KcsQtvTcf0dmAdBwnvAiThqpfY9aL75hNTb5QVJUuJTin/iOAXLlJOORmiIERxBnYH8E4y7zVynkl6UEEpMSrPAFyeOwyDdY+nZS1nw6fdfrgwj1MO+gtPch5lclmk9lA2ppOJ3SSZUdrGz2geBoWLECT4lctiONzt6dErGoYC7NkRMJv4LV7XhHRJpaGr958LvPJvGpWmyaQrbxAXVNMOBuax/LZGO2eZ089pV4NzCfz2XPBuKCjxZojN1wUU9UG67FnWU2XXz8Zw9XY4Iic0tglz1+2WEwr75i3A/KTfbE8Uinn7y3EZNXR31+znahpMbdaCwOSi3fR+gc2KKdQGHcfmxEB5pqWNLNtowwkIO+CNtIefdmoajsuzX0T9Y41BpyVHP22gpwIUsF4uwXBF2xyOf+gkU1PSAHIOvJu+dP41w8P6E588ieCz9vzJyNbTdHYLGALrbCkM2T8F4UJ5Wrkk26+yBJ+wLjj86BnW94/Y2IM+A6fJ9YcmdqayOWmQoAtmpELIta4HXj5V1jQFTGj6ygKO6fDM5MvtB1n5rgAsHR3sWP4dBgsv0YAzk1fLFuXVEJIwyoYR3urBr3c1Rqe/4C1nUaqemm0dJ5/Ezf40tSbfjurb4ZaTG/zGc4mfkH3OZOI4PiGXEBiLWK49rFxB2ktMDelg9MhuzTNrpTEKoQC7kW69BUkG2Q+aKm9hE2yxdVlsoHWsP6rQ7NTjehVkfH3RjWWYOsFx354cOVZPtSo0GiZ5wvlwTqY0frDPmqwrQtwdo9JyXDKDEvPocNX4e5pVsphFf3HXo73VSfIfsBtdg4vmq/8dFERoISDWfUS8HVWWyZPdNiskxbeUeWbjXUcyVKDbGPhMYMJh/HtjSvdQKxlGLxY4qIQWVblSeRl3Phxfy5zD+9WfdrlfuSF20DeuZRWpqoywYZIOuCSXAV9qDvcPUhwRWJ+Yrti3rNlGzIsSJ/hUPms7MIufP0GOaKUXRhqHP3SdpygLAzGBNk4wDEFyA0tp+QKjvuWMvzeqta/o5HdxHHTrNej6eYY12pqr8qmA8Eh8SWgZ4Sf6zB0sB7YxKTDCThIjJhuXzuvICXi/9Y9D1u19ScmEKIW/jqB4O5XwHd1HZsHAgPAgMgpKDclew2lLWfft8Ywtwkoqz0JBDXizlWIITPXswlztZfT57JiJuvE/wQHyZMndde5EDi0KTzpGh6qYYR5TXInsfWiPzLGOnAm1sBvgJslKjweFyUF0gkMDcwHzAHBgUrDgMCGgQUpefjRbz9A9nEDSmm+PaVz8YHy7IEFGtinVNGYKB39JQk0OENUJPfIbxr\",\r\n \"contentType\": \"application/x-pkcs12\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/testIssuerCert01/9eb064d5ee1644cd8edb08195fb93f51\",\r\n \"managed\": true,\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1477081459,\r\n \"exp\": 1540154059,\r\n \"created\": 1477082060,\r\n \"updated\": 1477082060\r\n },\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/testIssuerCert01/9eb064d5ee1644cd8edb08195fb93f51\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"MIIKfAIBAzCCCjwGCSqGSIb3DQEHAaCCCi0EggopMIIKJTCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAiv2dwkBQTfhQICB9AEggTYvOnd91odZfuLUwxKlGSCs+1xogu3P0uU1ZzsZzmn5n+P/9bpa9hUC/TnQQD89VgKbw/40N3s4IPBQDnlvkwuBPjAvWpzWkwbxhfEkb9ivW5VauZ8St+OjBk8p4uego8KnbK2NgPn3DcTDq9ZE0h8L+tqpSIlCFidtrgtwK8+OzOH8ginw5xB49lCzCsq7eMQx8rrBI8jbXks6G7Fi1pE6FKRvovCznq23oqO5sBAgc8sOJlYZX7YKcfqPZvY+rkFgWWxWblhPNgRqbDeIcV9AJA2lkJTJxjOU6e5041cbAp8QoVJBhIFSNwTW7ZbxTDifUPQITZCo+8HOo13u5q8CA4YokuBT/Z8efmNqcOEA7qTglrNBE2chNJ8RQHpxJNC8ILI54fhPbVY+n8tTsyZazauLUWCCvdV2hTavAaPtrA8I1DDjtx29Dxk6GoDPHC4Gu5tIbBfpAyWVlxJmRiTIcM+bRZPkeJUvUqeVBtkS7GoCkSoQfZSZHmA0FnMbkR3r1hc8RCVm9IhpC45McxOTn/UPkixiE6RecGD6yBcH54RXEESeGnkCePWj4iuxALBMuwE1Sxy1fpVFvw/kRFM5QdRBfht1hcZtnbl5z1KQWKl9OPgBb9Fph8wNEd4fu9CvFIt/yD3oYv8Q/Zn2hN7cPWXjXQw+Zw6KbeKzYd3JyhbwFrPeJMfEvGDxlQXJaYENjxMqhv6mJBGVjRyN/V2kDV1XMMOpoTEc7/xV95k+IinwibLCdShqSUswjoWBarfCSnIggMsovIFXEmamgQjDRNkMSKy4n+trv0mfHJCnX6A8ho+L0VSRDA87QIAMoxJ22xpyqUEgCRxhQtT3AWMF4LiS2LqvR8ocwI/L/wXkc9uep/Rjz50PZjN8kFsB2qvFM1imzFsKG04CmCJaAPlKnGq7hmn3rBqprjiwlJvpi0JSh2+nPMI+Nv2xF23D9svDQftE/zHrVY5kKyULJ6NOmgpyZ4yFAAtUXOgZgfl1qDfDhxEPp80vxLKMEa4wzTEG9hg7dCmF9qpfMiKomIGKYxmaDLJd344RD27gb4R8CTamUqYLIwmBwdviHL7fetSS80L1zeL+MEaqjWVun7/CBvB9FRt3F6YXufZ+D4sGgDwK/MbXpKOoS9l+2l89GIa9Uli1ufmfjQNQ+1Ld1ZWcS7putiQOwpKyrQM5AgF8GkI1x8g5MCrwdPW+YmLiE69c3K/ea8DpuO5KngWrbdjciSoeH+hGN/P5lx5gv1vQiZzYs8EYCDXGnec/WqiOhY7Lpa4dGu2CO+n7OppKRg/HHy6IEPsEnmgfLvbZTJBFGWbW1yOuD6Zi5mInb51CA0TjX0v4xClhCc67aTm+UPBSRE40kW6qogBBvdpXfjOti8xaJmmRSj1Fs/gxGxOEcPO31/Ajf7QmEgss52blYtINsiIYrCnDTek2g29/8Y0jjUqszsazlLjNUXL6x4cOJS1u0/oxpaLdhNmXwX6OfzBoWRJ8ykKYLyCzWeDk0O+48jWY+wl/+poUQ8lgrc1TR4fw6DLfQQa4YoBTWk/kcjXSSWkvg2CuSKHHO5vHa4vGns09OD94MLlgPRNgs8y3tsjQzPjjXnQrkBKIbo1aNGcTgACmWmONFwiTyW/JbUAfj/aWUHKxkcycTGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADIAZQBkAGYANwA2ADcAYQAtADAAOQBhADMALQA0ADIANQBkAC0AOQA0ADgAYwAtADUANgBjAGUANwBmADMAOABkAGQAMgAzMHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIIEBwYJKoZIhvcNAQcGoIID+DCCA/QCAQAwggPtBgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAiT/sY04XnLBQICB9CAggPAG34k8NNrO8lmVKbjBUhCvEqj90JJJC8N47vwZJxBReDU+B1OIReW2dfvbLW1ApNek71G04RhLlsSopjAKQED91grVeQnjjQCIGR/QoEc1INAPJ4GMMmPh/u7an2teZiWlmByJs4p1rbTVMFkJRj8QgyFbpJKCcshFdvCZWG3LI0N7f4+OyL9Cjik3Qt3co0+FosSF0YXNEjd+MiksVDK7lrl9SU+yvSMKxYmh9obpPMZxv97VwMFPX5S3Jd08E/7zPl14jpambaWz5A0rHXMGQChLrGo5RT9kXRZETmQLLXx4SRLpEpnPLO6Qik6cZ2JABbVJp63DjSLPNryurv9F7JjJBlLI6QwqunRjCMpHmRZIzrJKGxVDLvT0canYAlyRU4NlcIw1FjpSu5cGGQyWQmLW3WAJFGR8i6o9tqBDVTRt5LKyTCzSBU2cDcOonSPdOV65vHagA0gTPdP81fv0HUIhaBxd7MIkQB/7CYt7+6hPbVUWc74qb9k+DpQyCFPaOHj6fu6wM1LNvrNGNP6P7gg32TWpHTc+LOEYrJ+GSdQT3q7JPXA85B73SkLeUfFlfjwzJdwDKZTJq+I3V/LQoAx/IwtF3z3dIL1AIhco/RZ+rCtnnjlndF+FVR8pGZNcO2oX5eFcDSj2mZbcn4YWmvWUezYvsTsFl9KHiOIW9b8+8SiXPJqkBr6+n45sS7TjrtC/XmyeOStAFzx4SeEwHMIHEbdGnlW0HqreLntkjlCa647hQ1l7XH2nZn+5S+hYZSsl/GNviaOMt9J3r1Hh26/KbPbP/Gqx7Xfnf7pfoxJ+lB0uW66UagB58iTxlS7MfEZQcYtNsSFRLPNvlCGwUD/SpPJFDC9UFR5UXBh4AEMw/TzaC35IOuYLQdq0Mu6r225sQuHdOFnKAKfTkyLt0tZZhMYYkaQKz2SDB8XpnCmSsZ/HPagj8NCztV2FlzUyYKMRHpewlgRzFxZF+sJrhEud5Gwlq9e76ByMNL6y2vqZkdIcvKAR4K69Er973Gx062FRNtoqFMdsgjf+Ph97oXStVnS/X6syBHMZGW5YQP2zxzx8Vimom5CKlC31k9Qdcfc6Z3VadJL3BgcQFTAW4X/W4/VYKtNlhSi8z/VuW22z30aB8f5YcDUvcLjCY/DHQY5+HI1wP8+p1CxfJbUUY/y7QG+0m+E7EwmxVaUs4usThpvWjGlOQZa26yaYxsgjR5AoPV2ta4vzTFV42FmhbKyvSV4Q4pwO2XmL/iHLiiaivDr5ORwUFwv63IAbdKtMDcwHzAHBgUrDgMCGgQUIwsFMrtdrDR0UhjxbTRGDBOg5wAEFJJHFdkm+1JGLnvw0h7HNhbQYKcV\",\r\n \"contentType\": \"application/x-pkcs12\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/testIssuerCert01/a9ec84387e424a149a82d939cf8d866a\",\r\n \"managed\": true,\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1482188370,\r\n \"exp\": 1545260970,\r\n \"created\": 1482188970,\r\n \"updated\": 1482188970\r\n },\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/testIssuerCert01/a9ec84387e424a149a82d939cf8d866a\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3958" @@ -361,7 +367,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:25 GMT" + "Mon, 19 Dec 2016 23:09:37 GMT" ], "Pragma": [ "no-cache" @@ -370,13 +376,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "b57bc653-3365-4aa0-8310-d29bfcef1aac" + "3bf7516d-4987-4daa-a978-ffa0bac63aaf" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -394,22 +400,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/testIssuerCert01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvdGVzdElzc3VlckNlcnQwMT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/testIssuerCert01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy90ZXN0SXNzdWVyQ2VydDAxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb03ca46-2d3a-44e3-89a9-eacfff49361c" + "e6f151aa-a439-4772-bf6f-4875c7cb3e73" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/testIssuerCert01/9eb064d5ee1644cd8edb08195fb93f51\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/testIssuerCert01/9eb064d5ee1644cd8edb08195fb93f51\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/testIssuerCert01/9eb064d5ee1644cd8edb08195fb93f51\",\r\n \"x5t\": \"tpDa3LOl-lcqYNabAzqfECZbudU\",\r\n \"cer\": \"MIIDczCCAlugAwIBAgIQJd1dQ3PSTQ+ZOwngDDbCfDANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wHhcNMTYxMDIxMjAyNDE5WhcNMTgxMDIxMjAzNDE5WjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDgvBytF3abfn9OGrSbBfOPSX3qy8OtWP1kPpFUY2q+MfxIRuYlHekbNIODSl0YpZNx9rcKb3lnJu9HDCj0vWpb2wpn7wrhiYMjIf0jvPDHxrG4FaAQFTugc31N21SeNl3JpaQLaVa0GbvRDpF1n3k0Go7Q1HRumOXsGAczYPv+/xtIKEsCLDa1RsuHiAFOFVaVKmecHAUP6HdmudJnfovyNl28pgC/l7uKVAsKjO79XOFC4RempaFeFbedQdqXGj5onbUKbyCM/K3kuKS8kPydRX/7rgdWe+fVOmoiAAIwzF8B1kwN3g0xbz4Kd1gWn5YsTLtar6TziTztDbyfumXZAgMBAAGjgbQwgbEwDgYDVR0PAQH/BAQDAgWgMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMDUGA1UdEQQuMCyCFm9uZWRyaXZlLm1pY3Jvc29mdC5jb22CEnhib3gubWljcm9zb2Z0LmNvbTAfBgNVHSMEGDAWgBQbNfnSubGgauEZiUvao7vexGmGyjAdBgNVHQ4EFgQUwbw30awLcs5jQJNSVBTPoN4QsWcwDQYJKoZIhvcNAQELBQADggEBALaCRrg/4J5Uja9eLp3HYd8t9jumhjjGh8/PZwOfEb0W2EHf+nHrF9EOsrcsnjtxVcZU5l6Y8pBr0y2JO8IM4dLejsjGwUmGlf4gwlBGFeNQBt2VZvM8C22jqhiGgTYPTfUWuKfZWKfDrDgjqcLTKEFgjZMjmYXHyT5BhkAfpbql1HundIfHy8vPBm3kQCNyqBF2h9UFLb39wLvb1T807Icv1rvgNjCfeunZEd9/dIAjuKUCJbYIxGTfMYIDy/2ty44a5q256BVdU9lQRrcCSun8SgCriTpErRUZv4CBqWUCmolR1p0YRORARhK2ZHh0Ia+8Ij60U16sz9KPdVZ5kiY=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1477081459,\r\n \"exp\": 1540154059,\r\n \"created\": 1477082060,\r\n \"updated\": 1477082060\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/testIssuerCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 24,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"issuer01\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082045,\r\n \"updated\": 1477082045\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/testIssuerCert01/pending\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/testIssuerCert01/a9ec84387e424a149a82d939cf8d866a\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/testIssuerCert01/a9ec84387e424a149a82d939cf8d866a\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/testIssuerCert01/a9ec84387e424a149a82d939cf8d866a\",\r\n \"x5t\": \"G64zxnE07Ew0bHXSOApprMJnORo\",\r\n \"cer\": \"MIIDczCCAlugAwIBAgIQW06TE791T2aDHdDNX0nbLTANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wHhcNMTYxMjE5MjI1OTMwWhcNMTgxMjE5MjMwOTMwWjAaMRgwFgYDVQQDDA8qLm1pY3Jvc29mdC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYuAiGg0hortoAYK7tR+m31nYMptPOPDVydzkndTzFIkYciC9rlavzQMC+xHAbuO3nf6JGSxgmBb+AgXSdw3yQRfXgDxguxEoFnklfIc5XJSXTmpdcD0g/aStrezVELrnSXCvBSEKzZzdAWgPCbOFpz5FxrKm5rr6N0ahjnQ5k2mAXkmwFdyRIupTah4fm0JQ3//HSSQvmSLmccM905gWhrUxY8oKbjfFqEHhPps+UrLVRpt4wYZBE3ZBj2BGflEnY0MNeYGlgYn56jtKisV9a/PQ1uY0bU798I6wShKytFUt5IAVGGJY6StNno3mBqmoQRNDGHhjjkglV2/Bj8lY9AgMBAAGjgbQwgbEwDgYDVR0PAQH/BAQDAgWgMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMDUGA1UdEQQuMCyCFm9uZWRyaXZlLm1pY3Jvc29mdC5jb22CEnhib3gubWljcm9zb2Z0LmNvbTAfBgNVHSMEGDAWgBQxj6r2FTw/dVo5oDZ2tZzcd8xq7DAdBgNVHQ4EFgQUcyPSNSX8D2JJIM4b8idXfiTy/1YwDQYJKoZIhvcNAQELBQADggEBAKJFtjiiFp6L4Pw1fzq3QdtchrtEQ1Hkw8/WiZgOKklzNNuyWAxF+ydcLb47PeDptJ3IwT8/d3slGxY+vUupdQS6fpy+1MxyOZWY6E3UcjHqm6mmYb2DGqA3tk5wuYR4/WjQttHcvnM06+6QksJ09Y4vj7Q+jZaJ5wO5g2NnSy2QlcMdeKKVbtywLd2PlwDP2nvFPNTywKiOy66TdTQRSH9TnKecVh2v3JMLiYEs4gbpHvYFl3orKJIcjjnfDAhZfz3V72ThvNOEiv2RJbdQADzV/UruFoWSVvr4l9RXjseF3ca1Z0k/DMerJK+m7RH90stc95GSdAa91A2AoNZsrE8=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1482188370,\r\n \"exp\": 1545260970,\r\n \"created\": 1482188970,\r\n \"updated\": 1482188970\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/testIssuerCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=*.microsoft.com\",\r\n \"sans\": {\r\n \"dns_names\": [\r\n \"onedrive.microsoft.com\",\r\n \"xbox.microsoft.com\"\r\n ]\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 24,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"AutoRenew\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"issuer01\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188956,\r\n \"updated\": 1482188956\r\n }\r\n },\r\n \"pending\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/testIssuerCert01/pending\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "2436" @@ -424,7 +431,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:26 GMT" + "Mon, 19 Dec 2016 23:09:37 GMT" ], "Pragma": [ "no-cache" @@ -433,13 +440,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "333c62a0-1fc6-473a-936c-cc760d4b6bb2" + "3966edb6-1125-4ae7-a020-365e0664c417" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -459,8 +466,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateImportTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateImportTest.json index 328abc8a4d42..484a465f2307 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateImportTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateImportTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//certificates/importCert01/import?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaW1wb3J0Q2VydDAxL2ltcG9ydD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/importCert01/import?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDEvaW1wb3J0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"value\": \"MIIJOwIBAzCCCPcGCSqGSIb3DQEHAaCCCOgEggjkMIII4DCCBgkGCSqGSIb3DQEHAaCCBfoEggX2MIIF8jCCBe4GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAj15YH9pOE58AICB9AEggTYLrI+SAru2dBZRQRlJY7XQ3LeLkah2FcRR3dATDshZ2h0IA2oBrkQIdsLyAAWZ32qYR1qkWxLHn9AqXgu27AEbOk35+pITZaiy63YYBkkpR+pDdngZt19Z0PWrGwHEq5z6BHS2GLyyN8SSOCbdzCz7blj3+7IZYoMj4WOPgOm/tQ6U44SFWek46QwN2zeA4i97v7ftNNns27ms52jqfhOvTA9c/wyfZKAY4aKJfYYUmycKjnnRl012ldS2lOkASFt+lu4QCa72IY6ePtRudPCvmzRv2pkLYS6z3cI7omT8nHP3DymNOqLbFqr5O2M1ZYaLC63Q3xt3eVvbcPh3N08D1hHkhz/KDTvkRAQpvrW8ISKmgDdmzN55Pe55xHfSWGB7gPw8sZea57IxFzWHTK2yvTslooWoosmGxanYY2IG/no3EbPOWDKjPZ4ilYJe5JJ2immlxPz+2e2EOCKpDI+7fzQcRz3PTd3BK+budZ8aXX8aW/lOgKS8WmxZoKnOJBNWeTNWQFugmktXfdPHAdxMhjUXqeGQd8wTvZ4EzQNNafovwkI7IV/ZYoa++RGofVR3ZbRSiBNF6TDj/qXFt0wN/CQnsGAmQAGNiN+D4mY7i25dtTu/Jc7OxLdhAUFpHyJpyrYWLfvOiS5WYBeEDHkiPUa/8eZSPA3MXWZR1RiuDvuNqMjct1SSwdXADTtF68l/US1ksU657+XSC+6ly1A/upz+X71+C4Ho6W0751j5ZMT6xKjGh5pee7MVuduxIzXjWIy3YSd0fIT3U0A5NLEvJ9rfkx6JiHjRLx6V1tqsrtT6BsGtmCQR1UCJPLqsKVDvAINx3cPA/CGqr5OX2BGZlAihGmN6n7gv8w4O0k0LPTAe5YefgXN3m9pE867N31GtHVZaJ/UVgDNYS2jused4rw76ZWN41akx2QN0JSeMJqHXqVz6AKfz8ICS/dFnEGyBNpXiMRxrY/QPKi/wONwqsbDxRW7vZRVKs78pBkE0ksaShlZk5GkeayDWC/7Hi/NqUFtIloK9XB3paLxo1DGu5qqaF34jZdktzkXp0uZqpp+FfKZaiovMjt8F7yHCPk+LYpRsU2Cyc9DVoDA6rIgf+uEP4jppgehsxyT0lJHax2t869R2jYdsXwYUXjgwHIV0voj7bJYPGFlFjXOp6ZW86scsHM5xfsGQoK2Fp838VT34SHE1ZXU/puM7rviREHYW72pfpgGZUILQMohuTPnd8tFtAkbrmjLDo+k9xx7HUvgoFTiNNWuq/cRjr70FKNguMMTIrid+HwfmbRoaxENWdLcOTNeascER2a+37UQolKD5ksrPJG6RdNA7O2pzp3micDYRs/+s28cCIxO//J/d4nsgHp6RTuCu4+Jm9k0YTw2Xg75b2cWKrxGnDUgyIlvNPaZTB5QbMid4x44/lE0LLi9kcPQhRgrK07OnnrMgZvVGjt1CLGhKUv7KFc3xV1r1rwKkosxnoG99oCoTQtregcX5rIMjHgkc1IdflGJkZzaWMkYVFOJ4Weynz008i4ddkske5vabZs37Lb8iggUYNBYZyGzalruBgnQyK4fz38Fae4nWYjyildVfgyo/fCePR2ovOfphx9OQJi+M9BoFmPrAg+8ARDZ+R+5yzYuEc9ZoVX7nkp7LTGB3DANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAOAAwAGQAZgBmADgANgAtAGUAOQA2AGUALQA0ADIAMgA0AC0AYQBhADEAMQAtAGIAZAAxADkANABkADUAYQA2AGIANwA3MF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAgAEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggLPBgkqhkiG9w0BBwagggLAMIICvAIBADCCArUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECNX+VL2MxzzWAgIH0ICCAojmRBO+CPfVNUO0s+BVuwhOzikAGNBmQHNChmJ/pyzPbMUbx7tO63eIVSc67iERda2WCEmVwPigaVQkPaumsfp8+L6iV/BMf5RKlyRXcwh0vUdu2Qa7qadD+gFQ2kngf4Dk6vYo2/2HxayuIf6jpwe8vql4ca3ZtWXfuRix2fwgltM0bMz1g59d7x/glTfNqxNlsty0A/rWrPJjNbOPRU2XykLuc3AtlTtYsQ32Zsmu67A7UNBw6tVtkEXlFDqhavEhUEO3dvYqMY+QLxzpZhA0q44ZZ9/ex0X6QAFNK5wuWxCbupHWsgxRwKftrxyszMHsAvNoNcTlqcctee+ecNwTJQa1/MDbnhO6/qHA7cfG1qYDq8Th635vGNMW1w3sVS7l0uEvdayAsBHWTcOC2tlMa5bfHrhY8OEIqj5bN5H9RdFy8G/W239tjDu1OYjBDydiBqzBn8HG1DSj1Pjc0kd/82d4ZU0308KFTC3yGcRad0GnEH0Oi3iEJ9HbriUbfVMbXNHOF+MktWiDVqzndGMKmuJSdfTBKvGFvejAWVO5E4mgLvoaMmbchc3BO7sLeraHnJN5hvMBaLcQI38N86mUfTR8AP6AJ9c2k514KaDLclm4z6J8dMz60nUeo5D3YD09G6BavFHxSvJ8MF0Lu5zOFzEePDRFm9mH8W0N/sFlIaYfD/GWU/w44mQucjaBk95YtqOGRIj58tGDWr8iUdHwaYKGqU24zGeRae9DhFXPzZshV1ZGsBQFRaoYkyLAwdJWIXTi+c37YaC8FRSEnnNmS79Dou1Kc3BvK4EYKAD2KxjtUebrV174gD0Q+9YuJ0GXOTspBvCFd5VT2Rw5zDNrA/J3F5fMCk4wOzAfMAcGBSsOAwIaBBSxgh2xyF+88V4vAffBmZXv8Txt4AQU4O/NX4MjxSodbE7ApNAMIvrtREwCAgfQ\",\r\n \"pwd\": \"123\",\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "3415" ], "x-ms-client-request-id": [ - "6f66e7cc-ad8a-4ae9-9360-31ca398730f9" + "86b1bb4b-1791-4572-a1bc-cb6c8c7b6f38" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert01/f0034f3046614e94b46ca68ed186ea61\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert01/f0034f3046614e94b46ca68ed186ea61\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/importCert01/f0034f3046614e94b46ca68ed186ea61\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082131,\r\n \"updated\": 1477082131\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082131,\r\n \"updated\": 1477082131\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/importCert01/f6c948cc987044baa8e8115312d99f09\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/importCert01/f6c948cc987044baa8e8115312d99f09\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/importCert01/f6c948cc987044baa8e8115312d99f09\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482189049,\r\n \"updated\": 1482189049\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/importCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189049,\r\n \"updated\": 1482189049\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1762" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:32 GMT" + "Mon, 19 Dec 2016 23:10:49 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "7862f63c-05e9-4cf3-9ef9-7ddd8c002e0b" + "a9e989c8-e505-4e9f-b000-7fa9f3cd8b88" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,22 +71,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/importCert01/?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaW1wb3J0Q2VydDAxLz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/importCert01/?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDEvP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fecfbbc-4629-4e93-b9ec-61748d812a07" + "8bf55f6c-36d3-44de-829a-815b31ff08d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert01/f0034f3046614e94b46ca68ed186ea61\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert01/f0034f3046614e94b46ca68ed186ea61\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/importCert01/f0034f3046614e94b46ca68ed186ea61\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082131,\r\n \"updated\": 1477082131\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082131,\r\n \"updated\": 1477082131\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/importCert01/f6c948cc987044baa8e8115312d99f09\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/importCert01/f6c948cc987044baa8e8115312d99f09\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/importCert01/f6c948cc987044baa8e8115312d99f09\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482189049,\r\n \"updated\": 1482189049\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/importCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189049,\r\n \"updated\": 1482189049\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1762" @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:32 GMT" + "Mon, 19 Dec 2016 23:10:49 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "9a71a3c0-73a3-4fb3-9ef6-4f46feb0d81e" + "d53eb28d-bf4c-42a4-b908-928d26f07e5b" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -133,22 +135,23 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates/importCert01/f0034f3046614e94b46ca68ed186ea61?api-version=2016-10-01", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDEvZjAwMzRmMzA0NjYxNGU5NGI0NmNhNjhlZDE4NmVhNjE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/importCert01/f6c948cc987044baa8e8115312d99f09?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDEvZjZjOTQ4Y2M5ODcwNDRiYWE4ZTgxMTUzMTJkOTlmMDk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e463767c-77e2-4596-8794-87492475e1c3" + "92d7552a-085f-487f-9beb-46eb20af4b81" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert01/f0034f3046614e94b46ca68ed186ea61\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert01/f0034f3046614e94b46ca68ed186ea61\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/importCert01/f0034f3046614e94b46ca68ed186ea61\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082131,\r\n \"updated\": 1477082131\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/importCert01/f6c948cc987044baa8e8115312d99f09\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/importCert01/f6c948cc987044baa8e8115312d99f09\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/importCert01/f6c948cc987044baa8e8115312d99f09\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482189049,\r\n \"updated\": 1482189049\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1217" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:32 GMT" + "Mon, 19 Dec 2016 23:10:49 GMT" ], "Pragma": [ "no-cache" @@ -172,13 +175,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "5269064c-fd74-436b-9447-a56cc97fcdd7" + "47f99757-1013-4297-9be0-ef34a136fc45" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -196,25 +199,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/importCert01/f0034f3046614e94b46ca68ed186ea61?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvaW1wb3J0Q2VydDAxL2YwMDM0ZjMwNDY2MTRlOTRiNDZjYTY4ZWQxODZlYTYxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/secrets/importCert01/f6c948cc987044baa8e8115312d99f09?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvaW1wb3J0Q2VydDAxL2Y2Yzk0OGNjOTg3MDQ0YmFhOGU4MTE1MzEyZDk5ZjA5P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a52fe6de-1ce0-4dda-ab4a-4fc7176ac0fe" + "fbe3a9ca-c143-4a41-98b3-197193f7fbed" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"MIIJOAIBAzCCCPgGCSqGSIb3DQEHAaCCCOkEggjlMIII4TCCBfoGCSqGSIb3DQEHAaCCBesEggXnMIIF4zCCBd8GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAjbQg3KClwVAAICB9AEggTYwZY1p++9YQJ47yZYGqzFb+U6o3UjNHE3cl4r2qvdCnKuA1Y9Jdtqz27soTps4eG7wWc6CukHNblQ6hdgpIozVKERKAS0d/fDNvqZpiDO5dqFeNSHApcQt8+LD8t7QsM109EXmawGmo5T+Hke2WbMLA4SRUKS0P2I9v98XbWWdc0x0AbjGeJaFinYIZoWjKCoRv5Q9bstgDcOUAbOaGkr4q4GsP25ijIM9zYKDU5k3AcGhZr/MEdXcJ8z8UOn9FnNRJPtlUL410/qZkyh9nLmeCi8t48L9Lk3XKnBFC8VqS4nM59e6mz3b6t5Dbt2pOi1vpNnOSwIg+A61i/McflvxhVvY+/0Z1ewBmYrZM+fRAGHj2zUHtzCj3+vtkc/VllMyYltOHgl+tL4abOvICobi8DtXA28QEPLJOXIHgtBcQV+k6hvDGUTJO7BzS/d11BW6jxL2lXTa/XTYwNpYqlrD2Wb3SWjR1HOJryVbv0AVqe/nhzh/DzgOokQsGvKoh7c6gMzVsqbQC87/HEJ4iuMTgPGvTSoWfV0sP6xMMVQ+1C5L/7M1/VKXFEHcQqG3b4LQNULox3QFoZHcxxSKB6AGj5cBIwzG5Gawyp0jPME3iCf6qP9DXggMP5F5AsQY/0IgPPF9uxlTGfSiNC5Zg0YeZ5sc9a/WqXiapQ3lrqnyhu9mkHnnFOawl0wC1/RlfAIZErkm8ywQ4Rww563/maRxKIV4P0YOJZh1k2AcZiE91uoagDvCVixbHg6S6f3MoUDRILhGdzalxzo+H1YmAU3Fxgh0kigMkSiwRHw6jMACxGEK1yyNPGyinkO+CmgoH8nTiYYcsSDSsOMhiDnbCjljFd0kW6odZcpmlsZInygea3pF+mFln8jvDjV+/nB1/HSwuvGvmzHzIOqakFu8HF/LH/I/Vxoan++/vgdyoAV4ncd4RKHcu62UVs7wjtkbaTiu+rawNnG+wKejc6DvHD5dRPQa48c2kNXRZCrnnXYwYZgBx1OJ1KCIv8xCExDgbJ1qivdw718WTfllWpxZkf9KKMEjXGHQOyHLIc5Aaq3DYFZ07mG+ZCxx107ZSXhOu+Aqk0FuOUZcjhUFMUMKI9Df9DuYxIH6uWq9VXI91uJAhwr8XAAe9WbMyJS1GxgiIpmbgueBppPUH/Wq4Z+8eNxruZfcmpVf0HA81bmNd/3ZlSkdSjJ3uzoAsuiHeAAtj1Ag9ZTnMxXx0htq7JLzNMEB7XPy0XEIm+/687xmUyGdqQK35WyZGNNmQBwy/50KzrX9iK34PQslGCYsL6DBVvbrZbBLh9/EuU/vDilUMch2CghI+CXv1QKixFbaJGRZk++FC84ypReAg15Tesps9LQp9Jr6MGzxBVwKYEN55HS9LdnIBBlJxQQN45vObPerbxnA0nnmoiyVmyFanQI0oeWE6LZrk9JeW3VmlSCn/cylgdpsvCES+TAQmqNkvyOCLaun5+PXmW45lTB6WaYOR/KbjGV7+YfjBWnREeYvJDaS6jk/iR17If9X2xUoPTaYO7c0WEWXIglK+jrk4TwgothfIANOvwhA0uBsMFyHbsqs+MT5OYn5U9IEGdSbRZ+kMb8bBnXt0Mh6w680hme7Ty8hioq/msuSLI2ykqBJglNe+KiU5m0lu6STDGBzTATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGQAZABmADQAZAAwADMAMAAtAGIAYgBlADQALQA0ADIANQBlAC0AYQBjADkAMgAtADIAYQAzADUANQBjADkAMgBlAGYAZABkMF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAgAEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggLfBgkqhkiG9w0BBwagggLQMIICzAIBADCCAsUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECD5vqCczXnF0AgIH0ICCApgeUU5vCLTYJmksdCpb4K+eQk01kjZZT7kgccYeaUDAfbYn3D5w8vRpZQyj7xzFtY1NP3rKx4aI8WyeqrBVh6vgRG/KDQvEs2rrEE/kzVdSrs5bGz7HoXnZip9uRc0D0I2TbETBTjBIrbQ6jiBiiMrXX5LKU9iLA6ATQ8pPXrWCmAeU0+lB1iC6+QTJ1k6Z6IrB7konhvLLJTtIe9MtZxtP1+tQSwk7FF96oFADZQpa/2V7PXE/vYC3/x6/DkFkqYqPxkBi/SHXWYMuQdC2kkjFWBpzeBD1lPe6MBun9B/L7TwWdhYp4RLDz61jVBOJAmwhNuzpzF8d02RAUNmh44QzF5SP9YGKwoU+BHce3C3akPlxf67JpzBjnc4iawQpWZVa8yqGlR9Q9NdDqWDCMikuW/d0STrR70hMG/Ynlmo8ScFdvlQVdeG17+oHlEpJKsMEFhrr21PaG9e3nYNOKeHpgEMYVUi+sckQBw/5npEKUq+2BuMC8u+XxulYCLWdNLHR/odGa162OMzBl3IEzJxa9DEfVb3ukx8N5DTH6fLRHprsASB/f4OXgZ/vt3lty2DjwOWMi6tPn42OTl3nfrX3AVs2gnJcXyq76HEWWE6trrF+t1cpQFmJPAzzbGx7G7ou0XNizwUAZTFScRd95EjBlOvTihpmlq12SNQdMw0A9SZ99H2sgKfeJHTRczGhyqhga6g/LyyAk/yU4DIUoEyOfkgBFAJor+/0Z1d7Xv3gpqktKEBbBZ0QHGMk7nG4F9etx1mJrfdP+WZ1yjHHxst9b8C/deJqdYcAgR+f0N2rfeLeibY3FV114KBVrp4Qp5x+nJWK7Ft/0TQWoRY76Ul86cr5hcSv9rZtNloKJrXcLLfk67FlFiXzMDcwHzAHBgUrDgMCGgQUZPDeEDUaGSIY6aRqhM7iWzjyxPgEFJsyaW6dhqLMly/8OefROoGYAlwY\",\r\n \"contentType\": \"application/x-pkcs12\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/importCert01/f0034f3046614e94b46ca68ed186ea61\",\r\n \"managed\": true,\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082131,\r\n \"updated\": 1477082131\r\n },\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert01/f0034f3046614e94b46ca68ed186ea61\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"MIIJKAIBAzCCCOgGCSqGSIb3DQEHAaCCCNkEggjVMIII0TCCBfoGCSqGSIb3DQEHAaCCBesEggXnMIIF4zCCBd8GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAiCvYDyb0IuHwICB9AEggTYVQZOfCM4L7F/miwxbF+g6RAaEl/rWZ2y86DUoSx2HosUbAVxZpoCAWNfdSWPIKc2hjoPuv7BKWNiY2nPvDhkjGpHVtEyQpi7cOPZU5FlNCFqM7nX3SgVx4qsyE4hX+8T4VtE/3t4ZJe2gpVY/MXdUdhmfxIu6apK+a4T2YtEQ+lMz/fUrincXxcy2Y+0KRdvE184NEgY3KUhh/fu5DX8jg2nkcU57W2D8j0Gtp/Vga5k5CAm2pkwjzETaFOPyBKacNFwcYD8YKXOtwq5hYH0NCy9pinnaTceNJN7n3ZGr4EiazSyx+kNiQnIIKjVkbVx1ch3GqsErxvsKFqdO0OISBDFdWHqnG61WKXw8KeQIaQTKle08baKkcWsx0IS1mOQwcYTohL75LcLnTm/5kzWOi5rS/mKrd2fTJuLEyLYw3QXt1v6Qk82VgabfOU2NJ7pedY/0me8F9uTBgDa+4rbHjYO+gigaWeYC06zVK0cuMP0uIzHvoAtKTIwftKwag/+oDtrgSyshJcPJDf0ZLYYwLIK/KWUVXcSOo6m6qhdlBTeB9lLHkszNfdstk263aaUurnsGyteXWq4qaFch/dSTpXwQUYnAL0o3P37cOSIE7N38gHet+QmTqLvGL9bHelkxkI2hgp7mN1ff2JFTDupbBg85R6pmAuO0jXN9LG44za1gLh2aMWTn0dVbJPDGctn/9Ae+caVK93DPrFlN3iEo8fAavXD8BFUpyvj47Vogb9RBlAuB8NUBYCpWwmhHV/GPdSs1Tc/RN4kame80F6xhnNYd3LuUOufB3ifdWpvJb4sySUYlfUsxuhQ7mzg5nuRurfmA+BEbkyA2j2Digy50v0d1bnNLPpGMY6hs2Adcn0pfMkxoqA/NZWYOQ3x5kTN+a0xkoU3FQzCKF3Nd9bzDp0Yc7T3pKN0uTrJRinZL/XIaYKDSCLSlTVd+ZOimOZvFr/KMPB8hpdCZVBY1c6ULlvY76XRoTTYPQr3z4Fv7yGa3qLvg5C5lfRoWuauk9+gFOMTmN+qIIcit1kozhND8xqpAlMmnCsBPWoHqbHNocqFl8rh2pJuuho6z3ZhB+EdrqGuBH3Z6i+hOZ+UtJCnD9EIibD1yAIN1uYa5UqxhHSHwLJ2vuK1nwnzhFqYafjn0vmCvFUACaK/V/m5G7VligjSpX6rupCeYsyOEBWuWNQ6P6pXzmMw0B6cVcOL2cpBwHDeTV5cg9XrcTnkbaUuvcJaNG13mAQ+FPRpUeLtTXBlq/Z47nEXqu6SUtCagiyJcaXzDzQycmZiZSGB/kpEwlxu4MihyzEOrJW6hJHxmYJ6JapgITsnxTg430kiOAOcZ3T4BpsWCFBZ/cSODKHKERuF4bwIRrnjBIuDvmt22/kPspKDLlryTMzO98t8GAPDJR35UJ2jS0+aocg7JABWGbqTrM1bVb5EjXfmJWHvepkTPXd4jX3GFLtCwI4j6EHfk2RTRYIkiukrotlDRnFva5uBykvgnTlN0lk8Og8BZMLUxCmpjWDrWzF048eqBhtSKLwe52C1IbC71UscO/Mo80Cf8mksVcrVRyn0DEui3S0A74+oqn+e+uRJVIQz1Y4QFp9GKHw3hOhUqv/gAlAAbqXFGQKAyulJAKBm+AJ1Lm2zvA+t5XispzGBzTATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAOAAwAGQAZgBmADgANgAtAGUAOQA2AGUALQA0ADIAMgA0AC0AYQBhADEAMQAtAGIAZAAxADkANABkADUAYQA2AGIANwA3MF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAgAEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggLPBgkqhkiG9w0BBwagggLAMIICvAIBADCCArUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECKFogK9p97poAgIH0ICCAoiLCTkRSyXAvpIRMekiZPx6fmmSd0ArKO+h5/v7naHbQceZMHyJsTK5NbvlZZ5RGDDZA3Y3DcLkJ6Xtp8WKrncbseS8Ov8ng7IPZy/sbjw2V3ezP8FMmGAYpIcafu+Vwg0sWFfgOH+qlV2LWTxzdjypXsBdqtxB8G6jW4QGuGolTnsWh9aHOYW6SZ+Qd92Vig9dOowJgED1ImeyU/4+xxdCYnny1LwddlozRqBlbOu8MufTUkO6vvoTjte2lhV28JvilpoLuR+jjXiIe2sWAGcBAA0iBsjlMBKzTPZDw/hH7vbEYHdb6xfm0LIq8I+gpzp1CyuSNK9LskJjFSM49UOR3csut+aRMAOli6oAPKw9/Zu8zjkR4I3t+kA8olHc96k8CirCtRimt6kuZFxezl1sy3z39up62pNy8cPmHVyzOkGuFfgc6yLOERgMqT4I7hBCDKSoTvWT7iVNhvcNKOmT6jlgyoCm0BW5hs2pkwP7tEb2UivuDxV+PmMe/PP/GmgrClAq5Fzcw9Do2KJzsJT9XVjjg5mwpVO+hJVM8GMsf3s53vBU4lL0zAyCt0s2OOxOraHFxZoKa2IPt+Sg+8vIC5NXU1g5WmmoEyEvjkBHrRMx276ziKPijIZds6SPPl4oN+QIpG++UP5GG7i06vxZ8h6uK+qAfOZNqQgeJUg745M4sRzetZUzoNdNkV0AA7NB7wl7L8cBmy/9RFGS1C9XkG/1ZEaArKFlIQ3SyRgqs6jWrO5SRYnSYCJignjoEO+KR9KIMkzfuZyV+Fb81v1EaVQ9KJT0bH5HFhbfLvmbrFrY5Kf7QRvh5CU8aqsBModKoWv1AbRe7YuKxfRyBNmfBE49CGbpWMEwNzAfMAcGBSsOAwIaBBQiiJPm9kHZLVYIShgeCV4B7anvgQQUVeJ9mfipb4TvPh5T3kHFtG4zNNc=\",\r\n \"contentType\": \"application/x-pkcs12\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/importCert01/f6c948cc987044baa8e8115312d99f09\",\r\n \"managed\": true,\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482189049,\r\n \"updated\": 1482189049\r\n },\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/importCert01/f6c948cc987044baa8e8115312d99f09\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3518" + "3498" ], "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +230,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:32 GMT" + "Mon, 19 Dec 2016 23:10:49 GMT" ], "Pragma": [ "no-cache" @@ -235,13 +239,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "9d397ca5-fffb-41fc-b169-5f6aeace3828" + "22afc0ed-f9c0-4962-bf9c-cba009ee0ed6" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -259,22 +263,23 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/importCert01/f0034f3046614e94b46ca68ed186ea61?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvaW1wb3J0Q2VydDAxL2YwMDM0ZjMwNDY2MTRlOTRiNDZjYTY4ZWQxODZlYTYxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/importCert01/f6c948cc987044baa8e8115312d99f09?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvaW1wb3J0Q2VydDAxL2Y2Yzk0OGNjOTg3MDQ0YmFhOGU4MTE1MzEyZDk5ZjA5P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "987064c1-8672-41f1-ac3c-5a68c0f4c7dc" + "4de3733a-0c27-490a-acd7-71109c90dbe4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert01/f0034f3046614e94b46ca68ed186ea61\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"5bVAT73zr4-N4WVv2-SvTunAw08ksS4BrJW_nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD-OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF-xEaavXm337aZZaZyjrFBrrUl51UePaN-kVFXNlBb3N3TYpqa7KokXenJQuR-i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK_0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9-d9R76zCL506NcQy_jl0lCiQYwsUX73PG5pxOh02OwKw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082131,\r\n \"updated\": 1477082131\r\n },\r\n \"managed\": true\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/importCert01/f6c948cc987044baa8e8115312d99f09\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"5bVAT73zr4-N4WVv2-SvTunAw08ksS4BrJW_nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD-OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF-xEaavXm337aZZaZyjrFBrrUl51UePaN-kVFXNlBb3N3TYpqa7KokXenJQuR-i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK_0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9-d9R76zCL506NcQy_jl0lCiQYwsUX73PG5pxOh02OwKw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482189049,\r\n \"updated\": 1482189049\r\n },\r\n \"managed\": true\r\n}", "ResponseHeaders": { "Content-Length": [ "669" @@ -289,7 +294,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:32 GMT" + "Mon, 19 Dec 2016 23:10:49 GMT" ], "Pragma": [ "no-cache" @@ -298,13 +303,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "cdf49c60-3556-4c61-a026-f745142b38ce" + "02405121-6026-4493-aaa1-cc4089985909" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -322,22 +327,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/importCert01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaW1wb3J0Q2VydDAxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/importCert01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e17620c-3051-4a21-bd14-36df7237817a" + "d693f8f3-2a28-4377-aa14-d030d4593c64" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert01/f0034f3046614e94b46ca68ed186ea61\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert01/f0034f3046614e94b46ca68ed186ea61\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/importCert01/f0034f3046614e94b46ca68ed186ea61\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082131,\r\n \"updated\": 1477082131\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082131,\r\n \"updated\": 1477082131\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/importCert01/f6c948cc987044baa8e8115312d99f09\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/importCert01/f6c948cc987044baa8e8115312d99f09\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/importCert01/f6c948cc987044baa8e8115312d99f09\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482189049,\r\n \"updated\": 1482189049\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/importCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189049,\r\n \"updated\": 1482189049\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1762" @@ -352,7 +358,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:32 GMT" + "Mon, 19 Dec 2016 23:10:49 GMT" ], "Pragma": [ "no-cache" @@ -361,13 +367,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "41c9f110-2f0f-404f-8583-17b39d11a78d" + "c35707ec-31c1-49a1-89a0-b0f8ee28094c" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -387,8 +393,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateImportTest2.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateImportTest2.json index b23956b65e86..929a82ba3d35 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateImportTest2.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateImportTest2.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "//certificates/importCert02/import?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaW1wb3J0Q2VydDAyL2ltcG9ydD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/importCert02/import?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDIvaW1wb3J0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"value\": \"MIIJOwIBAzCCCPsGCSqGSIb3DQEHAaCCCOwEggjoMIII5DCCBg0GCSqGSIb3DQEHAaCCBf4EggX6MIIF9jCCBfIGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAgyc7rsPyUlvwICB9AEggTYnL5NcywzZWVD0kt633d93XODdRJX4qBypJUqJy3ZgPoAAfW8pGJNGQnv98BMGXe9ij47t6c4V5/aSkSiV0AVcSmDlA1DK7IV8eszDY/V5B82QAaIdF5mJKyRA6IMW4TGfQ5/W20pfWiKxZbqemYhZ+evL72Re+THLt6jtUwOJTZD6z20WjaHXMiRWJ1Pk+X1LBGxP9lJHuGNCmUwlAbha9eN9FkrF7Lg33DUJhVAQVBXs2nccwg7t7r7nWtI5/u6nw0emJynMwGopQOvsfNi4tpehVAhqFUzUejiUvYKrE1MMedU2xtj/ZEDI2Y1OkKR8Ma1ppXiU/xfYQkFhRKeS6V+v+7oQZZZ/nd1ThVsI7x7pGe+RA7u9PI4WsAw2rCZDWrscS92xn10sSGbX91r2zVIC7FscfA3xFp+fy72c9Kss5w4FDAoXj6xoQu3yFbAbOPL9SSjAL2Q+TYlDzfYc+FaXAPk0V7qg7icM8Q01LsBBLrU+2SrnOR/70jeg1HvcNSbU5xN1XxNEJOl9KLHnOaSygMPUz0VREt5O1Cn5AL3DHEtfBCTdomHQSQJ94m62xKuQLLIyxFGkHs1yWqXcUyGB/6TL0qrBnmHwG2TFJO/vjDYNXd00kNwSYwHOOybP8kxcyucI8Gtg8qYatkx6mFT6tEWZKt/EVxOOLPWqfSAnJ73nMTgwQH3Au8iXvnkrLPdWEeRbpWMKUzWx0gfHcB65TZHCDRv1oX3aSyXcq9WkJvXy8sroKd8a9XJ66gDxt6dJQSVCHONEVfjlknPybWG7N//WZYeOmVgOxWKVfib0ZS5UPMmWm5ObEpF1cryA0RRhLBeT17ATvuTu9mfLawqM5JTsNsaxY9cWJ5xsWqq14xqHRrYWafWv0soM4idaDw4fMCAxAEx8OMTMZhCuUmSLa7ztuFGXTbmf1gNjXUhfOSgZHSwmUe7XeKpuTc+QZKRQhFgBKu4w6lt+1I4dv0lHSZthzlMN3oppgyaZbWpbMKEYtr4Cis6F9RS8oemIEYBJgtWQAvMJeatjKJaxO9PV3qmj1gM666Cfs4gPbiAtnRnEhQvM5pLNasif0xMYE1KjbHQPZ+s/n+BmQz6VNxj6JSw1PRWljCkHgK7GcepOdl210Hq0LueiV824Zjtd4w0aU48Nhq0JlHaGpq8cY7S2NpM8y711UjnSHPVVngBnhy6oanPf8zBj9KOMwZ/O1WoKzAkwHHKnc+Sw77vIL9CCHON3D3NuLXav2e2k5aALnK5Y1LYMvY5M60Yy7mz9z1j7LK//7c06sxoJzEuPOWQ67c09cXWsodTSx8f8CzCQzoWHLsRROgstxA8sSCAhraBzVr/81PUxElLIMH65VzHiMk7VlayKpfFXxxye2vNkuCXOVdVwaBs5vy24FRb6fCAaAC511cl2FXzQhRvRl8jSaYWPMjgpF068mqu687lprTTRk2ZcIr4Ppk60kxjlImLs6URau6Kpq1FUbcvATho+64P/10ubrUOPCKDpWVdYeuGDWaRUxjIO+HzLiAJm4U/Ox74w6bcNQiokQBsgLDmfhHJEW31WqdyM0c7RQLijLEy+8qkJfrEU9yvUPc1HHvyOIEXhcFt0vrgj14VAKOpw45iwvHtVU5uRdBAPMl8HYsNg7gmEDGB4DANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsANAA3ADIARgA1ADQAQwA4AC0AMwAxADEANAAtADQAMgA4ADcALQBCADcAMgBBAC0ANAA3ADUANgA1ADUAQgBGAEEAMgBBADYAfTBdBgkrBgEEAYI3EQExUB5OAE0AaQBjAHIAbwBzAG8AZgB0ACAAUwB0AHIAbwBuAGcAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIICzwYJKoZIhvcNAQcGoIICwDCCArwCAQAwggK1BgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAirO/bm7IqGcQICB9CAggKI8oc3itfDlR2ve0WnfVCULoELvKfYMyQJawZa8bV9OSyOXQO2WfXC00aLsBW9iHdQ4y5jbR0bUfSF0ai8ZZB03z984/8CuMQKSIHAJamjLfyADXjytr5wBlJBaJBiR6SshtcokycntGkyVOkqtTLY30YqgEDsCz2U8oY5005tMRr5W+49tbDp81xVhkOsUwjtFjxMl+Lk+ghjSU3N520oBnOeE6VSLMsWAX/S4gMIW4VCXLI9XAyk/o0+bqRJnIE5Zanj381/hIF6ydy8bUbIBjuV/fVvTSmxm6M12QS56QE9dx7A+3jVgsQZAfVFdzUeO8DTX4a+mJ47Kyfb6dWqVwOsB80rV8KJD/LpWspGLoWDR5fdrL+2tM/kTw6L1tUA7MgXDAx8qXQGyenC0eZWDeA5s0gqAWgWq/71fVKl+4eEGJTM3Rb8R0shyeQTS2SUUFkQr0RpSYGMVNG/MXjtbXlPRJDXmz0X/uACV8MetsY+I3RuaZDI7mXh9YNR+gfyolM8DuMEZV4kg4NNVyD5XkWH8negKagP9KPWGE62YpF3qKYqt81GSPXGyDB68kb9wF4sHOYSUqQkiF0BlS0n1Ka8TrgIPn246PCisN7O5fBLv5Ldf8s7w1dnJU+2zF4sf8RGY0P80UWfvKxNXr0yiIBnVUTemrA9vOXuRmLpB6CKx3s4+pedX+VjloAOAYiulkvbkaIZ05IIFG/rtJ1v1Vr8UjlW1lbHRwFkFf6FJJDSx578zr6FhMSmFOKHf85KbbnXzCssdG6gYnoxkohzzpJWH/58WXu/sMGfkn1biNlRqZJUcI2+LZv/GQA4i3hcBAdMEIPbdpWsT3fZDBl3LFCIKwy6m4A+MDcwHzAHBgUrDgMCGgQUBDCmw+OGhvpRM7jcGhqYwRO+P5IEFLUWyxfYoRPKoI5c3ykfx7r1wzs5\",\r\n \"pwd\": \"\",\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"value\": \"MIIJAwIBAzCCCMMGCSqGSIb3DQEHAaCCCLQEggiwMIIIrDCCBg0GCSqGSIb3DQEHAaCCBf4EggX6MIIF9jCCBfIGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAhnxr0Maui/WQICB9AEggTYqIwwJRiN7G99oLnw6uEITXwIn4LO3u6nUyQgyuLVfnl8+5BV4Q/ZRM0j9asJ/TVFPQ/qalfAZ7o3XDcyFSI5o/Ir36cPHcD99Emm9cwOyScPW8BpTLcEVypxq5mzcSY0yVo2gsWabWYN7Rwq8KRqj7GsUzcaWK09TEC9isq8G9b/c3OZ4qcDISQA1i6fMLVNABpSoO0DbmDR9PRDvFVFgFxWQDgYmTCQBh6it5Z8GMTeiAxa4hgtgFZQ3U5b2JMlbIY5xgybJ6gNyuiDZLwGTT3X/bhGVtBtmzD4Sme5QBg/dZlWYgGxJwR20uWdhgo2ylUBnYnR3cI7djBjM1xsTreOeoXAwx4RmxKv2d5fqTb92E1FBMeNR0aKOg7VLVCE6Irw8fTYMupdHGwxb2oUZg9s1DGBI0PmMhP+kt7mVBL5Ju1If1WXcdKIHTKPelBzOTmHD7Dr+aiSc0ki2EKmHDMfPJtnmf6cY6pnUssVDCVCMWb0TNPigKuqhiV8tSCJJ5pbivAR6wXaR1rOuHGxWBV7RjS2OvqnUFfm6ZBCYBte63Fb03/3AC9stcGGap8wwXihr1IA5EwOhAnOp31hjpoTehIzWbgcA3IbvjMTCV3ORFqQ3Q26tNYLfh0GSHG2Z3SHJycJf2C3IqspVy4rBQ/rpGSu7pARiebBC9S38PstIKw28SyUk6WGBMLP0ZpuCbMU2IAFSe/b0jMwNsPimN+QZ2yTQ88KUFWQWCqAblqR1o6DIzgImOrZx56vWHvWGKTrjmAzMuyLKZ+s1bhsmD/jojDJAUr8fdqMo2P6GZGvHzNZqSBxuwWgFmpqyM5ioK4M7XzCdnAsLisLOeQSkFCz5RlZw9rSKnOJpL0pOHs8KaHyyTOd4o7lye+TqV/uoMhCk0yXVnFbsZ3xvcUhcpQAyFA3GkOBK7Zb36s6yNAnN440lUm5tjTEnZ68LcvUAiQlDXZppPmAlH7d6Y5n9+Syb+ZJL/P7EtUuB5pF8KXnzRi/0EhtIoudBYv2PskvDKK99nuMzUw9RIIZgDDgQPT7gfcazbuKzMTlgXkuf8A0Hgjqv/AlUIwu5bFxIjBS/kNGGQUyFOA8xgySOBo6bLWMAgVb21A/Y9r33pqAHVy4c4g4I00nkWKn62Q3dbP/i+eJbh/RFY3qPZRrwY4J+BZZnME2pbvO8ef6zf1UOFD10B+tlvAQnIDs9Ud7Zxyh+Ip8DgllZZO3IEsoNjJHdhDpxYcrmihiXArelUFNgETHZPEwxpgCRmjsU3lLp/z5ShhvtZB9Q9crF/E4fZf1ePignFs3Xqy6pSPLzUFLK+55fyJb4cDVSL3U+q015EsFZ5pbhYOVFZE1kPanY8S1qBEPBxbY0ODUeBINTY2YhjAWgcDiZAc0/lvJkhJnvbaG4PGevAhG19kZxVlINgrtk4QWe6kpb+J7SSyO3OWVEzYnORyjpqSgfB+TeOajsSfNgzQoTPoSHo3YcNHpp4OfTu0nUqYbsXaRBW4hXGm8XPaDc/MQkRdqLoA64RCd6npSKP/Ndj3/6KDum7HiXOwD5ocI3snrZjzEV5waKy2yhkcKH/Ew41vRHYUPGetpiWIFjpbACtDXWl08+6l3m1Zg9QleldTbtFmPvR+4pD12QpxB09ME57aSmzGB4DANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsANgBGADEAOQAzADQAQQBEAC0ANwBFAEIAMgAtADQARgBDADMALQBCAEUARABEAC0ARgBEADIAQgBGAEIAQwBCAEEARABDAEYAfTBdBgkrBgEEAYI3EQExUB5OAE0AaQBjAHIAbwBzAG8AZgB0ACAAUwB0AHIAbwBuAGcAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIIClwYJKoZIhvcNAQcBoIICiASCAoQwggKAMIICfAYLKoZIhvcNAQwKAQOgggJUMIICUAYKKoZIhvcNAQkWAaCCAkAEggI8MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CExFTATBgkqhkiG9w0BCRUxBgQEAQAAADA3MB8wBwYFKw4DAhoEFJ9I5hHjAf3m18xGwLLhKnoky1p6BBTzgjXwTDRGAeO956nTFbV3NKVomw==\",\r\n \"pwd\": \"\",\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3412" + "3340" ], "x-ms-client-request-id": [ - "f5669838-7a84-4428-a515-f94ec56586aa" + "5269a4b9-850b-433e-a1b7-9d2ef88cbcc6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert02/529b507c62544ce0abcd24ed29b58d67\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert02/529b507c62544ce0abcd24ed29b58d67\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/importCert02/529b507c62544ce0abcd24ed29b58d67\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082076,\r\n \"updated\": 1477082076\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert02/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082076,\r\n \"updated\": 1477082076\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188989,\r\n \"updated\": 1482188989\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/importCert02/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188989,\r\n \"updated\": 1482188989\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1762" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:37 GMT" + "Mon, 19 Dec 2016 23:09:49 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "833544bb-8c2b-402c-bdc6-f32c5719d172" + "5873a50f-8eea-4ff9-ad8a-38e21f9e18fd" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,22 +71,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/importCert02/?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaW1wb3J0Q2VydDAyLz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/importCert02/?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDIvP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fda406dc-74bd-4347-b878-508cb9c7a08f" + "0fc83979-6a99-4a48-be0e-7bfcea37e606" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert02/529b507c62544ce0abcd24ed29b58d67\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert02/529b507c62544ce0abcd24ed29b58d67\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/importCert02/529b507c62544ce0abcd24ed29b58d67\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082076,\r\n \"updated\": 1477082076\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert02/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082076,\r\n \"updated\": 1477082076\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188989,\r\n \"updated\": 1482188989\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/importCert02/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188989,\r\n \"updated\": 1482188989\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1762" @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:37 GMT" + "Mon, 19 Dec 2016 23:09:49 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "910670fa-65bb-4087-9f8c-5b641f8a1dda" + "8171e44a-87e3-49a1-9df5-993fa6d6a37b" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -133,22 +135,23 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates/importCert02/529b507c62544ce0abcd24ed29b58d67?api-version=2016-10-01", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDIvNTI5YjUwN2M2MjU0NGNlMGFiY2QyNGVkMjliNThkNjc/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDIvYzVmNWQwMGM4YTRiNDRmMzg1ZTg0MGRmMGIwNmUyYzM/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1b2c59c-b262-40c8-9449-ccb8bf075ffb" + "652b2137-ef34-464b-984d-3f8c7bf5ae8b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert02/529b507c62544ce0abcd24ed29b58d67\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert02/529b507c62544ce0abcd24ed29b58d67\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/importCert02/529b507c62544ce0abcd24ed29b58d67\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082076,\r\n \"updated\": 1477082076\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188989,\r\n \"updated\": 1482188989\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1217" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:37 GMT" + "Mon, 19 Dec 2016 23:09:49 GMT" ], "Pragma": [ "no-cache" @@ -172,13 +175,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "821e42ac-76f3-4c19-8169-b1db389e4e0c" + "c5f68500-bb7f-45a4-85a6-c0196c69960b" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -196,25 +199,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/importCert02/529b507c62544ce0abcd24ed29b58d67?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvaW1wb3J0Q2VydDAyLzUyOWI1MDdjNjI1NDRjZTBhYmNkMjRlZDI5YjU4ZDY3P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/secrets/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvaW1wb3J0Q2VydDAyL2M1ZjVkMDBjOGE0YjQ0ZjM4NWU4NDBkZjBiMDZlMmMzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7238c3ca-11cb-4ea7-9543-10ff69c000ef" + "628afd36-1091-4afb-aa6b-40f12c225ba3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"MIIJOAIBAzCCCPgGCSqGSIb3DQEHAaCCCOkEggjlMIII4TCCBfoGCSqGSIb3DQEHAaCCBesEggXnMIIF4zCCBd8GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAhD9n6+U+e8bQICB9AEggTYgvVOgeMR5q0e627YxXKX2dR9GFimwCQOd7BLUjf5xR23XKjXUNJLiRQmgE1XXWf4i0l1Xl1g/t4DNu/bA3ORLejFkK53PLdKQe3Rp/AoNrvLvsloyvlEKmG4UmYOXHmL010P95CBM44j2bVzKcMqSh6TfBGqPZubaDTsyp0GNd9NLY2+JzXD67gBWfsjYSwaGm9WPyW0FbTDk6f+ZHVykb+rC8xWxsl3ZhU2dny+IFevg3j8iA8TJq2o+ButqlsdBz2PQ36PIlKu672SDu58GvlQqnVZmln4EHqHPWrILFlamNoSqG5Cw4U++XHGDWzIDA+vZHa7bYYtu5QHdqhwuIZLBbJHBHJ/w8np8IceY52yg5qupgKJiXhwHYgzAb6wBQ5Lk5MulqEKD8SoQPi9tDKxo7OVbi++oonexYYkvVihYl+nn+LRFx4aRUZ4yUyc1qwoSIOG9C5Z/iLHJ4yDPvFQUhtF2ZbLst3ZmF4C/XWOHqYz1rpBD7lWvZGhJbrxjrhPCtNV/glM+CleTgvim4d2UV+lYED1iJkxwNte66IdCIAkwaxf2t774Z5bNhlaeDdXitfSDDN9N870uPVfR0qj2XxOUeVbQay0hqEDoxypWWz4XnXQCTGTtiVG9a//03QCNyVr+NTaJy3AGoGCPBcmWii4BatkhjqB6+2e62SRcGVID5rjqZ8m2r7ao6GzABwtNoLPH+G/TfNdxkgJOdSrQPdUEZq8dY25hyCaimTXrSphNAHmCWg/v+Yqk4AiUDlpE0Ys3/HJBlu2PrGEeee6OBAmV9WOldf7LWxaohY0d//WKDfXfLSEhcvdyQI7iTADtR6gss+s7MR2c95+cCNOEfAnydkgQHkiRqT23GvYIYFAhZ6k5hLuaQfOoU6pjpz81cpxjHGLsUbCs8hCawXOOX8YcgXNMjzoJlrJimRypp/GjxPwysZRB2y4ODJojc6v8yNFfG6fWqxsHBXFZl/clz4MRcD28caSRGAgQe5fiSNbM/nULDc5cBgKDHsCX8g+NqA2BY6v4e1sn50Ed6l/FwCiKjKGnBkI4q4Ta3wFQADZA4seOa11RlDhrNbI7fwDxLrxvJBHeCCzFJbUy0n3gELcJtxYtGoxVecF4E2mtde8MSamQfO6A9zeHx9d3BAC7EFm+vgbn+1r184621uK0LwRxe1FNcbV1dDWtG14aFyg4Y07wUJIOuiY+vh05k402S/ndkRrXXZlkjxuZY8kMYXROoOgfXYTHskpOqjS/YAPsc+PBMbaI4GFzR/OFLDV5pN0khB4z6yiKC6IqbX5nRXWi247ceMjDI0Wvt1yLZR9ONdJdG/GtB86HTBiNObE1eMr34VA6khp3VFzgSQk1UCKBEr6cfyLqo3xqdp2uM+oZWiKCuZ23l4cZ0+KWKpQoTXV2Hni9124ZfAUThkHEnzigHazEtbcP2yPYWJ4E8QrMfBW+pbWqeqZ7pT35SpUGvFrdb4vg9k4kX/2vk2kyV05LJJEPD3WkXKdwd1dU+vUoYvmxmVnXooeSK7jD1IrQ5jzrk2G2qpNuvyyr2N7Y/K5P0ZB4CfXgyyNl10tgMosE0cNHg514f9ipVkEivdrBUuvJUOrAacMziQHG0kTnxJmPkvqmnB+vzKvcwfltOHTEJzAJDGBzTATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADEAZQBlADgAZQBiADMAZAAtADIAMQAzADUALQA0ADEANwAxAC0AOQA3AGYAYwAtAGEAMABhAGMAYwBkAGUAYgA0AGEAZQAxMF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAgAEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggLfBgkqhkiG9w0BBwagggLQMIICzAIBADCCAsUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECLw6OsWs9WNuAgIH0ICCAphp1EWuD++yEHn2NtIEKllEcGGoUKjkCTw5a6yURZ6jmr3oSEbu8R4iI9kzU3RFpHOlocop9GhYPtWYvWrNH7Zgo8OEt2jRqo0ud1wn/ojkEySJ6QSiySVF+wFsiFIAoBVXboeyyVxiaN/eY2+eW9xfd+F3sUNf8wNaR24oB6HkU4c1/xz448aSEhy0LOgC5bXH29j3AaXerNUXWjvFmDOtY6tqMR3rXbZla9uXDeVld0UyHAllN5xHsLJpRUOy1/BF1tCkHLv+nybz8ebVq/nErYDilgc681IdixdPx01aEnh2RKXAJGqym6TxdU+Ajyz22S3HayaJz4WQ1uipcGguQsxex++V1u9NrbQrSWp5D/irBe4hCNDMWr35U/Fktjb5pbVBPTUq7ahKSbrqvzjd+BoTjPLVLQC4Zn4w9PXBzbfnIXUMxMTufT4330si3WZs3erG6qVtbBVNlk+6NS62Qz9Yw+kt54DD6pL5epHNxvfQMpPVyWLpA/UW9job/NA7SOtZw8iEfS3rYVDcLZnsd8ac6x2Wvc9Rii4K2gIDpA26r1qMUuxK7QFaEUZwIB1xNCkBxvOLb6gfb8lNKBs/QRjbuaUnnI4xlw14gHW4Jqtcb3jC+2mXhdYOGhzti7P+yjEvpjS7afZ6+0RvTwC70mYlOETsHNookJBZiVX0qfQ0jlgQbZShBbK1fXZ8B4HIxHryuHt1flUTCMH+xZQJYdZIQUy9fdEWZfwYFzCVm0Nwk47nbzeEGgLHx/IDta84wTeT7fOPrcObjYcZdv/6H3o9IJfnsspjJIDk30od3rkDhKVeGMVSF+YFIDmBBoUATbGCS96KUfKdfHN7HzNNRpIALtWlO14Dt/z1tDai8ruOjefEr+PaMDcwHzAHBgUrDgMCGgQUhQ2aeMzgiLq4qbwcqdEy5h0+LtQEFHCiER9fkSLW0pY1bP8PTLmZ04ru\",\r\n \"contentType\": \"application/x-pkcs12\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/importCert02/529b507c62544ce0abcd24ed29b58d67\",\r\n \"managed\": true,\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082076,\r\n \"updated\": 1477082076\r\n },\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert02/529b507c62544ce0abcd24ed29b58d67\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"MIIJLAIBAzCCCOwGCSqGSIb3DQEHAaCCCN0EggjZMIII1TCCBf4GCSqGSIb3DQEHAaCCBe8EggXrMIIF5zCCBeMGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAiQrpmrz3EACwICB9AEggTYQ0ErxpbH4KL7okxrDs1fNtvKBErqolXetCn01VN1mNQXJpb15azRJcTes6oDk0hH2v2eb1lSgAKx2LsDnhKlq9EUT3M3LMM7WtITGFS/wYz0stf5dbk4m1JJvfRy/+XMMhUUEK6SA0caRQUVloWLQHXSuYtDg5Xpd1G3r2QkKSvuUDRmDC7Jzt/N/oCXYQFrWV02uuU0Rp9s7sdub3Q4Da1If1ZnkzTMcFwCmLsRGdOOBmQQbXTXM5G4xO7LpBafDlJsqGxhuLgX2sTALdP++1PklChQ5H3/Xk3JLjqiuKIwVatxGU1JWvzSwk5R7ECQ1NeYqLFaoQe9rkn0dyrop0mj1JUx2s9IqwV8+7dU8Ldrs/pp7ogEXCM61ALFh1OxBBi/YV/J/5UynHWwcnVt1Zl4BJDNKzLjSy/iW2D9HnGQGIzql+3oV9VDQUapdEskpJoRnz5ExZgL1pImjE3WmdRr1T+mIEIkvbbNd1JjFKXuExkBFmDv7nbwCvdoaDAQqMRzHpam0CSPRtc4Rp5ZIyaXnE1NKVZ7MJx8REyZm6DKbqepuH/BkblHGqM0lY72kO0d7pvFL213Rccx0MRdVobqak0Vnpgsmbd4RS61rh8z7BggoQGzvckpasyXnzqip+oGcLq0iXEakHnJGeYE1AYITXztKBdSzeb18UX2nVrQa8YbhhhhIkA/4c9LtRWNhpK25X9SSsAMsGnSnyOwjPLohbnFuOGByQ9MAXo9gHCgHS4dIBlBeNOta1NwnCfWMl1XZtZ7BhW80sIS9KvIs+5OeJwINeFDKKfb+oB1Xe7FrPcm9fCf0ykpSNmLE1DuOKRTe4BVIPMiQbwCSmDRk62nox7NkkOhx7dHgJDaFf4WPMPQmtXPpjzbtcm9aqrDKaoapcGhyFuHrgIc1TCQzwhafXeRRiKiZT2i+62Z0hWVtKDb/nns6hBj3PnSy4AM7yedUvOkfn0LABK27MPSk72VuXZzhGJnF31cBeTOnkSoA35gggZIXJX0+nAvdpDAtkSlanWJkW3pBrC2zZB3NiEX9LdKR2WYXbEIdzqKvyt81dCezRqXA1mXg4KBClNeICjdilhWqrE6P2jDmmqQOBRZwqIBK7Q6lWsgDGXGBA37JpZe/XNLh5a3CygrB8v2+Ij7bY5lz/CInVlhWN6ACCszM02jyGp7W/UWkoq3FOaCe8DsPSwpW0PsDkjrHVVr8mfZwUDNPM+ct7EB373eoddBGqtVVReOEMb76zOhUC6M4nvsEjrZ97a+N9sxx6C+932fylsn89O2UbAI7IweIIvdHCiyjJCs85I5DSM7tBz/I/May5ytQwIxmIY2YOTXJqt/ojA7HHLV5KCxnLctq7OCfm8AhtuvRYEYBk0cmvbz1E1SIML3kwuiV4gkAkAWjdYzEFx4orcwmKXSTk4kbTCqTORIRckBi4hDpi1wJl9vESgntQ097jw8wGsfOic07FEB5Hvws8RlrWZ4UJ+rXdN9qO0E+SOReeDJyI2eKGjGwSwho4OBpPOtgpK3Mnmf4pDYQXO0GmV0Z+xSxBtO+ujNe6nQPryPS6UsDN91Mgq6a3D1Y2aMBLtW3G1IRNQ4Wk81+mZ4ywklkQ6zBNTAW9+hduRrlnXPMQRnT2lnmgFDEeVBg0WRVTGB0TATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsANgBGADEAOQAzADQAQQBEAC0ANwBFAEIAMgAtADQARgBDADMALQBCAEUARABEAC0ARgBEADIAQgBGAEIAQwBCAEEARABDAEYAfTBdBgkrBgEEAYI3EQExUB5OAE0AaQBjAHIAbwBzAG8AZgB0ACAAUwB0AHIAbwBuAGcAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIICzwYJKoZIhvcNAQcGoIICwDCCArwCAQAwggK1BgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAh5VUT293bJbwICB9CAggKIFXG7GA8OPbAfi8PMns9ew13ZfXzgeqglTx3eTsHQKk+/O5H9yohvRKFbC3+Jn9JY+QnRT0QzM6iIo0Gbs7WpmQ0EhKw2HDaK3A/4fjJPTvtD9YCOAMtb/vl2mnc2+CXe21pdKVfqtyjE68cpr8Td8slKYS2poQYmrYfyrh8odMDZtzzZsZPbmK8EbJJvbZ3XpCDncKruAkD8sTcfCa1+6JEkWIHptFiy0ExfDu+fL8Pe89SixjRVwfrmrmXUjCWddgHV+L1weR81t/MBPnb2MAXminczfPgkoAWlVzLHQ1qcqXXi85Fl1I/VUKfUSJvWFS3sgyyQoumAiuZk8rVl3YqtF4zflmDhuk1tZwSbyosdxgg0ohi4Mrn0AO0V2zAFCYnNqdCihi8dulxiU/zHyp7HJMXbHytegM8QpIV6N0MjWvHhiKJ5eyIYHdPSJsZX7jDs549u0AtOt4NgJIGSXf6MI8emGCRN2ITeYITJQCOnWDP36/Vj4YX1uba1w9XSKOblW7jzbA+omMNGJ6mKnH+t3MnVfw9ltnFYZJQZ2x8NvlJDXsK9YzrZ5zTOWIMylpticwvlfF8x9LCJZ6GMxNCRonwWQtFGXNUuXQbp879uU/z9Jzwf4VVAQWYQoT27VIkg1OfwVdc+zaMiXBMaweEtlo035XIhA8trQ9gGRO5OXPz3vxoXsddYOW0nATBiV3yKzRqq/jx5096AtydwtItU53Z12cndL2w1e/Bi8BM8fQQUEj0M2CTt+YblEflOKT98+5muBv4kbUQ/ii8zhXjv4pMbeIa4NDM1xS9hmA1IPjiGrz1q84E3XGc60uqGrbTljVPQcwcH4STs78gV0WPYZERfIB3BMDcwHzAHBgUrDgMCGgQUZd/VQUtskCs3Axv41c8DcggWoUUEFPlk1Ta/0C2AZudzk1NGkdshvigU\",\r\n \"contentType\": \"application/x-pkcs12\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3\",\r\n \"managed\": true,\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188989,\r\n \"updated\": 1482188989\r\n },\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3518" + "3502" ], "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +230,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:37 GMT" + "Mon, 19 Dec 2016 23:09:49 GMT" ], "Pragma": [ "no-cache" @@ -235,13 +239,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "1d62cf8a-ff07-4f1d-8304-bd7391362ac6" + "12c3b90f-c46a-40e3-af8a-af9c8c52f13c" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -259,22 +263,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/importCert02?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaW1wb3J0Q2VydDAyP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/importCert02?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDI/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28db240d-a2f6-41d3-936d-d6fb68ca4703" + "cf45824b-8ec5-4d3b-a1a2-8f772d9dffac" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert02/529b507c62544ce0abcd24ed29b58d67\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert02/529b507c62544ce0abcd24ed29b58d67\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/importCert02/529b507c62544ce0abcd24ed29b58d67\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082076,\r\n \"updated\": 1477082076\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert02/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082076,\r\n \"updated\": 1477082076\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/importCert02/c5f5d00c8a4b44f385e840df0b06e2c3\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188989,\r\n \"updated\": 1482188989\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/importCert02/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188989,\r\n \"updated\": 1482188989\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1762" @@ -289,7 +294,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:37 GMT" + "Mon, 19 Dec 2016 23:09:49 GMT" ], "Pragma": [ "no-cache" @@ -298,13 +303,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "231502a7-1e79-4a05-8f44-4d65d7a21f51" + "db58d0cb-b066-46ac-94e8-004046a5112c" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -324,8 +329,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateImportTest3.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateImportTest3.json index a1b7e80016f6..d7c113d55fab 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateImportTest3.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateImportTest3.json @@ -1,31 +1,32 @@ { "Entries": [ { - "RequestUri": "//certificates/importCert03/import?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaW1wb3J0Q2VydDAzL2ltcG9ydD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/importCert03/import?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDMvaW1wb3J0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"value\": \"MIIRoAIBAzCCEWAGCSqGSIb3DQEHAaCCEVEEghFNMIIRSTCCBhoGCSqGSIb3DQEHAaCCBgsEggYHMIIGAzCCBf8GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAiSgdxNfWTF9QICB9AEggTY/CDZ2kKI4uz1awKHG2pa0vl01FHGH0TwVJWex5JSohU1NL1WvWKkkxUVapVM9Wj4etbSTwHNAGnR88mA5XNy3+MUKFCr/RqpU+4XnWTOxWWsliiN4FLkXXXDJDlw66dc0pjCr76L2nGgbTGv0NdnLTBFEJStCFSVgG1bFzoBuyGji8MNMiWFs8rdDR4uFjr3dzvcKswFLF0ijB7LBjVOjHb1t22zgPurzSWoiLbFOa5vf4imSOH5T6h0HvJFJwD7FtazNIKNUiQqbJSl6OjFRx+GLkymNQGrnodhO9VJrE6cDQB58wT7fdz5vMTBMAwfGYomhtd1L6r+svvpsnX4E15EYhbujONx+yOBoXIz/cR2Df4xMeuGk+IutErtyjgqA8IJq1P4PRNMYFTcyjagXINL/4aAgHCGsaJaCNA/IRX2I1FoRANqge/L48AGJIEMxlCPbN4ovdzhFuz353KdewzswQZ/xcT0u1Qxx7tKUCDq+POrOGqoG61kZrRSZq3FasiaKmzzaI+4QzUNGBUn/ygUY+3mETUJ4St2rXUrZRXP/vwuFclCleUM0YvkJ30uNSjbKcsX67e/DtiHRkczJwS5Q/4OeOeAf5z042+Dl7UTJ+fNLTyLZMmI2pg3l/IYRcfq+gTuP/BjMaXPUHDJshyhyWELsky/6mSKbq2igzH/X+mLCLB+OuzuY8fXvRcPc+JsG1lOYsmLrShS3ysolIa7zU4wYh3aAVH/3BDhZEyXw+uWFoqFs4MbIy1AU+fHBvANDn+Ae0XxHoGywPLZsYDUAnyc08zuYhwjV9b2HhehZBlDOenMgv6nCEbHf5JZ+aiZwPtSv6zNlurbKO90lajm1QWq9JWMLpjpShbHpklSzNBUdSUJYi+ac6dG+6eghqiP/9sm4JlNvxXOw6W+9s1Q5HVHZN8/rIFJri7Za64KIZMdT/Gr5IvIgnGA4xbvW/ao/zniX7sTzNdQdqQ16dUlyK44Y+ceOvLVrJMP4Omw8NNc7LEWJAXQIpu0dVvFbCkdHWx2z+U9dRWBz7iGbMY6+KtEQ6eZb3kRLYoadZGxvmpwCn/UcJA56UVCA3t9kCk6hhfNbfV2paiRaPqeMg+p0fhhZCAREuqGectKXyp9WkaeTrIMXYsZnIC2rNx4Nuq2xSs1iE9ajUof5vVEEQpgDSXUvUcbj1i+xGP7NiO2HtrKfgTkfGhlrvmvZlfRUcUXFdMzp7Vp1Spd0gkc7MkScDP4T2h3O8ydY6AAMIBIuLiUcxzF+dU+0Fan8PV6EiDRf8sql/1KQz7s2NVmu2ljA+troZosPdretvOG/T7X/hXUEULdOuLx8tlQVMsdVoDSXzExdFd3BZMQ8VtnfZqoA33fwA6UNNBVeJhbXQTpsHukCWJp5y4jgZv5/d67OsWoEIaHA2v0LxVsfuHErTFYFvn3oOKJzIQ0qKOy+UXYaEqFh/XoLyC9Qg2AyjDbrzl+IeooMyGr+WTsDLJosVg4BUTQMysYTrk1i8DXOpmXnvStguAwqslmNBOX125tnMP9hri+k4CGcafbgT2ttpvnr3kaMTXLaCWOxVTJ+HyBKI2HbQH8e6hAGhfkP8yKsuDu+Y0n9CTvwCj8j0MwS5NsMKqgmNVjRdkwqviqvyfJVH28gEY9OjGB7TATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsAMwA3AEIANQBEAEYANgBFAC0ANwBDAEYAOAAtADQAMQA3ADcALQBCADMAQwA5AC0ANgBCADMAMAA3ADQANQAzAEUAQQBBADgAfTB5BgkrBgEEAYI3EQExbB5qAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAUgBTAEEAIABhAG4AZAAgAEEARQBTACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCCycGCSqGSIb3DQEHBqCCCxgwggsUAgEAMIILDQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQIDSMMYz34cTgCAgfQgIIK4IkdAoHVaJhXH9cmcvdlM1FQrIjFkuPH1m5UL4bJ5po2Zv51/GMOK93OuS0Zt6wdFANONvqfofHpupZg55dYcpD9NXyr6BWObHJRAv8+8XymDDHZPNDz15QAwYx3QO7kCFxejDhIfeoQpqr+GDaynZgBfc8/ZVY3BBIBYKd1aRNFrrVDhLB9OyVhJj315J0DAV8LHxx7DTyREB6dg40+99j7mqTY2fSY0V4jQuOHFEGKlwj/sVILKXaCfzoqbQwHq2oACuJ42wXqBNmdm5UHF5N4fNPa6JLLcc67gvKq3CpAg2QA2o8Ec7xDt8CWWY/pTXnTHbCc4p8HxdIph3w2lEvJClnfzGKW3LySH5D6HmHB9JgrIYtGQArfrO+L495iLdqAA5fVMqG+Wa/RcnjniNpGvO7jB+fusW7HAUSTGF+hBPF3znsrifVUxianDBI/eTXhpeio7tssN/TfXgTrFk2KydJukxW5d4Wa08y0pA9Q6D8Wv/pZmpOu7QVrhMiOqx502U6hJ1bNPly+iZHklHB+Sc+vfW/vNLPfrKcwsJvv/R79wxCOSDIiI/ZhxKoqAI97yzipgW68UO8i7XWbNM6X2pmCvxL/A/fguZveMH2eziDW3rpN4q3rvIpidfft2YkLgZNpcaahGw02YhFJkGl3pHFS5T8nEn/sf3BuBgqMbgZ2juGUGU9RjLUvbRHUKq2LrrS+fXB4dty+ocuoq8WyHgge2l9ML3CItwW9xe26V2Gf4ku31EP9Jqqpk6zqNPa1G9nNGCUbhj6u0EHqFWei0PYRN7uY2JEteyHUqEbKD5ph6jpEjkmCHEiRHUGSMS0oZIVmE7gGZ/2578tkdacgd3W0h6GeVPKzVsEvTMmNep4IlCMtzjIvQz0iXg21otEbVOgC9t2JBtFQ+NSArYHjWJs2aWCFct025H3b9wvhwVyceaFuyAphjVO+8h84/3nsYPwsrd5diKhsJv9PUOGBxuVijcuEemYEAlLiyObzTTLyYMJugPVncdA8gKG9s1kYSECoBrlY+j6Oq+VyElPypECh3HACt9CywJmeDoo5PZzqLOtOtGTS0p9GdXRmLx1F8L4Iwf6CqisDpGN3OxUoc648bOL7GQFKSXy4x0onMqh4Bmf+ww7CFBRcC5uWWHrQzG4aEYkypzRg7O2yacwgTgpLe5kbR9WuMBK+xCkq6Dj2CYKGkc3ZWeY96Ef+6Oj7mB+cnzPKztETTXABDC19Joun2IAaGxOLEB/mlUQZrMZzbpeKLIRnlqyvdD5N4taOKRSUvt3O5wTWwn09339B/Z1Jc3kPYl1NRtFJq21+EBYJL1AMm0yLkj0+Rqh+gFDjsJJjzSKR8Gh4N7HpS5eEOmxTcxVgHWmTMCSpNEwuc15SLzEw62ilVOfpsGHRLddD2NRTrBXpIvN5EdMJvexui0Phwbr2FdoK9bpwv5nGxXnW6cF7IY4Pmt+0na3p8UFcEyJ6ZaGlXVkfNDDJqTw9CmQjvFcRB1oJ6bweZSdw1xK22zn26gumIRx11QyfFo6RgUhbbC1NpZtwWWKr87qGAEz2l9Rvanc9T0x5yjlfj7YXOxdkmPTojwyiwxSj52APwW0GqwW7PO2tQFar5ot1VhCxxFkHdPYQCcQQhP434ArONk5oKyIUUcU5KplDeJqmDbas/XqAjNLuJAeHAVv58Vr7z+dhCD/xneGyla6O70JWnD245ppo4YI8U4gyzFL02x68d7nvsmC5wqKWwRhLbHGblwRoZ7YApFmBfbcM0OpMVT3kOle7EBOjqhPnCZJNg886HHDYI9Vzm6cSJyVuACwspzQTZFaz9m7O6KbtnQBF49S4Lj75Ke6IZrIqIM4FVMLcUP8GCx3mVemSpaz8tcVKlf1o0uFXPBRpju0ynW4ivfxH/IvhslCGcImtlOPIa7JrnW6RjvCa7hVxfwUBX8ZaJsRCNZbuo23BoxKpg1Q+57X6ZAHPCLfDuCod6VPYdg+ZsdF4MsUOL0wnSS0U+HgTUzhibuAWYIJ3o/eXlEA9+9Esd2eg7zs0nkENYDkPYBPE07XjYaWyrYEyg2/kC6bZy+OI7kkNk6AQ2jDlc82BTrTxzZIIs+hpiNLUy8VuWMQ8i6jmjIKBHsVeOk9GQwG/J05X0Urfus9ao/tT6N4CJWgv2mapY1HBpFlPkpXu7QVPNirobpHXnrNOH/lcS/3vE8MOUeZv3pZKTMvhqmV4ZUGq+uIrgxPmP1LNiokWLYott1igFwxZjVMIUwTJHr2BLfatHKsDD0Vso3Amn2jQjeld46p9IkeBz/KmET2gkizpEaKb+qY7rpc37bCiM0TPwDtg2ryl/J2RKjtPmp0FwLuD3Vcifym6r/L3gZDdAgG/00RSXOpgJl63hSKag9JQaJp9apb54ZKZrE3kk5U866b2XDFr7O+CwI+2J3A0wNI2/nob++c7YuejXWC97cyQf+zciW7QQ9mx697oMD8WEmBao9/oeajSQCZ+y+2DSknED/zSO9wnxazgwSexIUSO+ggXEP1/mEZGUvn/PwRFfMFqgQkHesqCvnAlK51A66c43m29r6AMAcpETDJ9iGoAWbrL604FHtL8KXYiQL77uLgdQ+Sozt8eXn5evdglDJjlU5BgXg1CGahsZtqjv/lZdvNI775JRMeQACfNcHdoEPFyA8xjGO+i7H81sXHifOdSszn2kkPb+KPxphKgl8FGC1RklKjujD5RYjqZgWwfMSGh6z8F5DYnOs1SauAk7g522FPYzm6+qm8mylXvEwmLhw9h9dHqETlf7ZGMm6xVx+jhXGTOjXPnGHC2Ay228CHsC/aO5lyxvFg0Yrzpujt99CT5ChJoiJS/sLuIiWpQ8H+4gtBhCZ/lG14R5HHbb1IEidIR6Otmefje0QNXClru8BfHsongMqQx0SPb1eAiuOj41pGYsaZNmnZ0TqZCust7ye1jVcDRu6nkCxTXIx4Hzmm1Xxlr31F7ajLfR7IgNLaUkCyyeb6OI9sUlE6y2eIDoUq5R8+OB3QLWcosbvRIhMvC0avk47yK6ybpgK1ZDn6AsgnZ3j3P4opRIJcaPVOWR1hWzNeGRpnYzVWpjRCq4G6LHcR2juq5sn3609UbzzA8rrmn9z87cTKS9VXYpiYAtmdhgKtO+2i/lR/LJuozDlFAaxwU8TtnsA5dNzt9Z0xnfl0Om0/7RM7W/ab4duMI6ic5mzypB7muJB40ty4Zxhn4gOlhBXymdJIdo6+YU7utS0e1BZM8zd41KTuY+XPNPYxoKTLVa72IWEht7p+5ZWREwKRoXZCqtYLW3ofHftMSPjHD2gl0T5NvFPo3ZdRyZBaxJ9InZcBxPi0fve3J87cy+tFM2ZRPcIuA0TTeUld7ONSxKkv4EOOix+VUkAUpLKGv64K/uWccR1RxkCGFkT2pFSj/4wfPF6ogC/GcTV6Rb7mpIBTLK+rz8AJnMxz+bLBgWMwZvfdaG8ExhlVna/0y16KmtpON9Sq6ADmHLJNM6G3zKdfAwLnglTT8UdUPfdUupAcXnabktjuRbYx74CRJ2hnWZndpXER5HUMq78aw+q12Rt1Q0AQgTwvg/ofoEC9v4J9KlC4H6fflocxCR4cebjgx7e90/2Vs/ZohjeTrg8jekIM/etpAoCYi3IAQe/THG7A8EugHcohjPYGY8157QlFRZhqUQ0wWU0QGQSLwSERSS/KquYpzOTA3MB8wBwYFKw4DAhoEFOd9c83kBvgqsBk3MFXqDei4+dxcBBQo9bS15S1fLXT7g0zzE0YqAQFiqg==\",\r\n \"pwd\": \"\",\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"value\": \"MIIRZAIBAzCCESQGCSqGSIb3DQEHAaCCERUEghERMIIRDTCCBhoGCSqGSIb3DQEHAaCCBgsEggYHMIIGAzCCBf8GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAhjUH05/bzhswICB9AEggTY/9slVyHrEnh25DO/LxsoJs0BkFUXfRtkDIrfpzO/iLzxk7pzjyavRqJYH6/iA8LvR1T6t/XOlh85WmfTIx0L0fXEvZgd4Q/cNnoEnXkEwAJlzRbVKMXJDIh2iHiD31j5BFYyGsS79E1ZD1PTKiSG2yCZm41bbhxB7bBPhlWa10ENPhChqlNwGmUWIQ6gSmOHCw2negH/2YHXu3v0+bdIKpmvBMJQdsOizcbnXewNI0YEQrIfEX/YhPEDSvV2T1+1wGs96NXIPKldn2Lp9Zf9MiRYvBlo43i4dPzkI8nQSQot4fJ+Xx5mDPeYhlSJiss5J1ShIZ6gy6qzwSBKgg01T2inZEXjfNKTprvA6FhEO5jwoWhNhpDl2t5TBaUJy14prhkrBzZjSoWR3ng8PIeCFtJNkxgL7yYipaYc/4kWwqqYeLM5+YG4ct5P4HQwZooaGdCUYV7E/fmtDTTo0UH3mCkWd5btkF4tVM2COBMNk91BiP76CrTFknlDTv59WNX7m7zU1Oc9szk1W6iDrKv2JQOd6RsCVVYJY+h1AY56S7GYjhaYUUIxuUXa+bYontJPcoLEdD21P3IsAlDk3Nzdg2GMLR9zuiSomQsDJRZWftfFaQmp+D6FbdrA0tgPhsg4iN3DJawH2X8A7IUMceIJZlTAaGBv7nU0325LqYKetW/PPvyxjVqFuawCxIXrCOc1az6iLZp1YWBafx72cnDdu9O21nj1feQ4XPkpD31+i1a5mhP7VqfTwPcTlsnFAZAVgPUQTQjgGUW61EpQTeZEZjraRazi29vJwL2V0hH0P4o97rAN2svud5y0iyRYOe4f+hofR4gOx4mEwkv6vbNIkxg5LIFXpFqOFGR9sayc2A+GgcCsWTUsthQSMukt5088/ygX3W5GTa/y6H2FfkpHPUx3fXkk9sGI+kAcQkgqdfBRzQtfGvED2QsGs/TFB1i6va9+ZRzLRMdp93ZU0YyM+zp2zCjnDfAxEQO6eqId7xPZGsqCy11ylAkw1c4vqnkGco+aCCWR3N3NrFOKobmE+GaYVhbe34ITeh36erAiKL51oNZZlVj78suhgfWNuD6Mx8FJ20g1agZ6M9IhJPZScKJ0QZDzpXspVh/ULDAIz4P6Bp6nxH9M9OsX0MxMtvLt5yQE2tNZi9AWeOUjk8kVueWPNojawzfoWgUK99o0M7fioJ3mvE44BZjtffQ1SOsP31L1lJCXwQPOOv8pRmXc8n0iD6woI737tJ/e0UDIWnjgpYPm3jK7MhY1ixFYMeCLu0jg/fHeblqrqNHetA+3tBgct7+Yt7oQLWTm8apd29QpmQ/spWoZwLtRbatKqMdM80Xy2Y39M6LlvjPnqlIX+5a7opB7nCp5eK14MLv6h4gg2+DKCeYwa2utBQai7yKA1H0gNJOV/Qo2mtTlU8aPDYiSYOQ37vGWJixYuoskHS8sUp1yY3NSHLO4g7GuIatyvd8nxhPSvo12GzeSO5R5TWER0VJ3sIQOYmJjHkS22j2CG6hyLRbWQptH/XHuDavzHHRnpBATYn/3u4KTMHbrenhKA0V9AVFYx0Y88G8J1vzaF78kcbvNr/eKX1Ta/l4w1NuvKgbBZcGdV4XHYkpMhCLDaVpgrzVxAddnwlOH4D+DGY+zPVJxuzGB7TATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsANABCAEQAMAA2AEEANQBEAC0ARABGADIAMgAtADQAMQBFADEALQBBAEUAQgA5AC0ARgBDADUARgBDAEQAQgA1AEQAMQBCAEMAfTB5BgkrBgEEAYI3EQExbB5qAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAUgBTAEEAIABhAG4AZAAgAEEARQBTACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCCusGCSqGSIb3DQEHAaCCCtwEggrYMIIK1DCCA58GCyqGSIb3DQEMCgEDoIIDdzCCA3MGCiqGSIb3DQEJFgGgggNjBIIDXzCCA1swggJDoAMCAQICEAIEmhKkc0iFnaJSs4BnnAwwDQYJKoZIhvcNAQELBQAwGzEZMBcGA1UEAxMQd3d3LmZhYnJpa2FtLmNvbTAeFw0xNjEwMTIyMjQyMzdaFw0zNjEwMTIyMjUyMzdaMBsxGTAXBgNVBAMTEHd3dy5mYWJyaWthbS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqV3oXhSMMQoCdaK1sQEv27lHqZRpebnelsU3wi5PW0ltZTz3aO2sqU0AaUV86Frn+ac1xl0GztYVzDv+5FZKNxuheRSGnWa0jNpREBIUXv8XfOBdK9APaTr8eYNaOubO6unCFHD7h7njSdoq7LOf9+egi4E/aX7bhVey7ckBtUSeOnfspNqJnzAEGo1neyb0S7fYIFqMIYcl+XR47oE+V0rEiVEh9h96Fc6Z5tKbza9fnlyGcejCQ9eYaiJse60o/aFiBRAgfveb21WFlRcgb9VkTV3/PhBPlMmVBov1EZSpKmitd6xRy9lFFSFoknymtI6MUo5zLfR6+APDsq9CRAgMBAAGjgZowgZcwDgYDVR0PAQH/BAQDAgWgMAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMBsGA1UdEQQUMBKCEHd3dy5mYWJyaWthbS5jb20wHwYDVR0jBBgwFoAU0/M52BGdzfuw8ae800eW4ucQD1wwHQYDVR0OBBYEFNPzOdgRnc37sPGnvNNHluLnEA9cMA0GCSqGSIb3DQEBCwUAA4IBAQCjyUgsqI1hM+xDv9zmc5ReBB3Lm549gZOZoqP5LzolgYI1PqMtET0yvaGtnNPblNNbJ+pGgEbNuvYmhqXhs718BTInWSneowIYrQFU+ek3vAOk4GdSiQ0mvfImKzj3+7XlKRvMBBiPCiasdVDfKMm6geyfFAWYWLsbmR8DmOSB5Y0fXc+LxrJE+LTP5ZSOvhdvC5M7T4woWnXddBjoMms1SHGxNYU9sFxCjGQELxb2OPBgCGA6KPd+DDJIzDJdB16o2VqPdECiL+3/WKAVVh91ll6VQLubOOLNoe95aNs1UJmuniwJw3EbbVu/f0H3WfA3K0OmeBuQn7ZNJ487I9xWMRUwEwYJKoZIhvcNAQkVMQYEBAEAAAAwggODBgsqhkiG9w0BDAoBA6CCA3AwggNsBgoqhkiG9w0BCRYBoIIDXASCA1gwggNUMIICPKADAgECAgMCNFYwDQYJKoZIhvcNAQEFBQAwQjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xGzAZBgNVBAMTEkdlb1RydXN0IEdsb2JhbCBDQTAeFw0wMjA1MjEwNDAwMDBaFw0yMjA1MjEwNDAwMDBaMEIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9iYWwgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDazBhjMP30FyMaVn5b3zxsOORxt3iR1Lyh2Ez4qEO2A+lNIQcIiNpYL2Y5Kb0FeIudOOgFt2p+caTmxGCmsO+A5IkoD54l1u2D862mkceYyUIYNRSdrZhGki5PyvGHQ8EWlVctUO+JLYB6V63y7l9r0gCNuRT4FBU12cBGo3tyyJG/yVUrzdCXPpwmZMzfzoMZccpO5tTVe6kZzVXeyOzSXjhT5VxPjC3+UCM2/Gbmy46kORkAt5UCOZELDv44LtEdBZr2TT5vDwcdrywej2A54vo2UxM51F4mK9s9qBS9MusYAyhSBHHlqzM94Ti7BzaEYpx56hYw9F/AK+hxa+T5AgMBAAGjUzBRMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMB6mGiNifurBWQMEX2qfWW4ysxOMB8GA1UdIwQYMBaAFMB6mGiNifurBWQMEX2qfWW4ysxOMA0GCSqGSIb3DQEBBQUAA4IBAQA14ylq5S9dVI4pUJSfmRoU5I94KmKUoidnntDPGl5H6cGypM/dQRoFTptL7kpvVVKzJKE3CutkdiouLPP9O3WQv/px2Mc9N9K1BZViuabeiT02ezh3SJespiCPLqbJDMKymUUAx84RUSIi4KXqthVICWTqXk909wU+x4pSDNsVtL1tm+XGsVRoqeNpkLaapQ+4uT8gfa5Ktbic5B22q+aUpcHHg63b9SeHDgRs1f/doF3th1K3KxUCrjmmanTp2sTnvE00HqlcTTNfkgkviGZdd5fHHXYTqdXl8RYJETXVrNskcXAsmFYL2Re00eNRK1516NXQ3E807cIFZoChy+YzMQAwggOmBgsqhkiG9w0BDAoBA6CCA5MwggOPBgoqhkiG9w0BCRYBoIIDfwSCA3swggN3MIICX6ADAgECAgQCAAC5MA0GCSqGSIb3DQEBBQUAMFoxCzAJBgNVBAYTAklFMRIwEAYDVQQKEwlCYWx0aW1vcmUxEzARBgNVBAsTCkN5YmVyVHJ1c3QxIjAgBgNVBAMTGUJhbHRpbW9yZSBDeWJlclRydXN0IFJvb3QwHhcNMDAwNTEyMTg0NjAwWhcNMjUwNTEyMjM1OTAwWjBaMQswCQYDVQQGEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAowS7IquYPVfoJnKatXnUKeLh6JWAsbDjW44rKZpk36Fd7bAJBW3bKC7OYqJi/rSI2hLrOOshncBBKwFSe4h30xyPx7q5iLVqCedz6BFAp9HMymKNLeWPC6ZQ0qhQwyjq9aslh4qalhypZ7g/DNX3+VITL8Ib1XBw8I/AEsoGy5rh2cozenfW+Oy58WhEQkgT0sDCpK5eYP62pgX8tN0HWQLUWRiYY/WlY+CQDH1dsgZ684Xq69QDrl6EPl//Fe1pvPk5NnJ1z3dSTfPJkCy5PeXJI1M/HySYIVwHmSm9xjrs526GOmuXdGMzvWgYMfB4jXa//J6OXSqGp02Q3CcaOQIDAQABo0UwQzAdBgNVHQ4EFgQU5Z1ZMIJHWMys+ghUNoZ7OrUETfAwEgYDVR0TAQH/BAgwBgEB/wIBAzAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAIUMXY7kb1FoQgWg3btPJyWEA733ZP0t1zDjpBAX69opKbZ5P3b2GRMjuBAK+Vik1GFwvQRhahKKF9UKvcW8MHzW6QwljYZAT+zMo344xjcRT+3daDGOTNKzAXTuvnVeB0gaf3D/FlyEwHmFuAX9f75lEaMPwAK0+FI3OQTVqTF6GL+gKvQSmfejRYLjPF71nZ61yJ58Lsiknk4IFEtt/XBtaxpjvWTmH7fO8PKfLrsbt/JQiHOSwuLjFo2aMgKrjhjd6RAR7n41q5CvPjCUetAzPadlD/X8jp5iz0dELAFdux21MtJH0jgu0P6B3DJqHrXuPNX854EdGcMkQupjOakxADA3MB8wBwYFKw4DAhoEFHizThLoI/fno7Z0LKLC1k1lBb1rBBR1tamdrvWwdX4u8UNSZTCkVIkWfg==\",\r\n \"pwd\": \"\",\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n }\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "6280" + "6200" ], "x-ms-client-request-id": [ - "15e6be52-7886-43ea-9f58-4537f3b61c7d" + "745e83b9-9033-41da-950c-9b915baf9b3c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert03/c336c5bf6428439c9c990c529ba5e679\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert03/c336c5bf6428439c9c990c529ba5e679\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/importCert03/c336c5bf6428439c9c990c529ba5e679\",\r\n \"x5t\": \"Vi57fYNjurOccsuxs2_ltzMXPXM\",\r\n \"cer\": \"MIIDWzCCAkOgAwIBAgIQAgSaEqRzSIWdolKzgGecDDANBgkqhkiG9w0BAQsFADAbMRkwFwYDVQQDExB3d3cuZmFicmlrYW0uY29tMB4XDTE2MTAxMjIyNDIzN1oXDTM2MTAxMjIyNTIzN1owGzEZMBcGA1UEAxMQd3d3LmZhYnJpa2FtLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKpXeheFIwxCgJ1orWxAS/buUeplGl5ud6WxTfCLk9bSW1lPPdo7aypTQBpRXzoWuf5pzXGXQbO1hXMO/7kVko3G6F5FIadZrSM2lEQEhRe/xd84F0r0A9pOvx5g1o65s7q6cIUcPuHueNJ2irss5/356CLgT9pftuFV7LtyQG1RJ46d+yk2omfMAQajWd7JvRLt9ggWowhhyX5dHjugT5XSsSJUSH2H3oVzpnm0pvNr1+eXIZx6MJD15hqImx7rSj9oWIFECB+95vbVYWVFyBv1WRNXf8+EE+UyZUGi/URlKkqaK13rFHL2UUVIWiSfKa0joxSjnMt9Hr4A8Oyr0JECAwEAAaOBmjCBlzAOBgNVHQ8BAf8EBAMCBaAwCQYDVR0TBAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGwYDVR0RBBQwEoIQd3d3LmZhYnJpa2FtLmNvbTAfBgNVHSMEGDAWgBTT8znYEZ3N+7Dxp7zTR5bi5xAPXDAdBgNVHQ4EFgQU0/M52BGdzfuw8ae800eW4ucQD1wwDQYJKoZIhvcNAQELBQADggEBAKPJSCyojWEz7EO/3OZzlF4EHcubnj2Bk5mio/kvOiWBgjU+oy0RPTK9oa2c09uU01sn6kaARs269iaGpeGzvXwFMidZKd6jAhitAVT56Te8A6TgZ1KJDSa98iYrOPf7teUpG8wEGI8KJqx1UN8oybqB7J8UBZhYuxuZHwOY5IHljR9dz4vGskT4tM/llI6+F28LkztPjChadd10GOgyazVIcbE1hT2wXEKMZAQvFvY48GAIYDoo934MMkjMMl0HXqjZWo90QKIv7f9YoBVWH3WWXpVAu5s44s2h73lo2zVQma6eLAnDcRttW79/QfdZ8DcrQ6Z4G5Cftk0njzsj3FY=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1476312157,\r\n \"exp\": 2107464757,\r\n \"created\": 1477082135,\r\n \"updated\": 1477082135\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert03/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=www.fabrikam.com\",\r\n \"sans\": {\r\n \"emails\": [],\r\n \"dns_names\": [\r\n \"www.fabrikam.com\"\r\n ],\r\n \"upns\": []\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 241,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082135,\r\n \"updated\": 1477082135\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/importCert03/ad30ff8d23c944af868c1c3d518585a5\",\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/importCert03/ad30ff8d23c944af868c1c3d518585a5\",\r\n \"sid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/importCert03/ad30ff8d23c944af868c1c3d518585a5\",\r\n \"x5t\": \"Vi57fYNjurOccsuxs2_ltzMXPXM\",\r\n \"cer\": \"MIIDWzCCAkOgAwIBAgIQAgSaEqRzSIWdolKzgGecDDANBgkqhkiG9w0BAQsFADAbMRkwFwYDVQQDExB3d3cuZmFicmlrYW0uY29tMB4XDTE2MTAxMjIyNDIzN1oXDTM2MTAxMjIyNTIzN1owGzEZMBcGA1UEAxMQd3d3LmZhYnJpa2FtLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKpXeheFIwxCgJ1orWxAS/buUeplGl5ud6WxTfCLk9bSW1lPPdo7aypTQBpRXzoWuf5pzXGXQbO1hXMO/7kVko3G6F5FIadZrSM2lEQEhRe/xd84F0r0A9pOvx5g1o65s7q6cIUcPuHueNJ2irss5/356CLgT9pftuFV7LtyQG1RJ46d+yk2omfMAQajWd7JvRLt9ggWowhhyX5dHjugT5XSsSJUSH2H3oVzpnm0pvNr1+eXIZx6MJD15hqImx7rSj9oWIFECB+95vbVYWVFyBv1WRNXf8+EE+UyZUGi/URlKkqaK13rFHL2UUVIWiSfKa0joxSjnMt9Hr4A8Oyr0JECAwEAAaOBmjCBlzAOBgNVHQ8BAf8EBAMCBaAwCQYDVR0TBAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGwYDVR0RBBQwEoIQd3d3LmZhYnJpa2FtLmNvbTAfBgNVHSMEGDAWgBTT8znYEZ3N+7Dxp7zTR5bi5xAPXDAdBgNVHQ4EFgQU0/M52BGdzfuw8ae800eW4ucQD1wwDQYJKoZIhvcNAQELBQADggEBAKPJSCyojWEz7EO/3OZzlF4EHcubnj2Bk5mio/kvOiWBgjU+oy0RPTK9oa2c09uU01sn6kaARs269iaGpeGzvXwFMidZKd6jAhitAVT56Te8A6TgZ1KJDSa98iYrOPf7teUpG8wEGI8KJqx1UN8oybqB7J8UBZhYuxuZHwOY5IHljR9dz4vGskT4tM/llI6+F28LkztPjChadd10GOgyazVIcbE1hT2wXEKMZAQvFvY48GAIYDoo934MMkjMMl0HXqjZWo90QKIv7f9YoBVWH3WWXpVAu5s44s2h73lo2zVQma6eLAnDcRttW79/QfdZ8DcrQ6Z4G5Cftk0njzsj3FY=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1476312157,\r\n \"exp\": 2107464757,\r\n \"created\": 1482189529,\r\n \"updated\": 1482189529\r\n },\r\n \"policy\": {\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/importCert03/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=www.fabrikam.com\",\r\n \"sans\": {\r\n \"emails\": [],\r\n \"dns_names\": [\r\n \"www.fabrikam.com\"\r\n ],\r\n \"upns\": []\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 241,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189529,\r\n \"updated\": 1482189529\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2293" + "2353" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:35 GMT" + "Mon, 19 Dec 2016 23:18:50 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "fd3b2bae-300f-4645-be39-2475fabcacc8" + "96294834-c831-4f89-a3e3-75d5243c807c" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,25 +71,26 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/importCert03/?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaW1wb3J0Q2VydDAzLz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/importCert03/?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDMvP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6091d6a6-8775-46d3-a91e-f1ff06c8eb94" + "22efccfc-ccaa-4855-ab42-0db2f26469d3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert03/c336c5bf6428439c9c990c529ba5e679\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert03/c336c5bf6428439c9c990c529ba5e679\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/importCert03/c336c5bf6428439c9c990c529ba5e679\",\r\n \"x5t\": \"Vi57fYNjurOccsuxs2_ltzMXPXM\",\r\n \"cer\": \"MIIDWzCCAkOgAwIBAgIQAgSaEqRzSIWdolKzgGecDDANBgkqhkiG9w0BAQsFADAbMRkwFwYDVQQDExB3d3cuZmFicmlrYW0uY29tMB4XDTE2MTAxMjIyNDIzN1oXDTM2MTAxMjIyNTIzN1owGzEZMBcGA1UEAxMQd3d3LmZhYnJpa2FtLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKpXeheFIwxCgJ1orWxAS/buUeplGl5ud6WxTfCLk9bSW1lPPdo7aypTQBpRXzoWuf5pzXGXQbO1hXMO/7kVko3G6F5FIadZrSM2lEQEhRe/xd84F0r0A9pOvx5g1o65s7q6cIUcPuHueNJ2irss5/356CLgT9pftuFV7LtyQG1RJ46d+yk2omfMAQajWd7JvRLt9ggWowhhyX5dHjugT5XSsSJUSH2H3oVzpnm0pvNr1+eXIZx6MJD15hqImx7rSj9oWIFECB+95vbVYWVFyBv1WRNXf8+EE+UyZUGi/URlKkqaK13rFHL2UUVIWiSfKa0joxSjnMt9Hr4A8Oyr0JECAwEAAaOBmjCBlzAOBgNVHQ8BAf8EBAMCBaAwCQYDVR0TBAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGwYDVR0RBBQwEoIQd3d3LmZhYnJpa2FtLmNvbTAfBgNVHSMEGDAWgBTT8znYEZ3N+7Dxp7zTR5bi5xAPXDAdBgNVHQ4EFgQU0/M52BGdzfuw8ae800eW4ucQD1wwDQYJKoZIhvcNAQELBQADggEBAKPJSCyojWEz7EO/3OZzlF4EHcubnj2Bk5mio/kvOiWBgjU+oy0RPTK9oa2c09uU01sn6kaARs269iaGpeGzvXwFMidZKd6jAhitAVT56Te8A6TgZ1KJDSa98iYrOPf7teUpG8wEGI8KJqx1UN8oybqB7J8UBZhYuxuZHwOY5IHljR9dz4vGskT4tM/llI6+F28LkztPjChadd10GOgyazVIcbE1hT2wXEKMZAQvFvY48GAIYDoo934MMkjMMl0HXqjZWo90QKIv7f9YoBVWH3WWXpVAu5s44s2h73lo2zVQma6eLAnDcRttW79/QfdZ8DcrQ6Z4G5Cftk0njzsj3FY=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1476312157,\r\n \"exp\": 2107464757,\r\n \"created\": 1477082135,\r\n \"updated\": 1477082135\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert03/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=www.fabrikam.com\",\r\n \"sans\": {\r\n \"emails\": [],\r\n \"dns_names\": [\r\n \"www.fabrikam.com\"\r\n ],\r\n \"upns\": []\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 241,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082135,\r\n \"updated\": 1477082135\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/importCert03/ad30ff8d23c944af868c1c3d518585a5\",\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/importCert03/ad30ff8d23c944af868c1c3d518585a5\",\r\n \"sid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/importCert03/ad30ff8d23c944af868c1c3d518585a5\",\r\n \"x5t\": \"Vi57fYNjurOccsuxs2_ltzMXPXM\",\r\n \"cer\": \"MIIDWzCCAkOgAwIBAgIQAgSaEqRzSIWdolKzgGecDDANBgkqhkiG9w0BAQsFADAbMRkwFwYDVQQDExB3d3cuZmFicmlrYW0uY29tMB4XDTE2MTAxMjIyNDIzN1oXDTM2MTAxMjIyNTIzN1owGzEZMBcGA1UEAxMQd3d3LmZhYnJpa2FtLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKpXeheFIwxCgJ1orWxAS/buUeplGl5ud6WxTfCLk9bSW1lPPdo7aypTQBpRXzoWuf5pzXGXQbO1hXMO/7kVko3G6F5FIadZrSM2lEQEhRe/xd84F0r0A9pOvx5g1o65s7q6cIUcPuHueNJ2irss5/356CLgT9pftuFV7LtyQG1RJ46d+yk2omfMAQajWd7JvRLt9ggWowhhyX5dHjugT5XSsSJUSH2H3oVzpnm0pvNr1+eXIZx6MJD15hqImx7rSj9oWIFECB+95vbVYWVFyBv1WRNXf8+EE+UyZUGi/URlKkqaK13rFHL2UUVIWiSfKa0joxSjnMt9Hr4A8Oyr0JECAwEAAaOBmjCBlzAOBgNVHQ8BAf8EBAMCBaAwCQYDVR0TBAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGwYDVR0RBBQwEoIQd3d3LmZhYnJpa2FtLmNvbTAfBgNVHSMEGDAWgBTT8znYEZ3N+7Dxp7zTR5bi5xAPXDAdBgNVHQ4EFgQU0/M52BGdzfuw8ae800eW4ucQD1wwDQYJKoZIhvcNAQELBQADggEBAKPJSCyojWEz7EO/3OZzlF4EHcubnj2Bk5mio/kvOiWBgjU+oy0RPTK9oa2c09uU01sn6kaARs269iaGpeGzvXwFMidZKd6jAhitAVT56Te8A6TgZ1KJDSa98iYrOPf7teUpG8wEGI8KJqx1UN8oybqB7J8UBZhYuxuZHwOY5IHljR9dz4vGskT4tM/llI6+F28LkztPjChadd10GOgyazVIcbE1hT2wXEKMZAQvFvY48GAIYDoo934MMkjMMl0HXqjZWo90QKIv7f9YoBVWH3WWXpVAu5s44s2h73lo2zVQma6eLAnDcRttW79/QfdZ8DcrQ6Z4G5Cftk0njzsj3FY=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1476312157,\r\n \"exp\": 2107464757,\r\n \"created\": 1482189529,\r\n \"updated\": 1482189529\r\n },\r\n \"policy\": {\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/importCert03/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=www.fabrikam.com\",\r\n \"sans\": {\r\n \"emails\": [],\r\n \"dns_names\": [\r\n \"www.fabrikam.com\"\r\n ],\r\n \"upns\": []\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 241,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189529,\r\n \"updated\": 1482189529\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2293" + "2353" ], "Content-Type": [ "application/json; charset=utf-8" @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:35 GMT" + "Mon, 19 Dec 2016 23:18:50 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "2fe33437-a05a-4791-aa6a-bc0047445fd3" + "7e90b0c0-742e-46de-bb9a-9d3154b9ec05" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -133,25 +135,26 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates/importCert03/c336c5bf6428439c9c990c529ba5e679?api-version=2016-10-01", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDMvYzMzNmM1YmY2NDI4NDM5YzljOTkwYzUyOWJhNWU2Nzk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/importCert03/ad30ff8d23c944af868c1c3d518585a5?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDMvYWQzMGZmOGQyM2M5NDRhZjg2OGMxYzNkNTE4NTg1YTU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66f16a42-7aec-4bee-88e9-734f46016a6d" + "60ba8b73-3052-4ad4-927c-10876c06325a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert03/c336c5bf6428439c9c990c529ba5e679\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert03/c336c5bf6428439c9c990c529ba5e679\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/importCert03/c336c5bf6428439c9c990c529ba5e679\",\r\n \"x5t\": \"Vi57fYNjurOccsuxs2_ltzMXPXM\",\r\n \"cer\": \"MIIDWzCCAkOgAwIBAgIQAgSaEqRzSIWdolKzgGecDDANBgkqhkiG9w0BAQsFADAbMRkwFwYDVQQDExB3d3cuZmFicmlrYW0uY29tMB4XDTE2MTAxMjIyNDIzN1oXDTM2MTAxMjIyNTIzN1owGzEZMBcGA1UEAxMQd3d3LmZhYnJpa2FtLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKpXeheFIwxCgJ1orWxAS/buUeplGl5ud6WxTfCLk9bSW1lPPdo7aypTQBpRXzoWuf5pzXGXQbO1hXMO/7kVko3G6F5FIadZrSM2lEQEhRe/xd84F0r0A9pOvx5g1o65s7q6cIUcPuHueNJ2irss5/356CLgT9pftuFV7LtyQG1RJ46d+yk2omfMAQajWd7JvRLt9ggWowhhyX5dHjugT5XSsSJUSH2H3oVzpnm0pvNr1+eXIZx6MJD15hqImx7rSj9oWIFECB+95vbVYWVFyBv1WRNXf8+EE+UyZUGi/URlKkqaK13rFHL2UUVIWiSfKa0joxSjnMt9Hr4A8Oyr0JECAwEAAaOBmjCBlzAOBgNVHQ8BAf8EBAMCBaAwCQYDVR0TBAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGwYDVR0RBBQwEoIQd3d3LmZhYnJpa2FtLmNvbTAfBgNVHSMEGDAWgBTT8znYEZ3N+7Dxp7zTR5bi5xAPXDAdBgNVHQ4EFgQU0/M52BGdzfuw8ae800eW4ucQD1wwDQYJKoZIhvcNAQELBQADggEBAKPJSCyojWEz7EO/3OZzlF4EHcubnj2Bk5mio/kvOiWBgjU+oy0RPTK9oa2c09uU01sn6kaARs269iaGpeGzvXwFMidZKd6jAhitAVT56Te8A6TgZ1KJDSa98iYrOPf7teUpG8wEGI8KJqx1UN8oybqB7J8UBZhYuxuZHwOY5IHljR9dz4vGskT4tM/llI6+F28LkztPjChadd10GOgyazVIcbE1hT2wXEKMZAQvFvY48GAIYDoo934MMkjMMl0HXqjZWo90QKIv7f9YoBVWH3WWXpVAu5s44s2h73lo2zVQma6eLAnDcRttW79/QfdZ8DcrQ6Z4G5Cftk0njzsj3FY=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1476312157,\r\n \"exp\": 2107464757,\r\n \"created\": 1477082135,\r\n \"updated\": 1477082135\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/importCert03/ad30ff8d23c944af868c1c3d518585a5\",\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/importCert03/ad30ff8d23c944af868c1c3d518585a5\",\r\n \"sid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/importCert03/ad30ff8d23c944af868c1c3d518585a5\",\r\n \"x5t\": \"Vi57fYNjurOccsuxs2_ltzMXPXM\",\r\n \"cer\": \"MIIDWzCCAkOgAwIBAgIQAgSaEqRzSIWdolKzgGecDDANBgkqhkiG9w0BAQsFADAbMRkwFwYDVQQDExB3d3cuZmFicmlrYW0uY29tMB4XDTE2MTAxMjIyNDIzN1oXDTM2MTAxMjIyNTIzN1owGzEZMBcGA1UEAxMQd3d3LmZhYnJpa2FtLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKpXeheFIwxCgJ1orWxAS/buUeplGl5ud6WxTfCLk9bSW1lPPdo7aypTQBpRXzoWuf5pzXGXQbO1hXMO/7kVko3G6F5FIadZrSM2lEQEhRe/xd84F0r0A9pOvx5g1o65s7q6cIUcPuHueNJ2irss5/356CLgT9pftuFV7LtyQG1RJ46d+yk2omfMAQajWd7JvRLt9ggWowhhyX5dHjugT5XSsSJUSH2H3oVzpnm0pvNr1+eXIZx6MJD15hqImx7rSj9oWIFECB+95vbVYWVFyBv1WRNXf8+EE+UyZUGi/URlKkqaK13rFHL2UUVIWiSfKa0joxSjnMt9Hr4A8Oyr0JECAwEAAaOBmjCBlzAOBgNVHQ8BAf8EBAMCBaAwCQYDVR0TBAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGwYDVR0RBBQwEoIQd3d3LmZhYnJpa2FtLmNvbTAfBgNVHSMEGDAWgBTT8znYEZ3N+7Dxp7zTR5bi5xAPXDAdBgNVHQ4EFgQU0/M52BGdzfuw8ae800eW4ucQD1wwDQYJKoZIhvcNAQELBQADggEBAKPJSCyojWEz7EO/3OZzlF4EHcubnj2Bk5mio/kvOiWBgjU+oy0RPTK9oa2c09uU01sn6kaARs269iaGpeGzvXwFMidZKd6jAhitAVT56Te8A6TgZ1KJDSa98iYrOPf7teUpG8wEGI8KJqx1UN8oybqB7J8UBZhYuxuZHwOY5IHljR9dz4vGskT4tM/llI6+F28LkztPjChadd10GOgyazVIcbE1hT2wXEKMZAQvFvY48GAIYDoo934MMkjMMl0HXqjZWo90QKIv7f9YoBVWH3WWXpVAu5s44s2h73lo2zVQma6eLAnDcRttW79/QfdZ8DcrQ6Z4G5Cftk0njzsj3FY=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1476312157,\r\n \"exp\": 2107464757,\r\n \"created\": 1482189529,\r\n \"updated\": 1482189529\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1605" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:35 GMT" + "Mon, 19 Dec 2016 23:18:50 GMT" ], "Pragma": [ "no-cache" @@ -172,13 +175,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "acc5b02b-af0b-45a1-b724-6655696a4cc4" + "b3719bc2-36d9-4255-ad9a-1701d0b4377b" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -196,25 +199,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/importCert03/c336c5bf6428439c9c990c529ba5e679?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvaW1wb3J0Q2VydDAzL2MzMzZjNWJmNjQyODQzOWM5Yzk5MGM1MjliYTVlNjc5P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/secrets/importCert03/ad30ff8d23c944af868c1c3d518585a5?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvaW1wb3J0Q2VydDAzL2FkMzBmZjhkMjNjOTQ0YWY4NjhjMWMzZDUxODU4NWE1P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fdf2afc-f0b6-4591-a40f-c7de5b19a39e" + "b4e67b29-6575-48f3-a504-d846b25936c0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"MIIRrAIBAzCCEWwGCSqGSIb3DQEHAaCCEV0EghFZMIIRVTCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAhbj9QEV95rvQICB9AEggTYE/kS170eEQwK11mDfj44+yvAk9gp7+3JZUBgUp3Dl+Dv3dno4HPVIlONNnx1QkEu2r/xzyT6sP0vuqcOhqPlZht/xL4N6l5Yrds51JB641zuZMUUPbJN2Ig8RnWxi+NxrE2AAeye+fAMmjhh8whI1Yvgm/jY20XdVcvnXt13jgRrrLluzwk6eXNYifqe86rQt1QGR3Pc5w9OoOcKGE8VW1PHTJSRgWW1SC8h++NlhxABBP4AgKjZhz/3cxs0ZhcjJ1w7NdCW1Dd2FeJBJq5ThJFuEpOwS8VvpH/UO75OFEEgSZhEcg7y9wPIdfeXyYbpQVvhPc8wsnXY0rG0oc/aKM8tF/PxhfGHF739e9Pju0DUO+Lb9qLWTrbLpnuX0k8DFm+TYNuujJSrarJnvg2SOQkLxYNMBumJbxL3g91wtXY39F7ODmauZ7Z0OgW1bcb4USJPIDIZpou8X/72wK4uYoUScxFolvpJ5OycF3VBtm1OB8zKyPs2m0SWwvgNatDkKWt8akyoeyB4eGPCB6xwQuLjlxBwZxD/1+Dwu12V+cd/SALLLwDyXKKeQ2gQcvWhWXAk4Jw0Faj/naE6GaqQh2jN7UjwvKzZtcihfGZZW1PCVcJKMrIxyciffU1jY6exq9wFvDGhOflANzlnd8P4WxZdR/tS/GWPWy8tst89z+cbeIcoESiWro7DMclqz6FnUfH+Ul2EdzRxA5HS3hHznlJT+ulSxMYDbjRuujwmKHIJwPRCXJphUQRoycrpobAZmywhhTRiXlkWph+fY54qUXZzbnR+G2eD8qFL2+hEzzL/yHK96gKxNauV352KN9mln64VJyoVr+i8nzX/slD+HPJROFwJxX1JBPALJ1YKPkAzn9y4zE5p2IjGLVWwAzHsctaM7671ytzWFU3/JVzhMk+1ESV3XzCEZUeeaStyYEanJLkyyqbeh+2uMsPnkF33K+68uEiqQAIEqYFlUznGJ2C5w1gkQhasGzotUPa1taU5Ph883g3G17jHV+dClDaD43FXu5Qd2dukztiVGhVSi1JSg9bhWdZ829ht1S6j9cBo+1PFoBjtm9ttlVLT6YmJcksO9DLTCja7cXqmuDDEYjltAUns6/u4FZDyD56GSlonrLC9GmOg9BY9gdVMGK6pldWUpAo1VcuhmKryFKaQjfiv3IMXRyfJyY2wmywaH61JFb5SVtqa4ZH092QJQZIHAkMMd85LEW7q2DQ5uZrGEjViPnCxsMEKfSpOC4wUikLKcrflqDFQts0HT8vyVzGq0oEZ3Ch5aEQtCtr4l4fbLAvgu9tLn4UVmJBr2o9X1NpJx559VnB3ro6zxw9BR8e7D17sxX1f9BAJt23PDoLhXQWG5yWjjIp6aO4QK4nsxJ2XibF22R6AnGawX4xjEqRnbBBMkG+MdH20c0ZUl8NwbEx9ihyVUDjZ29v3slu3e3uOb5dsciss8Il52q6q/0tdd0jEzWJPBgCTaTdJcL4KNXg/bpagqZQTrQdJB+d5FRIoYl7BQ22E/4DbKhjLLVxrqJkDD82K6/AHJOEbhZtLKc3xnFSSV/BqF7jKUNC9GfOpU5m7jgNQ93XPf65Xkep07DyCsle9mtcK5zcyoGh7hwXYnzx+5d2V0z91SPfQ+900Ou+OCycOBjGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADIAYQA1AGIAZQAwADQAOQAtAGIANAA5AGQALQA0ADcANABlAC0AOQA1AGIANAAtADIAMAA0AGIAYQA3ADQAYQA1ADAANgAxMHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIILNwYJKoZIhvcNAQcGoIILKDCCCyQCAQAwggsdBgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAiunwIi6wMaJgICB9CAggrwOgAet+VkyvctGzp6PpfMWuaSpE0isOfjnbLNxL7NDwlvUoYpwSrpJiBN6eA6Md52lZ/lA14zoRAuQSIul67FltukAxfzM4h13WnIlC/oVU6XMS4dgHO1quUpZsHgecrizDCLGiLBC71wFlaBndkZ/lFYuc/SfawvAnL4Eg6j/GU2W53PEGTLSBNQ6kfXBAYcovjMfbp6SHYoM9o2AbydCk+WSJr76zBjfn3H+SAduXpYNY2q8EFhViXphNbUNoO8VfGTz2AOzHItI6hLPOQv5XcPW9nt4dkEdJ1SLdD9kvAlG6dNflTpGm30sFGoqtzoPJbS1m65UKQ65UiwyAL7X//FlbKW5j8LJjG2zvEy9fbXBo2v+/PPsJcXoEMCQIuH+bs+faj9iFUZAEnFLNCWN+l9CAIJq/IGlTaWtgkidqxpnBw6WElFXs+J3NyAmsR2zm269T3h4DzTmZNbQAYZb81RMC/C/hdkLy8kNgyhyqcab9xS8O7ajQz+ymSS0kJGadrU9tmDSCF8jFO5AVqaPSuuUJuT1EPiPDcnFNxRRG94vD2OtvvikA8n+W9ObUujoGqwtHo/Hxg5Ltgud/60bCi2EyrWUz07WogPzzpk0CHzMozu7XNwfmJyNhFoo8+dZ85HGmEGYHx668gnkSCr2OXAa39Ty/KiFUaz0hrBFuVl5ukTtxa8phc7rWhRuPLYU5kRxrvY4gQ5/WklfiW1C8SqPCl/1gBtGQuVhz0P6K8rFZdGuuzFxvDeel0uvYLPoMc2tLmT6BUz6uB1jJZwwSQor/8MaujRBnBn1/lxhPVE2DR38pPlrILlxtq/yF73qtpO3PwfP1e/LFne3EFJivqIGWEFwaCqtGW99g5wFQ2aSGXY8DPZz0kF/AwsrTFLFwLWsjA0RVpnQ2PdkSuxY0pMxfhXb7K8ZrdTo0ICNdPtx62dT3uUbLx4iXlwswYKbcVCCxBTTyaTRHo67TVgHMgu+Yec4oyp5lPNjLbmY5ImLlTvHWuKxgmZ3qIpMURbwS6gtuhZTGBKHu6ysSJEYsb0AArH0jG7SEZ+7Pmm7w2EfInqOMCDOyuZW4f+LZkpAAV5RF6pnZ+t2gaExf8uS0sAUYiqesDGdrYFomlxKYZeQVFhvSZ11P+gaM4QVQ1I2sbbv9HfN29+f8ULihtrp3OXhVN6RFa3jAaPz4VsRAdtGJms8m6al6d6NuuLfwbAhtJ5and1NBxJpGRVAGeo/u6RljxSJvzK3oZZvSvvNZu43jrF0ejMu2zsx/qeQQqE1jkTSVdMAJQKhNmqtxitb3cH6uRJgSWzZlydZcMrb5yvzQP4Md4mY31uMX6CPZpa8Z5cKDvRn+SMkFbUOdMXGy8epsKWJ9KUKa2Yrm+J+8Qj1bWl3g3z0PxwjwSoN0hJRZpTojQbTNmfUp6WE3wDc868cj7q7Oz/qI95bgP0A276DZ3S1J52zWK8F/NDKJSylPiRAuiWSxOVLmJJTF1BuenPIqHKAtAbQ26zb/bHGvvaCSxh5pi1tvEDeeWUz3QKpXPPPvC6Q9OfGO2ivoim2IqqWx7z9oo5LPTlxvTpKc12If+olMoTdZQ2Rkw+UOWw2IQBOS/LH5Ci52xQm959NlQFzu8xrj/szem/lh/wk2CwV5/ApwJ6I3/EtuMJDoxSeDo3KB0P7l4TM8WVOz/nguOZk1jK5SlDJhfQGhzsI7tavjtDiM8+KKCRqs7kXUqsFqrXzBFOAgeSXAs4MarBXyb87a0l9kY3IRSaFxQqfSyqF/huKvXdP7EC3dkXjSkdYEayIUFqBjXRZeIMDqWYWpaVHufcBixEjMLaUt/Z+70EK0Vc70gMUOuqFaJeBv7ILI2OKuZbjzmQApDO72gOSd46QtbMq3hE/hwq2r87nmZXiFRIi/ADVjVbU1ss4AGP0AFgmrRz9q5oOZ700cVba58MB0SMISEeJYcfWBlgV7rxo2wlaQcczMzOIrhYF6gx+luVG5BRkrpguKmTtfzw93Lmldx1ZWeIoArUA8B8xak8pHdMbldrEp0JGwww6X4S5gt/dU/1FT/dyfksyBLUWAs+mt7NK5ZnMerZwvMS3w54U6ON5BE1252CtPBrBZU2SgPXcSnw4UZbZkmYMjnN/dxJOiLrn98aCVsHH/9WL8k9pai531A0CIQz/nLjyF8GP/kaafIWOqebCuAlXsA8nWBki7JIFAPpJJmbSa8MwRy+H62pS2eo0JC9Y7pOXrB9l+CcptY6HRBcmS1aLkeRub3lVbxbF/rWVOzfuKHLRKsCpB1KTIGtFcuGJybdzZCISD9/K2/yCMY0ery9FJvWAEnNuGm2HxjNDZFStrx7QyOX17D/V4u0jJ4A6MvcEdO2bS/SsnXYkKaOeQGqgyuCd1ei/JtO5oRB1qeBvAfPjeuX7p0T79xznObVRH9EwqrpDwPvwUHdAlgevi26wc8zU8PgmU4Pyo9m4BrGK4ed91eyr/RYSrPV1o3y41g8UgpQX0UJjXgNi9Fm75uBPfV64H/iOh4J3o/fYUi5f4y20fBCWBP7VqiG+nF5bmZz8oVhtdDIRSzzvmTHLAHruPJG5i6D1b0lCPMEUoyXcR1pqv7wxTIesayf7rWvb+PVz1b7Z9mv8HJFXBBCDSZRdBrTEwGApvq4h4bYftRl9W5iR8TAK7WVWa8+9c3o/YukceAcf++xSkc+5eYK3fMb0Jka+B7bmwt50rO2D4VLErDf/DbjXwkfi0i/VgTRSCyX6JOAIfxC1rO66IEAsC8A4+4fBygHF1Qtb0s18ztvEhucUXW7mfsJskjm39Ws40jgSbIEBGzRvuRs/BdkAfcjcQdOkF+eiXe7JaWWtqrE+jLEnJoFonK+5ZnBTGFALCzEl/pjC29kEbKgUhjFUnfrUqJQvPLvQ2bZ1mqvrxz9V15P5RMIuX6Huffy9162lMtCgF1DcxMOVlFGjpDmSZNAEeRLCUqm7dBU5Q5A7C4HrHr2eGuP05M2PkDSGQoZYLT0gfRvA63jAQxX6LRtfAGVaoN5qSTT3loJajXFFpS4pJIqBUNYUxBF/dKcgIwOWQeoZ5E8Cyxhney72U3VeUGjUq8yzJaxHPrtW1L1PMzGVahA1rFr8UsBt5hZ1OufDWRLXZemxtiRNSYCz1P8/8OsejVhSM1kSQAvbAlj7OONrD6SDF0Rh+odYQPmKL8Z9D86IpS4dZhC4D8Fw5v5rtqIYS+x9SfgoctduHtzShufiaXqVvWR2lfr1aIeiwDZ2E4ZqklWZeXvVb5cwKAMIk5igCd+WuUBXT5rkM37lBFBVrjYVyGVPoyILU5YnUIacLVfq/AN+yRAsEQmGsHOMbYl0MwAFzNvrfyYVLAy+bm8yO+DTN99Vlk+cz+duoJh7EYYp1lOY7A+Qo9I03KyGwqzydazunqrnviwXtwwH3+4O5EMLG1/RP8hFMOwlBdJjlVlRc7D+scSGFNxlNfwppyFM2kNfzXL04JOdoPDBk8dkELXSEb4Bu7uEDb317t7/edNEFdIqwrEdq23NTBHfVSn1XFZ5vI1HluNK8JXWjTqw0JkIyqIl7FwIrWxsJB+gQi72Ya/B9Y2lgMyxnjjpBfbIwbR/4UsoFBMJyT9rPL7esThsxSj8yL+l0ARnn3YwfYuSgVgTq8rrYd2gDHCUvHTOtpsemxEF/bJE367FSI+XqcL86BYk9P+yL54OkDRQf8HYFhxtitaply3lSsQJImOA1mqkzA3MB8wBwYFKw4DAhoEFPTOtra+rRjho/mRiKnpULHyTstaBBRBctflFPFk0r/bElZMVAAlblaV7Q==\",\r\n \"contentType\": \"application/x-pkcs12\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/importCert03/c336c5bf6428439c9c990c529ba5e679\",\r\n \"managed\": true,\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1476312157,\r\n \"exp\": 2107464757,\r\n \"created\": 1477082135,\r\n \"updated\": 1477082135\r\n },\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert03/c336c5bf6428439c9c990c529ba5e679\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"MIIRoAIBAzCCEWAGCSqGSIb3DQEHAaCCEVEEghFNMIIRSTCCBhoGCSqGSIb3DQEHAaCCBgsEggYHMIIGAzCCBf8GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAjGCIXYO6DMaQICB9AEggTYwDeB6/9XzkUYVkNBWff3+UjQ8REKmgpUAGZiIUBbLc4JlEMtntZ3uPFiJhcorAXJEbrB+py43lSqD3zI7+iomKYC5wHqVUTkLnR7Y0YC8FXY7Z2NgnYQvQ4N4i0q3qqCe5HRdHsmOg1QBAdHcWLqhKWyZe15aBiN3fIKmWOL7lMmHv2rveit696VHPlIZusJXtK5ezVF6h3IlA/QFYg54dgTgx98ns+l+L+h7kFDNrVV0puGXtEMjCo7U5QfxS9GdBQAMVC29lDarwm1e4VBPw+ywV2F4+mPyNHXBTgdWD3fymp01hpHOiZrVPBdemrp80QQIy5OkNOQHiUOUXkhOhzuS9g53x9erieH1v790wVMuqwKqoQrAkh6aBAKfo/FedbqQcKWBZG5m8jOidFM7FGB7xzBBSL5wYvC2nQPXy5vhRTq5qS4tBkVYWBkK1295dvHxrgK4kXiKRcoEAEeCeiactJSEGPhz3+9n0pQ+V2w4/rZ+aZU6uwZiGVGXbWFNYAi8eHQFgNOYnN5NCaJW4j0hIRN2Ked6RW21u+7pXIbkUU9Y9OHE6LpyCTgL7LRlDQhN1wW0T5a3VP4fi5eJP4B+SNbLM9QWhMAXycfOeZE9g8wGjPBpT+sCFTqQfzyNR3q1XjYop/CA/JSbw2v/8nvngb+jJ85VKULcmbsffi4vfCNwr3rpxpnCstbPa95x2byVFfYNsRJPPRb+ezOvkGn35MAhFkhc1278EhH9S+kHU4UKPR5KSrW1y23RGNLnIr0WoZeuyafGwNIXSfbcLH1oG8ouc58BWj4tMzJKNlK3ilwSNTUrg0G/zUhsqyLJZRondyigOKRdGcplScMpaOgtupg/axCSEKP5WL8Ys/bgVQoHMgV72mZNzppZAWzttf347X2vbh90f4B+Uv3/FYQTKfufbFpJXHiy1ptMwr6Fw4KtxqjUCIfCLiwvesolGZrxfT7YcOZ4Uoow+PIRKDduIBCyppAQxBqQu9AkHkKdhfHXJGFDW0xXZUgbwLmP8JHk8pu62SbuYPjtxQRCzeJdw4/VVyADypL+6dDHVuQ7Mzgpun/tf7CorFciKbf5A3fgawteaN9LHfHU6uS4LilgLCckk1zbpzjhpZ+QzLkC6PpEVkwbjCpDCiOy0/zhpXtR+xofObDObC4lk5p5D+DMKwYME7Gfg0bAjFfIMJEH2ig2GIAYaQLDIYWepuVjlTdI0pWBzNAAu0PBeBS9WuBCb+VMmCHmiS4fXqjiWzk4IwbTc66PT0lcbwF/9QwURwjur0WAwGxKSJqt/lEdnWcPD3MGL0Hn1y86O8ZKFPJ2Krp+hDvpDy7oW+rRHZEos9ecBWR9MrHEQxZwgu7Db5jQWnEcbUq2vmr941CN3A92+97eKh5NI1GrnRPo6LjZq9VKRMFfq4k8L43OSA9alKn4H6tPr4EetvvU6sY4ubhuFkd5oo0KG5hhw7XbA9ZNvkdgQH4vxZlDZVD7Drp04Ht3kLgg2TH70ZJKl4YPLHANZCnxoC2r35sJQGWcyziVxL3w+jvQhVPgyUvK6H6URMoKBrV35p6dtfZ/Y4aC6YRJJAlPJcd7gwygOsvmEXn2+rg4ABCKEcJtIY+m3AQta5hRW++yyYCU51prgMan4GYWmHPX7BL6DGB7TATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsANABCAEQAMAA2AEEANQBEAC0ARABGADIAMgAtADQAMQBFADEALQBBAEUAQgA5AC0ARgBDADUARgBDAEQAQgA1AEQAMQBCAEMAfTB5BgkrBgEEAYI3EQExbB5qAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAUgBTAEEAIABhAG4AZAAgAEEARQBTACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCCycGCSqGSIb3DQEHBqCCCxgwggsUAgEAMIILDQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQIHRrpO5BDyswCAgfQgIIK4D/Pk3JjMK2ieUHzXwGdj+J4MMdjDMCjwU2hlG/BX9Kv8ofDq0GtG8S/DUUvsBDXcM42/9W84vjGTIzrdjlD76Q0XfxBaSJipSuTyfcMh+tgk+QPu4Ms2Tf+2ALTQEq1+XfnWKYPu7tV1/icDeCUEQ/Er7eytfIKCt65KMKwyohZXT35nX6PM3nLWbAom9TaeMWfxSNHGFa33zP3WQLRRGUStR1wvWMucjebygBiNTgI9yVlAlnQk/QQbAFr4Rk6v+zWKPXuxFqd3cw+czTNOPDkbXoetbkBqDWP52+IHVVESTW848VnHv2zcdejQeH1TH4dBA4Jqt+OVBzpDCf9BQdyLT0F12ycud9qmpvEGg2BUt4Z2d1TY0X6Fx0afkBBGLCOi/T7aWCGTI2qBGJ74HVGpC2EWaful1sr+eHyVFZx8qqzzE4RSRb9TlnuiCelZjxqZGISGb9agifrMjYtzcU6QJQW9Tq9ARmz1ZSzylVK6Ko2DNuO7H4s21LPd9Xd9XC+2SpySO6h97m6GworpcuvGMzKSNFbOVZB8cx8oja75igMRMuxUV1knz3yQcIyMZkJudDxutJyrGqPVi/kli3hvFnEteTrg/chGbBFqSCBgeM3euxYeFjaKKg0XldopdM4s4UAdsHctP6y+5s0KU0l5O8HPu5INvmFbFJiGpAhfX6N+nl0mZwcRsko4fSBqdLiK6D7j3KQDzGQITA2Z0RMyDMdww/WALawSFGj+71XOd6oiAlmzzluINnSpRKq/Fqlg/GslHznC4n71z1s+7yGMfEPg92SemN3hQw5ii8AqhA610ctbuuUBcwn9v6H895yCVCJoyS7b4dXHBQ/8W5kGL5e4aj0xzl5ybuyVMTDHakxsLZ930TxlRaioR59C8KHJA6jx3noHTP0bSZOkgGp/zQQJU/K+8n4S9RMYZmmQv+2eowkzJOnCyKuvZtmCmaMAicmn9LlyARld7r0anEb6nDbsyCN0QGBPeJFjmOQVIJYRDkIdp6dMoRgy2VfnU46TTzuGcGAGFs+wOExf5qmHTlq7ncB5sL8QoFoZWqTj321Sg8HjTFt9vejiblGY1MQoolnGhLYLrs9lX5kpbJx2KBi4muZpb4VPt6wgHdXIoLUhBvrMxNYVFleTBLrCi7scZfjfIof2nreeP3dFGSXK34se390m9/lntmuonuJ/N+u34SwhdeRwsamuyFfowJXoIKQ/4XdZCGE+wbGOxf7Vc11dFcsigsPGLYpslE9kbyHFynMY8Fkg7jy7aU5bGowYMJ3kWrkP2KFvU/NikZrkVnJEdiBPUzqUGSUvzfmRI87W3dXF/qiuFwsS0gq1rp477Ku1Fba8BIIT6zkWheRu2E420LSMh0wxoVI0NxrBUQM3Kc0YpswrZnMIFVm2DXQsMyP/J9IJnWcuYKGdKI1PFEVLxH2AP8byZ2RgE2fwGH2jaC8W/rMf8X0cblm+3BKg/3p0NueR8kXnILmBQNekd75RnqUZT8jEMAQUNCVo6URYdJAgamQMmYEXm3QFKDpKFhOHsCFhyVPJftDs1EgTQOVx6kvsxanwVLowrhrSWRVVQZIJvDUzcdqMbk05f7f2zBovJFaGWw8776b70RRUIzM55N7YdlMKr/qw4W0s+GWB9gYIR6I2bDmulFEqnSX5FeJwzuGNygIjROdoK2eSgweM7w8f/f1HBgTptt8ER57D2KCnGIQPxBfVkVYquMQYP20uye8s+i87LkJL8pQWRIBZxINdtaLdhpTtNpakgTwaGzveYRUd+lpV4QztrdH57VoQjjoW7cOYN7QvRk4EmxxbSYe4yieh8K7Y4/O3JWIvRg1qUS1wf5eV4HE3NoJSb4Ok2/Z3xAZJhlHVmEBR5sXU+30yz8bX/HhFYbSrZ6/Jqayn4SYbiNT4H2H0RFSJQIvxKsdqRm+NRDDVwpKy+p6CVw1rrZSo8Tjm2CcDF2eKlGvf42dj/FH+WTCGPfVWbtkZ6cFgWi4gmzyBEVsvUgfgjc6IGoy5R1bQp6GvHGHDpC8MwlwvX9jx2pL+CyQ2R5K26qSUZqjWeR46OXkZqI47OFwIo8Y0L3JLz3DZO01GNjV531n/vvz0N1ZSA4pexUBZCbf0MX2Z2wxJXa8jjyD2qPokNmzWSg9StdKRcTupLnXub5+rjTyZUdeDFUAT3HXwPKSaQEVGrXoSemvIz5IMZYFr83kaOecOx5P96AolzbUzqeu7j1W8UUB+cTGaHGPuny5xQQuGL5twMj4x+a1Jvb7c/xidX1xlxlFUMwI8NoetJ5gEs0t76Lm1ca+96lVzoJ6L/tREy2xuh2cQFmb0Qu+0us/ZeXwxB9tpMZHda6xKmVx2l77wvxJCXF+RX7knMixhgH4jHS8Gaqun27HFbEG5U6qo6plAkLzmBTF2KNRE8hF8xLJbRHAMEJ86X2ykvIrxbDdJfo2W8UuEhyK2TDIwJjKQFVMMYhm57f2OO807+s+mHcufXrLjn392j7JUw68vA7jnxGNe9t55JSUDX19dhr61ByIkOkdaArM9gTYvRuuZUo8F5Suz1MVqmBLlL2CjbBcRSNOLre97Od/Xwp2gPWeU5YoCOfUmZetQD0kdmXrRdZG/6CsYuFBJLcLg+AuzZH5tG7HgvruGPudWY9uDSFeYoTKo1iEQiL1tCiR1++/MpCJlbYD0sbXcdVCt/QuJCxT/gYBEnHzEbk//h+cSmvQ6Y0H3zhHIDRqxS2VlbXR/39nal7At7s3mt84TojQRo9JDHNF4p9zGK+9EO9C6FODg6vmKc5/HotGAgnQgnvV7+gOszoiWD47ajjzzHHJd1zHSpDVsILsiKOEsDif2TgTw5m+W9z4u0BK3lrZL/MMMtSg2kpKbC0CMm03HBSqmtVgriodrfTurZRiVw07rLuGZQa3SbcPLUqwIhziW/O66mEqNT7dDnYcmRZtYEMtfGZeth2nVHkvUPGzw2/fyiGDpcqUrZj3DSFBSjukp7kNPl10xsQPmrFj41nSQPhu4R/mJg0v6kb4QFqEjO4TX8cwEV84l0nrbQdKl1u8zgdsb4LSYz25GmnqqsHfheExN2aLWDo0AMB3WdyfYu9iwpRU+3pKOcZNbvHQyQVB7SeFn+K1jir+aNXgoNILcGjMFyyWCMrKsjk4nIZMcTcoDEGvYK+a2sbF26b2ueL0VPTkKVosfcS1dE3x1iq0PltBoEj3ruI2oszB37+RO32m3fSe//mr7yhSlGp1vB4HBvHUxRUGNWg3lrYw+CZ5FZ5J2Er6bIPy2fg1UMsWj1ZyWAFBh/WWM2cv66pE+PPwxS/e6soDG2t70jEfBYRiECutJ3oasabnlmSn8gPoavpJ53OJKKEncdeH0bc4ywyA+VcIA39zgLdu8UCgwMGTRjk60urRed6fgt6TtNiS24fqRO4w5Xea/4Ux56yjv/zwxORLY4Oh8S6k/QMe6SXm61C0v/V3LE3BfZVlBXdIOPeEffaCxrol+9lPOqOegArwhUe5KwV7B80FseR2xHGHDb/UXlo0fjsKUu1XPxFPz1LxSxm/62JOLQsRL+IUgjp51/Y33fMdiZ37HYPvpmDU8LeQe7emlZHRe6VTWlpYNazge8M0tgQ+IBGLUx8DslGMWEoSQEQiSl80iaH7ij8rOblLAKuGZRLcNCUJZjcR53OnZn6y2aX/H+KSYZ+7eWRM1Dk2dBpMXkrPazA3MB8wBwYFKw4DAhoEFGl9V84GbzUvkSw2UZ05PQuvNKutBBT8qA7vUHMqGKwykvZcuDfPIscv8A==\",\r\n \"contentType\": \"application/x-pkcs12\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/importCert03/ad30ff8d23c944af868c1c3d518585a5\",\r\n \"managed\": true,\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1476312157,\r\n \"exp\": 2107464757,\r\n \"created\": 1482189529,\r\n \"updated\": 1482189529\r\n },\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/importCert03/ad30ff8d23c944af868c1c3d518585a5\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "6406" + "6420" ], "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +230,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:36 GMT" + "Mon, 19 Dec 2016 23:18:50 GMT" ], "Pragma": [ "no-cache" @@ -235,13 +239,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "711e964d-4d51-4f86-aace-9b7595d6b6a0" + "facacda0-93a7-4a4d-aec2-9f20f6c363f2" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -259,25 +263,26 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/importCert03?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaW1wb3J0Q2VydDAzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/importCert03?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pbXBvcnRDZXJ0MDM/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "952a33bf-d2df-4124-b50f-6c2a94c4ae92" + "29ad8684-094f-44fc-8aae-22ff1aa6c5e3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert03/c336c5bf6428439c9c990c529ba5e679\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/importCert03/c336c5bf6428439c9c990c529ba5e679\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/importCert03/c336c5bf6428439c9c990c529ba5e679\",\r\n \"x5t\": \"Vi57fYNjurOccsuxs2_ltzMXPXM\",\r\n \"cer\": \"MIIDWzCCAkOgAwIBAgIQAgSaEqRzSIWdolKzgGecDDANBgkqhkiG9w0BAQsFADAbMRkwFwYDVQQDExB3d3cuZmFicmlrYW0uY29tMB4XDTE2MTAxMjIyNDIzN1oXDTM2MTAxMjIyNTIzN1owGzEZMBcGA1UEAxMQd3d3LmZhYnJpa2FtLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKpXeheFIwxCgJ1orWxAS/buUeplGl5ud6WxTfCLk9bSW1lPPdo7aypTQBpRXzoWuf5pzXGXQbO1hXMO/7kVko3G6F5FIadZrSM2lEQEhRe/xd84F0r0A9pOvx5g1o65s7q6cIUcPuHueNJ2irss5/356CLgT9pftuFV7LtyQG1RJ46d+yk2omfMAQajWd7JvRLt9ggWowhhyX5dHjugT5XSsSJUSH2H3oVzpnm0pvNr1+eXIZx6MJD15hqImx7rSj9oWIFECB+95vbVYWVFyBv1WRNXf8+EE+UyZUGi/URlKkqaK13rFHL2UUVIWiSfKa0joxSjnMt9Hr4A8Oyr0JECAwEAAaOBmjCBlzAOBgNVHQ8BAf8EBAMCBaAwCQYDVR0TBAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGwYDVR0RBBQwEoIQd3d3LmZhYnJpa2FtLmNvbTAfBgNVHSMEGDAWgBTT8znYEZ3N+7Dxp7zTR5bi5xAPXDAdBgNVHQ4EFgQU0/M52BGdzfuw8ae800eW4ucQD1wwDQYJKoZIhvcNAQELBQADggEBAKPJSCyojWEz7EO/3OZzlF4EHcubnj2Bk5mio/kvOiWBgjU+oy0RPTK9oa2c09uU01sn6kaARs269iaGpeGzvXwFMidZKd6jAhitAVT56Te8A6TgZ1KJDSa98iYrOPf7teUpG8wEGI8KJqx1UN8oybqB7J8UBZhYuxuZHwOY5IHljR9dz4vGskT4tM/llI6+F28LkztPjChadd10GOgyazVIcbE1hT2wXEKMZAQvFvY48GAIYDoo934MMkjMMl0HXqjZWo90QKIv7f9YoBVWH3WWXpVAu5s44s2h73lo2zVQma6eLAnDcRttW79/QfdZ8DcrQ6Z4G5Cftk0njzsj3FY=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1476312157,\r\n \"exp\": 2107464757,\r\n \"created\": 1477082135,\r\n \"updated\": 1477082135\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/importCert03/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=www.fabrikam.com\",\r\n \"sans\": {\r\n \"emails\": [],\r\n \"dns_names\": [\r\n \"www.fabrikam.com\"\r\n ],\r\n \"upns\": []\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 241,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082135,\r\n \"updated\": 1477082135\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/importCert03/ad30ff8d23c944af868c1c3d518585a5\",\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/importCert03/ad30ff8d23c944af868c1c3d518585a5\",\r\n \"sid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/importCert03/ad30ff8d23c944af868c1c3d518585a5\",\r\n \"x5t\": \"Vi57fYNjurOccsuxs2_ltzMXPXM\",\r\n \"cer\": \"MIIDWzCCAkOgAwIBAgIQAgSaEqRzSIWdolKzgGecDDANBgkqhkiG9w0BAQsFADAbMRkwFwYDVQQDExB3d3cuZmFicmlrYW0uY29tMB4XDTE2MTAxMjIyNDIzN1oXDTM2MTAxMjIyNTIzN1owGzEZMBcGA1UEAxMQd3d3LmZhYnJpa2FtLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKpXeheFIwxCgJ1orWxAS/buUeplGl5ud6WxTfCLk9bSW1lPPdo7aypTQBpRXzoWuf5pzXGXQbO1hXMO/7kVko3G6F5FIadZrSM2lEQEhRe/xd84F0r0A9pOvx5g1o65s7q6cIUcPuHueNJ2irss5/356CLgT9pftuFV7LtyQG1RJ46d+yk2omfMAQajWd7JvRLt9ggWowhhyX5dHjugT5XSsSJUSH2H3oVzpnm0pvNr1+eXIZx6MJD15hqImx7rSj9oWIFECB+95vbVYWVFyBv1WRNXf8+EE+UyZUGi/URlKkqaK13rFHL2UUVIWiSfKa0joxSjnMt9Hr4A8Oyr0JECAwEAAaOBmjCBlzAOBgNVHQ8BAf8EBAMCBaAwCQYDVR0TBAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwGwYDVR0RBBQwEoIQd3d3LmZhYnJpa2FtLmNvbTAfBgNVHSMEGDAWgBTT8znYEZ3N+7Dxp7zTR5bi5xAPXDAdBgNVHQ4EFgQU0/M52BGdzfuw8ae800eW4ucQD1wwDQYJKoZIhvcNAQELBQADggEBAKPJSCyojWEz7EO/3OZzlF4EHcubnj2Bk5mio/kvOiWBgjU+oy0RPTK9oa2c09uU01sn6kaARs269iaGpeGzvXwFMidZKd6jAhitAVT56Te8A6TgZ1KJDSa98iYrOPf7teUpG8wEGI8KJqx1UN8oybqB7J8UBZhYuxuZHwOY5IHljR9dz4vGskT4tM/llI6+F28LkztPjChadd10GOgyazVIcbE1hT2wXEKMZAQvFvY48GAIYDoo934MMkjMMl0HXqjZWo90QKIv7f9YoBVWH3WWXpVAu5s44s2h73lo2zVQma6eLAnDcRttW79/QfdZ8DcrQ6Z4G5Cftk0njzsj3FY=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1476312157,\r\n \"exp\": 2107464757,\r\n \"created\": 1482189529,\r\n \"updated\": 1482189529\r\n },\r\n \"policy\": {\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/importCert03/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=www.fabrikam.com\",\r\n \"sans\": {\r\n \"emails\": [],\r\n \"dns_names\": [\r\n \"www.fabrikam.com\"\r\n ],\r\n \"upns\": []\r\n },\r\n \"ekus\": [\r\n \"1.3.6.1.5.5.7.3.1\",\r\n \"1.3.6.1.5.5.7.3.2\"\r\n ],\r\n \"key_usage\": [\r\n \"digitalSignature\",\r\n \"keyEncipherment\"\r\n ],\r\n \"validity_months\": 241,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189529,\r\n \"updated\": 1482189529\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2293" + "2353" ], "Content-Type": [ "application/json; charset=utf-8" @@ -289,7 +294,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:36 GMT" + "Mon, 19 Dec 2016 23:18:52 GMT" ], "Pragma": [ "no-cache" @@ -298,13 +303,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "3ec0b1f4-2c59-43ff-bd43-dfd9533abeef" + "b4199d5b-c03c-4845-8be0-5f1d2ea88e6b" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -324,8 +329,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "f2a7e60b8dd0477d943b3a9fb2a63f0b" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateIssuersTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateIssuersTest.json index c70047fff7a2..cf16ba033ec1 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateIssuersTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateIssuersTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//certificates/issuers/issuer01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaXNzdWVycy9pc3N1ZXIwMT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/issuers/issuer01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pc3N1ZXJzL2lzc3VlcjAxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"provider\": \"Test\",\r\n \"credentials\": {\r\n \"account_id\": \"keyvaultuser\",\r\n \"pwd\": \"password\"\r\n },\r\n \"org_details\": {\r\n \"admin_details\": [\r\n {\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\",\r\n \"email\": \"admin@microsoft.com\",\r\n \"phone\": \"4255555555\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -13,19 +13,20 @@ "317" ], "x-ms-client-request-id": [ - "1b0f9fec-6d48-4406-b729-57e510391225" + "3a4a7803-ee2e-4b44-a968-4eb1e53092f1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/issuers/issuer01\",\r\n \"provider\": \"Test\",\r\n \"credentials\": {\r\n \"account_id\": \"keyvaultuser\"\r\n },\r\n \"org_details\": {\r\n \"zip\": 0,\r\n \"admin_details\": [\r\n {\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\",\r\n \"email\": \"admin@microsoft.com\",\r\n \"phone\": \"4255555555\"\r\n }\r\n ]\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082045,\r\n \"updated\": 1477082134\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/issuers/issuer01\",\r\n \"provider\": \"Test\",\r\n \"credentials\": {\r\n \"account_id\": \"keyvaultuser\"\r\n },\r\n \"org_details\": {\r\n \"zip\": 0,\r\n \"admin_details\": [\r\n {\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\",\r\n \"email\": \"admin@microsoft.com\",\r\n \"phone\": \"4255555555\"\r\n }\r\n ]\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188806,\r\n \"updated\": 1482189526\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "343" + "358" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:33 GMT" + "Mon, 19 Dec 2016 23:18:46 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "260487d9-738b-4c47-952f-c7d636063009" + "cd1d1ac5-873a-4672-af90-e5c3c3bdb05b" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,25 +71,26 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/issuers/issuer01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaXNzdWVycy9pc3N1ZXIwMT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/issuers/issuer01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pc3N1ZXJzL2lzc3VlcjAxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8394734-2da2-44e0-9e0e-c77a723fcdb5" + "0971e751-a9a4-48b4-985d-61ce1067f786" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/issuers/issuer01\",\r\n \"provider\": \"Test\",\r\n \"credentials\": {\r\n \"account_id\": \"keyvaultuser\"\r\n },\r\n \"org_details\": {\r\n \"zip\": 0,\r\n \"admin_details\": [\r\n {\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\",\r\n \"email\": \"admin@microsoft.com\",\r\n \"phone\": \"4255555555\"\r\n }\r\n ]\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082045,\r\n \"updated\": 1477082134\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/issuers/issuer01\",\r\n \"provider\": \"Test\",\r\n \"credentials\": {\r\n \"account_id\": \"keyvaultuser\"\r\n },\r\n \"org_details\": {\r\n \"zip\": 0,\r\n \"admin_details\": [\r\n {\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\",\r\n \"email\": \"admin@microsoft.com\",\r\n \"phone\": \"4255555555\"\r\n }\r\n ]\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188806,\r\n \"updated\": 1482189526\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "343" + "358" ], "Content-Type": [ "application/json; charset=utf-8" @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:33 GMT" + "Mon, 19 Dec 2016 23:18:46 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "4e0366a5-3e37-4c82-bda7-a31f06999226" + "b4ce9e8a-ca79-4da8-a723-b3826d7cab81" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -133,8 +135,8 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/issuers/issuer02?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaXNzdWVycy9pc3N1ZXIwMj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/issuers/issuer02?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pc3N1ZXJzL2lzc3VlcjAyP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"provider\": \"Test\",\r\n \"credentials\": {\r\n \"account_id\": \"keyvaultuser\",\r\n \"pwd\": \"password\"\r\n },\r\n \"org_details\": {\r\n \"admin_details\": [\r\n {\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\",\r\n \"email\": \"admin@microsoft.com\",\r\n \"phone\": \"4255555555\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { @@ -145,19 +147,20 @@ "317" ], "x-ms-client-request-id": [ - "c18fc1f9-2a75-4b5c-bdce-bab29ef1e174" + "a8675b7f-0698-4f75-9a95-3f4d4526f50f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/issuers/issuer02\",\r\n \"provider\": \"Test\",\r\n \"credentials\": {\r\n \"account_id\": \"keyvaultuser\"\r\n },\r\n \"org_details\": {\r\n \"zip\": 0,\r\n \"admin_details\": [\r\n {\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\",\r\n \"email\": \"admin@microsoft.com\",\r\n \"phone\": \"4255555555\"\r\n }\r\n ]\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082070,\r\n \"updated\": 1477082134\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/issuers/issuer02\",\r\n \"provider\": \"Test\",\r\n \"credentials\": {\r\n \"account_id\": \"keyvaultuser\"\r\n },\r\n \"org_details\": {\r\n \"zip\": 0,\r\n \"admin_details\": [\r\n {\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\",\r\n \"email\": \"admin@microsoft.com\",\r\n \"phone\": \"4255555555\"\r\n }\r\n ]\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188838,\r\n \"updated\": 1482189526\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "343" + "358" ], "Content-Type": [ "application/json; charset=utf-8" @@ -169,7 +172,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:33 GMT" + "Mon, 19 Dec 2016 23:18:46 GMT" ], "Pragma": [ "no-cache" @@ -178,13 +181,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "d97527b4-33e0-48a9-8d71-9684edae7a90" + "1e145c9a-b00e-427e-bbd6-5138cb4f9813" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -202,25 +205,26 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/issuers?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaXNzdWVycz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/issuers?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pc3N1ZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51c53e7d-3b06-459a-b655-cf4ca04a5d95" + "20fdf14b-b1b4-4051-80d7-f5cac9e095fc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/issuers/issuer01\",\r\n \"provider\": \"Test\"\r\n },\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/issuers/issuer02\",\r\n \"provider\": \"Test\"\r\n },\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/issuers/issuer03\",\r\n \"provider\": \"Test\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/issuers/issuer01\",\r\n \"provider\": \"Test\"\r\n },\r\n {\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/issuers/issuer02\",\r\n \"provider\": \"Test\"\r\n },\r\n {\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/issuers/issuer03\",\r\n \"provider\": \"Test\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "312" + "357" ], "Content-Type": [ "application/json; charset=utf-8" @@ -232,7 +236,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:34 GMT" + "Mon, 19 Dec 2016 23:18:47 GMT" ], "Pragma": [ "no-cache" @@ -241,13 +245,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "8967bfea-78b6-49c5-80bc-542b451eb32f" + "3af3d492-3a12-4baf-90d6-837f931c677b" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -265,25 +269,26 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/issuers?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaXNzdWVycz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/issuers?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pc3N1ZXJzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e68dad31-283a-48d4-bf6b-9878a06f0411" + "6fa4e184-e64c-4b87-9fbc-27cf31e58724" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/issuers/issuer03\",\r\n \"provider\": \"Test\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/issuers/issuer03\",\r\n \"provider\": \"Test\"\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "122" + "137" ], "Content-Type": [ "application/json; charset=utf-8" @@ -295,7 +300,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:34 GMT" + "Mon, 19 Dec 2016 23:18:47 GMT" ], "Pragma": [ "no-cache" @@ -304,13 +309,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "562a60d3-e10e-40e5-be73-0a146b4d2a36" + "771bf785-0ce7-4eb7-b5a6-c94eb5aa8794" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -328,25 +333,26 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/issuers/issuer01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaXNzdWVycy9pc3N1ZXIwMT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/issuers/issuer01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pc3N1ZXJzL2lzc3VlcjAxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "636ae11f-6640-468f-a2a2-d745cba4898e" + "73c48cbe-f272-4a18-be29-a6cb093a1515" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/issuers/issuer01\",\r\n \"provider\": \"Test\",\r\n \"credentials\": {\r\n \"account_id\": \"keyvaultuser\"\r\n },\r\n \"org_details\": {\r\n \"zip\": 0,\r\n \"admin_details\": [\r\n {\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\",\r\n \"email\": \"admin@microsoft.com\",\r\n \"phone\": \"4255555555\"\r\n }\r\n ]\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082045,\r\n \"updated\": 1477082134\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/issuers/issuer01\",\r\n \"provider\": \"Test\",\r\n \"credentials\": {\r\n \"account_id\": \"keyvaultuser\"\r\n },\r\n \"org_details\": {\r\n \"zip\": 0,\r\n \"admin_details\": [\r\n {\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\",\r\n \"email\": \"admin@microsoft.com\",\r\n \"phone\": \"4255555555\"\r\n }\r\n ]\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188806,\r\n \"updated\": 1482189526\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "343" + "358" ], "Content-Type": [ "application/json; charset=utf-8" @@ -358,7 +364,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:34 GMT" + "Mon, 19 Dec 2016 23:18:47 GMT" ], "Pragma": [ "no-cache" @@ -367,13 +373,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "21cdb993-8138-47f4-87e4-a0987c07255d" + "52ef5575-0f33-46a4-bb25-ee0aed4b53c5" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -391,25 +397,26 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/issuers/issuer02?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvaXNzdWVycy9pc3N1ZXIwMj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/issuers/issuer02?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9pc3N1ZXJzL2lzc3VlcjAyP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c192572c-c549-4b23-95d1-b4b02c243945" + "18d04807-5865-4d15-9da2-adaf02bc3639" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/issuers/issuer02\",\r\n \"provider\": \"Test\",\r\n \"credentials\": {\r\n \"account_id\": \"keyvaultuser\"\r\n },\r\n \"org_details\": {\r\n \"zip\": 0,\r\n \"admin_details\": [\r\n {\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\",\r\n \"email\": \"admin@microsoft.com\",\r\n \"phone\": \"4255555555\"\r\n }\r\n ]\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082070,\r\n \"updated\": 1477082134\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/issuers/issuer02\",\r\n \"provider\": \"Test\",\r\n \"credentials\": {\r\n \"account_id\": \"keyvaultuser\"\r\n },\r\n \"org_details\": {\r\n \"zip\": 0,\r\n \"admin_details\": [\r\n {\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\",\r\n \"email\": \"admin@microsoft.com\",\r\n \"phone\": \"4255555555\"\r\n }\r\n ]\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188838,\r\n \"updated\": 1482189526\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "343" + "358" ], "Content-Type": [ "application/json; charset=utf-8" @@ -421,7 +428,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:34 GMT" + "Mon, 19 Dec 2016 23:18:47 GMT" ], "Pragma": [ "no-cache" @@ -430,13 +437,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "d707115d-64b8-4a39-b45b-ba1b870e1b51" + "7998563d-721a-418f-b8c4-02c92529c3ab" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -456,8 +463,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "f2a7e60b8dd0477d943b3a9fb2a63f0b" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateListTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateListTest.json index a32c1b394372..56dce9fb760e 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateListTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateListTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//certificates/listCert01/import?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbGlzdENlcnQwMS9pbXBvcnQ/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/listCert01/import?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9saXN0Q2VydDAxL2ltcG9ydD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"value\": \"MIIJOwIBAzCCCPcGCSqGSIb3DQEHAaCCCOgEggjkMIII4DCCBgkGCSqGSIb3DQEHAaCCBfoEggX2MIIF8jCCBe4GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAj15YH9pOE58AICB9AEggTYLrI+SAru2dBZRQRlJY7XQ3LeLkah2FcRR3dATDshZ2h0IA2oBrkQIdsLyAAWZ32qYR1qkWxLHn9AqXgu27AEbOk35+pITZaiy63YYBkkpR+pDdngZt19Z0PWrGwHEq5z6BHS2GLyyN8SSOCbdzCz7blj3+7IZYoMj4WOPgOm/tQ6U44SFWek46QwN2zeA4i97v7ftNNns27ms52jqfhOvTA9c/wyfZKAY4aKJfYYUmycKjnnRl012ldS2lOkASFt+lu4QCa72IY6ePtRudPCvmzRv2pkLYS6z3cI7omT8nHP3DymNOqLbFqr5O2M1ZYaLC63Q3xt3eVvbcPh3N08D1hHkhz/KDTvkRAQpvrW8ISKmgDdmzN55Pe55xHfSWGB7gPw8sZea57IxFzWHTK2yvTslooWoosmGxanYY2IG/no3EbPOWDKjPZ4ilYJe5JJ2immlxPz+2e2EOCKpDI+7fzQcRz3PTd3BK+budZ8aXX8aW/lOgKS8WmxZoKnOJBNWeTNWQFugmktXfdPHAdxMhjUXqeGQd8wTvZ4EzQNNafovwkI7IV/ZYoa++RGofVR3ZbRSiBNF6TDj/qXFt0wN/CQnsGAmQAGNiN+D4mY7i25dtTu/Jc7OxLdhAUFpHyJpyrYWLfvOiS5WYBeEDHkiPUa/8eZSPA3MXWZR1RiuDvuNqMjct1SSwdXADTtF68l/US1ksU657+XSC+6ly1A/upz+X71+C4Ho6W0751j5ZMT6xKjGh5pee7MVuduxIzXjWIy3YSd0fIT3U0A5NLEvJ9rfkx6JiHjRLx6V1tqsrtT6BsGtmCQR1UCJPLqsKVDvAINx3cPA/CGqr5OX2BGZlAihGmN6n7gv8w4O0k0LPTAe5YefgXN3m9pE867N31GtHVZaJ/UVgDNYS2jused4rw76ZWN41akx2QN0JSeMJqHXqVz6AKfz8ICS/dFnEGyBNpXiMRxrY/QPKi/wONwqsbDxRW7vZRVKs78pBkE0ksaShlZk5GkeayDWC/7Hi/NqUFtIloK9XB3paLxo1DGu5qqaF34jZdktzkXp0uZqpp+FfKZaiovMjt8F7yHCPk+LYpRsU2Cyc9DVoDA6rIgf+uEP4jppgehsxyT0lJHax2t869R2jYdsXwYUXjgwHIV0voj7bJYPGFlFjXOp6ZW86scsHM5xfsGQoK2Fp838VT34SHE1ZXU/puM7rviREHYW72pfpgGZUILQMohuTPnd8tFtAkbrmjLDo+k9xx7HUvgoFTiNNWuq/cRjr70FKNguMMTIrid+HwfmbRoaxENWdLcOTNeascER2a+37UQolKD5ksrPJG6RdNA7O2pzp3micDYRs/+s28cCIxO//J/d4nsgHp6RTuCu4+Jm9k0YTw2Xg75b2cWKrxGnDUgyIlvNPaZTB5QbMid4x44/lE0LLi9kcPQhRgrK07OnnrMgZvVGjt1CLGhKUv7KFc3xV1r1rwKkosxnoG99oCoTQtregcX5rIMjHgkc1IdflGJkZzaWMkYVFOJ4Weynz008i4ddkske5vabZs37Lb8iggUYNBYZyGzalruBgnQyK4fz38Fae4nWYjyildVfgyo/fCePR2ovOfphx9OQJi+M9BoFmPrAg+8ARDZ+R+5yzYuEc9ZoVX7nkp7LTGB3DANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAOAAwAGQAZgBmADgANgAtAGUAOQA2AGUALQA0ADIAMgA0AC0AYQBhADEAMQAtAGIAZAAxADkANABkADUAYQA2AGIANwA3MF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAgAEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggLPBgkqhkiG9w0BBwagggLAMIICvAIBADCCArUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECNX+VL2MxzzWAgIH0ICCAojmRBO+CPfVNUO0s+BVuwhOzikAGNBmQHNChmJ/pyzPbMUbx7tO63eIVSc67iERda2WCEmVwPigaVQkPaumsfp8+L6iV/BMf5RKlyRXcwh0vUdu2Qa7qadD+gFQ2kngf4Dk6vYo2/2HxayuIf6jpwe8vql4ca3ZtWXfuRix2fwgltM0bMz1g59d7x/glTfNqxNlsty0A/rWrPJjNbOPRU2XykLuc3AtlTtYsQ32Zsmu67A7UNBw6tVtkEXlFDqhavEhUEO3dvYqMY+QLxzpZhA0q44ZZ9/ex0X6QAFNK5wuWxCbupHWsgxRwKftrxyszMHsAvNoNcTlqcctee+ecNwTJQa1/MDbnhO6/qHA7cfG1qYDq8Th635vGNMW1w3sVS7l0uEvdayAsBHWTcOC2tlMa5bfHrhY8OEIqj5bN5H9RdFy8G/W239tjDu1OYjBDydiBqzBn8HG1DSj1Pjc0kd/82d4ZU0308KFTC3yGcRad0GnEH0Oi3iEJ9HbriUbfVMbXNHOF+MktWiDVqzndGMKmuJSdfTBKvGFvejAWVO5E4mgLvoaMmbchc3BO7sLeraHnJN5hvMBaLcQI38N86mUfTR8AP6AJ9c2k514KaDLclm4z6J8dMz60nUeo5D3YD09G6BavFHxSvJ8MF0Lu5zOFzEePDRFm9mH8W0N/sFlIaYfD/GWU/w44mQucjaBk95YtqOGRIj58tGDWr8iUdHwaYKGqU24zGeRae9DhFXPzZshV1ZGsBQFRaoYkyLAwdJWIXTi+c37YaC8FRSEnnNmS79Dou1Kc3BvK4EYKAD2KxjtUebrV174gD0Q+9YuJ0GXOTspBvCFd5VT2Rw5zDNrA/J3F5fMCk4wOzAfMAcGBSsOAwIaBBSxgh2xyF+88V4vAffBmZXv8Txt4AQU4O/NX4MjxSodbE7ApNAMIvrtREwCAgfQ\",\r\n \"pwd\": \"123\",\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "3415" ], "x-ms-client-request-id": [ - "020c18b3-139c-44df-ba58-45afb01ef6e1" + "18eca159-8f8f-42ee-b607-1deed5662d06" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listCert01/d5b97326dbfa4da9aad55c5c0d0f4797\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listCert01/d5b97326dbfa4da9aad55c5c0d0f4797\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/listCert01/d5b97326dbfa4da9aad55c5c0d0f4797\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082074,\r\n \"updated\": 1477082074\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082074,\r\n \"updated\": 1477082074\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/listCert01/464d5df954784a788d6c65ea6ddf254a\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listCert01/464d5df954784a788d6c65ea6ddf254a\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/listCert01/464d5df954784a788d6c65ea6ddf254a\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188987,\r\n \"updated\": 1482188987\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/listCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188987,\r\n \"updated\": 1482188987\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1754" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:33 GMT" + "Mon, 19 Dec 2016 23:09:48 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "a34cb580-afe3-4ab4-b155-fdcbf1ed0bc5" + "27049862-a2e8-4742-8e84-9b871aa8f3ff" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,8 +71,8 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/listCert02/import?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbGlzdENlcnQwMi9pbXBvcnQ/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/listCert02/import?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9saXN0Q2VydDAyL2ltcG9ydD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"value\": \"MIIJOwIBAzCCCPcGCSqGSIb3DQEHAaCCCOgEggjkMIII4DCCBgkGCSqGSIb3DQEHAaCCBfoEggX2MIIF8jCCBe4GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAj15YH9pOE58AICB9AEggTYLrI+SAru2dBZRQRlJY7XQ3LeLkah2FcRR3dATDshZ2h0IA2oBrkQIdsLyAAWZ32qYR1qkWxLHn9AqXgu27AEbOk35+pITZaiy63YYBkkpR+pDdngZt19Z0PWrGwHEq5z6BHS2GLyyN8SSOCbdzCz7blj3+7IZYoMj4WOPgOm/tQ6U44SFWek46QwN2zeA4i97v7ftNNns27ms52jqfhOvTA9c/wyfZKAY4aKJfYYUmycKjnnRl012ldS2lOkASFt+lu4QCa72IY6ePtRudPCvmzRv2pkLYS6z3cI7omT8nHP3DymNOqLbFqr5O2M1ZYaLC63Q3xt3eVvbcPh3N08D1hHkhz/KDTvkRAQpvrW8ISKmgDdmzN55Pe55xHfSWGB7gPw8sZea57IxFzWHTK2yvTslooWoosmGxanYY2IG/no3EbPOWDKjPZ4ilYJe5JJ2immlxPz+2e2EOCKpDI+7fzQcRz3PTd3BK+budZ8aXX8aW/lOgKS8WmxZoKnOJBNWeTNWQFugmktXfdPHAdxMhjUXqeGQd8wTvZ4EzQNNafovwkI7IV/ZYoa++RGofVR3ZbRSiBNF6TDj/qXFt0wN/CQnsGAmQAGNiN+D4mY7i25dtTu/Jc7OxLdhAUFpHyJpyrYWLfvOiS5WYBeEDHkiPUa/8eZSPA3MXWZR1RiuDvuNqMjct1SSwdXADTtF68l/US1ksU657+XSC+6ly1A/upz+X71+C4Ho6W0751j5ZMT6xKjGh5pee7MVuduxIzXjWIy3YSd0fIT3U0A5NLEvJ9rfkx6JiHjRLx6V1tqsrtT6BsGtmCQR1UCJPLqsKVDvAINx3cPA/CGqr5OX2BGZlAihGmN6n7gv8w4O0k0LPTAe5YefgXN3m9pE867N31GtHVZaJ/UVgDNYS2jused4rw76ZWN41akx2QN0JSeMJqHXqVz6AKfz8ICS/dFnEGyBNpXiMRxrY/QPKi/wONwqsbDxRW7vZRVKs78pBkE0ksaShlZk5GkeayDWC/7Hi/NqUFtIloK9XB3paLxo1DGu5qqaF34jZdktzkXp0uZqpp+FfKZaiovMjt8F7yHCPk+LYpRsU2Cyc9DVoDA6rIgf+uEP4jppgehsxyT0lJHax2t869R2jYdsXwYUXjgwHIV0voj7bJYPGFlFjXOp6ZW86scsHM5xfsGQoK2Fp838VT34SHE1ZXU/puM7rviREHYW72pfpgGZUILQMohuTPnd8tFtAkbrmjLDo+k9xx7HUvgoFTiNNWuq/cRjr70FKNguMMTIrid+HwfmbRoaxENWdLcOTNeascER2a+37UQolKD5ksrPJG6RdNA7O2pzp3micDYRs/+s28cCIxO//J/d4nsgHp6RTuCu4+Jm9k0YTw2Xg75b2cWKrxGnDUgyIlvNPaZTB5QbMid4x44/lE0LLi9kcPQhRgrK07OnnrMgZvVGjt1CLGhKUv7KFc3xV1r1rwKkosxnoG99oCoTQtregcX5rIMjHgkc1IdflGJkZzaWMkYVFOJ4Weynz008i4ddkske5vabZs37Lb8iggUYNBYZyGzalruBgnQyK4fz38Fae4nWYjyildVfgyo/fCePR2ovOfphx9OQJi+M9BoFmPrAg+8ARDZ+R+5yzYuEc9ZoVX7nkp7LTGB3DANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAOAAwAGQAZgBmADgANgAtAGUAOQA2AGUALQA0ADIAMgA0AC0AYQBhADEAMQAtAGIAZAAxADkANABkADUAYQA2AGIANwA3MF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAgAEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggLPBgkqhkiG9w0BBwagggLAMIICvAIBADCCArUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECNX+VL2MxzzWAgIH0ICCAojmRBO+CPfVNUO0s+BVuwhOzikAGNBmQHNChmJ/pyzPbMUbx7tO63eIVSc67iERda2WCEmVwPigaVQkPaumsfp8+L6iV/BMf5RKlyRXcwh0vUdu2Qa7qadD+gFQ2kngf4Dk6vYo2/2HxayuIf6jpwe8vql4ca3ZtWXfuRix2fwgltM0bMz1g59d7x/glTfNqxNlsty0A/rWrPJjNbOPRU2XykLuc3AtlTtYsQ32Zsmu67A7UNBw6tVtkEXlFDqhavEhUEO3dvYqMY+QLxzpZhA0q44ZZ9/ex0X6QAFNK5wuWxCbupHWsgxRwKftrxyszMHsAvNoNcTlqcctee+ecNwTJQa1/MDbnhO6/qHA7cfG1qYDq8Th635vGNMW1w3sVS7l0uEvdayAsBHWTcOC2tlMa5bfHrhY8OEIqj5bN5H9RdFy8G/W239tjDu1OYjBDydiBqzBn8HG1DSj1Pjc0kd/82d4ZU0308KFTC3yGcRad0GnEH0Oi3iEJ9HbriUbfVMbXNHOF+MktWiDVqzndGMKmuJSdfTBKvGFvejAWVO5E4mgLvoaMmbchc3BO7sLeraHnJN5hvMBaLcQI38N86mUfTR8AP6AJ9c2k514KaDLclm4z6J8dMz60nUeo5D3YD09G6BavFHxSvJ8MF0Lu5zOFzEePDRFm9mH8W0N/sFlIaYfD/GWU/w44mQucjaBk95YtqOGRIj58tGDWr8iUdHwaYKGqU24zGeRae9DhFXPzZshV1ZGsBQFRaoYkyLAwdJWIXTi+c37YaC8FRSEnnNmS79Dou1Kc3BvK4EYKAD2KxjtUebrV174gD0Q+9YuJ0GXOTspBvCFd5VT2Rw5zDNrA/J3F5fMCk4wOzAfMAcGBSsOAwIaBBSxgh2xyF+88V4vAffBmZXv8Txt4AQU4O/NX4MjxSodbE7ApNAMIvrtREwCAgfQ\",\r\n \"pwd\": \"123\",\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -82,16 +83,17 @@ "3415" ], "x-ms-client-request-id": [ - "ca2a26d9-9ecf-438f-bf01-344c4670fca1" + "97bc0912-2c65-461a-96d1-bf9492ba4bef" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listCert02/6d73759e97404bb0a906c9b1ed1fa379\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listCert02/6d73759e97404bb0a906c9b1ed1fa379\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/listCert02/6d73759e97404bb0a906c9b1ed1fa379\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082075,\r\n \"updated\": 1477082075\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listCert02/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082075,\r\n \"updated\": 1477082075\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/listCert02/7081c356dd11468a8a262a8ba5f11d74\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listCert02/7081c356dd11468a8a262a8ba5f11d74\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/listCert02/7081c356dd11468a8a262a8ba5f11d74\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188988,\r\n \"updated\": 1482188988\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/listCert02/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188988,\r\n \"updated\": 1482188988\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1754" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:34 GMT" + "Mon, 19 Dec 2016 23:09:48 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "57c4b0d2-05c4-4772-9e8b-4153e18e222f" + "f97b9ae6-4e83-458f-8e5b-6e7ce5948ffc" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,22 +141,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fcf06a5-f974-441a-82fa-73c90799c9af" + "c2067d59-145c-4dfd-a704-d7e3dcb0e20c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listCert01\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082074,\r\n \"updated\": 1477082074\r\n }\r\n },\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listCert02\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082075,\r\n \"updated\": 1477082075\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/listCert01\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188987,\r\n \"updated\": 1482188987\r\n }\r\n },\r\n {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/listCert02\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188988,\r\n \"updated\": 1482188988\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "453" @@ -169,7 +172,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:34 GMT" + "Mon, 19 Dec 2016 23:09:48 GMT" ], "Pragma": [ "no-cache" @@ -178,13 +181,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "5990fd3a-163c-4029-a78f-da0e223fd2e3" + "ef8de33a-aaea-41e1-a326-1415073877a5" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -202,22 +205,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/listCert01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbGlzdENlcnQwMT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/listCert01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9saXN0Q2VydDAxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9bed2e4-c3b0-468b-9efa-cfa4648a2dcc" + "e5a5ae93-2457-48db-a822-134ebf44357d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listCert01/d5b97326dbfa4da9aad55c5c0d0f4797\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listCert01/d5b97326dbfa4da9aad55c5c0d0f4797\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/listCert01/d5b97326dbfa4da9aad55c5c0d0f4797\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082074,\r\n \"updated\": 1477082074\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082074,\r\n \"updated\": 1477082074\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/listCert01/464d5df954784a788d6c65ea6ddf254a\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listCert01/464d5df954784a788d6c65ea6ddf254a\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/listCert01/464d5df954784a788d6c65ea6ddf254a\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188987,\r\n \"updated\": 1482188987\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/listCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188987,\r\n \"updated\": 1482188987\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1754" @@ -232,7 +236,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:35 GMT" + "Mon, 19 Dec 2016 23:09:49 GMT" ], "Pragma": [ "no-cache" @@ -241,13 +245,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "27efc37a-8185-4a4e-bd3c-6d65b1687895" + "2d420a80-8745-4c1a-beec-9be02869821c" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -265,22 +269,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/listCert02?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbGlzdENlcnQwMj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/listCert02?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9saXN0Q2VydDAyP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfd6d74e-c668-47f6-be39-b618cfff054b" + "3ea6880f-49aa-45a8-aa58-f85728bb317c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listCert02/6d73759e97404bb0a906c9b1ed1fa379\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listCert02/6d73759e97404bb0a906c9b1ed1fa379\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/listCert02/6d73759e97404bb0a906c9b1ed1fa379\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082075,\r\n \"updated\": 1477082075\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listCert02/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082075,\r\n \"updated\": 1477082075\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/listCert02/7081c356dd11468a8a262a8ba5f11d74\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listCert02/7081c356dd11468a8a262a8ba5f11d74\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/listCert02/7081c356dd11468a8a262a8ba5f11d74\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188988,\r\n \"updated\": 1482188988\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/listCert02/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188988,\r\n \"updated\": 1482188988\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1754" @@ -295,7 +300,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:35 GMT" + "Mon, 19 Dec 2016 23:09:49 GMT" ], "Pragma": [ "no-cache" @@ -304,13 +309,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "972171f2-3d40-40b1-a550-6f0a8cbd0320" + "0e780da2-ceda-4de9-bb40-38bf26ea8a3f" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -330,8 +335,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateListVersionsTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateListVersionsTest.json index 3781e880bac4..6b13859a8fd1 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateListVersionsTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateListVersionsTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//certificates/listVersionsCert01/import?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbGlzdFZlcnNpb25zQ2VydDAxL2ltcG9ydD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/listVersionsCert01/import?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9saXN0VmVyc2lvbnNDZXJ0MDEvaW1wb3J0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"value\": \"MIIJOwIBAzCCCPcGCSqGSIb3DQEHAaCCCOgEggjkMIII4DCCBgkGCSqGSIb3DQEHAaCCBfoEggX2MIIF8jCCBe4GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAj15YH9pOE58AICB9AEggTYLrI+SAru2dBZRQRlJY7XQ3LeLkah2FcRR3dATDshZ2h0IA2oBrkQIdsLyAAWZ32qYR1qkWxLHn9AqXgu27AEbOk35+pITZaiy63YYBkkpR+pDdngZt19Z0PWrGwHEq5z6BHS2GLyyN8SSOCbdzCz7blj3+7IZYoMj4WOPgOm/tQ6U44SFWek46QwN2zeA4i97v7ftNNns27ms52jqfhOvTA9c/wyfZKAY4aKJfYYUmycKjnnRl012ldS2lOkASFt+lu4QCa72IY6ePtRudPCvmzRv2pkLYS6z3cI7omT8nHP3DymNOqLbFqr5O2M1ZYaLC63Q3xt3eVvbcPh3N08D1hHkhz/KDTvkRAQpvrW8ISKmgDdmzN55Pe55xHfSWGB7gPw8sZea57IxFzWHTK2yvTslooWoosmGxanYY2IG/no3EbPOWDKjPZ4ilYJe5JJ2immlxPz+2e2EOCKpDI+7fzQcRz3PTd3BK+budZ8aXX8aW/lOgKS8WmxZoKnOJBNWeTNWQFugmktXfdPHAdxMhjUXqeGQd8wTvZ4EzQNNafovwkI7IV/ZYoa++RGofVR3ZbRSiBNF6TDj/qXFt0wN/CQnsGAmQAGNiN+D4mY7i25dtTu/Jc7OxLdhAUFpHyJpyrYWLfvOiS5WYBeEDHkiPUa/8eZSPA3MXWZR1RiuDvuNqMjct1SSwdXADTtF68l/US1ksU657+XSC+6ly1A/upz+X71+C4Ho6W0751j5ZMT6xKjGh5pee7MVuduxIzXjWIy3YSd0fIT3U0A5NLEvJ9rfkx6JiHjRLx6V1tqsrtT6BsGtmCQR1UCJPLqsKVDvAINx3cPA/CGqr5OX2BGZlAihGmN6n7gv8w4O0k0LPTAe5YefgXN3m9pE867N31GtHVZaJ/UVgDNYS2jused4rw76ZWN41akx2QN0JSeMJqHXqVz6AKfz8ICS/dFnEGyBNpXiMRxrY/QPKi/wONwqsbDxRW7vZRVKs78pBkE0ksaShlZk5GkeayDWC/7Hi/NqUFtIloK9XB3paLxo1DGu5qqaF34jZdktzkXp0uZqpp+FfKZaiovMjt8F7yHCPk+LYpRsU2Cyc9DVoDA6rIgf+uEP4jppgehsxyT0lJHax2t869R2jYdsXwYUXjgwHIV0voj7bJYPGFlFjXOp6ZW86scsHM5xfsGQoK2Fp838VT34SHE1ZXU/puM7rviREHYW72pfpgGZUILQMohuTPnd8tFtAkbrmjLDo+k9xx7HUvgoFTiNNWuq/cRjr70FKNguMMTIrid+HwfmbRoaxENWdLcOTNeascER2a+37UQolKD5ksrPJG6RdNA7O2pzp3micDYRs/+s28cCIxO//J/d4nsgHp6RTuCu4+Jm9k0YTw2Xg75b2cWKrxGnDUgyIlvNPaZTB5QbMid4x44/lE0LLi9kcPQhRgrK07OnnrMgZvVGjt1CLGhKUv7KFc3xV1r1rwKkosxnoG99oCoTQtregcX5rIMjHgkc1IdflGJkZzaWMkYVFOJ4Weynz008i4ddkske5vabZs37Lb8iggUYNBYZyGzalruBgnQyK4fz38Fae4nWYjyildVfgyo/fCePR2ovOfphx9OQJi+M9BoFmPrAg+8ARDZ+R+5yzYuEc9ZoVX7nkp7LTGB3DANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAOAAwAGQAZgBmADgANgAtAGUAOQA2AGUALQA0ADIAMgA0AC0AYQBhADEAMQAtAGIAZAAxADkANABkADUAYQA2AGIANwA3MF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAgAEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggLPBgkqhkiG9w0BBwagggLAMIICvAIBADCCArUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECNX+VL2MxzzWAgIH0ICCAojmRBO+CPfVNUO0s+BVuwhOzikAGNBmQHNChmJ/pyzPbMUbx7tO63eIVSc67iERda2WCEmVwPigaVQkPaumsfp8+L6iV/BMf5RKlyRXcwh0vUdu2Qa7qadD+gFQ2kngf4Dk6vYo2/2HxayuIf6jpwe8vql4ca3ZtWXfuRix2fwgltM0bMz1g59d7x/glTfNqxNlsty0A/rWrPJjNbOPRU2XykLuc3AtlTtYsQ32Zsmu67A7UNBw6tVtkEXlFDqhavEhUEO3dvYqMY+QLxzpZhA0q44ZZ9/ex0X6QAFNK5wuWxCbupHWsgxRwKftrxyszMHsAvNoNcTlqcctee+ecNwTJQa1/MDbnhO6/qHA7cfG1qYDq8Th635vGNMW1w3sVS7l0uEvdayAsBHWTcOC2tlMa5bfHrhY8OEIqj5bN5H9RdFy8G/W239tjDu1OYjBDydiBqzBn8HG1DSj1Pjc0kd/82d4ZU0308KFTC3yGcRad0GnEH0Oi3iEJ9HbriUbfVMbXNHOF+MktWiDVqzndGMKmuJSdfTBKvGFvejAWVO5E4mgLvoaMmbchc3BO7sLeraHnJN5hvMBaLcQI38N86mUfTR8AP6AJ9c2k514KaDLclm4z6J8dMz60nUeo5D3YD09G6BavFHxSvJ8MF0Lu5zOFzEePDRFm9mH8W0N/sFlIaYfD/GWU/w44mQucjaBk95YtqOGRIj58tGDWr8iUdHwaYKGqU24zGeRae9DhFXPzZshV1ZGsBQFRaoYkyLAwdJWIXTi+c37YaC8FRSEnnNmS79Dou1Kc3BvK4EYKAD2KxjtUebrV174gD0Q+9YuJ0GXOTspBvCFd5VT2Rw5zDNrA/J3F5fMCk4wOzAfMAcGBSsOAwIaBBSxgh2xyF+88V4vAffBmZXv8Txt4AQU4O/NX4MjxSodbE7ApNAMIvrtREwCAgfQ\",\r\n \"pwd\": \"123\",\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -13,19 +13,20 @@ "3415" ], "x-ms-client-request-id": [ - "371fc446-fd96-4f75-b4bd-450d1de17166" + "b9dd83db-d216-4093-b997-5d68916a2872" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listVersionsCert01/6ff8a3ab33d345c4b56ee3f662950326\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listVersionsCert01/6ff8a3ab33d345c4b56ee3f662950326\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/listVersionsCert01/6ff8a3ab33d345c4b56ee3f662950326\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082136,\r\n \"updated\": 1477082136\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listVersionsCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082136,\r\n \"updated\": 1477082136\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/listVersionsCert01/7fcb3e9eb8bf43f3a6ff4b9c3740801d\",\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listVersionsCert01/7fcb3e9eb8bf43f3a6ff4b9c3740801d\",\r\n \"sid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listVersionsCert01/7fcb3e9eb8bf43f3a6ff4b9c3740801d\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482189532,\r\n \"updated\": 1482189532\r\n },\r\n \"policy\": {\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/listVersionsCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189532,\r\n \"updated\": 1482189532\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1786" + "1846" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:36 GMT" + "Mon, 19 Dec 2016 23:18:53 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "5ad877c6-b785-4bf5-810a-365878855e56" + "1d0bfd89-3daa-4ec5-b16c-29afcd6e7c62" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,8 +71,8 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/listVersionsCert01/import?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbGlzdFZlcnNpb25zQ2VydDAxL2ltcG9ydD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/listVersionsCert01/import?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9saXN0VmVyc2lvbnNDZXJ0MDEvaW1wb3J0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"value\": \"MIIJOwIBAzCCCPcGCSqGSIb3DQEHAaCCCOgEggjkMIII4DCCBgkGCSqGSIb3DQEHAaCCBfoEggX2MIIF8jCCBe4GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAj15YH9pOE58AICB9AEggTYLrI+SAru2dBZRQRlJY7XQ3LeLkah2FcRR3dATDshZ2h0IA2oBrkQIdsLyAAWZ32qYR1qkWxLHn9AqXgu27AEbOk35+pITZaiy63YYBkkpR+pDdngZt19Z0PWrGwHEq5z6BHS2GLyyN8SSOCbdzCz7blj3+7IZYoMj4WOPgOm/tQ6U44SFWek46QwN2zeA4i97v7ftNNns27ms52jqfhOvTA9c/wyfZKAY4aKJfYYUmycKjnnRl012ldS2lOkASFt+lu4QCa72IY6ePtRudPCvmzRv2pkLYS6z3cI7omT8nHP3DymNOqLbFqr5O2M1ZYaLC63Q3xt3eVvbcPh3N08D1hHkhz/KDTvkRAQpvrW8ISKmgDdmzN55Pe55xHfSWGB7gPw8sZea57IxFzWHTK2yvTslooWoosmGxanYY2IG/no3EbPOWDKjPZ4ilYJe5JJ2immlxPz+2e2EOCKpDI+7fzQcRz3PTd3BK+budZ8aXX8aW/lOgKS8WmxZoKnOJBNWeTNWQFugmktXfdPHAdxMhjUXqeGQd8wTvZ4EzQNNafovwkI7IV/ZYoa++RGofVR3ZbRSiBNF6TDj/qXFt0wN/CQnsGAmQAGNiN+D4mY7i25dtTu/Jc7OxLdhAUFpHyJpyrYWLfvOiS5WYBeEDHkiPUa/8eZSPA3MXWZR1RiuDvuNqMjct1SSwdXADTtF68l/US1ksU657+XSC+6ly1A/upz+X71+C4Ho6W0751j5ZMT6xKjGh5pee7MVuduxIzXjWIy3YSd0fIT3U0A5NLEvJ9rfkx6JiHjRLx6V1tqsrtT6BsGtmCQR1UCJPLqsKVDvAINx3cPA/CGqr5OX2BGZlAihGmN6n7gv8w4O0k0LPTAe5YefgXN3m9pE867N31GtHVZaJ/UVgDNYS2jused4rw76ZWN41akx2QN0JSeMJqHXqVz6AKfz8ICS/dFnEGyBNpXiMRxrY/QPKi/wONwqsbDxRW7vZRVKs78pBkE0ksaShlZk5GkeayDWC/7Hi/NqUFtIloK9XB3paLxo1DGu5qqaF34jZdktzkXp0uZqpp+FfKZaiovMjt8F7yHCPk+LYpRsU2Cyc9DVoDA6rIgf+uEP4jppgehsxyT0lJHax2t869R2jYdsXwYUXjgwHIV0voj7bJYPGFlFjXOp6ZW86scsHM5xfsGQoK2Fp838VT34SHE1ZXU/puM7rviREHYW72pfpgGZUILQMohuTPnd8tFtAkbrmjLDo+k9xx7HUvgoFTiNNWuq/cRjr70FKNguMMTIrid+HwfmbRoaxENWdLcOTNeascER2a+37UQolKD5ksrPJG6RdNA7O2pzp3micDYRs/+s28cCIxO//J/d4nsgHp6RTuCu4+Jm9k0YTw2Xg75b2cWKrxGnDUgyIlvNPaZTB5QbMid4x44/lE0LLi9kcPQhRgrK07OnnrMgZvVGjt1CLGhKUv7KFc3xV1r1rwKkosxnoG99oCoTQtregcX5rIMjHgkc1IdflGJkZzaWMkYVFOJ4Weynz008i4ddkske5vabZs37Lb8iggUYNBYZyGzalruBgnQyK4fz38Fae4nWYjyildVfgyo/fCePR2ovOfphx9OQJi+M9BoFmPrAg+8ARDZ+R+5yzYuEc9ZoVX7nkp7LTGB3DANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAOAAwAGQAZgBmADgANgAtAGUAOQA2AGUALQA0ADIAMgA0AC0AYQBhADEAMQAtAGIAZAAxADkANABkADUAYQA2AGIANwA3MF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAgAEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggLPBgkqhkiG9w0BBwagggLAMIICvAIBADCCArUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECNX+VL2MxzzWAgIH0ICCAojmRBO+CPfVNUO0s+BVuwhOzikAGNBmQHNChmJ/pyzPbMUbx7tO63eIVSc67iERda2WCEmVwPigaVQkPaumsfp8+L6iV/BMf5RKlyRXcwh0vUdu2Qa7qadD+gFQ2kngf4Dk6vYo2/2HxayuIf6jpwe8vql4ca3ZtWXfuRix2fwgltM0bMz1g59d7x/glTfNqxNlsty0A/rWrPJjNbOPRU2XykLuc3AtlTtYsQ32Zsmu67A7UNBw6tVtkEXlFDqhavEhUEO3dvYqMY+QLxzpZhA0q44ZZ9/ex0X6QAFNK5wuWxCbupHWsgxRwKftrxyszMHsAvNoNcTlqcctee+ecNwTJQa1/MDbnhO6/qHA7cfG1qYDq8Th635vGNMW1w3sVS7l0uEvdayAsBHWTcOC2tlMa5bfHrhY8OEIqj5bN5H9RdFy8G/W239tjDu1OYjBDydiBqzBn8HG1DSj1Pjc0kd/82d4ZU0308KFTC3yGcRad0GnEH0Oi3iEJ9HbriUbfVMbXNHOF+MktWiDVqzndGMKmuJSdfTBKvGFvejAWVO5E4mgLvoaMmbchc3BO7sLeraHnJN5hvMBaLcQI38N86mUfTR8AP6AJ9c2k514KaDLclm4z6J8dMz60nUeo5D3YD09G6BavFHxSvJ8MF0Lu5zOFzEePDRFm9mH8W0N/sFlIaYfD/GWU/w44mQucjaBk95YtqOGRIj58tGDWr8iUdHwaYKGqU24zGeRae9DhFXPzZshV1ZGsBQFRaoYkyLAwdJWIXTi+c37YaC8FRSEnnNmS79Dou1Kc3BvK4EYKAD2KxjtUebrV174gD0Q+9YuJ0GXOTspBvCFd5VT2Rw5zDNrA/J3F5fMCk4wOzAfMAcGBSsOAwIaBBSxgh2xyF+88V4vAffBmZXv8Txt4AQU4O/NX4MjxSodbE7ApNAMIvrtREwCAgfQ\",\r\n \"pwd\": \"123\",\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -82,19 +83,20 @@ "3415" ], "x-ms-client-request-id": [ - "58fd8a42-b2f9-4896-a4c9-f8f6f62fbf46" + "71be04e5-2f5c-49fb-b825-873b474c00bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listVersionsCert01/25db1c6d727741f383d024feaed6c378\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listVersionsCert01/25db1c6d727741f383d024feaed6c378\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/listVersionsCert01/25db1c6d727741f383d024feaed6c378\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082137,\r\n \"updated\": 1477082137\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listVersionsCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082136,\r\n \"updated\": 1477082137\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/listVersionsCert01/002ade539442463aba45c0efb42e3e84\",\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listVersionsCert01/002ade539442463aba45c0efb42e3e84\",\r\n \"sid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listVersionsCert01/002ade539442463aba45c0efb42e3e84\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482189534,\r\n \"updated\": 1482189534\r\n },\r\n \"policy\": {\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/listVersionsCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189532,\r\n \"updated\": 1482189534\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1786" + "1846" ], "Content-Type": [ "application/json; charset=utf-8" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:37 GMT" + "Mon, 19 Dec 2016 23:18:54 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "eee57dfa-ee97-4557-b5ae-48beec4e799d" + "16e23758-537e-4e30-93e0-476b03a47a6d" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,25 +141,26 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/listVersionsCert01/versions?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbGlzdFZlcnNpb25zQ2VydDAxL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/listVersionsCert01/versions?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9saXN0VmVyc2lvbnNDZXJ0MDEvdmVyc2lvbnM/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecaa49fb-7db7-4478-bc0d-49c6f692ee4e" + "92dfdc81-d8c7-420c-849c-e5732cf714e2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listVersionsCert01/25db1c6d727741f383d024feaed6c378\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082137,\r\n \"updated\": 1477082137\r\n }\r\n },\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listVersionsCert01/6ff8a3ab33d345c4b56ee3f662950326\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082136,\r\n \"updated\": 1477082136\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/listVersionsCert01/002ade539442463aba45c0efb42e3e84\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482189534,\r\n \"updated\": 1482189534\r\n }\r\n },\r\n {\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/listVersionsCert01/7fcb3e9eb8bf43f3a6ff4b9c3740801d\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482189532,\r\n \"updated\": 1482189532\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "535" + "565" ], "Content-Type": [ "application/json; charset=utf-8" @@ -169,7 +172,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:37 GMT" + "Mon, 19 Dec 2016 23:18:54 GMT" ], "Pragma": [ "no-cache" @@ -178,13 +181,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "59185c5a-d26f-41e4-ac99-e3211f68cf0b" + "11e44a7e-a27d-4c15-b6f5-b1740e4c2197" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -202,25 +205,26 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/listVersionsCert01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvbGlzdFZlcnNpb25zQ2VydDAxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/listVersionsCert01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy9saXN0VmVyc2lvbnNDZXJ0MDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58d144b9-c602-4879-ba11-e16a6a2e55a9" + "e46b25a9-4069-4056-9e05-f017658a5267" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listVersionsCert01/25db1c6d727741f383d024feaed6c378\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listVersionsCert01/25db1c6d727741f383d024feaed6c378\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/listVersionsCert01/25db1c6d727741f383d024feaed6c378\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082137,\r\n \"updated\": 1477082137\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/listVersionsCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082136,\r\n \"updated\": 1477082137\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/listVersionsCert01/002ade539442463aba45c0efb42e3e84\",\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listVersionsCert01/002ade539442463aba45c0efb42e3e84\",\r\n \"sid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listVersionsCert01/002ade539442463aba45c0efb42e3e84\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482189534,\r\n \"updated\": 1482189534\r\n },\r\n \"policy\": {\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/certificates/listVersionsCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189532,\r\n \"updated\": 1482189534\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1786" + "1846" ], "Content-Type": [ "application/json; charset=utf-8" @@ -232,7 +236,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:37 GMT" + "Mon, 19 Dec 2016 23:18:54 GMT" ], "Pragma": [ "no-cache" @@ -241,13 +245,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "496ab786-dc66-4686-95fe-a99978e7b4d8" + "52ea59a3-4675-41ee-a3ec-cfabce63946a" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -267,8 +271,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "f2a7e60b8dd0477d943b3a9fb2a63f0b" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificatePolicyTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificatePolicyTest.json index 9aab540d10a5..0f43e7487201 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificatePolicyTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificatePolicyTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//certificates/updateCert01/import?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvdXBkYXRlQ2VydDAxL2ltcG9ydD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/updateCert01/import?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy91cGRhdGVDZXJ0MDEvaW1wb3J0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"value\": \"MIIJOwIBAzCCCPcGCSqGSIb3DQEHAaCCCOgEggjkMIII4DCCBgkGCSqGSIb3DQEHAaCCBfoEggX2MIIF8jCCBe4GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAj15YH9pOE58AICB9AEggTYLrI+SAru2dBZRQRlJY7XQ3LeLkah2FcRR3dATDshZ2h0IA2oBrkQIdsLyAAWZ32qYR1qkWxLHn9AqXgu27AEbOk35+pITZaiy63YYBkkpR+pDdngZt19Z0PWrGwHEq5z6BHS2GLyyN8SSOCbdzCz7blj3+7IZYoMj4WOPgOm/tQ6U44SFWek46QwN2zeA4i97v7ftNNns27ms52jqfhOvTA9c/wyfZKAY4aKJfYYUmycKjnnRl012ldS2lOkASFt+lu4QCa72IY6ePtRudPCvmzRv2pkLYS6z3cI7omT8nHP3DymNOqLbFqr5O2M1ZYaLC63Q3xt3eVvbcPh3N08D1hHkhz/KDTvkRAQpvrW8ISKmgDdmzN55Pe55xHfSWGB7gPw8sZea57IxFzWHTK2yvTslooWoosmGxanYY2IG/no3EbPOWDKjPZ4ilYJe5JJ2immlxPz+2e2EOCKpDI+7fzQcRz3PTd3BK+budZ8aXX8aW/lOgKS8WmxZoKnOJBNWeTNWQFugmktXfdPHAdxMhjUXqeGQd8wTvZ4EzQNNafovwkI7IV/ZYoa++RGofVR3ZbRSiBNF6TDj/qXFt0wN/CQnsGAmQAGNiN+D4mY7i25dtTu/Jc7OxLdhAUFpHyJpyrYWLfvOiS5WYBeEDHkiPUa/8eZSPA3MXWZR1RiuDvuNqMjct1SSwdXADTtF68l/US1ksU657+XSC+6ly1A/upz+X71+C4Ho6W0751j5ZMT6xKjGh5pee7MVuduxIzXjWIy3YSd0fIT3U0A5NLEvJ9rfkx6JiHjRLx6V1tqsrtT6BsGtmCQR1UCJPLqsKVDvAINx3cPA/CGqr5OX2BGZlAihGmN6n7gv8w4O0k0LPTAe5YefgXN3m9pE867N31GtHVZaJ/UVgDNYS2jused4rw76ZWN41akx2QN0JSeMJqHXqVz6AKfz8ICS/dFnEGyBNpXiMRxrY/QPKi/wONwqsbDxRW7vZRVKs78pBkE0ksaShlZk5GkeayDWC/7Hi/NqUFtIloK9XB3paLxo1DGu5qqaF34jZdktzkXp0uZqpp+FfKZaiovMjt8F7yHCPk+LYpRsU2Cyc9DVoDA6rIgf+uEP4jppgehsxyT0lJHax2t869R2jYdsXwYUXjgwHIV0voj7bJYPGFlFjXOp6ZW86scsHM5xfsGQoK2Fp838VT34SHE1ZXU/puM7rviREHYW72pfpgGZUILQMohuTPnd8tFtAkbrmjLDo+k9xx7HUvgoFTiNNWuq/cRjr70FKNguMMTIrid+HwfmbRoaxENWdLcOTNeascER2a+37UQolKD5ksrPJG6RdNA7O2pzp3micDYRs/+s28cCIxO//J/d4nsgHp6RTuCu4+Jm9k0YTw2Xg75b2cWKrxGnDUgyIlvNPaZTB5QbMid4x44/lE0LLi9kcPQhRgrK07OnnrMgZvVGjt1CLGhKUv7KFc3xV1r1rwKkosxnoG99oCoTQtregcX5rIMjHgkc1IdflGJkZzaWMkYVFOJ4Weynz008i4ddkske5vabZs37Lb8iggUYNBYZyGzalruBgnQyK4fz38Fae4nWYjyildVfgyo/fCePR2ovOfphx9OQJi+M9BoFmPrAg+8ARDZ+R+5yzYuEc9ZoVX7nkp7LTGB3DANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAOAAwAGQAZgBmADgANgAtAGUAOQA2AGUALQA0ADIAMgA0AC0AYQBhADEAMQAtAGIAZAAxADkANABkADUAYQA2AGIANwA3MF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAgAEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggLPBgkqhkiG9w0BBwagggLAMIICvAIBADCCArUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECNX+VL2MxzzWAgIH0ICCAojmRBO+CPfVNUO0s+BVuwhOzikAGNBmQHNChmJ/pyzPbMUbx7tO63eIVSc67iERda2WCEmVwPigaVQkPaumsfp8+L6iV/BMf5RKlyRXcwh0vUdu2Qa7qadD+gFQ2kngf4Dk6vYo2/2HxayuIf6jpwe8vql4ca3ZtWXfuRix2fwgltM0bMz1g59d7x/glTfNqxNlsty0A/rWrPJjNbOPRU2XykLuc3AtlTtYsQ32Zsmu67A7UNBw6tVtkEXlFDqhavEhUEO3dvYqMY+QLxzpZhA0q44ZZ9/ex0X6QAFNK5wuWxCbupHWsgxRwKftrxyszMHsAvNoNcTlqcctee+ecNwTJQa1/MDbnhO6/qHA7cfG1qYDq8Th635vGNMW1w3sVS7l0uEvdayAsBHWTcOC2tlMa5bfHrhY8OEIqj5bN5H9RdFy8G/W239tjDu1OYjBDydiBqzBn8HG1DSj1Pjc0kd/82d4ZU0308KFTC3yGcRad0GnEH0Oi3iEJ9HbriUbfVMbXNHOF+MktWiDVqzndGMKmuJSdfTBKvGFvejAWVO5E4mgLvoaMmbchc3BO7sLeraHnJN5hvMBaLcQI38N86mUfTR8AP6AJ9c2k514KaDLclm4z6J8dMz60nUeo5D3YD09G6BavFHxSvJ8MF0Lu5zOFzEePDRFm9mH8W0N/sFlIaYfD/GWU/w44mQucjaBk95YtqOGRIj58tGDWr8iUdHwaYKGqU24zGeRae9DhFXPzZshV1ZGsBQFRaoYkyLAwdJWIXTi+c37YaC8FRSEnnNmS79Dou1Kc3BvK4EYKAD2KxjtUebrV174gD0Q+9YuJ0GXOTspBvCFd5VT2Rw5zDNrA/J3F5fMCk4wOzAfMAcGBSsOAwIaBBSxgh2xyF+88V4vAffBmZXv8Txt4AQU4O/NX4MjxSodbE7ApNAMIvrtREwCAgfQ\",\r\n \"pwd\": \"123\",\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "3415" ], "x-ms-client-request-id": [ - "2a6eb308-ccc7-4224-a52e-860d7f592ad4" + "162aa6a0-871d-4b97-b86c-270726758642" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/1495fe603795450e99230bd1733c5085\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/updateCert01/1495fe603795450e99230bd1733c5085\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/updateCert01/1495fe603795450e99230bd1733c5085\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082039,\r\n \"updated\": 1477082039\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082039,\r\n \"updated\": 1477082039\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/e77db3a8f03445e88f19f8475b1d09ab\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/updateCert01/e77db3a8f03445e88f19f8475b1d09ab\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/updateCert01/e77db3a8f03445e88f19f8475b1d09ab\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188947,\r\n \"updated\": 1482188947\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188947,\r\n \"updated\": 1482188947\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1762" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:59 GMT" + "Mon, 19 Dec 2016 23:09:07 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "e8ad9998-73f3-4f39-b08d-f6ebb7563b33" + "69f7f439-c352-4126-a4ce-55a869b7add5" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,22 +71,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/updateCert01/policy?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvdXBkYXRlQ2VydDAxL3BvbGljeT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/updateCert01/policy?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy91cGRhdGVDZXJ0MDEvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0d6cac3-ddaf-4b6d-bd9d-fcb8ddcf7c47" + "21f11807-6aa2-438c-9706-1e9e0c8c08a6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082039,\r\n \"updated\": 1477082039\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188947,\r\n \"updated\": 1482188947\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "535" @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:33:59 GMT" + "Mon, 19 Dec 2016 23:09:07 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "cf4448d2-74fb-4cf9-a31d-47a9c8acad02" + "cbb668c1-3bdd-4c2c-acf8-78d2277380cf" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -133,22 +135,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/updateCert01/policy?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvdXBkYXRlQ2VydDAxL3BvbGljeT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/updateCert01/policy?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy91cGRhdGVDZXJ0MDEvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "070f41a0-a0a1-445b-b1ac-e82ed25e96c7" + "8a1e95a6-eada-4468-80c7-a1be585f32d0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082039,\r\n \"updated\": 1477082040\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188947,\r\n \"updated\": 1482188948\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "532" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:00 GMT" + "Mon, 19 Dec 2016 23:09:08 GMT" ], "Pragma": [ "no-cache" @@ -172,13 +175,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "2d88e395-dfc0-4121-9020-96b2f20c60b2" + "16cb21ea-dbcd-4ab8-baa8-227d3a7fa744" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -196,8 +199,8 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/updateCert01/policy?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvdXBkYXRlQ2VydDAxL3BvbGljeT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/updateCert01/policy?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy91cGRhdGVDZXJ0MDEvcG9saWN5P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true\r\n }\r\n}", "RequestHeaders": { @@ -208,16 +211,17 @@ "580" ], "x-ms-client-request-id": [ - "6e3cf87b-966c-41d9-a754-9be3e5135316" + "7b08fe3d-9ca5-4800-b557-219082a37a40" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082039,\r\n \"updated\": 1477082040\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188947,\r\n \"updated\": 1482188948\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "532" @@ -232,7 +236,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:00 GMT" + "Mon, 19 Dec 2016 23:09:07 GMT" ], "Pragma": [ "no-cache" @@ -241,13 +245,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "0a6b83e3-4fde-4c8d-a895-16e7f23ebae4" + "1a83a058-02e6-46ee-a80a-1e3e2324c40a" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -265,22 +269,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/updateCert01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvdXBkYXRlQ2VydDAxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/updateCert01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy91cGRhdGVDZXJ0MDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e744dc54-057e-4068-82cc-859c18090c03" + "34333715-8b55-476b-b0c2-bd0e19d2fad3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/1495fe603795450e99230bd1733c5085\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/updateCert01/1495fe603795450e99230bd1733c5085\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/updateCert01/1495fe603795450e99230bd1733c5085\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082039,\r\n \"updated\": 1477082039\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082039,\r\n \"updated\": 1477082040\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/e77db3a8f03445e88f19f8475b1d09ab\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/updateCert01/e77db3a8f03445e88f19f8475b1d09ab\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/updateCert01/e77db3a8f03445e88f19f8475b1d09ab\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188947,\r\n \"updated\": 1482188947\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Self\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188947,\r\n \"updated\": 1482188948\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1759" @@ -295,7 +300,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:00 GMT" + "Mon, 19 Dec 2016 23:09:08 GMT" ], "Pragma": [ "no-cache" @@ -304,13 +309,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "0a8201f6-b164-4fd5-8604-f77b363f582a" + "849d65bd-f8f3-4a16-b1ce-4e7f47cf8d86" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -330,8 +335,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateUpdateTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateUpdateTest.json index 9c76b225dd43..2aff792bde7b 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateUpdateTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCertificateUpdateTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//certificates/updateCert01/import?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvdXBkYXRlQ2VydDAxL2ltcG9ydD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/updateCert01/import?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy91cGRhdGVDZXJ0MDEvaW1wb3J0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"value\": \"MIIJOwIBAzCCCPcGCSqGSIb3DQEHAaCCCOgEggjkMIII4DCCBgkGCSqGSIb3DQEHAaCCBfoEggX2MIIF8jCCBe4GCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAj15YH9pOE58AICB9AEggTYLrI+SAru2dBZRQRlJY7XQ3LeLkah2FcRR3dATDshZ2h0IA2oBrkQIdsLyAAWZ32qYR1qkWxLHn9AqXgu27AEbOk35+pITZaiy63YYBkkpR+pDdngZt19Z0PWrGwHEq5z6BHS2GLyyN8SSOCbdzCz7blj3+7IZYoMj4WOPgOm/tQ6U44SFWek46QwN2zeA4i97v7ftNNns27ms52jqfhOvTA9c/wyfZKAY4aKJfYYUmycKjnnRl012ldS2lOkASFt+lu4QCa72IY6ePtRudPCvmzRv2pkLYS6z3cI7omT8nHP3DymNOqLbFqr5O2M1ZYaLC63Q3xt3eVvbcPh3N08D1hHkhz/KDTvkRAQpvrW8ISKmgDdmzN55Pe55xHfSWGB7gPw8sZea57IxFzWHTK2yvTslooWoosmGxanYY2IG/no3EbPOWDKjPZ4ilYJe5JJ2immlxPz+2e2EOCKpDI+7fzQcRz3PTd3BK+budZ8aXX8aW/lOgKS8WmxZoKnOJBNWeTNWQFugmktXfdPHAdxMhjUXqeGQd8wTvZ4EzQNNafovwkI7IV/ZYoa++RGofVR3ZbRSiBNF6TDj/qXFt0wN/CQnsGAmQAGNiN+D4mY7i25dtTu/Jc7OxLdhAUFpHyJpyrYWLfvOiS5WYBeEDHkiPUa/8eZSPA3MXWZR1RiuDvuNqMjct1SSwdXADTtF68l/US1ksU657+XSC+6ly1A/upz+X71+C4Ho6W0751j5ZMT6xKjGh5pee7MVuduxIzXjWIy3YSd0fIT3U0A5NLEvJ9rfkx6JiHjRLx6V1tqsrtT6BsGtmCQR1UCJPLqsKVDvAINx3cPA/CGqr5OX2BGZlAihGmN6n7gv8w4O0k0LPTAe5YefgXN3m9pE867N31GtHVZaJ/UVgDNYS2jused4rw76ZWN41akx2QN0JSeMJqHXqVz6AKfz8ICS/dFnEGyBNpXiMRxrY/QPKi/wONwqsbDxRW7vZRVKs78pBkE0ksaShlZk5GkeayDWC/7Hi/NqUFtIloK9XB3paLxo1DGu5qqaF34jZdktzkXp0uZqpp+FfKZaiovMjt8F7yHCPk+LYpRsU2Cyc9DVoDA6rIgf+uEP4jppgehsxyT0lJHax2t869R2jYdsXwYUXjgwHIV0voj7bJYPGFlFjXOp6ZW86scsHM5xfsGQoK2Fp838VT34SHE1ZXU/puM7rviREHYW72pfpgGZUILQMohuTPnd8tFtAkbrmjLDo+k9xx7HUvgoFTiNNWuq/cRjr70FKNguMMTIrid+HwfmbRoaxENWdLcOTNeascER2a+37UQolKD5ksrPJG6RdNA7O2pzp3micDYRs/+s28cCIxO//J/d4nsgHp6RTuCu4+Jm9k0YTw2Xg75b2cWKrxGnDUgyIlvNPaZTB5QbMid4x44/lE0LLi9kcPQhRgrK07OnnrMgZvVGjt1CLGhKUv7KFc3xV1r1rwKkosxnoG99oCoTQtregcX5rIMjHgkc1IdflGJkZzaWMkYVFOJ4Weynz008i4ddkske5vabZs37Lb8iggUYNBYZyGzalruBgnQyK4fz38Fae4nWYjyildVfgyo/fCePR2ovOfphx9OQJi+M9BoFmPrAg+8ARDZ+R+5yzYuEc9ZoVX7nkp7LTGB3DANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAOAAwAGQAZgBmADgANgAtAGUAOQA2AGUALQA0ADIAMgA0AC0AYQBhADEAMQAtAGIAZAAxADkANABkADUAYQA2AGIANwA3MF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAHQAcgBvAG4AZwAgAEMAcgB5AHAAdABvAGcAcgBhAHAAaABpAGMAIABQAHIAbwB2AGkAZABlAHIwggLPBgkqhkiG9w0BBwagggLAMIICvAIBADCCArUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECNX+VL2MxzzWAgIH0ICCAojmRBO+CPfVNUO0s+BVuwhOzikAGNBmQHNChmJ/pyzPbMUbx7tO63eIVSc67iERda2WCEmVwPigaVQkPaumsfp8+L6iV/BMf5RKlyRXcwh0vUdu2Qa7qadD+gFQ2kngf4Dk6vYo2/2HxayuIf6jpwe8vql4ca3ZtWXfuRix2fwgltM0bMz1g59d7x/glTfNqxNlsty0A/rWrPJjNbOPRU2XykLuc3AtlTtYsQ32Zsmu67A7UNBw6tVtkEXlFDqhavEhUEO3dvYqMY+QLxzpZhA0q44ZZ9/ex0X6QAFNK5wuWxCbupHWsgxRwKftrxyszMHsAvNoNcTlqcctee+ecNwTJQa1/MDbnhO6/qHA7cfG1qYDq8Th635vGNMW1w3sVS7l0uEvdayAsBHWTcOC2tlMa5bfHrhY8OEIqj5bN5H9RdFy8G/W239tjDu1OYjBDydiBqzBn8HG1DSj1Pjc0kd/82d4ZU0308KFTC3yGcRad0GnEH0Oi3iEJ9HbriUbfVMbXNHOF+MktWiDVqzndGMKmuJSdfTBKvGFvejAWVO5E4mgLvoaMmbchc3BO7sLeraHnJN5hvMBaLcQI38N86mUfTR8AP6AJ9c2k514KaDLclm4z6J8dMz60nUeo5D3YD09G6BavFHxSvJ8MF0Lu5zOFzEePDRFm9mH8W0N/sFlIaYfD/GWU/w44mQucjaBk95YtqOGRIj58tGDWr8iUdHwaYKGqU24zGeRae9DhFXPzZshV1ZGsBQFRaoYkyLAwdJWIXTi+c37YaC8FRSEnnNmS79Dou1Kc3BvK4EYKAD2KxjtUebrV174gD0Q+9YuJ0GXOTspBvCFd5VT2Rw5zDNrA/J3F5fMCk4wOzAfMAcGBSsOAwIaBBSxgh2xyF+88V4vAffBmZXv8Txt4AQU4O/NX4MjxSodbE7ApNAMIvrtREwCAgfQ\",\r\n \"pwd\": \"123\",\r\n \"policy\": {\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "3415" ], "x-ms-client-request-id": [ - "2078c993-6938-4b56-8192-352d398b1284" + "632801f8-7171-4a6b-99ec-fc47fb075c63" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082068,\r\n \"updated\": 1477082068\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082068,\r\n \"updated\": 1477082068\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188981,\r\n \"updated\": 1482188981\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188981,\r\n \"updated\": 1482188981\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1762" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:28 GMT" + "Mon, 19 Dec 2016 23:09:41 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "89142d99-0c17-45c6-b306-3d7765821521" + "9ff37071-9b77-4f0d-b262-a076f9c8c253" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,22 +71,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/updateCert01/?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvdXBkYXRlQ2VydDAxLz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/updateCert01/?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy91cGRhdGVDZXJ0MDEvP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b007dcc1-7691-4be2-b2d9-ef4427d9c7d1" + "303c279e-815b-4221-a22d-6b37c7d082c7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082068,\r\n \"updated\": 1477082068\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082068,\r\n \"updated\": 1477082068\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188981,\r\n \"updated\": 1482188981\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188981,\r\n \"updated\": 1482188981\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1762" @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:28 GMT" + "Mon, 19 Dec 2016 23:09:41 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "908bc5dc-d95b-4f85-b9b8-c00397eb9f37" + "6f5be3c3-aff8-4a55-a981-7eee4fbfd36a" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -133,22 +135,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/updateCert01/?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvdXBkYXRlQ2VydDAxLz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/certificates/updateCert01/?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy91cGRhdGVDZXJ0MDEvP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c17387b-66c2-4f99-82f9-6924eec07345" + "92ef1e92-87b4-4289-bcf3-6843a1fc1361" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082068,\r\n \"updated\": 1477082069\r\n },\r\n \"tags\": {\r\n \"department\": \"KeyVaultTest\"\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082068,\r\n \"updated\": 1477082068\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188981,\r\n \"updated\": 1482188981\r\n },\r\n \"tags\": {\r\n \"department\": \"KeyVaultTest\"\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188981,\r\n \"updated\": 1482188981\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1799" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:29 GMT" + "Mon, 19 Dec 2016 23:09:41 GMT" ], "Pragma": [ "no-cache" @@ -172,13 +175,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "0bb08a64-103b-448d-aa4c-29162d1a5452" + "5641a355-a92e-46d0-a5f4-24029c705a83" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -196,8 +199,8 @@ "StatusCode": 200 }, { - "RequestUri": "/certificates/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3?api-version=2016-10-01", - "EncodedRequestUri": "L2NlcnRpZmljYXRlcy91cGRhdGVDZXJ0MDEvMGI2MWI3ZTQxOTdlNDhkOWE1NWMzMmE4YTYyMTgxYjM/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/certificates/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy91cGRhdGVDZXJ0MDEvYzNkMzFkN2IzNmM5NDJhZDgzZWYzNmZjMDc4NWE0ZmM/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799\r\n },\r\n \"tags\": {\r\n \"department\": \"KeyVaultTest\"\r\n }\r\n}", "RequestHeaders": { @@ -208,16 +211,17 @@ "150" ], "x-ms-client-request-id": [ - "2af695b8-2020-4b3b-b80e-33e3316525b6" + "d2455166-b105-4159-bc71-f80de17a9196" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082068,\r\n \"updated\": 1477082069\r\n },\r\n \"tags\": {\r\n \"department\": \"KeyVaultTest\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188981,\r\n \"updated\": 1482188981\r\n },\r\n \"tags\": {\r\n \"department\": \"KeyVaultTest\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1254" @@ -232,7 +236,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:29 GMT" + "Mon, 19 Dec 2016 23:09:41 GMT" ], "Pragma": [ "no-cache" @@ -241,13 +245,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "6ad66979-7bb4-432d-a1a5-b5765ed498ac" + "db3f7d06-93f5-48f4-9cc5-437b2ff53c82" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -265,22 +269,23 @@ "StatusCode": 200 }, { - "RequestUri": "//certificates/updateCert01?api-version=2016-10-01", - "EncodedRequestUri": "Ly9jZXJ0aWZpY2F0ZXMvdXBkYXRlQ2VydDAxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/certificates/updateCert01?api-version=2016-10-01", + "EncodedRequestUri": "L2NlcnRpZmljYXRlcy91cGRhdGVDZXJ0MDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14c3c4f4-c9f0-4da9-bb8b-5e60e233c3f1" + "bc5a707e-6f67-4cf6-9ec0-71a435740377" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"sid\": \"https://testvault1020.vault.azure.net/secrets/updateCert01/0b61b7e4197e48d9a55c32a8a62181b3\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1477082068,\r\n \"updated\": 1477082069\r\n },\r\n \"tags\": {\r\n \"department\": \"KeyVaultTest\"\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1020.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082068,\r\n \"updated\": 1477082068\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"sid\": \"https://testvault1021.vault.azure.net/secrets/updateCert01/c3d31d7b36c942ad83ef36fc0785a4fc\",\r\n \"x5t\": \"fLi3U52HunIVNXubkEnf8tP6Wbo\",\r\n \"cer\": \"MIICODCCAeagAwIBAgIQqHmpBAv+CY9IJFoUhlbziTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE1MDQyOTIxNTM0MVoXDTM5MTIzMTIzNTk1OVowFzEVMBMGA1UEAxMMS2V5VmF1bHRUZXN0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5bVAT73zr4+N4WVv2+SvTunAw08ksS4BrJW/nNliz3S9XuzMBMXvmYzU5HJ8TtEgluBiZZYd5qsMJD+OXHSNbsLdmMhni0jYX09h3XlC2VJw2sGKeYF+xEaavXm337aZZaZyjrFBrrUl51UePaN+kVFXNlBb3N3TYpqa7KokXenJQuR+i9Gv9a77c0UsSsDSryxppYhKK7HvTZCpKrhVtulF5iPMswWe9np3uggfMamyIsK/0L7X9w9B2qN7993RR0A00nOk4H6CnkuwO77dSsD0KJsk6FyAoZBzRXDZh9+d9R76zCL506NcQy/jl0lCiQYwsUX73PG5pxOh02OwKwIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAGqIjo2geVagzuzaZOe1ClGKhZeiCKfWAxklaGN+qlGUbVS4IN4V1lot3VKnzabasmkEHeNxPwLn1qvSD0cX9CE=\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1430344421,\r\n \"exp\": 2208988799,\r\n \"created\": 1482188981,\r\n \"updated\": 1482188981\r\n },\r\n \"tags\": {\r\n \"department\": \"KeyVaultTest\"\r\n },\r\n \"policy\": {\r\n \"id\": \"https://testvault1021.vault.azure.net/certificates/updateCert01/policy\",\r\n \"key_props\": {\r\n \"exportable\": true,\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"reuse_key\": false\r\n },\r\n \"secret_props\": {\r\n \"contentType\": \"application/x-pkcs12\"\r\n },\r\n \"x509_props\": {\r\n \"subject\": \"CN=KeyVaultTest\",\r\n \"ekus\": [],\r\n \"key_usage\": [],\r\n \"validity_months\": 297,\r\n \"basic_constraints\": {\r\n \"ca\": false\r\n }\r\n },\r\n \"lifetime_actions\": [\r\n {\r\n \"trigger\": {\r\n \"lifetime_percentage\": 80\r\n },\r\n \"action\": {\r\n \"action_type\": \"EmailContacts\"\r\n }\r\n }\r\n ],\r\n \"issuer\": {\r\n \"name\": \"Unknown\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188981,\r\n \"updated\": 1482188981\r\n }\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1799" @@ -295,7 +300,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:29 GMT" + "Mon, 19 Dec 2016 23:09:41 GMT" ], "Pragma": [ "no-cache" @@ -304,13 +309,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "5d56c36e-b494-4b35-a017-71ef0763ec55" + "fee7fc8d-5a04-4733-a2b4-2b700f3ddbcb" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -330,8 +335,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultConstructor.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultConstructor.json index 3c7e61148913..5ffa43c6ebe8 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultConstructor.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultConstructor.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41c003c9-fe04-4533-8181-afcf5a4d2abb" + "f940e943-079b-4f90-9835-b7eec33598bf" ], "accept-language": [ "en-US" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://sdktestvault0511.vault.azure.net/keys/createManualEnrollmentJava4\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1469048531,\r\n \"exp\": 1500585131,\r\n \"created\": 1469049131,\r\n \"updated\": 1469049131\r\n },\r\n \"managed\": true\r\n },\r\n {\r\n \"kid\": \"https://sdktestvault0511.vault.azure.net/keys/createManualEnrollmentJava6\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1469567919,\r\n \"exp\": 1501104519,\r\n \"created\": 1469568520,\r\n \"updated\": 1469568520\r\n },\r\n \"managed\": true\r\n },\r\n {\r\n \"kid\": \"https://sdktestvault0511.vault.azure.net/keys/createManualEnrollmentJava7\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1469568292,\r\n \"exp\": 1501104892,\r\n \"created\": 1469568892,\r\n \"updated\": 1469568892\r\n },\r\n \"managed\": true\r\n },\r\n {\r\n \"kid\": \"https://sdktestvault0511.vault.azure.net/keys/createManualEnrollmentJava8\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1469569754,\r\n \"exp\": 1501106354,\r\n \"created\": 1469570354,\r\n \"updated\": 1469570354\r\n },\r\n \"managed\": true\r\n },\r\n {\r\n \"kid\": \"https://sdktestvault0511.vault.azure.net/keys/createManualEnrollmentJava9\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1469574262,\r\n \"exp\": 1501110862,\r\n \"created\": 1469574863,\r\n \"updated\": 1469574863\r\n },\r\n \"managed\": true\r\n },\r\n {\r\n \"kid\": \"https://sdktestvault0511.vault.azure.net/keys/listkeytest0\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1478201850,\r\n \"updated\": 1478201850\r\n }\r\n },\r\n {\r\n \"kid\": \"https://sdktestvault0511.vault.azure.net/keys/listkeytest1\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1478201851,\r\n \"updated\": 1478201851\r\n }\r\n },\r\n {\r\n \"kid\": \"https://sdktestvault0511.vault.azure.net/keys/listkeytest2\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1478201851,\r\n \"updated\": 1478201851\r\n }\r\n },\r\n {\r\n \"kid\": \"https://sdktestvault0511.vault.azure.net/keys/listkeyversionstest\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1478201844,\r\n \"updated\": 1478201844\r\n }\r\n },\r\n {\r\n \"kid\": \"https://sdktestvault0511.vault.azure.net/keys/sdktestkey\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1478564458,\r\n \"updated\": 1478564458\r\n }\r\n },\r\n {\r\n \"kid\": \"https://sdktestvault0511.vault.azure.net/keys/UnknownIssuerCert\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1469493191,\r\n \"exp\": 1501029791,\r\n \"created\": 1469493792,\r\n \"updated\": 1469493792\r\n },\r\n \"managed\": true\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listkeytest0\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188857,\r\n \"updated\": 1482188857\r\n }\r\n },\r\n {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listkeytest1\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188857,\r\n \"updated\": 1482188857\r\n }\r\n },\r\n {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listkeytest2\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188858,\r\n \"updated\": 1482188858\r\n }\r\n },\r\n {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listkeyversionstest\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188853,\r\n \"updated\": 1482188853\r\n }\r\n },\r\n {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/sdktestkey\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188915,\r\n \"updated\": 1482188915\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ - "1957" + "797" ], "Content-Type": [ "application/json; charset=utf-8" @@ -28,7 +28,7 @@ "no-cache" ], "Date": [ - "Tue, 08 Nov 2016 00:20:58 GMT" + "Mon, 19 Dec 2016 23:18:48 GMT" ], "Pragma": [ "no-cache" @@ -37,13 +37,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "East US" + "South Central US" ], "x-ms-request-id": [ - "dae84c87-8253-48d5-a09e-25b9db40ad58" + "8a7791fe-671c-4da9-ba4b-3c0a55589b21" ], "x-ms-keyvault-service-version": [ - "1.0.0.783" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -63,8 +63,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://sdktestvault0511.vault.azure.net", + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "70af9ac375194d018c0c7a0ef35b1d56" + "KeyVersion": "f2a7e60b8dd0477d943b3a9fb2a63f0b" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCreateGetDeleteKeyTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCreateGetDeleteKeyTest.json index 763d095b81b7..2c52c60bf50b 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCreateGetDeleteKeyTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCreateGetDeleteKeyTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//keys/CreateSoftKeyTest/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL0NyZWF0ZVNvZnRLZXlUZXN0L2NyZWF0ZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/keys/CreateSoftKeyTest/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlU29mdEtleVRlc3QvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"attributes\": {},\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateGetDeleteKeyTest\"\r\n }\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "269" ], "x-ms-client-request-id": [ - "c1d111e1-bbbb-470c-82a9-23a9be426a18" + "0ae4d923-b158-41a8-beca-a9fd071df241" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/CreateSoftKeyTest/4ee6bb4d2e3549ae9d45753a9b58e96a\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"2KcHN9mToqFWiK2RYN9CDbVjzNcAOOmsvruUXEgRjWs8dScr-U1U6zZnm_k4wWPHsJ4pGpRwoWAn-D5QnfR-MD6InEARZSHD-luZxndaffsjq32ridwK58qM9L1stUYBwGvGqgnbprVJyhbMJ7x3923Bdj-l3prcQ4uHN_PIfFpyyHvc5XdIo4cn5zGjS47nxTEN9WV67Og36sQfcFvi1a4gwWajrgHxN38DBtgyuXRfxpBdFM8k63dBCFdLpPb3RejrZanLdJu91-GrfzalkofrP2ixCt9meT0XnCEPqlcWNah7irjTdqU6VOloE6tCb-5OmFk-LG9bIewa5Yplfw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082040,\r\n \"updated\": 1477082040\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateGetDeleteKeyTest\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/CreateSoftKeyTest/bc8f174589144c00ab7aa2977162c808\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"nW4UnM8D5yMF189saOvHclS4YmU3MmNzz_Q3CM-GPu98KssGmaZ-RKPctURVJN4dS0zch_q0VR4VGPMymjpnusGZMHPTox-_fFKcddMDP9vDtH_X2s4ixy7YvEZYUShUxSo7kfaBKuUsW3lLFS1-3YCRD_greiSUlImDPdlr6L4piaD2neExjWJaO-GJE_hgcZ7nGJq_0U29UoUCR-Ka4g-byeZOGN20We4E3YHziB1aZcO-jegNkj5UqX9EbBGbuvv_CqyYZNBMtGyzjq0NzUYoI2SHVhjM3lsDuOW_AyVpKw7uGzkpRVFVwjTMcIb0shFvBjxQSzAfkr6gVjZzPw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188950,\r\n \"updated\": 1482188950\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateGetDeleteKeyTest\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "694" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:00 GMT" + "Mon, 19 Dec 2016 23:09:09 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "8a21fd09-cc2e-4910-afb8-a1087886d500" + "27e3164b-d66a-47c8-950a-4c923f86fd3d" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,22 +71,23 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/CreateSoftKeyTest/4ee6bb4d2e3549ae9d45753a9b58e96a?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvQ3JlYXRlU29mdEtleVRlc3QvNGVlNmJiNGQyZTM1NDlhZTlkNDU3NTNhOWI1OGU5NmE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/keys/CreateSoftKeyTest/bc8f174589144c00ab7aa2977162c808?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlU29mdEtleVRlc3QvYmM4ZjE3NDU4OTE0NGMwMGFiN2FhMjk3NzE2MmM4MDg/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9047763d-c681-4b37-9c65-f6954bdbb01f" + "20c243bb-f161-417e-9b54-8ce44d85d59c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/CreateSoftKeyTest/4ee6bb4d2e3549ae9d45753a9b58e96a\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"2KcHN9mToqFWiK2RYN9CDbVjzNcAOOmsvruUXEgRjWs8dScr-U1U6zZnm_k4wWPHsJ4pGpRwoWAn-D5QnfR-MD6InEARZSHD-luZxndaffsjq32ridwK58qM9L1stUYBwGvGqgnbprVJyhbMJ7x3923Bdj-l3prcQ4uHN_PIfFpyyHvc5XdIo4cn5zGjS47nxTEN9WV67Og36sQfcFvi1a4gwWajrgHxN38DBtgyuXRfxpBdFM8k63dBCFdLpPb3RejrZanLdJu91-GrfzalkofrP2ixCt9meT0XnCEPqlcWNah7irjTdqU6VOloE6tCb-5OmFk-LG9bIewa5Yplfw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082040,\r\n \"updated\": 1477082040\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateGetDeleteKeyTest\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/CreateSoftKeyTest/bc8f174589144c00ab7aa2977162c808\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"nW4UnM8D5yMF189saOvHclS4YmU3MmNzz_Q3CM-GPu98KssGmaZ-RKPctURVJN4dS0zch_q0VR4VGPMymjpnusGZMHPTox-_fFKcddMDP9vDtH_X2s4ixy7YvEZYUShUxSo7kfaBKuUsW3lLFS1-3YCRD_greiSUlImDPdlr6L4piaD2neExjWJaO-GJE_hgcZ7nGJq_0U29UoUCR-Ka4g-byeZOGN20We4E3YHziB1aZcO-jegNkj5UqX9EbBGbuvv_CqyYZNBMtGyzjq0NzUYoI2SHVhjM3lsDuOW_AyVpKw7uGzkpRVFVwjTMcIb0shFvBjxQSzAfkr6gVjZzPw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188950,\r\n \"updated\": 1482188950\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateGetDeleteKeyTest\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "694" @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:00 GMT" + "Mon, 19 Dec 2016 23:09:09 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "40057462-4102-4ff8-937e-64d8894f7184" + "14ac52b8-d956-40e6-b9ea-4ed34f1aba24" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -133,22 +135,23 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/CreateSoftKeyTest?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL0NyZWF0ZVNvZnRLZXlUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/CreateSoftKeyTest?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlU29mdEtleVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dcf3c0fb-50f9-445e-9d30-ee5f507c968a" + "67dd7c52-f1d9-461c-9b75-1eb44444f2cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/CreateSoftKeyTest/4ee6bb4d2e3549ae9d45753a9b58e96a\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"2KcHN9mToqFWiK2RYN9CDbVjzNcAOOmsvruUXEgRjWs8dScr-U1U6zZnm_k4wWPHsJ4pGpRwoWAn-D5QnfR-MD6InEARZSHD-luZxndaffsjq32ridwK58qM9L1stUYBwGvGqgnbprVJyhbMJ7x3923Bdj-l3prcQ4uHN_PIfFpyyHvc5XdIo4cn5zGjS47nxTEN9WV67Og36sQfcFvi1a4gwWajrgHxN38DBtgyuXRfxpBdFM8k63dBCFdLpPb3RejrZanLdJu91-GrfzalkofrP2ixCt9meT0XnCEPqlcWNah7irjTdqU6VOloE6tCb-5OmFk-LG9bIewa5Yplfw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082040,\r\n \"updated\": 1477082040\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateGetDeleteKeyTest\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/CreateSoftKeyTest/bc8f174589144c00ab7aa2977162c808\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"nW4UnM8D5yMF189saOvHclS4YmU3MmNzz_Q3CM-GPu98KssGmaZ-RKPctURVJN4dS0zch_q0VR4VGPMymjpnusGZMHPTox-_fFKcddMDP9vDtH_X2s4ixy7YvEZYUShUxSo7kfaBKuUsW3lLFS1-3YCRD_greiSUlImDPdlr6L4piaD2neExjWJaO-GJE_hgcZ7nGJq_0U29UoUCR-Ka4g-byeZOGN20We4E3YHziB1aZcO-jegNkj5UqX9EbBGbuvv_CqyYZNBMtGyzjq0NzUYoI2SHVhjM3lsDuOW_AyVpKw7uGzkpRVFVwjTMcIb0shFvBjxQSzAfkr6gVjZzPw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188950,\r\n \"updated\": 1482188950\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateGetDeleteKeyTest\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "694" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:00 GMT" + "Mon, 19 Dec 2016 23:09:10 GMT" ], "Pragma": [ "no-cache" @@ -172,13 +175,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "0b58832c-94ea-4e32-8f5c-b7038cde69dc" + "30094f5a-c6fc-428e-9ca2-51d6f15fa89c" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -196,25 +199,26 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/CreateSoftKeyTest/?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL0NyZWF0ZVNvZnRLZXlUZXN0Lz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/keys/CreateSoftKeyTest/?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlU29mdEtleVRlc3QvP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a05c216-73f2-4860-913b-45599b3a96c1" + "5c52566d-9212-49f0-bcc2-f61c250b5776" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Key CreateSoftKeyTest not found\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Key not found: CreateSoftKeyTest\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "76" + "77" ], "Content-Type": [ "application/json; charset=utf-8" @@ -226,7 +230,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:00 GMT" + "Mon, 19 Dec 2016 23:09:10 GMT" ], "Pragma": [ "no-cache" @@ -235,13 +239,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "4d458c13-f414-40c3-a428-d41ec5942ac4" + "a16ee06f-8000-4b35-bbab-980d63111a8e" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -261,8 +265,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCreateHsmKeyTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCreateHsmKeyTest.json index dc47899f3d4f..ef97c00b0c86 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCreateHsmKeyTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultCreateHsmKeyTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//keys/CreateHsmKeyTest/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL0NyZWF0ZUhzbUtleVRlc3QvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/CreateHsmKeyTest/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlSHNtS2V5VGVzdC9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"kty\": \"RSA-HSM\",\r\n \"key_size\": 2048,\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"attributes\": {}\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "181" ], "x-ms-client-request-id": [ - "0bf00f54-1473-4e79-9b4b-0920bc33a258" + "df60fe32-f7c3-48fb-8474-74eea08fc76b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/CreateHsmKeyTest/bbad308a6cde470682d42fd697d6ef84\",\r\n \"kty\": \"RSA-HSM\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"2g7297JxqlGZQaiAEKN6oOQhMHI_bKpJ74ircSNYg_bOSUJprn3FaQF4DsdaPutLCRwttaJCsZIWlbiZ4DIikqRdz6xPj-4adRMvcKJF4cwv3OAxzMWx_kM3rA2LW8a7kllMRwon9TEyRgZ0uXUdPabRnrOuwO-_byqNo37xQPfrBvfqld2a6EvmHluWY80TbkDn0EPu_4_pD9e9xbFPWyRdm0ApjOwRut5AoJvoY1lxyG2VSMjMmLm4ry3WPKp1HUSDya-qyuPhyrcIacagGJgrIehtefnpo4YXuDw5Y0GpIQysuRWkLPt-YXCfPWF9M_j43GHceH-E-Zw8tlotzw\",\r\n \"e\": \"AAEAAQ\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082080,\r\n \"updated\": 1477082080\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/CreateHsmKeyTest/1da595ff8bb14508afffc513da286570\",\r\n \"kty\": \"RSA-HSM\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"g9BS1X8DYFGfwWQx8DknnCng_lZKx2f16eDY6oHPdQNyqqIJjHphZDK9Tkgi0_EO2LpkuGKg6-YKLDrLkQ_0kcXIA0kp8pG3BgtaXWoYK8TsD0dHZI2DXaOxEw2Fo_ZYAZXTkMJtlMSXvSDX9_mgBtFCXPw23UJ0XXDr83uWpBgk9QFTxLZ5_J4UxOFsnuEyCrbE8hNgyBL0Ev0ZXEU_XF6fR2mZyiM6R7Fa92JkkqtVFKbjkaERAsUHzNaOWLhMW5VrZgYZt_mKs2t0U64fZ-RDbFKsJdntp1fYjaJLkOv1nsNKDSrKffPGWJFlgJREknGT6pQLnuHZJoELSzTopw\",\r\n \"e\": \"AAEAAQ\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188996,\r\n \"updated\": 1482188996\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "630" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:40 GMT" + "Mon, 19 Dec 2016 23:09:56 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "45faea92-2f78-4f23-8e7a-7bf0b64cef0a" + "f5bf80d4-58a9-40fd-97ab-c3495f29675c" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,22 +71,23 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/CreateHsmKeyTest/bbad308a6cde470682d42fd697d6ef84?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvQ3JlYXRlSHNtS2V5VGVzdC9iYmFkMzA4YTZjZGU0NzA2ODJkNDJmZDY5N2Q2ZWY4ND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/keys/CreateHsmKeyTest/1da595ff8bb14508afffc513da286570?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlSHNtS2V5VGVzdC8xZGE1OTVmZjhiYjE0NTA4YWZmZmM1MTNkYTI4NjU3MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1d367de-881f-4e39-8ae0-495a1317aa81" + "567fbafe-952a-431f-9c59-4c062a838e96" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/CreateHsmKeyTest/bbad308a6cde470682d42fd697d6ef84\",\r\n \"kty\": \"RSA-HSM\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"2g7297JxqlGZQaiAEKN6oOQhMHI_bKpJ74ircSNYg_bOSUJprn3FaQF4DsdaPutLCRwttaJCsZIWlbiZ4DIikqRdz6xPj-4adRMvcKJF4cwv3OAxzMWx_kM3rA2LW8a7kllMRwon9TEyRgZ0uXUdPabRnrOuwO-_byqNo37xQPfrBvfqld2a6EvmHluWY80TbkDn0EPu_4_pD9e9xbFPWyRdm0ApjOwRut5AoJvoY1lxyG2VSMjMmLm4ry3WPKp1HUSDya-qyuPhyrcIacagGJgrIehtefnpo4YXuDw5Y0GpIQysuRWkLPt-YXCfPWF9M_j43GHceH-E-Zw8tlotzw\",\r\n \"e\": \"AAEAAQ\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082080,\r\n \"updated\": 1477082080\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/CreateHsmKeyTest/1da595ff8bb14508afffc513da286570\",\r\n \"kty\": \"RSA-HSM\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"g9BS1X8DYFGfwWQx8DknnCng_lZKx2f16eDY6oHPdQNyqqIJjHphZDK9Tkgi0_EO2LpkuGKg6-YKLDrLkQ_0kcXIA0kp8pG3BgtaXWoYK8TsD0dHZI2DXaOxEw2Fo_ZYAZXTkMJtlMSXvSDX9_mgBtFCXPw23UJ0XXDr83uWpBgk9QFTxLZ5_J4UxOFsnuEyCrbE8hNgyBL0Ev0ZXEU_XF6fR2mZyiM6R7Fa92JkkqtVFKbjkaERAsUHzNaOWLhMW5VrZgYZt_mKs2t0U64fZ-RDbFKsJdntp1fYjaJLkOv1nsNKDSrKffPGWJFlgJREknGT6pQLnuHZJoELSzTopw\",\r\n \"e\": \"AAEAAQ\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188996,\r\n \"updated\": 1482188996\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "630" @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:40 GMT" + "Mon, 19 Dec 2016 23:09:56 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "ad27656b-fc51-434e-b11e-af0fbc03d95f" + "babc4772-7737-4c82-a22e-7d5e6e6ba2fe" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -133,22 +135,23 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/CreateHsmKeyTest?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL0NyZWF0ZUhzbUtleVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/keys/CreateHsmKeyTest?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlSHNtS2V5VGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "447bf919-a4bc-46d2-9846-c784d6671b90" + "9cccfd90-ac63-4c84-af8c-fd0b70529358" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/CreateHsmKeyTest/bbad308a6cde470682d42fd697d6ef84\",\r\n \"kty\": \"RSA-HSM\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"2g7297JxqlGZQaiAEKN6oOQhMHI_bKpJ74ircSNYg_bOSUJprn3FaQF4DsdaPutLCRwttaJCsZIWlbiZ4DIikqRdz6xPj-4adRMvcKJF4cwv3OAxzMWx_kM3rA2LW8a7kllMRwon9TEyRgZ0uXUdPabRnrOuwO-_byqNo37xQPfrBvfqld2a6EvmHluWY80TbkDn0EPu_4_pD9e9xbFPWyRdm0ApjOwRut5AoJvoY1lxyG2VSMjMmLm4ry3WPKp1HUSDya-qyuPhyrcIacagGJgrIehtefnpo4YXuDw5Y0GpIQysuRWkLPt-YXCfPWF9M_j43GHceH-E-Zw8tlotzw\",\r\n \"e\": \"AAEAAQ\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082080,\r\n \"updated\": 1477082080\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/CreateHsmKeyTest/1da595ff8bb14508afffc513da286570\",\r\n \"kty\": \"RSA-HSM\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"g9BS1X8DYFGfwWQx8DknnCng_lZKx2f16eDY6oHPdQNyqqIJjHphZDK9Tkgi0_EO2LpkuGKg6-YKLDrLkQ_0kcXIA0kp8pG3BgtaXWoYK8TsD0dHZI2DXaOxEw2Fo_ZYAZXTkMJtlMSXvSDX9_mgBtFCXPw23UJ0XXDr83uWpBgk9QFTxLZ5_J4UxOFsnuEyCrbE8hNgyBL0Ev0ZXEU_XF6fR2mZyiM6R7Fa92JkkqtVFKbjkaERAsUHzNaOWLhMW5VrZgYZt_mKs2t0U64fZ-RDbFKsJdntp1fYjaJLkOv1nsNKDSrKffPGWJFlgJREknGT6pQLnuHZJoELSzTopw\",\r\n \"e\": \"AAEAAQ\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188996,\r\n \"updated\": 1482188996\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "630" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:40 GMT" + "Mon, 19 Dec 2016 23:09:56 GMT" ], "Pragma": [ "no-cache" @@ -172,13 +175,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "33e58092-8b1e-4fa4-a4fb-d633534703be" + "c6b6e946-1365-4911-9fb2-9421c0a6ec4a" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -198,8 +201,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptRsa15Test.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptRsa15Test.json index c28a626307a5..d9f1de8c088a 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptRsa15Test.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptRsa15Test.json @@ -4,7 +4,7 @@ "RequestUri": "/keys/sdktestkey//encrypt?api-version=2016-10-01", "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8vZW5jcnlwdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"tff_6RfMwwvArA\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"hM8VA4oijl5_2w\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,19 +13,20 @@ "53" ], "x-ms-client-request-id": [ - "b5a214bc-5a20-4cc7-ac42-d5dab2166151" + "dba07cf8-3b0a-41e5-91cd-133569f8ae01" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/0389317cb2c84b729affa9c8f101ce37\",\r\n \"value\": \"am2zgw9E3Zb6UJlvfKyrP9lLSnTXjXTXKXLAMbBBWqE12GHWt1l2Wh0mdhiTxeOSA06Hrygw12WSQfMcqZ6WrO0lrVAAV5syhRI5tv2z4NPTk432h3LPVZxIXvT2sRZIepmZUBe0R0hmbkFhiIk__IKHF9oOORuvEy49QtyksLoCp-PSzzKRFgM6s9UwPcr6_rRhIyJsKKlvEzRSoQ0ou2SyLAZAKjRBUV93nFoH6go24sEnCeuOQFIlNo1wXXY8JbjAY7UNEXQeBVfqngTd-Ye9QjYndWK55YJM6Hndoh3b8D1hbClFX85sB7rvptH7mG1FNMsAQwbKn3fbnhOzGQ\"\r\n}", + "ResponseBody": "{\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/sdktestkey/0698c2156c1a4e1da5b6bab6f6422fd6\",\r\n \"value\": \"hV8UVHxf9BhfDxjOqzXQg6elMjHCBWwQ6GwIwFygkAGjlSR9r1HkFdeoHrrpAiYDYGtnWMTgxo_HLnR-tIRMWKoVX95zRA6hWo1sGdpjcfPEVa2WMMfGyA5HG37ZNBB3ltXkNjm9q4zlCxfre6ho8P3xnXDmi1AVKiXRk6wN64VM6xOoGepjRJkjaR_YqknEUSmLd4uJOdMRBse-UCFThglqi3nBvCNhtyX1DNmHKRBVV21qoDywkDmVUSgJqbGLYLcpCSTvG-7cF9hz2b2dQWdZDh6XSOfQ3qkVCwvSSLYt7sB7q8iOoR6FEtTnhwtu4JL5V7dbSCalq3Q_fvT7Sg\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:33 GMT" + "Mon, 19 Dec 2016 23:18:43 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "72f311ba-64a9-44a6-8eca-7c319d4345b9" + "940866c7-bfbf-43cf-aa2d-700d2f805014" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,10 +71,10 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/sdktestkey/0389317cb2c84b729affa9c8f101ce37/decrypt?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8wMzg5MzE3Y2IyYzg0YjcyOWFmZmE5YzhmMTAxY2UzNy9kZWNyeXB0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/sdktestkey/0698c2156c1a4e1da5b6bab6f6422fd6/decrypt?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8wNjk4YzIxNTZjMWE0ZTFkYTViNmJhYjZmNjQyMmZkNi9kZWNyeXB0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"am2zgw9E3Zb6UJlvfKyrP9lLSnTXjXTXKXLAMbBBWqE12GHWt1l2Wh0mdhiTxeOSA06Hrygw12WSQfMcqZ6WrO0lrVAAV5syhRI5tv2z4NPTk432h3LPVZxIXvT2sRZIepmZUBe0R0hmbkFhiIk__IKHF9oOORuvEy49QtyksLoCp-PSzzKRFgM6s9UwPcr6_rRhIyJsKKlvEzRSoQ0ou2SyLAZAKjRBUV93nFoH6go24sEnCeuOQFIlNo1wXXY8JbjAY7UNEXQeBVfqngTd-Ye9QjYndWK55YJM6Hndoh3b8D1hbClFX85sB7rvptH7mG1FNMsAQwbKn3fbnhOzGQ\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"hV8UVHxf9BhfDxjOqzXQg6elMjHCBWwQ6GwIwFygkAGjlSR9r1HkFdeoHrrpAiYDYGtnWMTgxo_HLnR-tIRMWKoVX95zRA6hWo1sGdpjcfPEVa2WMMfGyA5HG37ZNBB3ltXkNjm9q4zlCxfre6ho8P3xnXDmi1AVKiXRk6wN64VM6xOoGepjRJkjaR_YqknEUSmLd4uJOdMRBse-UCFThglqi3nBvCNhtyX1DNmHKRBVV21qoDywkDmVUSgJqbGLYLcpCSTvG-7cF9hz2b2dQWdZDh6XSOfQ3qkVCwvSSLYt7sB7q8iOoR6FEtTnhwtu4JL5V7dbSCalq3Q_fvT7Sg\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -82,19 +83,20 @@ "381" ], "x-ms-client-request-id": [ - "7e91a933-cb7f-416a-9d54-6a83a44becf2" + "57bccc3f-2d47-4aab-9050-6093526c6fab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/0389317cb2c84b729affa9c8f101ce37\",\r\n \"value\": \"tff_6RfMwwvArA\"\r\n}", + "ResponseBody": "{\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/sdktestkey/0698c2156c1a4e1da5b6bab6f6422fd6\",\r\n \"value\": \"hM8VA4oijl5_2w\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "121" + "136" ], "Content-Type": [ "application/json; charset=utf-8" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:33 GMT" + "Mon, 19 Dec 2016 23:18:43 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "905e5dab-c85f-4192-b33f-c2556682a58f" + "829af8c2-dda7-4c50-a384-009761b4d9aa" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -141,9 +143,9 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4", - "RandomBytes": "tff/6RfMwwvArA==" + "KeyVersion": "f2a7e60b8dd0477d943b3a9fb2a63f0b", + "RandomBytes": "hM8VA4oijl5/2w==" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptRsaOaepTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptRsaOaepTest.json index 12899871076f..02b48746eb9b 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptRsaOaepTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptRsaOaepTest.json @@ -4,7 +4,7 @@ "RequestUri": "/keys/sdktestkey//encrypt?api-version=2016-10-01", "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8vZW5jcnlwdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RSA-OAEP\",\r\n \"value\": \"Y_4qUiIYnMKglQ\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RSA-OAEP\",\r\n \"value\": \"dvDmrSBpjRjtYg\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,16 +13,17 @@ "55" ], "x-ms-client-request-id": [ - "fefb57a9-2b2c-4b36-a09e-8cb3e0b46f28" + "8255f509-8c8b-4822-be99-d27ef2742f40" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/b669c8bf47a940d8ac818c3831fc11b4\",\r\n \"value\": \"Y7P2gkW9OlMWA8ga01eaM6ZOFQPhUAqSwHWaPvjIQimCz3X6VAIOPWVTPRpG0mVfofyIfYxDCFVqyzc-hfZaIpwFJD95VUPVtY9-OWgPLO8P6_P8-6BmYgX0HW84Wfz6g7WFfx8Ie_b_Wy17rZPK8ah3jiGIPvgk-DFJo8EQlLGPTNuQhK0ujE0IUexYscvb1HnnZHIqx1D_lvwGKkThaUKwRMMXUGVHiavhITCr6VWLHqd6yVs-uA4qxOZRjt2qAojIkDmjGeO7gHE-KCa8KW5gp_wEV9YXmiP4F4GSIhF3KToFXIhP3HL6IahTlvXbJHGl14peYbW9c1WvI_XsDA\"\r\n}", + "ResponseBody": "{\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/sdktestkey/4eb68492b5f6421e835d961ad2be3155\",\r\n \"value\": \"sid-4nG3FzRIFWXLXlG-FZo6H1-kzbNX5Exe0_VRqcGLuJWjI9oSofsn-2IagDsQzkpNAXv9V8aoIizelrK_14darhxaAV8OejO7Oh7spjxa7IxMVS3e-cwcLdEHzMbMfM1uFpDyRFqEUASHI0H8F1M2m1e9TUSXOVW3KMqm7cK94ZQMFvd4AYdLfmfnStMp_MqIQh4kpIkB6h2b1M3possVrLKH_l2L3uT-qFiwQlH9-dt0Cje5mrkpsYCy4hAXNFUPhIyBWAZwOQylIE2sPuopFs55lRIHpWP2CqNe-IK8tX87BRuJ_Vy3GIFxDjD5uu74scIyQCKMImB6xQ_-mQ\"\r\n}", "ResponseHeaders": { "Content-Length": [ "449" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:28 GMT" + "Mon, 19 Dec 2016 23:10:45 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "8e75652b-ee7a-4d1a-b612-20923625dc44" + "4565995f-a0e6-4958-9b3a-7a8b754c5eb5" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,10 +71,10 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/sdktestkey/b669c8bf47a940d8ac818c3831fc11b4/decrypt?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS9iNjY5YzhiZjQ3YTk0MGQ4YWM4MThjMzgzMWZjMTFiNC9kZWNyeXB0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/sdktestkey/4eb68492b5f6421e835d961ad2be3155/decrypt?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS80ZWI2ODQ5MmI1ZjY0MjFlODM1ZDk2MWFkMmJlMzE1NS9kZWNyeXB0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RSA-OAEP\",\r\n \"value\": \"Y7P2gkW9OlMWA8ga01eaM6ZOFQPhUAqSwHWaPvjIQimCz3X6VAIOPWVTPRpG0mVfofyIfYxDCFVqyzc-hfZaIpwFJD95VUPVtY9-OWgPLO8P6_P8-6BmYgX0HW84Wfz6g7WFfx8Ie_b_Wy17rZPK8ah3jiGIPvgk-DFJo8EQlLGPTNuQhK0ujE0IUexYscvb1HnnZHIqx1D_lvwGKkThaUKwRMMXUGVHiavhITCr6VWLHqd6yVs-uA4qxOZRjt2qAojIkDmjGeO7gHE-KCa8KW5gp_wEV9YXmiP4F4GSIhF3KToFXIhP3HL6IahTlvXbJHGl14peYbW9c1WvI_XsDA\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RSA-OAEP\",\r\n \"value\": \"sid-4nG3FzRIFWXLXlG-FZo6H1-kzbNX5Exe0_VRqcGLuJWjI9oSofsn-2IagDsQzkpNAXv9V8aoIizelrK_14darhxaAV8OejO7Oh7spjxa7IxMVS3e-cwcLdEHzMbMfM1uFpDyRFqEUASHI0H8F1M2m1e9TUSXOVW3KMqm7cK94ZQMFvd4AYdLfmfnStMp_MqIQh4kpIkB6h2b1M3possVrLKH_l2L3uT-qFiwQlH9-dt0Cje5mrkpsYCy4hAXNFUPhIyBWAZwOQylIE2sPuopFs55lRIHpWP2CqNe-IK8tX87BRuJ_Vy3GIFxDjD5uu74scIyQCKMImB6xQ_-mQ\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +83,17 @@ "383" ], "x-ms-client-request-id": [ - "b685374d-c3c1-4d11-b2a1-6cc7840347ba" + "d6b1884b-ef0e-44fb-8e51-629f2a9d91d1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/b669c8bf47a940d8ac818c3831fc11b4\",\r\n \"value\": \"Y_4qUiIYnMKglQ\"\r\n}", + "ResponseBody": "{\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/sdktestkey/4eb68492b5f6421e835d961ad2be3155\",\r\n \"value\": \"dvDmrSBpjRjtYg\"\r\n}", "ResponseHeaders": { "Content-Length": [ "121" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:28 GMT" + "Mon, 19 Dec 2016 23:10:45 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "ec150bfe-680b-4fb7-89e5-7452af7d7f0d" + "94f224e1-1b43-4369-854a-3b5d69035b37" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -141,9 +143,9 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4", - "RandomBytes": "Y/4qUiIYnMKglQ==" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155", + "RandomBytes": "dvDmrSBpjRjtYg==" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptWithDifferentKeyVersions.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptWithDifferentKeyVersions.json index 9a9a109c9a33..397ae70f5060 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptWithDifferentKeyVersions.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptWithDifferentKeyVersions.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//keys/sdktestkey/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL3Nka3Rlc3RrZXkvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/sdktestkey/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n}", "RequestHeaders": { @@ -13,19 +13,20 @@ "135" ], "x-ms-client-request-id": [ - "6fdb3354-93ff-4c13-81cc-1d1d7ce019a6" + "5ae9aab2-58c7-4438-bc3d-2c65c65b24f0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/e32fb95f5c6b43529664b716dee090a2\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"ofyMpHM4SwaVsbQxTuCnT_SSAJa0Uwb202qmVoHDc71PfPd-cEe9uOhEQ456cBr6PP6sVPB0ElJOj2SvVlCdDu3W2kFT4OVts7mORkmuBNV6slVEwX2mUP-sYziFS0vqCrWuRa0EYBBbbmnQSG0dsApse8XgO7ZfsysPoC8Ts-ostsTa0LSpwloebssm1Ip-usXD1TdhNG-QiUMUNWHKYBri5nU0Ir0pkSEu8lCeSR4aPu3khUAjbd2IF-6hrD14guRr2TGn2JPQv7jfDPS1YlE1YwbIEPpBfIHF0SDSY03FEqW7KQJlUIJ95K9fD15nMAe4zddTbFxdfOZrZYO1CQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082139,\r\n \"updated\": 1477082139\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/sdktestkey/f6bc1f3d37c14b2bb1a2ebb4b24e9535\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"wj_2LLq7f6O0v8i9bjRxgsDl2gd6G8BdGY-1HoviVa7r8Dvi4bcpDqXrOa9M-1sQ9QwEr5hBO0DlQyRWABptjiHrVcqMaR0oK5tQrNwhV1OCK6YASMT1vxkRFXaKZKyImKU_gyJC7khotphSKeuwnhOZ07ZWN_EW3CO27Z2bjxaQXXSCZnxejB5bXkZK8OFMMv-x6BuhEq61mEQaTxEtp92Mu8ofIUFNpfDDV-zAk6RbZsqqfI4N72WERoYYquwJoieFkXMn40i0SzE2yqiwKWFsm1v3cljzhvDzFf0vIygEv1mKCSscXKkebKw0mUZ0N95zTunW3mmXFpH1L184Kw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189537,\r\n \"updated\": 1482189537\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "618" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:38 GMT" + "Mon, 19 Dec 2016 23:18:57 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "6dad2117-baeb-44b9-bbeb-f3d16db55368" + "1828f2ff-206e-47e2-8d4c-c82202cb4b34" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,10 +71,10 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/sdktestkey/e32fb95f5c6b43529664b716dee090a2/encrypt?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS9lMzJmYjk1ZjVjNmI0MzUyOTY2NGI3MTZkZWUwOTBhMi9lbmNyeXB0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/sdktestkey/f6bc1f3d37c14b2bb1a2ebb4b24e9535/encrypt?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS9mNmJjMWYzZDM3YzE0YjJiYjFhMmViYjRiMjRlOTUzNS9lbmNyeXB0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"g8zX2OwtGEDc2g\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"5ka5IVsnGrzufA\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -82,19 +83,20 @@ "53" ], "x-ms-client-request-id": [ - "b30402b8-77ad-470d-988c-05ed698a9513" + "2e6d1af3-b57b-41d3-afeb-7107bbc8cf52" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/e32fb95f5c6b43529664b716dee090a2\",\r\n \"value\": \"Swc5AKhM1QMWFHORYnLE3gpb1lleI5H1hYJGPAw3Kj6sir6jCvy5x5kt4LpD-JbrqxU76RVWWMuXTn-T52OcQ4U0q15MOyZ78bZHAM6xNSCPmwhs1N312hoJCCZg1q0XD7hP_d6x1-M7OHn17CJZjwmgoAEYjQ6lxo1MTueqAISDLK9J_CPwiCZ6W9zmftTJBXs8kWJWgNeLca3xJorP97Xln_r3gHRvjED9b6pfa1B-2gfASNKJ-de3eg8Z3369iGjIKbdMzriPmxXsY_LJF8HHO9LCb-Yxea-pKBHJjuviQ0HIM_Pq_xF8mKnLXqYa-rXuOFzn0HrtgPkUeqaHKA\"\r\n}", + "ResponseBody": "{\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/sdktestkey/f6bc1f3d37c14b2bb1a2ebb4b24e9535\",\r\n \"value\": \"CR0Hk0z72oOit5TxObqRpo-WFGZkb5BeN1C0xJFKHxzdDCESYPCNB-OkiWVAnMcSyu6g2aC8riVRRxY5MC2CWKj-CJ_SMke5X2kTi5yi4hJ5vuOLzmg_M6Bmqib7LsI-TeJHr9rs3-tZaSCdZ2zICeFWYduWV5rPjTnAD98epTorT8AA1zMaYHMIhKpmttcj18-dHr0E0T55dgRtsjK04uC3FlRd3odl4RhO1UHAmYpDd5FUqN-20R0dK0Zk8F8sOtThLhEmuLvqPHOCUBiGUhHA4nRDq1La4SUbThu2KMQJL6BbxxEymuliaYcNNtW7MxgVOf6V3mFxVNRY622i9g\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:38 GMT" + "Mon, 19 Dec 2016 23:18:57 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "e6ec0ae1-706a-430b-959d-1fec5c7c28cd" + "282ac588-e89a-431c-bfd3-6e69b4d0347b" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,10 +141,10 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/sdktestkey/b669c8bf47a940d8ac818c3831fc11b4/decrypt?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS9iNjY5YzhiZjQ3YTk0MGQ4YWM4MThjMzgzMWZjMTFiNC9kZWNyeXB0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/sdktestkey/f2a7e60b8dd0477d943b3a9fb2a63f0b/decrypt?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS9mMmE3ZTYwYjhkZDA0NzdkOTQzYjNhOWZiMmE2M2YwYi9kZWNyeXB0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"Swc5AKhM1QMWFHORYnLE3gpb1lleI5H1hYJGPAw3Kj6sir6jCvy5x5kt4LpD-JbrqxU76RVWWMuXTn-T52OcQ4U0q15MOyZ78bZHAM6xNSCPmwhs1N312hoJCCZg1q0XD7hP_d6x1-M7OHn17CJZjwmgoAEYjQ6lxo1MTueqAISDLK9J_CPwiCZ6W9zmftTJBXs8kWJWgNeLca3xJorP97Xln_r3gHRvjED9b6pfa1B-2gfASNKJ-de3eg8Z3369iGjIKbdMzriPmxXsY_LJF8HHO9LCb-Yxea-pKBHJjuviQ0HIM_Pq_xF8mKnLXqYa-rXuOFzn0HrtgPkUeqaHKA\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"CR0Hk0z72oOit5TxObqRpo-WFGZkb5BeN1C0xJFKHxzdDCESYPCNB-OkiWVAnMcSyu6g2aC8riVRRxY5MC2CWKj-CJ_SMke5X2kTi5yi4hJ5vuOLzmg_M6Bmqib7LsI-TeJHr9rs3-tZaSCdZ2zICeFWYduWV5rPjTnAD98epTorT8AA1zMaYHMIhKpmttcj18-dHr0E0T55dgRtsjK04uC3FlRd3odl4RhO1UHAmYpDd5FUqN-20R0dK0Zk8F8sOtThLhEmuLvqPHOCUBiGUhHA4nRDq1La4SUbThu2KMQJL6BbxxEymuliaYcNNtW7MxgVOf6V3mFxVNRY622i9g\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,13 +153,14 @@ "381" ], "x-ms-client-request-id": [ - "edf64f5b-cd31-4427-b92e-3aba084075e4" + "f51554f9-0e7d-49e6-9e6b-a63652140b5d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"BadParameter\",\r\n \"message\": \"The parameter is incorrect.\\r\\n\"\r\n }\r\n}", @@ -175,7 +178,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:38 GMT" + "Mon, 19 Dec 2016 23:18:57 GMT" ], "Pragma": [ "no-cache" @@ -184,13 +187,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "769ccbbe-3f7b-4818-a820-2e480a7c3fc0" + "15f30ff6-2f73-43ca-a84d-f3fad145315f" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -210,9 +213,9 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4", - "RandomBytes": "g8zX2OwtGEDc2g==" + "KeyVersion": "f2a7e60b8dd0477d943b3a9fb2a63f0b", + "RandomBytes": "5ka5IVsnGrzufA==" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptWithOlderKeyVersion.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptWithOlderKeyVersion.json index ea18c6ae8e9f..bf3faeb8bf4c 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptWithOlderKeyVersion.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptWithOlderKeyVersion.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//keys/sdktestkey/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL3Nka3Rlc3RrZXkvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/sdktestkey/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "135" ], "x-ms-client-request-id": [ - "7dfd3d63-97b4-4bc3-bc47-bdee526e7fcb" + "a6f347cd-69c8-4bad-866e-99cb335bc6a7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/0389317cb2c84b729affa9c8f101ce37\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"uK9mxFyFq6z4_EjxThdv0FAxLCOIlImEswFBba4mNb59_HROXgN3_-r2IX3zy4xJ68NeIY3GDjt7c7Ea5MfemRkHGB92GXuLfy2aQkC-Kgd76HzccWEms2wEgqG9CdtosX_GQo_uThzLIZwxIeSZBhnc_3db4pkATS7TYvgnyiHhUkV--ScnCOyygG98wwwl4bBLvrHJE_oZ75HRVsfKe2mr8gHJUKjEr1vyVAGiEHdjKzv-0d_cTnD7Oz7A7sty4RToMrVTQDLFKNNZ0F8BQgy6cEeerafh3gmRUTu3azw849Ebw1JbFPD_YAdGVXVlTutlI1mLagRAPXPfMY_r3Q\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082129,\r\n \"updated\": 1477082129\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/sdktestkey/0a9e36203d224dd285d933e17478c870\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"k8UVWqL2Tg2kIGSnYNuo3vPGuXpn0313htJ48EkjCDqACe5QpljX3dAPxQU0npxEfx4cDgXOl0UwHrktQO2WWp75nGFsWQZ-Jr0b_8wzsoOhZdzaU4TXKY8DjrCLofl5dRpwQ_JGIAb2-J0smKUJtZe5wMPdNuFwE1r0ZVQo7ZZT0N0P2pntKOi2ekKvZRvCDpkGXv_OXyGOjcqRqcnRv_vw3RmkwL4Vnfh4dTgxYXq8lm6s9DJaQw0sfgioFs0tMoe6SpZ1j5Nmyvgu1X43a1yw1JI4jK5g3Q8sLMovgKrl4_7QJpZ0OguZrRu4canMauZZfVyxCZJ9-88qh1FQ0w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189048,\r\n \"updated\": 1482189048\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "618" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:29 GMT" + "Mon, 19 Dec 2016 23:10:48 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "2031cc53-8d66-44b5-835a-4013698ca577" + "7b468bd6-7234-4e61-b1fc-f78b447044ce" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -73,7 +74,7 @@ "RequestUri": "/keys/sdktestkey//encrypt?api-version=2016-10-01", "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8vZW5jcnlwdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"Z0pm5tuTYCfeHg\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"TjFowzRMEPuGXQ\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +83,17 @@ "53" ], "x-ms-client-request-id": [ - "5c26379a-a215-44fb-bbbb-2d2b0f3c9419" + "3cea76d4-1e35-419c-b666-fc3d893e2cdc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/0389317cb2c84b729affa9c8f101ce37\",\r\n \"value\": \"YYoMBR_OYkIYJvOlR1egPE-N4dfCJOUG0xVnsc8F42lJwsBCkgZtSa_aiPzYTlgQRKGa5KhanLXi5FFV07LUaioeIhCJU_7JCApvv0KRukD-PRq2xTJhP9z5cWkJ1xdutH-9hIppSI7Kl1OKl2fZwvxoDICgYMUiSQdqAOCCzJXdTRBiqVx-w6ZxNYfi-zUYbf_FpV7LeIr11ywnM6EjpofcWu4qiuKlMHv18pUjIHzi28oBndBWS_jQtpOcMEFkWllcoKIln-GfnkDhPtDTe2ePxGz9-hRfvDGF5isq1KMGo_jryMaxzXgoP6rIw_goWXul0Dd2gZX_3H99lyOD9A\"\r\n}", + "ResponseBody": "{\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/sdktestkey/0a9e36203d224dd285d933e17478c870\",\r\n \"value\": \"hNbYuq0kw3Iofa_Rv0PCaPnchsdIn7iSq8tcyNs-tzYTNRtMXrncMUKhJpTNi5aEHTn0ywmArSpxozp7glCqbcnKEtZE07ftXbnvHzcvrPFXRJ-M5fqP_Yrq_EMQg7epkqfhS9iXhQR02aC0qOidzsDg1QtMjNaL9_tQAocKpmBDTsVdf6ARK9CaxUtLsJgGdMq8NUa9Vyn62MTGuHUQll3GyrKD0UMHM1QgMF62wwqhWQBl3zgcgq_6IfEy-STmg7DUmPqKKtr_i_Ry53rUKqTBWOACKb2tJ5jy4smVypAAPo6daviFSCpXO2xbk2rcpeAeMhfDDtVXafhoZTrdMA\"\r\n}", "ResponseHeaders": { "Content-Length": [ "449" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:29 GMT" + "Mon, 19 Dec 2016 23:10:48 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "e652291e-d4d8-4487-8f45-4b4fa347aa99" + "b0be3ea8-4e19-4164-bae1-58e9eb89b258" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,10 +141,10 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/sdktestkey/0389317cb2c84b729affa9c8f101ce37/decrypt?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8wMzg5MzE3Y2IyYzg0YjcyOWFmZmE5YzhmMTAxY2UzNy9kZWNyeXB0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/sdktestkey/0a9e36203d224dd285d933e17478c870/decrypt?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8wYTllMzYyMDNkMjI0ZGQyODVkOTMzZTE3NDc4Yzg3MC9kZWNyeXB0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"YYoMBR_OYkIYJvOlR1egPE-N4dfCJOUG0xVnsc8F42lJwsBCkgZtSa_aiPzYTlgQRKGa5KhanLXi5FFV07LUaioeIhCJU_7JCApvv0KRukD-PRq2xTJhP9z5cWkJ1xdutH-9hIppSI7Kl1OKl2fZwvxoDICgYMUiSQdqAOCCzJXdTRBiqVx-w6ZxNYfi-zUYbf_FpV7LeIr11ywnM6EjpofcWu4qiuKlMHv18pUjIHzi28oBndBWS_jQtpOcMEFkWllcoKIln-GfnkDhPtDTe2ePxGz9-hRfvDGF5isq1KMGo_jryMaxzXgoP6rIw_goWXul0Dd2gZX_3H99lyOD9A\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"hNbYuq0kw3Iofa_Rv0PCaPnchsdIn7iSq8tcyNs-tzYTNRtMXrncMUKhJpTNi5aEHTn0ywmArSpxozp7glCqbcnKEtZE07ftXbnvHzcvrPFXRJ-M5fqP_Yrq_EMQg7epkqfhS9iXhQR02aC0qOidzsDg1QtMjNaL9_tQAocKpmBDTsVdf6ARK9CaxUtLsJgGdMq8NUa9Vyn62MTGuHUQll3GyrKD0UMHM1QgMF62wwqhWQBl3zgcgq_6IfEy-STmg7DUmPqKKtr_i_Ry53rUKqTBWOACKb2tJ5jy4smVypAAPo6daviFSCpXO2xbk2rcpeAeMhfDDtVXafhoZTrdMA\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -151,16 +153,17 @@ "381" ], "x-ms-client-request-id": [ - "a9ff3f99-05ef-4af5-a27f-7eaa6b7f37b2" + "d28e29bf-fc43-4db1-9852-3d339b145b37" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/0389317cb2c84b729affa9c8f101ce37\",\r\n \"value\": \"Z0pm5tuTYCfeHg\"\r\n}", + "ResponseBody": "{\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/sdktestkey/0a9e36203d224dd285d933e17478c870\",\r\n \"value\": \"TjFowzRMEPuGXQ\"\r\n}", "ResponseHeaders": { "Content-Length": [ "121" @@ -175,7 +178,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:29 GMT" + "Mon, 19 Dec 2016 23:10:48 GMT" ], "Pragma": [ "no-cache" @@ -184,13 +187,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "b7a622dd-b3f4-4003-b899-f4fa609fa199" + "13d58566-4687-433c-a848-0c6ad8a6ab14" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -210,9 +213,9 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4", - "RandomBytes": "Z0pm5tuTYCfeHg==" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155", + "RandomBytes": "TjFowzRMEPuGXQ==" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedKeyTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedKeyTest.json new file mode 100644 index 000000000000..2d5f7660b6d1 --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedKeyTest.json @@ -0,0 +1,650 @@ +{ + "Entries": [ + { + "RequestUri": "/keys/GetDeletedKeyTest/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvR2V0RGVsZXRlZEtleVRlc3QvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"attributes\": {},\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"GetDeletedKeyTest\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "264" + ], + "x-ms-client-request-id": [ + "b16bee64-d62f-44b7-a039-87ce67ec7933" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/GetDeletedKeyTest/6930533af9d646ad8bddc8c771e05d45\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"sDYy1QHQ3x22N9s7hP_AXK5LSTqtGDBp1x3bvAZy_i9XAYKpme9ObXI2g7BYV9daVwlUsiuLqYBA2ime4LZillq6oUt4-x6VP6Mfs-gl8HgUViLIH7cf4uZrNzPrJ6Y6-z4amvMw05wi0cCZHR4yvW5pY3GPtsYiuDmj7Qlrn0kwtSJudbug4Ahu_PDtY34UoVzYsbAIVU2oGlrkrnVGn0dWkjb7JUgMeL5xUflY-9ispTVI4FwZcKHKtYK7914QCpT98Dw1QP04pbnu3AGuIHxBXed17kmxASLe8YEV5O-8bkqHKyPhksgNCOZlP9-pN40o58L7Woh57tpIj-q3gw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186525,\r\n \"updated\": 1482186525\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"GetDeletedKeyTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "704" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "f6e5ca04-d83a-408d-9a6c-476f99b0094a" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/GetDeletedKeyTest?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvR2V0RGVsZXRlZEtleVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0efa75c5-9b08-4ed4-935d-9c361bf7a9ed" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/GetDeletedKeyTest\",\r\n \"deletedDate\": 1482186525,\r\n \"scheduledPurgeDate\": 1489962525,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/GetDeletedKeyTest/6930533af9d646ad8bddc8c771e05d45\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"sDYy1QHQ3x22N9s7hP_AXK5LSTqtGDBp1x3bvAZy_i9XAYKpme9ObXI2g7BYV9daVwlUsiuLqYBA2ime4LZillq6oUt4-x6VP6Mfs-gl8HgUViLIH7cf4uZrNzPrJ6Y6-z4amvMw05wi0cCZHR4yvW5pY3GPtsYiuDmj7Qlrn0kwtSJudbug4Ahu_PDtY34UoVzYsbAIVU2oGlrkrnVGn0dWkjb7JUgMeL5xUflY-9ispTVI4FwZcKHKtYK7914QCpT98Dw1QP04pbnu3AGuIHxBXed17kmxASLe8YEV5O-8bkqHKyPhksgNCOZlP9-pN40o58L7Woh57tpIj-q3gw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186525,\r\n \"updated\": 1482186525\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"GetDeletedKeyTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "859" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "7af69872-a10a-4e26-8a29-11c1ea06ae4a" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys/GetDeletedKeyTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0dldERlbGV0ZWRLZXlUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57b15ff7-32e2-4ea9-930f-20f6aa26001e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: GetDeletedKeyTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "a56a5929-013a-40a3-bb41-621f2dcbe253" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/GetDeletedKeyTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0dldERlbGV0ZWRLZXlUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "caaa7e56-9c57-47a4-a66d-0eb5255e92ef" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: GetDeletedKeyTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "29c60fe9-68f1-4918-a6c2-149c5ed95170" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/GetDeletedKeyTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0dldERlbGV0ZWRLZXlUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88c0dc81-7886-4b81-9551-ce4699fa43ea" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: GetDeletedKeyTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "d95f1610-7053-41e7-bf97-77bb3f40c8ba" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/GetDeletedKeyTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0dldERlbGV0ZWRLZXlUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81f4376b-c1b8-405f-886c-131505b8949a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: GetDeletedKeyTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:29:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "46b09874-5f03-4534-a8c0-867e59304980" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/GetDeletedKeyTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0dldERlbGV0ZWRLZXlUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c6115a1-4063-4abb-925a-7d21825d8139" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/GetDeletedKeyTest\",\r\n \"deletedDate\": 1482186525,\r\n \"scheduledPurgeDate\": 1489962525,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/GetDeletedKeyTest/6930533af9d646ad8bddc8c771e05d45\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"sDYy1QHQ3x22N9s7hP_AXK5LSTqtGDBp1x3bvAZy_i9XAYKpme9ObXI2g7BYV9daVwlUsiuLqYBA2ime4LZillq6oUt4-x6VP6Mfs-gl8HgUViLIH7cf4uZrNzPrJ6Y6-z4amvMw05wi0cCZHR4yvW5pY3GPtsYiuDmj7Qlrn0kwtSJudbug4Ahu_PDtY34UoVzYsbAIVU2oGlrkrnVGn0dWkjb7JUgMeL5xUflY-9ispTVI4FwZcKHKtYK7914QCpT98Dw1QP04pbnu3AGuIHxBXed17kmxASLe8YEV5O-8bkqHKyPhksgNCOZlP9-pN40o58L7Woh57tpIj-q3gw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186525,\r\n \"updated\": 1482186525\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"GetDeletedKeyTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "859" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:29:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "f758eac1-3f5b-4813-9ff6-a9549ce2ab9f" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys/GetDeletedKeyTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0dldERlbGV0ZWRLZXlUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45bf32f5-8cce-4777-9603-c452ada61c55" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/GetDeletedKeyTest\",\r\n \"deletedDate\": 1482186525,\r\n \"scheduledPurgeDate\": 1489962525,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/GetDeletedKeyTest/6930533af9d646ad8bddc8c771e05d45\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"sDYy1QHQ3x22N9s7hP_AXK5LSTqtGDBp1x3bvAZy_i9XAYKpme9ObXI2g7BYV9daVwlUsiuLqYBA2ime4LZillq6oUt4-x6VP6Mfs-gl8HgUViLIH7cf4uZrNzPrJ6Y6-z4amvMw05wi0cCZHR4yvW5pY3GPtsYiuDmj7Qlrn0kwtSJudbug4Ahu_PDtY34UoVzYsbAIVU2oGlrkrnVGn0dWkjb7JUgMeL5xUflY-9ispTVI4FwZcKHKtYK7914QCpT98Dw1QP04pbnu3AGuIHxBXed17kmxASLe8YEV5O-8bkqHKyPhksgNCOZlP9-pN40o58L7Woh57tpIj-q3gw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186525,\r\n \"updated\": 1482186525\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"GetDeletedKeyTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "859" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:29:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "fef01fa1-c5a2-40dd-9ac1-5372d86c82fc" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys/GetDeletedKeyTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0dldERlbGV0ZWRLZXlUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9fad79e-966a-4ecd-8b12-275adf16fef9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/GetDeletedKeyTest\",\r\n \"deletedDate\": 1482186525,\r\n \"scheduledPurgeDate\": 1489962525,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/GetDeletedKeyTest/6930533af9d646ad8bddc8c771e05d45\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"sDYy1QHQ3x22N9s7hP_AXK5LSTqtGDBp1x3bvAZy_i9XAYKpme9ObXI2g7BYV9daVwlUsiuLqYBA2ime4LZillq6oUt4-x6VP6Mfs-gl8HgUViLIH7cf4uZrNzPrJ6Y6-z4amvMw05wi0cCZHR4yvW5pY3GPtsYiuDmj7Qlrn0kwtSJudbug4Ahu_PDtY34UoVzYsbAIVU2oGlrkrnVGn0dWkjb7JUgMeL5xUflY-9ispTVI4FwZcKHKtYK7914QCpT98Dw1QP04pbnu3AGuIHxBXed17kmxASLe8YEV5O-8bkqHKyPhksgNCOZlP9-pN40o58L7Woh57tpIj-q3gw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186525,\r\n \"updated\": 1482186525\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"GetDeletedKeyTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "859" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:29:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "e3524328-6dbe-4699-a409-77c83b60d4eb" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys/GetDeletedKeyTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0dldERlbGV0ZWRLZXlUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1f94f8e-a03a-45fc-b79f-4dbab44e3dc3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:29:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "a004832a-18fb-4b06-81dd-0bcb5262eee8" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", + "KeyName": "sdktestkey", + "KeyVersion": "cf7c860fb9db4564a1389db973a52436" + } +} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedSecretTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedSecretTest.json new file mode 100644 index 000000000000..98ac059b62c1 --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedSecretTest.json @@ -0,0 +1,458 @@ +{ + "Entries": [ + { + "RequestUri": "/secrets/GetDeletedSecretTest?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvR2V0RGVsZXRlZFNlY3JldFRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"value\": \"mysecretvalue\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "2306606e-165d-444b-a3d8-f793c1671676" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/GetDeletedSecretTest/f5aa447efdab4e3a9d1f431183e9e361\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186978,\r\n \"updated\": 1482186978\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "219" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:36:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "a208fa32-5f14-491e-95c4-43c8bf80b09b" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/secrets/GetDeletedSecretTest?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvR2V0RGVsZXRlZFNlY3JldFRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0ebd32d-8be1-4d97-81e2-e39844558074" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/GetDeletedSecretTest\",\r\n \"deletedDate\": 1482186978,\r\n \"scheduledPurgeDate\": 1489962978,\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/GetDeletedSecretTest/f5aa447efdab4e3a9d1f431183e9e361\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186978,\r\n \"updated\": 1482186978\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:36:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "c3fb2fbd-6023-4904-935c-c676e8115773" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets/GetDeletedSecretTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL0dldERlbGV0ZWRTZWNyZXRUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5633b123-fe6c-4a64-aa39-af4535c3454d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: GetDeletedSecretTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "94" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:36:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "ad621e9a-2712-487d-80d1-8a3205e4d072" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/GetDeletedSecretTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL0dldERlbGV0ZWRTZWNyZXRUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f57d3fb-27bc-4232-befe-44c59d6d7c69" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/GetDeletedSecretTest\",\r\n \"deletedDate\": 1482186978,\r\n \"scheduledPurgeDate\": 1489962978,\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/GetDeletedSecretTest/f5aa447efdab4e3a9d1f431183e9e361\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186978,\r\n \"updated\": 1482186978\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:37:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "ea1d9a00-ae54-4efb-884e-1c0b27286e4e" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets/GetDeletedSecretTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL0dldERlbGV0ZWRTZWNyZXRUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "01649d16-b287-4c3b-afeb-2294f8763321" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/GetDeletedSecretTest\",\r\n \"deletedDate\": 1482186978,\r\n \"scheduledPurgeDate\": 1489962978,\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/GetDeletedSecretTest/f5aa447efdab4e3a9d1f431183e9e361\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186978,\r\n \"updated\": 1482186978\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:37:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "a685d5a2-eeb3-4a8e-8e5e-188308e6bc38" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets/GetDeletedSecretTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL0dldERlbGV0ZWRTZWNyZXRUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d31e15ed-fd69-4084-a640-3fb4c1a077ad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/GetDeletedSecretTest\",\r\n \"deletedDate\": 1482186978,\r\n \"scheduledPurgeDate\": 1489962978,\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/GetDeletedSecretTest/f5aa447efdab4e3a9d1f431183e9e361\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186978,\r\n \"updated\": 1482186978\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "356" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:37:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "e07a593d-fd4c-4803-b2c1-18f45b615d4d" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets/GetDeletedSecretTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL0dldERlbGV0ZWRTZWNyZXRUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5972ddf3-eb78-4cf2-9e85-94c481c58943" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:37:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "84501e79-8335-4fcc-9288-fba68874f34c" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", + "KeyName": "sdktestkey", + "KeyVersion": "4ac8dbcb697b44a2bff598b1a21e371c" + } +} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetSecretVersionTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetSecretVersionTest.json index 192cba48096c..62b8ced625eb 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetSecretVersionTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetSecretVersionTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//secrets/mysecretname?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL215c2VjcmV0bmFtZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/mysecretname?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbXlzZWNyZXRuYW1lP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"mysecretvalue\"\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "32" ], "x-ms-client-request-id": [ - "99f5ab26-3440-43bf-bb3d-26838e1ab147" + "cad52bfd-ed2e-4b0c-935f-1163ba16fb0b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/mysecretname/019175f64d484cba966568c9128a0409\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082077,\r\n \"updated\": 1477082077\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/mysecretname/7b599aa4072e4425a478cc56738f32ba\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188990,\r\n \"updated\": 1482188990\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "196" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:37 GMT" + "Mon, 19 Dec 2016 23:09:49 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "a0b601b8-f4ca-433c-a0d2-3589fbb1e9a1" + "a471ff0a-a239-4d95-b482-752c044d5ae7" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,8 +71,8 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/mysecretname?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL215c2VjcmV0bmFtZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/mysecretname?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbXlzZWNyZXRuYW1lP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"mysecretvalue\"\r\n}", "RequestHeaders": { @@ -82,16 +83,17 @@ "32" ], "x-ms-client-request-id": [ - "e6ef3203-8bf9-4b32-bf35-4a1054608cfa" + "67e86a8f-81db-41af-880e-b3bb9f44721e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/mysecretname/15aa04876b7e4606a8742914831804b6\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082077,\r\n \"updated\": 1477082077\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/mysecretname/dbb1d44f28d444dda78ec2c8fa6d1292\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188990,\r\n \"updated\": 1482188990\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "196" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:37 GMT" + "Mon, 19 Dec 2016 23:09:50 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "c9b37cac-ebd0-42d7-bd7e-52cabfb7748d" + "1516b975-a820-4c6a-961f-838a590d1170" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,22 +141,23 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/mysecretname/?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL215c2VjcmV0bmFtZS8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/mysecretname/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbXlzZWNyZXRuYW1lLz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82e4b403-36cb-41fd-98d9-709e84b53681" + "092b7bf5-c507-48b6-ad46-a9371d08ce70" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/mysecretname/019175f64d484cba966568c9128a0409\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082077,\r\n \"updated\": 1477082077\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/mysecretname/7b599aa4072e4425a478cc56738f32ba\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188990,\r\n \"updated\": 1482188990\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "196" @@ -169,7 +172,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:37 GMT" + "Mon, 19 Dec 2016 23:09:50 GMT" ], "Pragma": [ "no-cache" @@ -178,13 +181,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "ac06b0bc-ed48-41b0-aa02-29ad02ad4e7f" + "49706879-8a5d-4ea8-bd2e-bf23c4bdb599" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -202,22 +205,23 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/mysecretname/019175f64d484cba966568c9128a0409?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL215c2VjcmV0bmFtZS8wMTkxNzVmNjRkNDg0Y2JhOTY2NTY4YzkxMjhhMDQwOT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/mysecretname/7b599aa4072e4425a478cc56738f32ba?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbXlzZWNyZXRuYW1lLzdiNTk5YWE0MDcyZTQ0MjVhNDc4Y2M1NjczOGYzMmJhP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8482d72-df54-43f4-8a66-04103d3ddede" + "a1d1f86d-d1b0-4170-be61-c22bcbdbde14" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/mysecretname/019175f64d484cba966568c9128a0409\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082077,\r\n \"updated\": 1477082077\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/mysecretname/7b599aa4072e4425a478cc56738f32ba\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188990,\r\n \"updated\": 1482188990\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "196" @@ -232,7 +236,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:37 GMT" + "Mon, 19 Dec 2016 23:09:50 GMT" ], "Pragma": [ "no-cache" @@ -241,13 +245,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "5356274a-9aa2-4d12-8556-187b38afb459" + "96dbd3ff-c0f2-4bd0-94da-b994eb87b810" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -265,22 +269,23 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/mysecretname/15aa04876b7e4606a8742914831804b6?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL215c2VjcmV0bmFtZS8xNWFhMDQ4NzZiN2U0NjA2YTg3NDI5MTQ4MzE4MDRiNj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/mysecretname/dbb1d44f28d444dda78ec2c8fa6d1292?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbXlzZWNyZXRuYW1lL2RiYjFkNDRmMjhkNDQ0ZGRhNzhlYzJjOGZhNmQxMjkyP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dde66872-0797-4a40-972a-cf60e56e9f99" + "0247a4ff-d297-4e36-9abe-b4856018a698" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/mysecretname/15aa04876b7e4606a8742914831804b6\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082077,\r\n \"updated\": 1477082077\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/mysecretname/dbb1d44f28d444dda78ec2c8fa6d1292\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188990,\r\n \"updated\": 1482188990\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "196" @@ -295,7 +300,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:37 GMT" + "Mon, 19 Dec 2016 23:09:50 GMT" ], "Pragma": [ "no-cache" @@ -304,13 +309,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "0d49eb5e-fd7a-41bd-9359-fdb58b4074b7" + "ceac144c-782d-4172-8277-f287046688c3" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -328,22 +333,23 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/mysecretname?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL215c2VjcmV0bmFtZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/mysecretname?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbXlzZWNyZXRuYW1lP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9baa1f6-203e-4560-8ae1-b36bc3c72954" + "af8d3ad1-b23f-4f5e-8eee-d11de09284c5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/mysecretname/15aa04876b7e4606a8742914831804b6\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082077,\r\n \"updated\": 1477082077\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/mysecretname/dbb1d44f28d444dda78ec2c8fa6d1292\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188990,\r\n \"updated\": 1482188990\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "172" @@ -358,7 +364,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:38 GMT" + "Mon, 19 Dec 2016 23:09:50 GMT" ], "Pragma": [ "no-cache" @@ -367,13 +373,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "acba57e0-1d10-4748-855a-1f6a75eae1c4" + "2a9d4359-1098-4949-9e6f-1e68c0bb1642" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -393,8 +399,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultImportSoftKeyTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultImportSoftKeyTest.json index e7c1a582e7bd..88e70c3f4c37 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultImportSoftKeyTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultImportSoftKeyTest.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "//keys/ImportSoftKeyTest?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL0ltcG9ydFNvZnRLZXlUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/ImportSoftKeyTest?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvSW1wb3J0U29mdEtleVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"key\": {\r\n \"kty\": \"RSA\",\r\n \"n\": \"von_88VPNcRmaKJpnb3BHTEZUuAXQF3gothKqC4AfnPg3lRVTkG98E35-HEsdJJt7TgmoGl4CqunCGWWwL-Xq-qch-Mf7osINwMEPOKTxCNQrTUyyvx2lpkxdhN-wtCQYYHAwiE0Vn1dRBfQg9cQQs09NyiGqKMUopL3b0rZUCTeilqf3tQDm68UsW-ZWHM0uIgkwjAQa9ngqX8HrFGK-6jWteGFoL3NwUHGJuHE3N9FHysES3A_QAtZGsO1MndmWoFmmjNGl_Lq0F2xrO0ygqv91YxFQZObindTnLynIixuUrch9cFtcEzKQJz9f4s61rAN9pnuj5vtET-o-FHHJQ\",\r\n \"e\": \"AQAB\",\r\n \"d\": \"V44MSlUZf-h-8ofnJnACpEpii52jsZUx20Kuk7eHzJOs-h0gkfRNtnXubsZ6mhqLXt1VipLMcYLNH2OnMW0Y4gvN3_dzPecvYDAHq36mThO4R89RRstaJvvAKbTto9G49sVr8QjXBwNWbyrOSzbxJvEutwDtV-KQYeBMyRxI3bU4f7efefZW-NcjhZSkir3Pir-2n4RDMCn9NmWN8VOfNGGHk_XKKzuaoU1ItMGjJnph2l2RBIUMzoPy51fP1gGZW5oyVCYe7x1yYTD1s8A5BUS7Rw5cNLIVI8QhfLjJOsSZTpCoLZrA_ulQqoZkzuWQkVY_4L5HogTgnkzrOOpCpQ\",\r\n \"dp\": \"FM6_kBYeqwR3m2B8IX1snmjCEcllBhJcFytx8abn2H2JzZjwdhclnWhd8RE3rMyb0SvsyFxNcBeRaojU40rXSLFHF3yy1xGdmbYPOsYfy0GKZ5bq2dFRm_Os2CW2C_La2ZPti47F48t8MAAvQbCuIcfSZUijfs2aaM84nzEzQL0\",\r\n \"dq\": \"bPlMQowrdGk5si1DJj9BXMugdc1Ns1kvpk0dd8KLdW4A6L2j7d19g3raBGgeCRXqXGJAfVP4rFago6ZEq2LtRLl_CHtqbKTLGyLfZaToVRi1XO55c89rLeS2_RiGC18QDr3_j0JsIq5XmqSPZfuD3XMkeqkkb9RCFMWkGFX2lfU\",\r\n \"qi\": \"NpxXd3k4QLXioqK1aha3ugRQsRsBl-c4lJDsTG06NIqbwTZZaTYKviyxhySn1y8eOtLDK7WFMTz30-txJXjyqvBI05EUpD0n4_sI6WA4Oyb35l3DSYkX0FZzE5FaUcrwfwBE5VceICRHt9nVtivRqsuzkvHQz3ISk5KqtCIMb2I\",\r\n \"p\": \"3U2JzDjIILOVTluLbH83FOmrMBY3-v0ugsOj0NcZUTyAa8xnUtMJPvs8odL_AOz_fgljI1u5Dr-rANdYVGh3y9fGiJdSAATY1jEP56C4L0AhnYKiuHd1oABdjUaibTe0EuTLDORkJZ0fTbRbeg5zQ8yoYtY89v0kaRfoARKhcO8\",\r\n \"q\": \"3GmwrN8qHZX0_1gKZLzbOvaTkM2S0RuxLZfl3wnGYzac1fDV-twkOYUz3tVvLEqMDQ6PYSKrIfOuvC_po15TBK7rrdoBK3a28vq5_NeUYEVbPCeuOsG_-5MiejR0RD1WPjX-_6b4N_T0_oAKMj17fw1N5lnnQzWQ_KHQa-irISs\"\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\"\r\n }\r\n}", + "RequestBody": "{\r\n \"key\": {\r\n \"kty\": \"RSA\",\r\n \"n\": \"tCHhdZ1TZEl2QL7JZ7MiDx7XIU_r1PNGoohxD0xPHx1xmdVE4nA5V_s7GFyYHdO0lOhE9y0yQb44VNyWshV3xGKKZPmOiUDkMVPy2q1qeZ2F5_Xux70aCmf4tdItOYPKI9wOwMWCaZxRbTD8VvaRNz_pC2o8tCDWagrzrzw9xcCo_P_jUBnKLk2e2MyT4xHHHkuLOC0VLLkfG3uELMhX1TzKKtF8D3mz3rFwNn1u9v7KLyrVHKkUjgGir0tUiArPwIKXE2HO-rAlqapuoJXPCV8mbPt1_NIelS0cL1p0j9bZFcvRAXUIbOTY8x0YC0-W0EmfaMvUoRFj15Q3u2O-nw\",\r\n \"e\": \"AQAB\",\r\n \"d\": \"OgC657N8OcvJ7zlAA0tUSUgl_80LZGvdr9J9jW6F_7_sZ5ub7cozPNhiBAs01E3qVRShuHHuP-svmmvZfoiZIzyT0cXmFt41XIjqp2213mlRyAqSE_EZZIZsOKfv9hgwy_E9MuemgblbIuzmJF6LDh5fPVS9LUdxo33ZT_D29yjyyswPqVg16SvmDB9639uo87Xz67znagqUgtNoWiwW7s3rZ_rdJbGq7bTXOjK6B_3X6LuIXXL_iP5jDhj5NLtatxkOEzgiDappgxf064-QJzMzsK1DhTXABXIwsy-ZEb_9UVXcJCRzqWEWdXHU-TlhhcBGueskRhpnjEOy-5RvIQ\",\r\n \"dp\": \"RkRSPPaCJKrcHJmxKUdX4zDowFAP8xhaZ-TwkZChqoCAC_gHrUViRj2H2nNJ_KELX4nvIZxmlWwaJC34deDLatoXHpIHmUrvMOebicEKAkVueKgk4OG9HN55wF_sySlaZ7Uhk488Tma3Rxw0fthw-6BB583_zxGCLIgc05ipSIE\",\r\n \"dq\": \"xi2HurQvzoFV5TBYtqBxw1ub0ZhCCV8PYeBMyDEBqo0YfursQ290Nw5N6N8px5VhPCj-UdPelH77LvX1BBWEea122u_wQUaRNXoGlzkQuvTLFfMwvfbRpV6kVGOVPCX2XFSzdfd06tNpMbGrRqC8QaPNtUoThUZn-5Lh3nhsmgk\",\r\n \"qi\": \"RGq0VEES7eV9u8MZL3Zk78ACDLmnX2gNYjm3-j9NSg1V59_qogl9w5aC7pPxVEdbx_O_qzei-e-X19zY4OwS5R1lpRbS8Cz5BMc97CfWLjziMtxZ4HWgfn1afRZJ4LcnElS4VVDM2DM9S7d-Z6JQCYaM1cF9HRkzhfe2hU2ZfXc\",\r\n \"p\": \"xrNNgyUxWBGum5cr84u4tzG0uX3tH9DIxe96_aCZWhH3ek0YtojJmxUZRdhIoxI0JKSGch8E4V3Au22gbdq5K3L803m_-G2rTFYHypaekUUF5kUTc77whTWJC4Gael49KXBq1_qFDhVylp3GgbB3sbhlLmRK5y7vzqDBTNoOVBE\",\r\n \"q\": \"6BPTLBi2jEYQGFPdtLFgpXhpdDB35HxRBofe9P47z_tUbLPg9cCK8bigPttTYDj7ahSmoTX2DD-HAfaKQ9vPZfGxnY3Wnd2AmElRfAAcDNVgT-pdzFNvST8BiFWHo1HRyoMeZ4D9-rtZE8GOHiwu7PPdpHA9jLwV5JEftzke168\"\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,16 +13,17 @@ "1744" ], "x-ms-client-request-id": [ - "b4b71d43-8e25-4835-bf82-dc66a04b7c3a" + "8486477d-2b17-4e86-afef-a25c2cabbbde" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/ImportSoftKeyTest/8a86053774d645db9f52f9df59c212fc\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"von_88VPNcRmaKJpnb3BHTEZUuAXQF3gothKqC4AfnPg3lRVTkG98E35-HEsdJJt7TgmoGl4CqunCGWWwL-Xq-qch-Mf7osINwMEPOKTxCNQrTUyyvx2lpkxdhN-wtCQYYHAwiE0Vn1dRBfQg9cQQs09NyiGqKMUopL3b0rZUCTeilqf3tQDm68UsW-ZWHM0uIgkwjAQa9ngqX8HrFGK-6jWteGFoL3NwUHGJuHE3N9FHysES3A_QAtZGsO1MndmWoFmmjNGl_Lq0F2xrO0ygqv91YxFQZObindTnLynIixuUrch9cFtcEzKQJz9f4s61rAN9pnuj5vtET-o-FHHJQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082044,\r\n \"updated\": 1477082044\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/ImportSoftKeyTest/66f81fd1ac4c4b3a9f18e1662bf1a9fa\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"tCHhdZ1TZEl2QL7JZ7MiDx7XIU_r1PNGoohxD0xPHx1xmdVE4nA5V_s7GFyYHdO0lOhE9y0yQb44VNyWshV3xGKKZPmOiUDkMVPy2q1qeZ2F5_Xux70aCmf4tdItOYPKI9wOwMWCaZxRbTD8VvaRNz_pC2o8tCDWagrzrzw9xcCo_P_jUBnKLk2e2MyT4xHHHkuLOC0VLLkfG3uELMhX1TzKKtF8D3mz3rFwNn1u9v7KLyrVHKkUjgGir0tUiArPwIKXE2HO-rAlqapuoJXPCV8mbPt1_NIelS0cL1p0j9bZFcvRAXUIbOTY8x0YC0-W0EmfaMvUoRFj15Q3u2O-nw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188956,\r\n \"updated\": 1482188956\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "656" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:04 GMT" + "Mon, 19 Dec 2016 23:09:16 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "3a60db98-7e10-4255-b87a-1ecd47d720fb" + "7c4b13b0-0f0a-4026-a575-42636aa5d02b" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,22 +71,23 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/ImportSoftKeyTest/8a86053774d645db9f52f9df59c212fc?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvSW1wb3J0U29mdEtleVRlc3QvOGE4NjA1Mzc3NGQ2NDVkYjlmNTJmOWRmNTljMjEyZmM/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/keys/ImportSoftKeyTest/66f81fd1ac4c4b3a9f18e1662bf1a9fa?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvSW1wb3J0U29mdEtleVRlc3QvNjZmODFmZDFhYzRjNGIzYTlmMThlMTY2MmJmMWE5ZmE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8a7e3db-73e4-4b1c-ae5c-5efe208ed710" + "5a130eea-1cea-4197-a0f9-7c2d01e87f69" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/ImportSoftKeyTest/8a86053774d645db9f52f9df59c212fc\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"von_88VPNcRmaKJpnb3BHTEZUuAXQF3gothKqC4AfnPg3lRVTkG98E35-HEsdJJt7TgmoGl4CqunCGWWwL-Xq-qch-Mf7osINwMEPOKTxCNQrTUyyvx2lpkxdhN-wtCQYYHAwiE0Vn1dRBfQg9cQQs09NyiGqKMUopL3b0rZUCTeilqf3tQDm68UsW-ZWHM0uIgkwjAQa9ngqX8HrFGK-6jWteGFoL3NwUHGJuHE3N9FHysES3A_QAtZGsO1MndmWoFmmjNGl_Lq0F2xrO0ygqv91YxFQZObindTnLynIixuUrch9cFtcEzKQJz9f4s61rAN9pnuj5vtET-o-FHHJQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082044,\r\n \"updated\": 1477082044\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/ImportSoftKeyTest/66f81fd1ac4c4b3a9f18e1662bf1a9fa\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"tCHhdZ1TZEl2QL7JZ7MiDx7XIU_r1PNGoohxD0xPHx1xmdVE4nA5V_s7GFyYHdO0lOhE9y0yQb44VNyWshV3xGKKZPmOiUDkMVPy2q1qeZ2F5_Xux70aCmf4tdItOYPKI9wOwMWCaZxRbTD8VvaRNz_pC2o8tCDWagrzrzw9xcCo_P_jUBnKLk2e2MyT4xHHHkuLOC0VLLkfG3uELMhX1TzKKtF8D3mz3rFwNn1u9v7KLyrVHKkUjgGir0tUiArPwIKXE2HO-rAlqapuoJXPCV8mbPt1_NIelS0cL1p0j9bZFcvRAXUIbOTY8x0YC0-W0EmfaMvUoRFj15Q3u2O-nw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188956,\r\n \"updated\": 1482188956\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "656" @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:04 GMT" + "Mon, 19 Dec 2016 23:09:16 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "fd6b69c4-a4d0-4499-b112-61d6439e44f3" + "965a687c-a02a-47cc-84ff-42a856f39a4f" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -133,22 +135,23 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/ImportSoftKeyTest?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL0ltcG9ydFNvZnRLZXlUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/ImportSoftKeyTest?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvSW1wb3J0U29mdEtleVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68b1842d-265f-47bc-8dd5-f129a8c9677b" + "b0148187-28db-4d79-854f-6663264c7db3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/ImportSoftKeyTest/8a86053774d645db9f52f9df59c212fc\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"von_88VPNcRmaKJpnb3BHTEZUuAXQF3gothKqC4AfnPg3lRVTkG98E35-HEsdJJt7TgmoGl4CqunCGWWwL-Xq-qch-Mf7osINwMEPOKTxCNQrTUyyvx2lpkxdhN-wtCQYYHAwiE0Vn1dRBfQg9cQQs09NyiGqKMUopL3b0rZUCTeilqf3tQDm68UsW-ZWHM0uIgkwjAQa9ngqX8HrFGK-6jWteGFoL3NwUHGJuHE3N9FHysES3A_QAtZGsO1MndmWoFmmjNGl_Lq0F2xrO0ygqv91YxFQZObindTnLynIixuUrch9cFtcEzKQJz9f4s61rAN9pnuj5vtET-o-FHHJQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082044,\r\n \"updated\": 1477082044\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/ImportSoftKeyTest/66f81fd1ac4c4b3a9f18e1662bf1a9fa\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"tCHhdZ1TZEl2QL7JZ7MiDx7XIU_r1PNGoohxD0xPHx1xmdVE4nA5V_s7GFyYHdO0lOhE9y0yQb44VNyWshV3xGKKZPmOiUDkMVPy2q1qeZ2F5_Xux70aCmf4tdItOYPKI9wOwMWCaZxRbTD8VvaRNz_pC2o8tCDWagrzrzw9xcCo_P_jUBnKLk2e2MyT4xHHHkuLOC0VLLkfG3uELMhX1TzKKtF8D3mz3rFwNn1u9v7KLyrVHKkUjgGir0tUiArPwIKXE2HO-rAlqapuoJXPCV8mbPt1_NIelS0cL1p0j9bZFcvRAXUIbOTY8x0YC0-W0EmfaMvUoRFj15Q3u2O-nw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188956,\r\n \"updated\": 1482188956\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "656" @@ -163,7 +166,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:04 GMT" + "Mon, 19 Dec 2016 23:09:16 GMT" ], "Pragma": [ "no-cache" @@ -172,13 +175,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "cd145d9a-9c81-432d-b423-0e5d973ad396" + "4671a804-521a-4c1b-86e3-2d3bc8ef39b7" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -198,8 +201,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultKeyCreateDeleteRecoverPurgeTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultKeyCreateDeleteRecoverPurgeTest.json new file mode 100644 index 000000000000..b67652eba361 --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultKeyCreateDeleteRecoverPurgeTest.json @@ -0,0 +1,1290 @@ +{ + "Entries": [ + { + "RequestUri": "/keys/CreateDeleteRecoverPurgeTest/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"attributes\": {},\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "275" + ], + "x-ms-client-request-id": [ + "97474c81-8e8a-4a90-be1a-c83fa6bc6bdf" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/CreateDeleteRecoverPurgeTest/ed0630c77dcf4d35b4f2c949ab3f8a07\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"6j0E_J8NHglCbHdr1RtDVLaUvPL_iihbY1C6m9NgR_EdBnuiXOxyACsFycqiQsEC7ubcjPMW3yE0fUUIVamzSgKGx3O26RIKwaCFXL0eD1_zs1oJN4PglB7mwrh2EGYnrZlF3cZtwCGIwYDP8DYGKi3c6gGX-a7HraG2u2de63duhc18NVXatJebUhPhOBnyamo4R5NNZo0PDzR5Tfwq5vypk_2vN2zOlXRSgUZGoMt5dfameTDrfYqwHpMdI420-g01dJLz5xyTYpYNB-NIQeFjSvr8d50ny_6hr-ZTH9BGr-xKbkBSwszIVcaGK9xcMvHHITtBPT3UJIc0TDj8RQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186872,\r\n \"updated\": 1482186872\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "726" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:34:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "a20661f3-5a43-4635-9e51-601461308bad" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/CreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e237d4b0-a826-4ad4-bdc9-21eaf5b0b531" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/CreateDeleteRecoverPurgeTest/ed0630c77dcf4d35b4f2c949ab3f8a07\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"6j0E_J8NHglCbHdr1RtDVLaUvPL_iihbY1C6m9NgR_EdBnuiXOxyACsFycqiQsEC7ubcjPMW3yE0fUUIVamzSgKGx3O26RIKwaCFXL0eD1_zs1oJN4PglB7mwrh2EGYnrZlF3cZtwCGIwYDP8DYGKi3c6gGX-a7HraG2u2de63duhc18NVXatJebUhPhOBnyamo4R5NNZo0PDzR5Tfwq5vypk_2vN2zOlXRSgUZGoMt5dfameTDrfYqwHpMdI420-g01dJLz5xyTYpYNB-NIQeFjSvr8d50ny_6hr-ZTH9BGr-xKbkBSwszIVcaGK9xcMvHHITtBPT3UJIc0TDj8RQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186872,\r\n \"updated\": 1482186872\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "726" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:34:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "fc5b4ec7-ee71-4327-81c3-6161786c2758" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/CreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02f11540-e6e0-4cd7-8ab7-471b5538b416" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Key not found: CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:34:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "1953f564-5179-43b9-9e1f-944743654b0c" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/keys/CreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0607f6e9-ed98-4c2f-8960-62ec928cc4db" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Key not found: CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:35:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "b4687c0e-3fb0-4e1e-8fe1-83600816c47a" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/keys/CreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "174639f4-2a83-4582-a6cf-98321d68a906" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Key not found: CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:35:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "0762fef1-3b35-4db6-a396-670c22cfae38" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/keys/CreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63aad575-39e3-4ab7-b529-03bf32ac12c9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/CreateDeleteRecoverPurgeTest/ed0630c77dcf4d35b4f2c949ab3f8a07\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"6j0E_J8NHglCbHdr1RtDVLaUvPL_iihbY1C6m9NgR_EdBnuiXOxyACsFycqiQsEC7ubcjPMW3yE0fUUIVamzSgKGx3O26RIKwaCFXL0eD1_zs1oJN4PglB7mwrh2EGYnrZlF3cZtwCGIwYDP8DYGKi3c6gGX-a7HraG2u2de63duhc18NVXatJebUhPhOBnyamo4R5NNZo0PDzR5Tfwq5vypk_2vN2zOlXRSgUZGoMt5dfameTDrfYqwHpMdI420-g01dJLz5xyTYpYNB-NIQeFjSvr8d50ny_6hr-ZTH9BGr-xKbkBSwszIVcaGK9xcMvHHITtBPT3UJIc0TDj8RQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186872,\r\n \"updated\": 1482186872\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "726" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:35:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "950e1bb4-ff31-40f8-b68f-115f12f4d3b6" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/CreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0988742b-927e-4dfe-8193-dceae3b64fb9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/CreateDeleteRecoverPurgeTest/ed0630c77dcf4d35b4f2c949ab3f8a07\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"6j0E_J8NHglCbHdr1RtDVLaUvPL_iihbY1C6m9NgR_EdBnuiXOxyACsFycqiQsEC7ubcjPMW3yE0fUUIVamzSgKGx3O26RIKwaCFXL0eD1_zs1oJN4PglB7mwrh2EGYnrZlF3cZtwCGIwYDP8DYGKi3c6gGX-a7HraG2u2de63duhc18NVXatJebUhPhOBnyamo4R5NNZo0PDzR5Tfwq5vypk_2vN2zOlXRSgUZGoMt5dfameTDrfYqwHpMdI420-g01dJLz5xyTYpYNB-NIQeFjSvr8d50ny_6hr-ZTH9BGr-xKbkBSwszIVcaGK9xcMvHHITtBPT3UJIc0TDj8RQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186872,\r\n \"updated\": 1482186872\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "726" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:35:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "6bd09bb1-f27f-4837-bd84-67256a28b694" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/CreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8f331d1-9fff-4f88-9693-f3a8015f6747" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/CreateDeleteRecoverPurgeTest/ed0630c77dcf4d35b4f2c949ab3f8a07\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"6j0E_J8NHglCbHdr1RtDVLaUvPL_iihbY1C6m9NgR_EdBnuiXOxyACsFycqiQsEC7ubcjPMW3yE0fUUIVamzSgKGx3O26RIKwaCFXL0eD1_zs1oJN4PglB7mwrh2EGYnrZlF3cZtwCGIwYDP8DYGKi3c6gGX-a7HraG2u2de63duhc18NVXatJebUhPhOBnyamo4R5NNZo0PDzR5Tfwq5vypk_2vN2zOlXRSgUZGoMt5dfameTDrfYqwHpMdI420-g01dJLz5xyTYpYNB-NIQeFjSvr8d50ny_6hr-ZTH9BGr-xKbkBSwszIVcaGK9xcMvHHITtBPT3UJIc0TDj8RQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186872,\r\n \"updated\": 1482186872\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "726" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:35:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "6a0cc46f-9f5b-46df-a651-5c4c3f2d27dc" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/CreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f3194d9d-afa5-4d67-8248-fd21fb977bbb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Key not found: CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:35:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "a8d256d7-c81d-423b-80f7-745bb50ea8d6" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/keys/CreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21d96312-1fef-403d-921b-c170c28b7445" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/CreateDeleteRecoverPurgeTest\",\r\n \"deletedDate\": 1482186873,\r\n \"scheduledPurgeDate\": 1489962873,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/CreateDeleteRecoverPurgeTest/ed0630c77dcf4d35b4f2c949ab3f8a07\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"6j0E_J8NHglCbHdr1RtDVLaUvPL_iihbY1C6m9NgR_EdBnuiXOxyACsFycqiQsEC7ubcjPMW3yE0fUUIVamzSgKGx3O26RIKwaCFXL0eD1_zs1oJN4PglB7mwrh2EGYnrZlF3cZtwCGIwYDP8DYGKi3c6gGX-a7HraG2u2de63duhc18NVXatJebUhPhOBnyamo4R5NNZo0PDzR5Tfwq5vypk_2vN2zOlXRSgUZGoMt5dfameTDrfYqwHpMdI420-g01dJLz5xyTYpYNB-NIQeFjSvr8d50ny_6hr-ZTH9BGr-xKbkBSwszIVcaGK9xcMvHHITtBPT3UJIc0TDj8RQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186872,\r\n \"updated\": 1482186872\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "892" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:34:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "745f1e1f-8304-4d92-8331-c9e8dc8f0e1e" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/CreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvQ3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "712686cb-4860-4d10-82fe-da182fd6fea6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/CreateDeleteRecoverPurgeTest\",\r\n \"deletedDate\": 1482186929,\r\n \"scheduledPurgeDate\": 1489962929,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/CreateDeleteRecoverPurgeTest/ed0630c77dcf4d35b4f2c949ab3f8a07\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"6j0E_J8NHglCbHdr1RtDVLaUvPL_iihbY1C6m9NgR_EdBnuiXOxyACsFycqiQsEC7ubcjPMW3yE0fUUIVamzSgKGx3O26RIKwaCFXL0eD1_zs1oJN4PglB7mwrh2EGYnrZlF3cZtwCGIwYDP8DYGKi3c6gGX-a7HraG2u2de63duhc18NVXatJebUhPhOBnyamo4R5NNZo0PDzR5Tfwq5vypk_2vN2zOlXRSgUZGoMt5dfameTDrfYqwHpMdI420-g01dJLz5xyTYpYNB-NIQeFjSvr8d50ny_6hr-ZTH9BGr-xKbkBSwszIVcaGK9xcMvHHITtBPT3UJIc0TDj8RQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186872,\r\n \"updated\": 1482186872\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "892" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:35:29 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "c6d38cbc-8460-4f34-bce9-1bbf23a8fac0" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys/CreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0NyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "105ae8f3-ff16-4477-b94a-7c63308af737" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:34:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "a46a4592-da6c-4f09-8ad8-e2b8164bb621" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/CreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0NyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b069ca78-1899-4842-bba3-519139248f23" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:34:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "c48c71a2-7702-44a7-867a-2dd437a5b8d2" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/CreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0NyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5fefd67b-b31a-48dc-b12d-db9dc5924c14" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:34:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "4cb0d3d5-b8fe-40e7-88b7-e84ae964a8c9" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/CreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0NyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e770cd10-dc1e-43dc-ac27-17cc4fc522ae" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/CreateDeleteRecoverPurgeTest\",\r\n \"deletedDate\": 1482186873,\r\n \"scheduledPurgeDate\": 1489962873,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/CreateDeleteRecoverPurgeTest/ed0630c77dcf4d35b4f2c949ab3f8a07\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"6j0E_J8NHglCbHdr1RtDVLaUvPL_iihbY1C6m9NgR_EdBnuiXOxyACsFycqiQsEC7ubcjPMW3yE0fUUIVamzSgKGx3O26RIKwaCFXL0eD1_zs1oJN4PglB7mwrh2EGYnrZlF3cZtwCGIwYDP8DYGKi3c6gGX-a7HraG2u2de63duhc18NVXatJebUhPhOBnyamo4R5NNZo0PDzR5Tfwq5vypk_2vN2zOlXRSgUZGoMt5dfameTDrfYqwHpMdI420-g01dJLz5xyTYpYNB-NIQeFjSvr8d50ny_6hr-ZTH9BGr-xKbkBSwszIVcaGK9xcMvHHITtBPT3UJIc0TDj8RQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186872,\r\n \"updated\": 1482186872\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "892" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:35:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "5633b1c1-ec22-4c17-8ea9-f784d0820af6" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys/CreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0NyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e9c1047-adea-40b4-8fa1-c5dbd693838b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:35:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "ec25b403-14b4-4661-b070-93f51a433d58" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/CreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0NyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd5e2959-2379-48ab-ab29-03fe0c9f022e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/CreateDeleteRecoverPurgeTest\",\r\n \"deletedDate\": 1482186929,\r\n \"scheduledPurgeDate\": 1489962929,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/CreateDeleteRecoverPurgeTest/ed0630c77dcf4d35b4f2c949ab3f8a07\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"6j0E_J8NHglCbHdr1RtDVLaUvPL_iihbY1C6m9NgR_EdBnuiXOxyACsFycqiQsEC7ubcjPMW3yE0fUUIVamzSgKGx3O26RIKwaCFXL0eD1_zs1oJN4PglB7mwrh2EGYnrZlF3cZtwCGIwYDP8DYGKi3c6gGX-a7HraG2u2de63duhc18NVXatJebUhPhOBnyamo4R5NNZo0PDzR5Tfwq5vypk_2vN2zOlXRSgUZGoMt5dfameTDrfYqwHpMdI420-g01dJLz5xyTYpYNB-NIQeFjSvr8d50ny_6hr-ZTH9BGr-xKbkBSwszIVcaGK9xcMvHHITtBPT3UJIc0TDj8RQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186872,\r\n \"updated\": 1482186872\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "892" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:35:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "5cc786c2-b6a2-4015-bc9b-f561695a1ffb" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys/CreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0NyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83e434ad-5a3d-461b-8998-d2f36f805c2d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:35:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "78b216eb-464b-4326-9f8f-89c690fc9ee8" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/CreateDeleteRecoverPurgeTest/recover?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0NyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3QvcmVjb3Zlcj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca7cde4f-14ff-44c2-bc83-31394ae6eee5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/CreateDeleteRecoverPurgeTest/ed0630c77dcf4d35b4f2c949ab3f8a07\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"6j0E_J8NHglCbHdr1RtDVLaUvPL_iihbY1C6m9NgR_EdBnuiXOxyACsFycqiQsEC7ubcjPMW3yE0fUUIVamzSgKGx3O26RIKwaCFXL0eD1_zs1oJN4PglB7mwrh2EGYnrZlF3cZtwCGIwYDP8DYGKi3c6gGX-a7HraG2u2de63duhc18NVXatJebUhPhOBnyamo4R5NNZo0PDzR5Tfwq5vypk_2vN2zOlXRSgUZGoMt5dfameTDrfYqwHpMdI420-g01dJLz5xyTYpYNB-NIQeFjSvr8d50ny_6hr-ZTH9BGr-xKbkBSwszIVcaGK9xcMvHHITtBPT3UJIc0TDj8RQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186872,\r\n \"updated\": 1482186872\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\",\r\n \"test name \": \"CreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "726" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:35:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "85301fe7-ad6a-46cf-b768-ebda774820d6" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys/CreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL0NyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d298f87-8538-4983-ac9c-2fbb0e97b310" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:35:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "d9946733-9241-4f74-961c-557267b27e9b" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", + "KeyName": "sdktestkey", + "KeyVersion": "4ac8dbcb697b44a2bff598b1a21e371c" + } +} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedKeysTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedKeysTest.json new file mode 100644 index 000000000000..4aa9d146f884 --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedKeysTest.json @@ -0,0 +1,1866 @@ +{ + "Entries": [ + { + "RequestUri": "/keys/listdeletedkeytest0/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvbGlzdGRlbGV0ZWRrZXl0ZXN0MC9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"kty\": \"RSA\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "20" + ], + "x-ms-client-request-id": [ + "3120441a-805b-4107-b5a4-91bd032d6041" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listdeletedkeytest0/57a877c6cfd448488a1aa3dabbda2d0f\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"yjORJkGSBQEiF9iTf1afrpMTGqEsdmtgs5NA6B9UJGt83mIRasCmV8GXod6nXYVJQnu1NvHnHntFpUec6-_SUupqkcSm2CqEr6YY3IYqx_Br3GM3_ADoxSS-485PJwG0684-Gz2chAjCihF6OiQ1xOiLr7HWEOBTWm5I3IVEmGdzhmDvO8H3hOW3ywwBP7Ce6m9D6u6EoG8e_wxrWlOKwcMCsiwd9gLNPE-8YMiRHYGmcYfJnsK5VM-WN6Hv5eD4WddPj8422Tohdzc1st5WAiW74VZ1c3jTE_ogC4QGcN37nUPJ7dJKAXwWddxIfp-8x6ddSyJpLlBLehLmhajMaw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186058,\r\n \"updated\": 1482186058\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:20:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "b7484ef0-e206-4248-88ee-b25f01506a89" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/listdeletedkeytest0?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvbGlzdGRlbGV0ZWRrZXl0ZXN0MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f40416fb-db5a-4ed6-bb48-99e96dd77643" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/listdeletedkeytest0\",\r\n \"deletedDate\": 1482186058,\r\n \"scheduledPurgeDate\": 1489962058,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listdeletedkeytest0/57a877c6cfd448488a1aa3dabbda2d0f\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"yjORJkGSBQEiF9iTf1afrpMTGqEsdmtgs5NA6B9UJGt83mIRasCmV8GXod6nXYVJQnu1NvHnHntFpUec6-_SUupqkcSm2CqEr6YY3IYqx_Br3GM3_ADoxSS-485PJwG0684-Gz2chAjCihF6OiQ1xOiLr7HWEOBTWm5I3IVEmGdzhmDvO8H3hOW3ywwBP7Ce6m9D6u6EoG8e_wxrWlOKwcMCsiwd9gLNPE-8YMiRHYGmcYfJnsK5VM-WN6Hv5eD4WddPj8422Tohdzc1st5WAiW74VZ1c3jTE_ogC4QGcN37nUPJ7dJKAXwWddxIfp-8x6ddSyJpLlBLehLmhajMaw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186058,\r\n \"updated\": 1482186058\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "799" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:20:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "c75e3c09-94b4-4267-8797-bca71e1b0151" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys/listdeletedkeytest0?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL2xpc3RkZWxldGVka2V5dGVzdDA/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ece81fa-95a3-4e76-9a90-dfefc3e65803" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: listdeletedkeytest0\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "87" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:20:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "13c7a78f-23ae-4544-b527-e584d2340bfa" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/listdeletedkeytest0?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL2xpc3RkZWxldGVka2V5dGVzdDA/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d35d6089-413b-4cc5-aa7f-36199341f2d5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: listdeletedkeytest0\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "87" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:20:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "1a8a75a2-71ca-4cb8-9fe2-b333984bb61c" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/listdeletedkeytest0?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL2xpc3RkZWxldGVka2V5dGVzdDA/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58408f74-130f-45ce-a5bf-d61f951d75e2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: listdeletedkeytest0\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "87" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "2cfa4244-cefa-4867-ae4a-70271264a00f" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/listdeletedkeytest0?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL2xpc3RkZWxldGVka2V5dGVzdDA/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b3cb537-b3c6-4993-9037-50251a59e28f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/listdeletedkeytest0\",\r\n \"deletedDate\": 1482186058,\r\n \"scheduledPurgeDate\": 1489962058,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listdeletedkeytest0/57a877c6cfd448488a1aa3dabbda2d0f\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"yjORJkGSBQEiF9iTf1afrpMTGqEsdmtgs5NA6B9UJGt83mIRasCmV8GXod6nXYVJQnu1NvHnHntFpUec6-_SUupqkcSm2CqEr6YY3IYqx_Br3GM3_ADoxSS-485PJwG0684-Gz2chAjCihF6OiQ1xOiLr7HWEOBTWm5I3IVEmGdzhmDvO8H3hOW3ywwBP7Ce6m9D6u6EoG8e_wxrWlOKwcMCsiwd9gLNPE-8YMiRHYGmcYfJnsK5VM-WN6Hv5eD4WddPj8422Tohdzc1st5WAiW74VZ1c3jTE_ogC4QGcN37nUPJ7dJKAXwWddxIfp-8x6ddSyJpLlBLehLmhajMaw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186058,\r\n \"updated\": 1482186058\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "799" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "5d3796d7-c149-4825-9e74-7a96ed7edce4" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/listdeletedkeytest1/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvbGlzdGRlbGV0ZWRrZXl0ZXN0MS9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"kty\": \"RSA\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "20" + ], + "x-ms-client-request-id": [ + "c906e643-5a09-45be-b488-85f5fc63c948" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listdeletedkeytest1/6e33f9e37b02421b835178bb2d0f36cd\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"kYK3fXtWUydAWsMjBmHzrRY4heDP9vpwOl9e2-ZP-DPXjhw0uEMmmlQY1Wpp5m5LEnGcI2svvPGwVW4rSMYroI7tQp3UkFlnBHugJJWQBYANvfYS-BR5BFlRada8fLieojowLXEEJIuN0GLJzaHzKnK-Up39kaOL52DpMm-NOXLnCZZ85eLvV8fg6YSQ4h8g2hxeUGpd1e_BjQDRm2RsVn5-6hyqAaWlzK_nbUYiPSnCD7W0de-x7xmYMr4m4CR2jvBzzoJewuyvbULV5UaQaO2C_uCkYgITqij6iwuvFItScpZe74GyxrfMXmHhRiAOTNUNlJpAygsj3SuBS2jHHQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186082,\r\n \"updated\": 1482186082\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "16aee502-7c8e-4d4b-8dee-ce278da69c75" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/listdeletedkeytest1?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvbGlzdGRlbGV0ZWRrZXl0ZXN0MT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b63cc361-24c4-4fbb-8517-ab0f8987c2c8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/listdeletedkeytest1\",\r\n \"deletedDate\": 1482186082,\r\n \"scheduledPurgeDate\": 1489962082,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listdeletedkeytest1/6e33f9e37b02421b835178bb2d0f36cd\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"kYK3fXtWUydAWsMjBmHzrRY4heDP9vpwOl9e2-ZP-DPXjhw0uEMmmlQY1Wpp5m5LEnGcI2svvPGwVW4rSMYroI7tQp3UkFlnBHugJJWQBYANvfYS-BR5BFlRada8fLieojowLXEEJIuN0GLJzaHzKnK-Up39kaOL52DpMm-NOXLnCZZ85eLvV8fg6YSQ4h8g2hxeUGpd1e_BjQDRm2RsVn5-6hyqAaWlzK_nbUYiPSnCD7W0de-x7xmYMr4m4CR2jvBzzoJewuyvbULV5UaQaO2C_uCkYgITqij6iwuvFItScpZe74GyxrfMXmHhRiAOTNUNlJpAygsj3SuBS2jHHQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186082,\r\n \"updated\": 1482186082\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "799" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "ceb22d04-4ba4-481d-b3b2-a8b854818759" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys/listdeletedkeytest1?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL2xpc3RkZWxldGVka2V5dGVzdDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87f4c90c-71c6-4778-bcf5-dbdead59e335" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: listdeletedkeytest1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "87" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "d4deb8bb-d770-464b-bf48-199cf1dd059b" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/listdeletedkeytest1?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL2xpc3RkZWxldGVka2V5dGVzdDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9db3000-7e2e-47e4-a846-e1e32507524a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: listdeletedkeytest1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "87" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "78dd347c-b5d9-492a-9287-58b999fb5a0a" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/listdeletedkeytest1?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL2xpc3RkZWxldGVka2V5dGVzdDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc7ae2ca-74b2-4928-bf79-59448b88917b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/listdeletedkeytest1\",\r\n \"deletedDate\": 1482186082,\r\n \"scheduledPurgeDate\": 1489962082,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listdeletedkeytest1/6e33f9e37b02421b835178bb2d0f36cd\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"kYK3fXtWUydAWsMjBmHzrRY4heDP9vpwOl9e2-ZP-DPXjhw0uEMmmlQY1Wpp5m5LEnGcI2svvPGwVW4rSMYroI7tQp3UkFlnBHugJJWQBYANvfYS-BR5BFlRada8fLieojowLXEEJIuN0GLJzaHzKnK-Up39kaOL52DpMm-NOXLnCZZ85eLvV8fg6YSQ4h8g2hxeUGpd1e_BjQDRm2RsVn5-6hyqAaWlzK_nbUYiPSnCD7W0de-x7xmYMr4m4CR2jvBzzoJewuyvbULV5UaQaO2C_uCkYgITqij6iwuvFItScpZe74GyxrfMXmHhRiAOTNUNlJpAygsj3SuBS2jHHQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186082,\r\n \"updated\": 1482186082\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "799" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "0bd66337-10e9-476d-9a9f-04c4bf7bebbf" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/listdeletedkeytest2/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvbGlzdGRlbGV0ZWRrZXl0ZXN0Mi9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"kty\": \"RSA\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "20" + ], + "x-ms-client-request-id": [ + "6bc0f444-902b-4204-9bf0-46bc9afce2e2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listdeletedkeytest2/62eaf3e11f9e4ba1be16e32516e5da74\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"orWsKtYpAs4PyzTXv7-KkgrkMXzylG5mLDR6RZaS4FIlY-7r6buL14mDnCJCsq4DHx1UkMkeCFlOv0WaBt5qMDSABs9R06n1Bq2FzyFZ8IrCKw86QgarXjodbGteLv3nCK1MYNVJ3CMwPogCOZcO23i23uX5EH3zYhlGULAnYJzOBxVr0CzGt5VBHdEAEhBcqEMRNrXRD6wKPVZAMaxhlB5-A_Rei2y0uqdY0wSA1ipLec9WztGQ5Dn2AxdDo6jHjkAWBJu5tNTpaHmv6ZDvfS0z7wYYT929VnFXhIb25ABLM2FudVBpMh2raw-5dCJx2S_texh_H9BtabgqOz1pjw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186090,\r\n \"updated\": 1482186090\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "642" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "84da8b3a-d732-4526-8f7e-bc709b938a05" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/listdeletedkeytest2?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvbGlzdGRlbGV0ZWRrZXl0ZXN0Mj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cec17256-a952-4c1f-900c-e5c55bc1fc81" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/listdeletedkeytest2\",\r\n \"deletedDate\": 1482186091,\r\n \"scheduledPurgeDate\": 1489962091,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listdeletedkeytest2/62eaf3e11f9e4ba1be16e32516e5da74\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"orWsKtYpAs4PyzTXv7-KkgrkMXzylG5mLDR6RZaS4FIlY-7r6buL14mDnCJCsq4DHx1UkMkeCFlOv0WaBt5qMDSABs9R06n1Bq2FzyFZ8IrCKw86QgarXjodbGteLv3nCK1MYNVJ3CMwPogCOZcO23i23uX5EH3zYhlGULAnYJzOBxVr0CzGt5VBHdEAEhBcqEMRNrXRD6wKPVZAMaxhlB5-A_Rei2y0uqdY0wSA1ipLec9WztGQ5Dn2AxdDo6jHjkAWBJu5tNTpaHmv6ZDvfS0z7wYYT929VnFXhIb25ABLM2FudVBpMh2raw-5dCJx2S_texh_H9BtabgqOz1pjw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186090,\r\n \"updated\": 1482186090\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "799" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:30 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "3bb5e326-c0af-4fa2-a6e8-43053261cded" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys/listdeletedkeytest2?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL2xpc3RkZWxldGVka2V5dGVzdDI/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a85c153-c68b-4456-b731-74c8427d90f0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: listdeletedkeytest2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "87" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "38723e10-6295-47c4-929a-c1b2d4264dc2" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/listdeletedkeytest2?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL2xpc3RkZWxldGVka2V5dGVzdDI/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d81474e2-c20a-4507-8956-7167b50dbc7a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: listdeletedkeytest2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "87" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "0e478cfe-8605-49be-a436-37d9cbc80e5e" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/listdeletedkeytest2?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL2xpc3RkZWxldGVka2V5dGVzdDI/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0802f9df-2be5-44bf-aa14-4d0f27cf64d7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: listdeletedkeytest2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "87" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "84ba6dac-91a5-480d-906e-eedc011aaf57" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedkeys/listdeletedkeytest2?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL2xpc3RkZWxldGVka2V5dGVzdDI/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fa9a661-7652-4139-8226-35afab33920a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/listdeletedkeytest2\",\r\n \"deletedDate\": 1482186091,\r\n \"scheduledPurgeDate\": 1489962091,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listdeletedkeytest2/62eaf3e11f9e4ba1be16e32516e5da74\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"orWsKtYpAs4PyzTXv7-KkgrkMXzylG5mLDR6RZaS4FIlY-7r6buL14mDnCJCsq4DHx1UkMkeCFlOv0WaBt5qMDSABs9R06n1Bq2FzyFZ8IrCKw86QgarXjodbGteLv3nCK1MYNVJ3CMwPogCOZcO23i23uX5EH3zYhlGULAnYJzOBxVr0CzGt5VBHdEAEhBcqEMRNrXRD6wKPVZAMaxhlB5-A_Rei2y0uqdY0wSA1ipLec9WztGQ5Dn2AxdDo6jHjkAWBJu5tNTpaHmv6ZDvfS0z7wYYT929VnFXhIb25ABLM2FudVBpMh2raw-5dCJx2S_texh_H9BtabgqOz1pjw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186090,\r\n \"updated\": 1482186090\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "799" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "9a865e24-55d9-4d11-ae17-603f78b96719" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys?maxresults=1&api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzP21heHJlc3VsdHM9MSZhcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47242a85-3ba0-4665-b65c-cebac4ffa106" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/listdeletedkeytest0\",\r\n \"deletedDate\": 1482186058,\r\n \"scheduledPurgeDate\": 1489962058,\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listdeletedkeytest0\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186058,\r\n \"updated\": 1482186058\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVSRVZNUlZSRlJFdEZXVlJGVTFRd0x6VTNRVGczTjBNMlEwWkVORFE0TkRnNFFURkJRVE5FUVVKQ1JFRXlSREJHSVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXhPakE1TGpVek1qQXpOelZhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "696" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "1ddc6105-c4b6-4007-b79d-44be25318f8c" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVSRVZNUlZSRlJFdEZXVlJGVTFRd0x6VTNRVGczTjBNMlEwWkVORFE0TkRnNFFURkJRVE5FUVVKQ1JFRXlSREJHSVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXhPakE1TGpVek1qQXpOelZhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRXhNelloVFVSQmQwMUVWVEpKVjNSc1pWTTVUVk5XVGxWU1JWWk5VbFpTUmxKRmRFWlhWbEpHVlRGUmQweDZWVE5SVkdjelRqQk5NbEV3V2tWT1JGRTBUa1JuTkZGVVJrSlJWRTVGVVZWS1ExSkZSWGxTUkVKSFNWUkJkMDFFUVhsUFEwVjVUVVJGTWt4VVJYbE1WRVUxVmtSSmVVOXFTWGhQYWtFMVRHcFZlazFxUVhwT2VsWmhTVkV0TFNJc0lsUmhjbWRsZEV4dlkyRjBhVzl1SWpvd2ZRJm1heHJlc3VsdHM9MQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7980c3e7-5116-4913-8a72-f87853c826d7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5MiFNREF3TURJeklXdGxlUzlNU1ZOVVJFVk1SVlJGUkV0RldWUkZVMVF4SVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXhPakl6TGpBd01qRXpORGRhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "e2b68700-cc33-4bd4-b434-02c4aa79ca27" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5MiFNREF3TURJeklXdGxlUzlNU1ZOVVJFVk1SVlJGUkV0RldWUkZVMVF4SVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXhPakl6TGpBd01qRXpORGRhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRTVNaUZOUkVGM1RVUkpla2xYZEd4bFV6bE5VMVpPVlZKRlZrMVNWbEpHVWtWMFJsZFdVa1pWTVZGNFNWUkJkMDFFUVhsUFEwVjVUVVJGTWt4VVJYbE1WRVUxVmtSSmVVOXFTWGhQYWtsNlRHcEJkMDFxUlhwT1JHUmhTVkV0TFNJc0lsUmhjbWRsZEV4dlkyRjBhVzl1SWpvd2ZRJm1heHJlc3VsdHM9MQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c915a9c8-efaf-4206-99a7-aeffff881efb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/listdeletedkeytest1\",\r\n \"deletedDate\": 1482186082,\r\n \"scheduledPurgeDate\": 1489962082,\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listdeletedkeytest1\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186082,\r\n \"updated\": 1482186082\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVSRVZNUlZSRlJFdEZXVlJGVTFReEx6WkZNek5HT1VVek4wSXdNalF5TVVJNE16VXhOemhDUWpKRU1FWXpOa05FSVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXhPakkxTGpBM09URTFOVFJhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "696" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:53 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "5c93786d-de01-43ee-b289-f3e1b1b62c3a" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVSRVZNUlZSRlJFdEZXVlJGVTFReEx6WkZNek5HT1VVek4wSXdNalF5TVVJNE16VXhOemhDUWpKRU1FWXpOa05FSVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXhPakkxTGpBM09URTFOVFJhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRXhNelloVFVSQmQwMUVWVEpKVjNSc1pWTTVUVk5XVGxWU1JWWk5VbFpTUmxKRmRFWlhWbEpHVlRGUmVFeDZXa1pOZWs1SFQxVlZlazR3U1hkTmFsRjVUVlZKTkUxNlZYaE9lbWhEVVdwS1JVMUZXWHBPYTA1RlNWUkJkMDFFUVhsUFEwVjVUVVJGTWt4VVJYbE1WRVUxVmtSSmVVOXFTWGhQYWtreFRHcEJNMDlVUlRGT1ZGSmhTVkV0TFNJc0lsUmhjbWRsZEV4dlkyRjBhVzl1SWpvd2ZRJm1heHJlc3VsdHM9MQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea24175e-7fbc-4f88-a3e1-9aa710c3a3ef" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5MiFNREF3TURJeklXdGxlUzlNU1ZOVVJFVk1SVlJGUkV0RldWUkZVMVF5SVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXhPak14TGpFeU9EQXpOVGhhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "320" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "f50df4d2-8788-4d51-ac62-3376148913a6" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5MiFNREF3TURJeklXdGxlUzlNU1ZOVVJFVk1SVlJGUkV0RldWUkZVMVF5SVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXhPak14TGpFeU9EQXpOVGhhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRTVNaUZOUkVGM1RVUkpla2xYZEd4bFV6bE5VMVpPVlZKRlZrMVNWbEpHVWtWMFJsZFdVa1pWTVZGNVNWUkJkMDFFUVhsUFEwVjVUVVJGTWt4VVJYbE1WRVUxVmtSSmVVOXFTWGhQYWsxNFRHcEZlVTlFUVhwT1ZHaGhTVkV0TFNJc0lsUmhjbWRsZEV4dlkyRjBhVzl1SWpvd2ZRJm1heHJlc3VsdHM9MQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6ee34d7-acc0-4c6d-ba82-c084363a8534" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/listdeletedkeytest2\",\r\n \"deletedDate\": 1482186091,\r\n \"scheduledPurgeDate\": 1489962091,\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/listdeletedkeytest2\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186090,\r\n \"updated\": 1482186090\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVSRVZNUlZSRlJFdEZXVlJGVTFReUx6WXlSVUZHTTBVeE1VWTVSVFJDUVRGQ1JURTJSVE15TlRFMlJUVkVRVGMwSVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXhPalF4TGpBM05qY3dPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "696" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "7184abbc-a38b-4c8e-a10a-12027f6b7bcd" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVSRVZNUlZSRlJFdEZXVlJGVTFReUx6WXlSVUZHTTBVeE1VWTVSVFJDUVRGQ1JURTJSVE15TlRFMlJUVkVRVGMwSVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXhPalF4TGpBM05qY3dPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRXhNelloVFVSQmQwMUVWVEpKVjNSc1pWTTVUVk5XVGxWU1JWWk5VbFpTUmxKRmRFWlhWbEpHVlRGUmVVeDZXWGxTVlVaSFRUQlZlRTFWV1RWU1ZGSkRVVlJHUTFKVVJUSlNWRTE1VGxSRk1sSlVWa1ZSVkdNd1NWUkJkMDFFUVhsUFEwVjVUVVJGTWt4VVJYbE1WRVUxVmtSSmVVOXFTWGhQYWxGNFRHcEJNMDVxWTNkUFZHeGhTVkV0TFNJc0lsUmhjbWRsZEV4dlkyRjBhVzl1SWpvd2ZRJm1heHJlc3VsdHM9MQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e737d9b-9542-43cb-b32e-cf301f09771c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzlUUkV0VVJWTlVTMFZaSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "c788c7cd-e0c3-4fd7-9a45-33adb10e0e78" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzlUUkV0VVJWTlVTMFZaSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRTRNQ0ZOUkVGM1RVUkZNRWxYZEd4bFV6bFVVa1YwVlZKV1RsVlRNRlphU1ZSQmQwMUVRWGxQUTBVMVQxUnJOVXhVUlhsTVZFMTRWa1JKZWs5cVZUVlBhbFUxVEdwck5VOVVhelZQVkd4aFNWRXRMU0lzSWxSaGNtZGxkRXh2WTJGMGFXOXVJam93ZlEmbWF4cmVzdWx0cz0x", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f0420b8-483e-4b07-b2df-8c1c61d4ffc6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTNJV3RsZVM5VFJFdFVSVk5VUzBWWkwwTkdOME00TmpCR1FqbEVRalExTmpSQk1UTTRPVVJDT1RjelFUVXlORE0ySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "364" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "15b5ba56-d890-4488-ba9e-a716a3af1fc9" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMjQhTURBd01EUTNJV3RsZVM5VFJFdFVSVk5VUzBWWkwwTkdOME00TmpCR1FqbEVRalExTmpSQk1UTTRPVVJDT1RjelFUVXlORE0ySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRXhNalFoVFVSQmQwMUVVVE5KVjNSc1pWTTVWRkpGZEZWU1ZrNVZVekJXV2t3d1RrZE9NRTAwVG1wQ1IxRnFiRVZSYWxFeFRtcFNRazFVVFRSUFZWSkRUMVJqZWxGVVZYbE9SRTB5U1ZSQmQwMUVRWGxQUTBVMVQxUnJOVXhVUlhsTVZFMTRWa1JKZWs5cVZUVlBhbFUxVEdwck5VOVVhelZQVkd4aFNWRXRMU0lzSWxSaGNtZGxkRXh2WTJGMGFXOXVJam93ZlEmbWF4cmVzdWx0cz0x", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7fd0ed6-5339-4c3a-a029-a478fd068dd7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklXdGxlUzlWVUVSQlZFVkRSVkpVTURFaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "0d64655b-3746-48bd-bb84-6515887fe1e5" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklXdGxlUzlWVUVSQlZFVkRSVkpVTURFaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRTRNQ0ZOUkVGM1RVUkZNa2xYZEd4bFV6bFdWVVZTUWxaRlZrUlNWa3BWVFVSRmFFMUVRWGROUkVrMFNWUnJOVTlVYTNSTlZFbDBUWHBHVlUxcVRUWk9WR3MyVGxScmRVOVVhelZQVkdzMVQxWnZhQ0lzSWxSaGNtZGxkRXh2WTJGMGFXOXVJam93ZlEmbWF4cmVzdWx0cz0x", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3cde7a1a-1dea-4d53-90fc-d4ab9a893e7d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "c2fcc4eb-9420-4e05-aeae-0eb403f9c9f6" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedkeys/listdeletedkeytest0?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL2xpc3RkZWxldGVka2V5dGVzdDA/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c441d5c5-08d4-455e-9be5-919aebbcd67c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "cf2ece60-9aef-4760-9427-6f5ba00ceec0" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/deletedkeys/listdeletedkeytest1?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL2xpc3RkZWxldGVka2V5dGVzdDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ac4a42d-db6f-479d-83ce-9f7b494d6ebb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "7c8fef83-5334-4b89-b10c-0811838f279f" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/deletedkeys/listdeletedkeytest2?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRrZXlzL2xpc3RkZWxldGVka2V5dGVzdDI/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52423bb0-cfd2-42ec-afef-b115e2e6c541" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:21:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "29e4efd0-b1dc-4e58-8e69-1d46493454db" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", + "KeyName": "sdktestkey", + "KeyVersion": "cf7c860fb9db4564a1389db973a52436" + } +} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedSecretsTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedSecretsTest.json new file mode 100644 index 000000000000..e09dd28ad95d --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedSecretsTest.json @@ -0,0 +1,1930 @@ +{ + "Entries": [ + { + "RequestUri": "/secrets/listdeletedsecrettest0?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdGRlbGV0ZWRzZWNyZXR0ZXN0MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "63" + ], + "x-ms-client-request-id": [ + "74258607-0103-4475-8a34-8dd9b7d23773" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listdeletedsecrettest0/ed6c029733614e29aca7ceae047f3d86\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186147,\r\n \"updated\": 1482186147\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "247" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:22:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "858ee713-8380-4435-912c-4f37972c3ed8" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/secrets/listdeletedsecrettest0?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdGRlbGV0ZWRzZWNyZXR0ZXN0MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4eee0deb-6f63-4146-9af1-2edb0d0df23d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/listdeletedsecrettest0\",\r\n \"deletedDate\": 1482186148,\r\n \"scheduledPurgeDate\": 1489962148,\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listdeletedsecrettest0/ed6c029733614e29aca7ceae047f3d86\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186147,\r\n \"updated\": 1482186147\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:22:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "01680f88-817c-4b87-b117-cafd3672627e" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest0?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDA/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef2700de-6c77-4ef3-bac8-8260f0517d5e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: listdeletedsecrettest0\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:22:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "bddbdf02-2175-49ab-86b4-843a59bffb9f" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest0?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDA/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e8c7875-5da6-49bc-b929-a84dea3ac276" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: listdeletedsecrettest0\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:22:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "9367ee09-513f-4795-8833-7dd09a56f703" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest0?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDA/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa49afa3-008f-4190-b200-f9f002522199" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: listdeletedsecrettest0\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:22:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "8d79dad2-8b44-4932-b43c-a772fea912bd" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest0?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDA/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83d69264-5f29-4dcd-aeb2-dcad58dcf3a6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/listdeletedsecrettest0\",\r\n \"deletedDate\": 1482186148,\r\n \"scheduledPurgeDate\": 1489962148,\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listdeletedsecrettest0/ed6c029733614e29aca7ceae047f3d86\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186147,\r\n \"updated\": 1482186147\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:22:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "65d1e814-80ac-42ec-9594-dd9d3b6ba522" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/secrets/listdeletedsecrettest1?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdGRlbGV0ZWRzZWNyZXR0ZXN0MT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "63" + ], + "x-ms-client-request-id": [ + "aa6878d2-a51e-49cd-a66a-9f9851dd5fd8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listdeletedsecrettest1/118d8e395eab4293a172b0525d25d84b\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186170,\r\n \"updated\": 1482186170\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "247" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:22:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "506ed646-e8b0-478e-baf5-df07445a7049" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/secrets/listdeletedsecrettest1?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdGRlbGV0ZWRzZWNyZXR0ZXN0MT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb02cf7e-1437-4c00-99a9-57c1e6b8a644" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/listdeletedsecrettest1\",\r\n \"deletedDate\": 1482186170,\r\n \"scheduledPurgeDate\": 1489962170,\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listdeletedsecrettest1/118d8e395eab4293a172b0525d25d84b\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186170,\r\n \"updated\": 1482186170\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:22:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "cf882fbe-9a03-43d9-ad4f-3aaca0cc64de" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest1?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a0fa334-3656-4154-8986-75f6ca3d64a1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: listdeletedsecrettest1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:22:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "5c5ca73d-c9a3-45f6-8dcd-0ac32fe81c3e" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest1?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "629a84fb-c64b-4324-af38-c2bf78fba6ca" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: listdeletedsecrettest1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:22:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "202e6a54-2f95-4240-ba5c-015a4f76af87" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest1?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67f03dc7-f020-492a-a025-275ac3d3a67f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: listdeletedsecrettest1\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:22:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "c12f3aef-244f-444e-aa2c-873283a70a52" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest1?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32d1cc40-618a-4f40-997a-be629d1b46f5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/listdeletedsecrettest1\",\r\n \"deletedDate\": 1482186170,\r\n \"scheduledPurgeDate\": 1489962170,\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listdeletedsecrettest1/118d8e395eab4293a172b0525d25d84b\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186170,\r\n \"updated\": 1482186170\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "b79aa556-2d9f-472f-8a95-0c7f41ba7d22" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/secrets/listdeletedsecrettest2?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdGRlbGV0ZWRzZWNyZXR0ZXN0Mj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "63" + ], + "x-ms-client-request-id": [ + "716d6add-5803-4ca3-8e52-b978202244ac" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listdeletedsecrettest2/645e2ab2c39e4271b742d2fa1e86aae6\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186196,\r\n \"updated\": 1482186196\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "247" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "5f2d6593-85e8-4cd7-8876-4b583e9c8750" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/secrets/listdeletedsecrettest2?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdGRlbGV0ZWRzZWNyZXR0ZXN0Mj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4bd2e15d-62ee-456b-9190-84bfa7d10640" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/listdeletedsecrettest2\",\r\n \"deletedDate\": 1482186196,\r\n \"scheduledPurgeDate\": 1489962196,\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listdeletedsecrettest2/645e2ab2c39e4271b742d2fa1e86aae6\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186196,\r\n \"updated\": 1482186196\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "c7d50f27-e6b3-4306-b98a-cba17cf03b83" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest2?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDI/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fed09c5d-449b-40d7-9a2c-b3587f1e37b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: listdeletedsecrettest2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "6603d6e0-1fcf-46f9-a6d2-12d4e55cff71" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest2?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDI/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b2bb661-ac79-4dd6-b7a1-4be41f0c140b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: listdeletedsecrettest2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "3e00fbf8-9391-4ab0-998c-427b4a38521b" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest2?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDI/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a67b022-3e09-4ef5-a3c7-f807b4b18fc9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: listdeletedsecrettest2\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "3420c43f-d0c2-4737-85d7-ed01f3fb22f6" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest2?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDI/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81c84bf7-bc76-429b-9b4d-fb385e65f792" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/listdeletedsecrettest2\",\r\n \"deletedDate\": 1482186196,\r\n \"scheduledPurgeDate\": 1489962196,\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listdeletedsecrettest2/645e2ab2c39e4271b742d2fa1e86aae6\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186196,\r\n \"updated\": 1482186196\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "97475383-93e1-4496-9ffe-d68c7b8e0720" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets?maxresults=1&api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzP21heHJlc3VsdHM9MSZhcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "916d20c1-eac9-4084-851b-0c2a341fafb1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/listdeletedsecrettest0\",\r\n \"deletedDate\": 1482186148,\r\n \"scheduledPurgeDate\": 1489962148,\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listdeletedsecrettest0\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186147,\r\n \"updated\": 1482186147\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VUkVWTVJWUkZSRk5GUTFKRlZGUkZVMVF3TDBWRU5rTXdNamszTXpNMk1UUkZNamxCUTBFM1EwVkJSVEEwTjBZelJEZzJJVEF3TURBeU9DRXlNREUyTFRFeUxURTVWREl5T2pJeU9qUTFMalE0TVRNek1qWmFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "720" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "078bddce-dbc2-4a1a-ba42-88333002630f" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VUkVWTVJWUkZSRk5GUTFKRlZGUkZVMVF3TDBWRU5rTXdNamszTXpNMk1UUkZNamxCUTBFM1EwVkJSVEEwTjBZelJEZzJJVEF3TURBeU9DRXlNREUyTFRFeUxURTVWREl5T2pJeU9qUTFMalE0TVRNek1qWmFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRXhORFFoVFVSQmQwMUVXWGxKV0U1c1dUTktiR1JET1UxVFZrNVZVa1ZXVFZKV1VrWlNSazVHVVRGS1JsWkdVa1pWTVZGM1REQldSVTVyVFhkTmFtc3pUWHBOTWsxVVVrWk5hbXhDVVRCRk0xRXdWa0pTVkVFd1RqQlplbEpFWnpKSlZFRjNUVVJCZVU5RFJYbE5SRVV5VEZSRmVVeFVSVFZXUkVsNVQycEplVTlxVVRGTWFsRTBUVlJOZWsxcVdtRkpVUzB0SWl3aVZHRnlaMlYwVEc5allYUnBiMjRpT2pCOSZtYXhyZXN1bHRzPTE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f2a2974-61ac-4c23-83f1-71ec7670b7ac" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMDAhTURBd01ESTVJWE5sWTNKbGRDOU1TVk5VUkVWTVJWUkZSRk5GUTFKRlZGUkZVMVF4SVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXlPalV4TGpBeE9EY3hOamhhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "335" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "a24bb4be-fa13-44c0-8c89-da11652db724" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMDAhTURBd01ESTVJWE5sWTNKbGRDOU1TVk5VUkVWTVJWUkZSRk5GUTFKRlZGUkZVMVF4SVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXlPalV4TGpBeE9EY3hOamhhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRXhNREFoVFVSQmQwMUVTVFZKV0U1c1dUTktiR1JET1UxVFZrNVZVa1ZXVFZKV1VrWlNSazVHVVRGS1JsWkdVa1pWTVZGNFNWUkJkMDFFUVhsUFEwVjVUVVJGTWt4VVJYbE1WRVUxVmtSSmVVOXFTWGxQYWxWNFRHcEJlRTlFWTNoT2FtaGhTVkV0TFNJc0lsUmhjbWRsZEV4dlkyRjBhVzl1SWpvd2ZRJm1heHJlc3VsdHM9MQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b636360-eca7-47b9-b8cf-1eecbbaf421c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/listdeletedsecrettest1\",\r\n \"deletedDate\": 1482186170,\r\n \"scheduledPurgeDate\": 1489962170,\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listdeletedsecrettest1\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186170,\r\n \"updated\": 1482186170\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VUkVWTVJWUkZSRk5GUTFKRlZGUkZVMVF4THpFeE9FUTRSVE01TlVWQlFqUXlPVE5CTVRjeVFqQTFNalZFTWpWRU9EUkNJVEF3TURBeU9DRXlNREUyTFRFeUxURTVWREl5T2pJek9qQXdMamd3TnpJek5EZGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "720" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "9bf09735-5816-4f6e-ae10-0ce70cafcaef" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VUkVWTVJWUkZSRk5GUTFKRlZGUkZVMVF4THpFeE9FUTRSVE01TlVWQlFqUXlPVE5CTVRjeVFqQTFNalZFTWpWRU9EUkNJVEF3TURBeU9DRXlNREUyTFRFeUxURTVWREl5T2pJek9qQXdMamd3TnpJek5EZGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRXhORFFoVFVSQmQwMUVXWGxKV0U1c1dUTktiR1JET1UxVFZrNVZVa1ZXVFZKV1VrWlNSazVHVVRGS1JsWkdVa1pWTVZGNFRIcEZlRTlGVVRSU1ZFMDFUbFZXUWxGcVVYbFBWRTVDVFZSamVWRnFRVEZOYWxaRlRXcFdSVTlFVWtOSlZFRjNUVVJCZVU5RFJYbE5SRVV5VEZSRmVVeFVSVFZXUkVsNVQycEplazlxUVhkTWFtZDNUbnBKZWs1RVpHRkpVUzB0SWl3aVZHRnlaMlYwVEc5allYUnBiMjRpT2pCOSZtYXhyZXN1bHRzPTE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4542b297-d335-4885-8842-08f2a4104e00" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMDAhTURBd01ESTVJWE5sWTNKbGRDOU1TVk5VUkVWTVJWUkZSRk5GUTFKRlZGUkZVMVF5SVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXpPakUyTGpjME1UY3lPREZhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "335" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "33ed4c7b-b561-47e4-bffd-398a9f451720" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMDAhTURBd01ESTVJWE5sWTNKbGRDOU1TVk5VUkVWTVJWUkZSRk5GUTFKRlZGUkZVMVF5SVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXpPakUyTGpjME1UY3lPREZhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRXhNREFoVFVSQmQwMUVTVFZKV0U1c1dUTktiR1JET1UxVFZrNVZVa1ZXVFZKV1VrWlNSazVHVVRGS1JsWkdVa1pWTVZGNVNWUkJkMDFFUVhsUFEwVjVUVVJGTWt4VVJYbE1WRVUxVmtSSmVVOXFTWHBQYWtVeVRHcGpNRTFVWTNsUFJFWmhTVkV0TFNJc0lsUmhjbWRsZEV4dlkyRjBhVzl1SWpvd2ZRJm1heHJlc3VsdHM9MQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd528b5b-2f04-4cf2-9bf7-469fb2079cde" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/listdeletedsecrettest2\",\r\n \"deletedDate\": 1482186196,\r\n \"scheduledPurgeDate\": 1489962196,\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/listdeletedsecrettest2\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186196,\r\n \"updated\": 1482186196\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VUkVWTVJWUkZSRk5GUTFKRlZGUkZVMVF5THpZME5VVXlRVUl5UXpNNVJUUXlOekZDTnpReVJESkdRVEZGT0RaQlFVVTJJVEF3TURBeU9DRXlNREUyTFRFeUxURTVWREl5T2pJek9qTXlMamMyT1RNeE1UZGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "720" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "d6354d57-b21e-4a5d-b671-864db10902e0" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VUkVWTVJWUkZSRk5GUTFKRlZGUkZVMVF5THpZME5VVXlRVUl5UXpNNVJUUXlOekZDTnpReVJESkdRVEZGT0RaQlFVVTJJVEF3TURBeU9DRXlNREUyTFRFeUxURTVWREl5T2pJek9qTXlMamMyT1RNeE1UZGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRXhORFFoVFVSQmQwMUVXWGxKV0U1c1dUTktiR1JET1UxVFZrNVZVa1ZXVFZKV1VrWlNSazVHVVRGS1JsWkdVa1pWTVZGNVRIcFpNRTVWVlhsUlZVbDVVWHBOTlZKVVVYbE9la1pEVG5wUmVWSkVTa2RSVkVaR1QwUmFRbEZWVlRKSlZFRjNUVVJCZVU5RFJYbE5SRVV5VEZSRmVVeFVSVFZXUkVsNVQycEplazlxVFhsTWFtTXlUMVJOZUUxVVpHRkpVUzB0SWl3aVZHRnlaMlYwVEc5allYUnBiMjRpT2pCOSZtYXhyZXN1bHRzPTE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08852e17-95ca-4d7f-a400-9efc1e1eb9f7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMDAhTURBd01ESTVJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VSVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXlPakl4TGpjeU9ESXpOamRhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "335" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "862045fe-1e24-4dc9-9066-3bbb23796252" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMDAhTURBd01ESTVJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VSVRBd01EQXlPQ0V5TURFMkxURXlMVEU1VkRJeU9qSXlPakl4TGpjeU9ESXpOamRhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRXhNREFoVFVSQmQwMUVTVFZKV0U1c1dUTktiR1JET1UxVFZrNVZWVEJXUkZWclZsVldhMVpUVlRCc1VGUnNUbFZTVms1VlNWUkJkMDFFUVhsUFEwVjVUVVJGTWt4VVJYbE1WRVUxVmtSSmVVOXFTWGxQYWtsNFRHcGplVTlFU1hwT2FtUmhTVkV0TFNJc0lsUmhjbWRsZEV4dlkyRjBhVzl1SWpvd2ZRJm1heHJlc3VsdHM9MQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7bb7501d-82af-4a52-aeff-6748f3bd5e43" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpNeE9EQXdPVGxCTlRKRk5EUTVSalk1UWtNeE1rTTVOMFpHT0RKQk5rTkNJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "393" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "60ca573d-7545-4ee2-aabf-ef28569e0d83" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpNeE9EQXdPVGxCTlRKRk5EUTVSalk1UWtNeE1rTTVOMFpHT0RKQk5rTkNJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRXhORFFoVFVSQmQwMUVXWGxKV0U1c1dUTktiR1JET1UxVFZrNVZWVEJXUkZWclZsVldhMVpUVlRCc1VGUnNUbFZTVms1VlRIcE5lRTlFUVhkUFZHeENUbFJLUms1RVVUVlNhbGsxVVd0TmVFMXJUVFZPTUZwSFQwUktRazVyVGtOSlZFRjNUVVJCZVU5RFJUVlBWR3MxVEZSRmVVeFVUWGhXUkVsNlQycFZOVTlxVlRWTWFtczFUMVJyTlU5VWJHRkpVUzB0SWl3aVZHRnlaMlYwVEc5allYUnBiMjRpT2pCOSZtYXhyZXN1bHRzPTE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7da0395b-cae9-462c-8b66-6a21d5bad315" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net:443/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5MiFNREF3TURJeklYTmxZM0psZEM5VVJWTlVTVk5UVlVWU1EwVlNWREF4SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "323" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "e29959d6-bca5-47c1-af2a-538c9e0be711" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5MiFNREF3TURJeklYTmxZM0psZEM5VVJWTlVTVk5UVlVWU1EwVlNWREF4SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1leUpPWlhoMFRXRnlhMlZ5SWpvaU1pRTVNaUZOUkVGM1RVUkpla2xZVG14Wk0wcHNaRU01VlZKV1RsVlRWazVVVmxWV1UxRXdWbE5XUkVGNFNWUkJkMDFFUVhsUFEwVTFUMVJyTlV4VVJYbE1WRTE0VmtSSmVrOXFWVFZQYWxVMVRHcHJOVTlVYXpWUFZHeGhTVkV0TFNJc0lsUmhjbWRsZEV4dlkyRjBhVzl1SWpvd2ZRJm1heHJlc3VsdHM9MQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c625aa03-7dfb-4eee-8664-6f212631f8ad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "74658fb3-b5f7-4c3d-bc62-04c15e8c6278" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest0?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDA/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a4d79df-6b40-48d4-a599-b8b957a993ee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "c0e1816a-1104-4d3a-8c3d-64d9107540b2" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest1?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85461560-3f5b-4d41-9362-146e0ee67f00" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "f16d5bc5-c5b5-4a4d-8ace-9c0a55b7f538" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/deletedsecrets/listdeletedsecrettest2?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL2xpc3RkZWxldGVkc2VjcmV0dGVzdDI/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a842841e-ed2c-447f-9406-f7b00e319431" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:23:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "d2a7c8e5-d3e7-4c5e-994c-032bfc378492" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", + "KeyName": "sdktestkey", + "KeyVersion": "cf7c860fb9db4564a1389db973a52436" + } +} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListKeyVersionsTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListKeyVersionsTest.json index 91d8d4ca9bb4..3c1b236412da 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListKeyVersionsTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListKeyVersionsTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//keys/listkeyversionstest/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL2xpc3RrZXl2ZXJzaW9uc3Rlc3QvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/listkeyversionstest/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"kty\": \"RSA\"\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "20" ], "x-ms-client-request-id": [ - "5c2ba99e-9ada-490b-99cb-7b1c37844935" + "f5596b4f-0f68-4d6e-a0a2-bfea0f19503e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/65d7508bd66d45f7800bbddb03f6ebd6\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"9OfKlwBpVWuZcInzGbJ2bOd3mMDoWEbXI088PJntt-RkKAxrrd6OdhT6Zgrk1XBS4J_WKnsSrxtyjxMjX5cptTNOZ9yjkKBvfVanSStPvjyEtWwI-XrQ2DECOQuZYW2x9XWkXk_XpebuaVQywZEq9iVvkDhG-3J6vILhp-vKWWGxk3vj5c3cLJunyKgEfN0d4vuWNouVWTD8oJu2CaeRL4y0C9tKkX7xlneqiKN-gLB5jVSVEaxzvBbB4nhp4yd23YfEidusZT-Hcw5jNYZEHA5M14e2ZHIZj0vh4eBoGfHJ-UJ071PydHUPkZObda-ytRAwBWgKEsHGARIh0jzWSQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082078,\r\n \"updated\": 1477082078\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeyversionstest/4a8eefe3c8d24b79a1f2de63e957d7b9\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"sB7cBpk0qKeDU7QpaLLq1kvEvPGAt_1skAKIp6fuKOV1-lmRTBD0LV_Be9PFBzNjKFwFYolUOD9Oja5Ga-hXIZrVVdHawMgJ-VcBVs_UPatL0DhU-O2JPFvmBxXzBkfb3NIlg2J2FRP1_pw9rCC98kqit5C56aQ5yInGBMNoR0ntBm1QwnsR-HkTu6qpX859hxCCUpExsqq4gDqth9vgLCji6ZdyKWPPN5pkqrZsX67Xs42HkmN5WY3HllYZLC4YowBRuoZLiEsrryy0lpoVrbmRfpEZIdIS8fHW1YfaDjyy2Vk1aDH1V0zlVygw4ZlKPLaOjUhEsXga41t4za3dwQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188991,\r\n \"updated\": 1482188991\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "627" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:38 GMT" + "Mon, 19 Dec 2016 23:09:50 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "aad5b529-da8e-4076-ba5e-fb9e2294c612" + "028ceb56-20c8-4979-b296-f2038e6a26cb" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,8 +71,8 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/listkeyversionstest/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL2xpc3RrZXl2ZXJzaW9uc3Rlc3QvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/listkeyversionstest/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"kty\": \"RSA\"\r\n}", "RequestHeaders": { @@ -82,16 +83,17 @@ "20" ], "x-ms-client-request-id": [ - "7aed3af4-db6c-4db3-9c85-3c6aaf453c5c" + "41fc180d-b7a4-46e6-a928-62700431cab4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/48b27162af084b61b31c94c29ba6541d\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"qbaVCccSdcMQVhfV2EsC6OEb5T8048AoU6pDWVEFEFbDOKYJQhvPEH0wfWuf1rKmZ1lI_5S_alupaJdQry4ynGMCtyz4Z3k0N8YQTQHtRiV2BmnokfkwJOs52KU8evaswSmtZIjtdp8y3CwTDHcgMU8QP47rRkI_qhtYXeIc8zn8VI_EBbh_ezSmANTGaoA3I5X3IkK00m8hqWhpF97gfaFDLYGaWEOKP2n47BvgI3zo8ug04ZaM1RuXXNWVuabxnwU--HyBh3Px2HprNwPhInBXsOvfV_lPohfr7GC4C7no0gygiLOVrnF-B2QjevzQPUZ7c_jzcTDq0E2bHc07oQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082079,\r\n \"updated\": 1477082079\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeyversionstest/7d5a1b54b4aa46b196fc235d76b0266d\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"onE5laOPBWQtqzr3lia2ilYJl7HCr9Wa4AxtVXKl0NvYSJRRWu739VfsqcNjSmv1YWeg8YAFB1aMm-CmGVKfWnlLl7hXlsxtCdYjS_vQVG-ymeE4N8_hwlUwr1tukUkl10fX4Lo-_pvNYOIJxiBaYUWB723oER8o1p89b_YQAuemjOOFlR5aCqCRrrUP5YHzwMRh9IOVd-a2EZctCZdrwsdppPj7btr3ua0stA9ax2hd8OneOEN7iKE-kO76TtrnDO25WVRPy8rGGQmuWcw5AnReWAfvmhn26BEzhEZZL6-qY4TSvfHotfpPnhmXCiJilTgh0c88pNYK3K96YX79AQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188991,\r\n \"updated\": 1482188991\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "627" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:38 GMT" + "Mon, 19 Dec 2016 23:09:50 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "cb0cb501-f405-4c54-b2cd-280ac385815f" + "be9d21d9-840f-454c-9df5-a8f0956c0596" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,8 +141,8 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/listkeyversionstest/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL2xpc3RrZXl2ZXJzaW9uc3Rlc3QvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/listkeyversionstest/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"kty\": \"RSA\"\r\n}", "RequestHeaders": { @@ -151,16 +153,17 @@ "20" ], "x-ms-client-request-id": [ - "28c870bd-7129-4126-b8ee-3d64115a593d" + "2fdf6b8a-d99e-4845-957d-c76ed838ba41" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/84cfba7268fa4de88624dd79910c1fec\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"zZrGC6WNQ3YSY6-4h9kgOUSFSh3ZM9YICLnsdqyjHOhXNx2UImUFTFyGEPmxIslEiB2COvMR1lApLASgqnug_NVD6eKVZNaMLoUKdPZi0drVpBaFLJo4f41MSq50Sx6uKzck4L_AUEMqIqptV4_eFbcIH264wQaahjSwG91Pbu15YIsKDytvPd55pe8hDn_aj76a_FTVkjGS1rG652tkfkEufU36mSVLcIjLD4QPkG6pS4q65y7mecmn2k7hA-CaIf-8BGwvhSRpSWuxklSjDEjR7MbHcUWCh54oMhHCuTQEhPdClP-oDBwcoqoH9ni5n0gn9Y_vOuYvxI6X7xpN9Q\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082079,\r\n \"updated\": 1477082079\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeyversionstest/cc05aff431564d1a855f118526f4ddb3\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"tBMA0B8huWFfcEb5EiICOnrGQESVVWuuk3ZbGIw_KgHLhyIAfosbQFIjmgGoQk0HSzAsAVyxVdf2e5ztYM7PV7apqtzs4cv7DTbi6aReX-6Kl4aIWtdpqetMEUVZts92KBgqBi2oIAUhjZzap8wT3C3tfv3UOwFJ-l_I2qDxZYulfma-tmYmpJiQXOPBlN-y6El_yA0g_KaJZLGPvylhHU-9CD4ZWl5kztWSXQ7KAkvrZrG_MQ7ZMwtQnE6BtjHmqAmi0WezKIw5cRP7bEJ6v7wM9AZouuYw77suPY1LXDYROf5EpvWL1b6KoMPOh0he8uV4veiYwT5t5xff6tjatQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188991,\r\n \"updated\": 1482188991\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "627" @@ -175,7 +178,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:39 GMT" + "Mon, 19 Dec 2016 23:09:50 GMT" ], "Pragma": [ "no-cache" @@ -184,13 +187,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "fc206814-8fdc-4c7e-953c-e694e853ad63" + "b5cfa25e-22a7-479a-ace5-33e0391a822e" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -208,22 +211,23 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/listkeyversionstest/versions?maxresults=1&api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL2xpc3RrZXl2ZXJzaW9uc3Rlc3QvdmVyc2lvbnM/bWF4cmVzdWx0cz0xJmFwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/listkeyversionstest/versions?maxresults=1&api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9tYXhyZXN1bHRzPTEmYXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5abbd977-856f-4a53-91a7-da8d2e4f7c26" + "53e4ef3c-ddcf-4936-8793-aeaa68f3ec53" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/1c853cb89d3e43ea8c4c43b2cc413b17\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477015736,\r\n \"updated\": 1477015736\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6TTNNekUzUmpZMFJqSTNOVFE1UkVGQk9EUkZNakl5UlRFM1F6TkRNak5CSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeyversionstest/0ed1a0043712492da4caaee9be818c58\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1481851712,\r\n \"updated\": 1481851712\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6UkJPRVZGUmtVelF6aEVNalJDTnpsQk1VWXlSRVUyTTBVNU5UZEVOMEk1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "564" @@ -238,7 +242,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:39 GMT" + "Mon, 19 Dec 2016 23:09:52 GMT" ], "Pragma": [ "no-cache" @@ -247,13 +251,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "ddc7c8c7-805d-4783-adc1-e052062458e9" + "35377bca-1b7f-4689-89e6-1878bb977df6" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -271,22 +275,23 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6TTNNekUzUmpZMFJqSTNOVFE1UkVGQk9EUkZNakl5UlRFM1F6TkRNak5CSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXg2VFROTmVrVXpVbXBaTUZKcVNUTk9WRkUxVWtWR1FrOUVVa1pOYWtsNVVsUkZNMUY2VGtSTmFrNUNTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", + "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6UkJPRVZGUmtVelF6aEVNalJDTnpsQk1VWXlSRVUyTTBVNU5UZEVOMEk1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXg2VWtKUFJWWkdVbXRWZWxGNmFFVk5hbEpEVG5wc1FrMVZXWGxTUlZVeVRUQlZOVTVVWkVWT01FazFTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f3beefb-348e-455d-b760-710187493a9c" + "23f18159-db7a-4bff-8b68-d6b7e7651a2c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/37317f64f27549daa84e222e17c3c23a\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477015736,\r\n \"updated\": 1477015736\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6UTRRakkzTVRZeVFVWXdPRFJDTmpGQ016RkRPVFJETWpsQ1FUWTFOREZFSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeyversionstest/4a8eefe3c8d24b79a1f2de63e957d7b9\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188991,\r\n \"updated\": 1482188991\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6Y3lRa1pDTUVWQ09FUkJORFF5TURSQk5qQXlNRGMzUlRReFFVUXdORGsySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "564" @@ -301,7 +306,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:39 GMT" + "Mon, 19 Dec 2016 23:09:52 GMT" ], "Pragma": [ "no-cache" @@ -310,13 +315,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "e078aa15-ae30-494c-9d05-065f13f09ac4" + "c643f830-4432-4200-a777-22480dceb9cc" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -334,22 +339,23 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6UTRRakkzTVRZeVFVWXdPRFJDTmpGQ016RkRPVFJETWpsQ1FUWTFOREZFSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXg2VVRSUmFra3pUVlJaZVZGVldYZFBSRkpEVG1wR1EwMTZSa1JQVkZKRVRXcHNRMUZVV1RGT1JFWkZTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", + "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6Y3lRa1pDTUVWQ09FUkJORFF5TURSQk5qQXlNRGMzUlRReFFVUXdORGsySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXg2WTNsUmExcERUVVZXUTA5RlVrSk9SRkY1VFVSU1FrNXFRWGxOUkdNelVsUlJlRkZWVVhkT1JHc3lTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f56809fa-fff7-4580-9b3e-28c95c4f3205" + "d31f52a9-af00-429f-871a-1834e15639aa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/48b27162af084b61b31c94c29ba6541d\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082079,\r\n \"updated\": 1477082079\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6VTFOamhCUmtORk1EWkdOalJDUkVaQk5FWkJRVGd6TWtaQk9EWTRRa0pHSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeyversionstest/72bfb0eb8da44204a602077e41ad0496\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1481851712,\r\n \"updated\": 1481851712\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6ZEVOVUV4UWpVMFFqUkJRVFEyUWpFNU5rWkRNak0xUkRjMlFqQXlOalpFSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "564" @@ -364,7 +370,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:39 GMT" + "Mon, 19 Dec 2016 23:09:52 GMT" ], "Pragma": [ "no-cache" @@ -373,13 +379,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "c91beb29-bc09-4ac2-b470-664e20cee261" + "ad4ceed1-0dc0-4777-86c0-b2dccc4e3e81" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -397,22 +403,23 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6VTFOamhCUmtORk1EWkdOalJDUkVaQk5FWkJRVGd6TWtaQk9EWTRRa0pHSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXg2VlRGT2FtaENVbXRPUmsxRVdrZE9hbEpEVWtWYVFrNUZXa0pSVkdkNlRXdGFRazlFV1RSUmEwcEhTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", + "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6ZEVOVUV4UWpVMFFqUkJRVFEyUWpFNU5rWkRNak0xUkRjMlFqQXlOalpFSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXg2WkVWT1ZVVjRVV3BWTUZGcVVrSlJWRkV5VVdwRk5VNXJXa1JOYWsweFVrUmpNbEZxUVhsT2FscEZTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6667717a-4577-44cd-b373-ce1085514647" + "cd6ed436-cb59-4df2-999c-9502461179e8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/5568afce06f64bdfa4faa832fa868bbf\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477070233,\r\n \"updated\": 1477070233\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6WTFSRGMxTURoQ1JEWTJSRFExUmpjNE1EQkNRa1JFUWpBelJqWkZRa1EySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeyversionstest/7d5a1b54b4aa46b196fc235d76b0266d\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188991,\r\n \"updated\": 1482188991\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6ZzVPREpFTlRFMVEwSTNNelEwTVRJNFJrVkZPRFE1TVRFeE1qYzBPREF6SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "564" @@ -427,7 +434,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:39 GMT" + "Mon, 19 Dec 2016 23:09:52 GMT" ], "Pragma": [ "no-cache" @@ -436,13 +443,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "0117407f-14d3-495a-a06c-0b6ff9f2a543" + "62629f68-116f-49c6-8d93-4e75b345b156" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -460,22 +467,23 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6WTFSRGMxTURoQ1JEWTJSRFExUmpjNE1EQkNRa1JFUWpBelJqWkZRa1EySVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXg2V1RGU1JHTXhUVVJvUTFKRVdUSlNSRkV4VW1wak5FMUVRa05SYTFKRlVXcEJlbEpxV2taUmExRXlTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", + "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6ZzVPREpFTlRFMVEwSTNNelEwTVRJNFJrVkZPRFE1TVRFeE1qYzBPREF6SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXg2WnpWUFJFcEZUbFJGTVZFd1NUTk5lbEV3VFZSSk5GSnJWa1pQUkZFMVRWUkZlRTFxWXpCUFJFRjZTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72fe8c6f-c733-4e37-add7-21e1306040f9" + "d92e62f2-2254-4135-ae7b-859024c9317f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/65d7508bd66d45f7800bbddb03f6ebd6\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082078,\r\n \"updated\": 1477082078\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6WTNNalpCTWpVM056VXlOelJETnpnNVJETTJSVVk1TlRWRk5VRXdORGxGSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeyversionstest/8982d515cb7344128fee849111274803\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1481851713,\r\n \"updated\": 1481851713\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUwwTkRNRFZCUmtZME16RTFOalJFTVVFNE5UVkdNVEU0TlRJMlJqUkVSRUl6SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "564" @@ -490,7 +498,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:39 GMT" + "Mon, 19 Dec 2016 23:09:52 GMT" ], "Pragma": [ "no-cache" @@ -499,13 +507,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "ef7f5a5a-b96d-486b-83b6-2007110b7898" + "93ac3459-89a1-49d8-8011-20178812797a" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -523,400 +531,23 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6WTNNalpCTWpVM056VXlOelJETnpnNVJETTJSVVk1TlRWRk5VRXdORGxGSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXg2V1ROTmFscENUV3BWTTA1NlZYbE9lbEpFVG5wbk5WSkVUVEpTVlZrMVRsUldSazVWUlhkT1JHeEdTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", + "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUwwTkRNRFZCUmtZME16RTFOalJFTVVFNE5UVkdNVEU0TlRJMlJqUkVSRUl6SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXd3VGtSTlJGWkNVbXRaTUUxNlJURk9hbEpGVFZWRk5FNVVWa2ROVkVVMFRsUkpNbEpxVWtWU1JVbDZTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75713527-3a8f-4c39-ae88-db0dd05a81cc" + "4583b337-d475-458a-9319-980ec71ef67f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/6726a25775274c789d36ef955e5a049e\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477070367,\r\n \"updated\": 1477070367\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6YzFOVGRFUlVaRE5Ua3hOelJFUWpKQk1EQkROek15UVRSR05qVXhOalV4SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "564" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 21 Oct 2016 20:34:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "westus" - ], - "x-ms-request-id": [ - "d1df2590-93c9-42f7-aeed-8f01fc6286f8" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.781" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6YzFOVGRFUlVaRE5Ua3hOelJFUWpKQk1EQkROek15UVRSR05qVXhOalV4SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXg2WXpGT1ZHUkZVbFZhUkU1VWEzaE9lbEpGVVdwS1FrMUVRa1JPZWsxNVVWUlNSMDVxVlhoT2FsVjRTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7f099950-3b1b-49b3-8ae5-8c17198ab964" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/7557defc59174db2a00c732a4f651651\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477070368,\r\n \"updated\": 1477070368\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6ZEJOa0ZCTmtKRlJrTkdNelE1UmpOQ1JERXhRVGhCUVVOQ1FVWTNNemM1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "564" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 21 Oct 2016 20:34:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "westus" - ], - "x-ms-request-id": [ - "fbca87c1-8555-43ca-ac85-7f2312ffaac8" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.781" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6ZEJOa0ZCTmtKRlJrTkdNelE1UmpOQ1JERXhRVGhCUVVOQ1FVWTNNemM1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXg2WkVKT2EwWkNUbXRLUmxKclRrZE5lbEUxVW1wT1ExSkVSWGhSVkdoQ1VWVk9RMUZWV1ROTmVtTTFTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "58a611c5-47e1-4374-a362-1058d46545ca" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/7a6aa6befcf349f3bd11a8aacbaf7379\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477070233,\r\n \"updated\": 1477070233\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6Z3lOekpCTVVGQk1EWkNORFE0T1RRNFJqQkNPRFUzT1RBMk1VUkRORE0wSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "564" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 21 Oct 2016 20:34:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "westus" - ], - "x-ms-request-id": [ - "c19556a8-0114-486c-8b5d-4401f5cee214" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.781" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6Z3lOekpCTVVGQk1EWkNORFE0T1RRNFJqQkNPRFUzT1RBMk1VUkRORE0wSVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXg2WjNsT2VrcENUVlZHUWsxRVdrTk9SRkUwVDFSUk5GSnFRa05QUkZVelQxUkJNazFWVWtST1JFMHdTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b8b40873-5151-40a6-ab61-4f6ad9e3e661" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/8272a1aa06b448948f0b8579061dc434\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477070232,\r\n \"updated\": 1477070232\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6ZzBRMFpDUVRjeU5qaEdRVFJFUlRnNE5qSTBSRVEzT1RreE1FTXhSa1ZESVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "564" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 21 Oct 2016 20:34:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "westus" - ], - "x-ms-request-id": [ - "c907134a-be2a-4ab7-9473-c4d63872da73" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.781" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6ZzBRMFpDUVRjeU5qaEdRVFJFUlRnNE5qSTBSRVEzT1RreE1FTXhSa1ZESVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXg2WnpCUk1GcERVVlJqZVU1cWFFZFJWRkpGVWxSbk5FNXFTVEJTUlZFelQxUnJlRTFGVFhoU2ExWkVTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09e2c6ef-13b2-4569-b202-4350ac5952bb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/84cfba7268fa4de88624dd79910c1fec\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082079,\r\n \"updated\": 1477082079\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6bEZSakF6UmpGQ05FSkVSalEwTlRSQk1VRTNSa0UzTVRRMVJVTkJRVUl6SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "564" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 21 Oct 2016 20:34:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "westus" - ], - "x-ms-request-id": [ - "f6a67912-0159-4fd6-aa7e-aca14c9e1796" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.781" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUx6bEZSakF6UmpGQ05FSkVSalEwTlRSQk1VRTNSa0UzTVRRMVJVTkJRVUl6SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXg2YkVaU2FrRjZVbXBHUTA1RlNrVlNhbEV3VGxSU1FrMVZSVE5TYTBVelRWUlJNVkpWVGtKUlZVbDZTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9d9cd3a8-b5c1-4851-aab9-e4d03aff7312" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/9ef03f1b4bdf4454a1a7fa7145ecaab3\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477015736,\r\n \"updated\": 1477015736\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUwwTTVRekF5T1VWQ01FUTRORFEwUmtaQk5UTkJNekl4T0VRME5EVTFRVEk1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "564" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 21 Oct 2016 20:34:39 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "westus" - ], - "x-ms-request-id": [ - "17dd6716-f149-4392-84f1-af38e2bc116b" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.781" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/keys/listkeyversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMzYhTURBd01EVTJJV3RsZVM5TVNWTlVTMFZaVmtWU1UwbFBUbE5VUlZOVUwwTTVRekF5T1VWQ01FUTRORFEwUmtaQk5UTkJNekl4T0VRME5EVTFRVEk1SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L2tleXMvbGlzdGtleXZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TXpZaFRVUkJkMDFFVlRKSlYzUnNaVk01VFZOV1RsVlRNRlphVm10V1UxVXdiRkJVYkU1VlVsWk9WVXd3VFRWUmVrRjVUMVZXUTAxRlVUUk9SRkV3VW10YVFrNVVUa0pOZWtsNFQwVlJNRTVFVlRGUlZFazFTVlJCZDAxRVFYbFBRMFUxVDFSck5VeFVSWGxNVkUxNFZrUkplazlxVlRWUGFsVTFUR3ByTlU5VWF6VlBWR3hoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e7a7741e-e00f-49f4-b992-460460da911a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest/c9c029eb0d8444ffa53a3218d4455a29\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477070367,\r\n \"updated\": 1477070367\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeyversionstest/cc05aff431564d1a855f118526f4ddb3\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188991,\r\n \"updated\": 1482188991\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "205" @@ -931,7 +562,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:39 GMT" + "Mon, 19 Dec 2016 23:09:52 GMT" ], "Pragma": [ "no-cache" @@ -940,13 +571,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "f651d0e4-8ff8-475f-b30c-dd2e892c1743" + "cce9dfc7-ebb3-4df9-b49d-2627471f0344" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -966,8 +597,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListKeysTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListKeysTest.json index aafa7fb80321..a8f8ae9ce48f 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListKeysTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListKeysTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//keys/listkeytest0/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL2xpc3RrZXl0ZXN0MC9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/keys/listkeytest0/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvbGlzdGtleXRlc3QwL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"kty\": \"RSA\"\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "20" ], "x-ms-client-request-id": [ - "6bc87b6a-13da-46ee-8e09-e76a95355b97" + "7bab7282-c4d1-4df3-8e62-b3f66c2a71bb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeytest0/fb9f5832227144bb930ba20bbe1ab897\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"7O0NfiabbLb_1HqxsvF-VAHNiDk0mTK0nED0BFSh6g2OaMUkspJ5XE9dY5ossuRdhYkZiQUvXgVKtUKzfUkv2w7AtNP7QHtabPDcNzrgvggwg2RruWkgaufPmUGvVBMBXlQiNONQKqPFcLkQE2HFW9E41-YY1ul10DdKPkxAp6i2s0aDS6J0Xp90b0EQgBcyjraZ7rUm74WPa7-TF1zLwVVkczYzGLDcxPrL2Hpo66LiFmdau-XZxV3Y3Ku2YFIT1EjlaeOHWki-rVcobr1X_ZQPPnhqnmjGdDuxSws7j4Jpm6l48kJsATgCNul38ZzdyTcYb6x4atebQYF4Y3p2DQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082081,\r\n \"updated\": 1477082081\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeytest0/7024e4b12f82468b9ee825647b7be099\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"zeXvJfHruzUWi1VImfj-Y3XPObrstk1pPHI_1vCe4xoWdOGvYTJFpdC6p6lVXoHYQKQBJla7VaJfl40wEKcOnooCAFAtj0dxaXX_AzsQamEQUwaZ5RjCnaxjjj49F_NxRArlnckg8lu27RmdhHGfr10hsJvgsh3dKw5HNxwT4Qwlho1D41I0gz_oyV1cW8vt6P2uU8KawIAigWBBmUzEF6k4SSnjbphYEYh74oSeQd4OxQ86YmuJ9jbaSJQYd-wmEoPsKhbZ9Ut2a51oh0CM70X9ju_pMQdphUsSUactCarJbRbloUmJQCvYn_W1rzh6BVwEggXv2FwYfaTNQ35-mQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188996,\r\n \"updated\": 1482188996\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "620" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:40 GMT" + "Mon, 19 Dec 2016 23:09:56 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "9596099f-f7e1-41fe-9b61-95ecfd26f6b0" + "dd694dc9-83ad-467c-bf0f-f29aea83f6b5" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,8 +71,8 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/listkeytest1/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL2xpc3RrZXl0ZXN0MS9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/keys/listkeytest1/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvbGlzdGtleXRlc3QxL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"kty\": \"RSA\"\r\n}", "RequestHeaders": { @@ -82,16 +83,17 @@ "20" ], "x-ms-client-request-id": [ - "ddff7958-f1b3-4c40-b58e-7470738cd46c" + "60dcc921-37ed-4302-9105-2d267ae4bca1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeytest1/81c39782d03642cbb875e976f9502fdd\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"tB0xkVC4PvKk9X-CpwPHVlJMzmu4FbK1BzubXC93qIIbUtAUWdlYGUXXo-tImtjc_mgqb5srgWmYxRbw_CnfNybfuIQq5UAaFDnQjX92z8o3bM1U914hHK0O0MAwwxpbCyipftvs3XUp59qv1oeUdgr8mdv3wHIYORcpTIWyXj1AyV9CmqKy4VYsiysZn8hVEeRvtwaXUsUdFYqKxNz4HnD7tL9JPo1m9r2ibyUVtymJUig8cy1UY48MPMzhDdC6Yw6919nwmevaHQqqlJUn8_aEQTHZgd714rdZh-aHky8-unGLRnpYRYcxm9XdI83Z5cYs6hbBqJAYFZG8n88yAQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082081,\r\n \"updated\": 1477082081\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeytest1/a09fe610729e486a9514cc77b3d249b2\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"lY4Fq1SNotf6OklpbtFkGhb6AZiWyl3GKTUwKE3qKQVqg7U-08ZKRG4sIksVewFnUZZCGx0xZg13_pLUmy43fbYMl27DV2OwHK75FYGHPOIi63lAr4RNc6YUtsKwVhfBpEncZr3s4sU7x3IPT7RWbwPgeJK1ym-Y9xBEwLnUztJiXQMD2gi4cO-QjolrV0y1juacNXmopYMS8FRj8m8Oi1Jll_B0VWbg8nZ8Qw-AP9DbJmCjWgMlWzLgA4Ca0g7nU7OmZpvtlSz2M8-QBrpZge9_pYeeWPEFt7wvThO-sOZ7qPxj77r5S86yn7Af0SK34pUazBuHlxasOHnqGARufw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188997,\r\n \"updated\": 1482188997\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "620" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:40 GMT" + "Mon, 19 Dec 2016 23:09:56 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "7a41a2c4-d837-4993-b316-933a20cc6468" + "6e2d6e8a-b211-406a-b178-1c6afabed030" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,8 +141,8 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/listkeytest2/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL2xpc3RrZXl0ZXN0Mi9jcmVhdGU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/keys/listkeytest2/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvbGlzdGtleXRlc3QyL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"kty\": \"RSA\"\r\n}", "RequestHeaders": { @@ -151,16 +153,17 @@ "20" ], "x-ms-client-request-id": [ - "e5918b3a-c73e-4ad3-a1bc-08a17109a31d" + "2662f976-d295-4c1a-b092-753327722664" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeytest2/fc6087e9e611466d95bc62d3d990259d\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"jWBYv-b-kSON-Fa7kpjcO4rlP21KKwJ0YSzBjrmdjl0UsbwJJLnfR19EpWZMW7n4MMdnNEBN72dMBwAhO7drQSPA67xAKsqIl5PbhHGp_IvS2U6RJNslHidbounqCiH3BTmJ15QTCZz2dSxMqs3Y54sgWPVqo3K6AKVtZ68PTccyFM90VT3af_DaOfa7jtuxmqhZXhr2hDz77AQtTRcF634ElQfp3M0LjqEbBEaqs9_vSAnN7mJ6uojRid79BZeW9JHgkxCXg-XdxWAq7qdLEP5ELDQi5eqToVanz7bYS9iD_L82NOSJMmD-omBLK5Zv0Byn_WuJvuiftbimsLZkyQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082081,\r\n \"updated\": 1477082081\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeytest2/18eb0dfe6c2143f1b63188f3fdb3d039\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"xn9zheeSCxwvtJ3j2CnuiW1Txx4GeBEWiuiyewV1oCcXLHFzKZnSQBw_xOUDYj6p1LxWgabyJ3rhtbsShbblxMvhp3RBLWrwarL5EmliDAaJtg7jtbb7U1g-WjczUBmCu0oeM7NGPJkT7szPN_NCLfApEFYc4tDj7gjeO53EsM8tcE5jrdqIhwZTov5Pj176VzVrXy42R03Z2tOp_dl9qywc-6FQz_jNYcYM4Zc6XNSZGcJlRF3opHdxOaEDKGwe5BsCBCOjpqT0uldoilyIh9cY5kZGklajfAv55ymjlpqB9Fa3qxLcPAy0eqr1dduAi2T3ngohpq3zbmdYAnRT8w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188997,\r\n \"updated\": 1482188997\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "620" @@ -175,7 +178,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:41 GMT" + "Mon, 19 Dec 2016 23:09:56 GMT" ], "Pragma": [ "no-cache" @@ -184,13 +187,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "daf6e558-803c-4ebd-98a0-2fadf75a049c" + "0a07d5d8-2f45-48a3-9d16-f35e1bcb42a5" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -208,22 +211,23 @@ "StatusCode": 200 }, { - "RequestUri": "//keys?maxresults=1&api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzP21heHJlc3VsdHM9MSZhcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/keys?maxresults=1&api-version=2016-10-01", + "EncodedRequestUri": "L2tleXM/bWF4cmVzdWx0cz0xJmFwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ba77cb9-37f9-46dc-a5d2-a90f251766a3" + "f853093a-df41-40e9-b436-641eb8289c6e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeytest0\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082081,\r\n \"updated\": 1477082081\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklXdGxlUzlNU1ZOVVMwVlpWRVZUVkRFaE1EQXdNREk0SVRJd01UWXRNVEF0TWpGVU1UYzZNVGM2TkRVdU5qa3hPRE0zT0ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeytest0\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188996,\r\n \"updated\": 1482188996\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklXdGxlUzlNU1ZOVVMwVlpWRVZUVkRFaE1EQXdNREk0SVRJd01UWXRNVEl0TVRsVU1qTTZNRGs2TlRZdU16ZzVOakU1TmxvaCIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "419" @@ -238,7 +242,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:41 GMT" + "Mon, 19 Dec 2016 23:09:56 GMT" ], "Pragma": [ "no-cache" @@ -247,13 +251,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "c34b750d-ddf0-45b4-9b21-2fb976a33ad4" + "fd24aaf5-c489-46f1-88d9-25411d6f3550" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -271,22 +275,23 @@ "StatusCode": 200 }, { - "RequestUri": "/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklXdGxlUzlNU1ZOVVMwVlpWRVZUVkRFaE1EQXdNREk0SVRJd01UWXRNVEF0TWpGVU1UYzZNVGM2TkRVdU5qa3hPRE0zT0ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L2tleXM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNE1DRk5SRUYzVFVSRk1rbFhkR3hsVXpsTlUxWk9WVk13VmxwV1JWWlVWa1JGYUUxRVFYZE5SRWswU1ZSSmQwMVVXWFJOVkVGMFRXcEdWVTFVWXpaTlZHTTJUa1JWZFU1cWEzaFBSRTB6VDBadmFDSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", + "RequestUri": "/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklXdGxlUzlNU1ZOVVMwVlpWRVZUVkRFaE1EQXdNREk0SVRJd01UWXRNVEl0TVRsVU1qTTZNRGs2TlRZdU16ZzVOakU1TmxvaCIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2tleXM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNE1DRk5SRUYzVFVSRk1rbFhkR3hsVXpsTlUxWk9WVk13VmxwV1JWWlVWa1JGYUUxRVFYZE5SRWswU1ZSSmQwMVVXWFJOVkVsMFRWUnNWVTFxVFRaTlJHczJUbFJaZFUxNlp6Vk9ha1UxVG14dmFDSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93c3761b-f152-4d8e-84ad-062633d7f9b1" + "adb50d78-40a2-4ebe-a210-a541c1c7b06e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeytest1\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082081,\r\n \"updated\": 1477082081\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklXdGxlUzlNU1ZOVVMwVlpWRVZUVkRJaE1EQXdNREk0SVRJd01UWXRNVEF0TWpGVU1UYzZNVGM2TkRZdU1EYzBPRFl3TWxvaCIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeytest1\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188997,\r\n \"updated\": 1482188997\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklXdGxlUzlNU1ZOVVMwVlpWRVZUVkRJaE1EQXdNREk0SVRJd01UWXRNVEl0TVRsVU1qTTZNRGs2TlRZdU56RXhOalF3TVZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "419" @@ -301,7 +306,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:41 GMT" + "Mon, 19 Dec 2016 23:09:56 GMT" ], "Pragma": [ "no-cache" @@ -310,13 +315,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "eb641fca-af33-4ea6-aa96-fb5c14a90fc3" + "8c24da06-7782-4571-b0a0-2cfae5f1d2ff" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -334,22 +339,23 @@ "StatusCode": 200 }, { - "RequestUri": "/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklXdGxlUzlNU1ZOVVMwVlpWRVZUVkRJaE1EQXdNREk0SVRJd01UWXRNVEF0TWpGVU1UYzZNVGM2TkRZdU1EYzBPRFl3TWxvaCIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L2tleXM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNE1DRk5SRUYzVFVSRk1rbFhkR3hsVXpsTlUxWk9WVk13VmxwV1JWWlVWa1JKYUUxRVFYZE5SRWswU1ZSSmQwMVVXWFJOVkVGMFRXcEdWVTFVWXpaTlZHTTJUa1JaZFUxRVl6QlBSRmwzVFd4dmFDSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", + "RequestUri": "/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMklXdGxlUzlNU1ZOVVMwVlpWRVZUVkRJaE1EQXdNREk0SVRJd01UWXRNVEl0TVRsVU1qTTZNRGs2TlRZdU56RXhOalF3TVZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2tleXM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNE1DRk5SRUYzVFVSRk1rbFhkR3hsVXpsTlUxWk9WVk13VmxwV1JWWlVWa1JKYUUxRVFYZE5SRWswU1ZSSmQwMVVXWFJOVkVsMFRWUnNWVTFxVFRaTlJHczJUbFJaZFU1NlJYaE9hbEYzVFZadmFDSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d18a261f-99ee-4a95-9ca2-5463276b9d47" + "e52c6655-6ce0-4e0c-9ce7-de1286e1b61f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeytest2\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082081,\r\n \"updated\": 1477082081\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5MiFNREF3TURJeklXdGxlUzlNU1ZOVVMwVlpWa1ZTVTBsUFRsTlVSVk5VSVRBd01EQXlPQ0V5TURFMkxURXdMVEl4VkRBeU9qQTRPalU0TGpRNE5UazVNelJhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeytest2\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188997,\r\n \"updated\": 1482188997\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5MiFNREF3TURJeklXdGxlUzlNU1ZOVVMwVlpWa1ZTVTBsUFRsTlVSVk5VSVRBd01EQXlPQ0V5TURFMkxURXlMVEUyVkRBeE9qSTRPak15TGpreE9EQTFNamxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "435" @@ -364,7 +370,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:41 GMT" + "Mon, 19 Dec 2016 23:09:57 GMT" ], "Pragma": [ "no-cache" @@ -373,13 +379,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "aa31fb79-a4c2-447b-b1ee-5c984964c952" + "226e3ac8-00d5-4d47-bab1-f37584371889" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -397,25 +403,26 @@ "StatusCode": 200 }, { - "RequestUri": "/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5MiFNREF3TURJeklXdGxlUzlNU1ZOVVMwVlpWa1ZTVTBsUFRsTlVSVk5VSVRBd01EQXlPQ0V5TURFMkxURXdMVEl4VkRBeU9qQTRPalU0TGpRNE5UazVNelJhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L2tleXM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNU1pRk5SRUYzVFVSSmVrbFhkR3hsVXpsTlUxWk9WVk13VmxwV2ExWlRWVEJzVUZSc1RsVlNWazVWU1ZSQmQwMUVRWGxQUTBWNVRVUkZNa3hVUlhkTVZFbDRWa1JCZVU5cVFUUlBhbFUwVEdwUk5FNVVhelZOZWxKaFNWRXRMU0lzSWxSaGNtZGxkRXh2WTJGMGFXOXVJam93ZlEmbWF4cmVzdWx0cz0x", + "RequestUri": "/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5MiFNREF3TURJeklXdGxlUzlNU1ZOVVMwVlpWa1ZTVTBsUFRsTlVSVk5VSVRBd01EQXlPQ0V5TURFMkxURXlMVEUyVkRBeE9qSTRPak15TGpreE9EQTFNamxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2tleXM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNU1pRk5SRUYzVFVSSmVrbFhkR3hsVXpsTlUxWk9WVk13VmxwV2ExWlRWVEJzVUZSc1RsVlNWazVWU1ZSQmQwMUVRWGxQUTBWNVRVUkZNa3hVUlhsTVZFVXlWa1JCZUU5cVNUUlBhazE1VEdwcmVFOUVRVEZOYW14aFNWRXRMU0lzSWxSaGNtZGxkRXh2WTJGMGFXOXVJam93ZlEmbWF4cmVzdWx0cz0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "563114ba-17aa-42b3-80f1-55c2893687cc" + "caee0553-0934-4911-8cee-89075f3c8dbd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/listkeyversionstest\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082079,\r\n \"updated\": 1477082079\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4OCFNREF3TURJeUlXdGxlUzlNU1ZOVVZrVlNVMGxQVGxORFJWSlVNREVoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/listkeyversionstest\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188991,\r\n \"updated\": 1482188991\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzlUUkV0VVJWTlVTMFZaSVRBd01EQXlPQ0V5TURFMkxURXlMVEUyVkRBeE9qSTVPakk0TGpnd01EY3dOelZhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "436" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -427,7 +434,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:41 GMT" + "Mon, 19 Dec 2016 23:09:57 GMT" ], "Pragma": [ "no-cache" @@ -436,13 +443,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "6bebcfb5-ffd3-4e85-a22e-cfb7fe7b1756" + "5eb59d66-6683-4adb-83c6-58c1a3af5988" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -460,22 +467,23 @@ "StatusCode": 200 }, { - "RequestUri": "/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4OCFNREF3TURJeUlXdGxlUzlNU1ZOVVZrVlNVMGxQVGxORFJWSlVNREVoTURBd01ESTRJVGs1T1RrdE1USXRNekZVTWpNNk5UazZOVGt1T1RrNU9UazVPVm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L2tleXM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNE9DRk5SRUYzVFVSSmVVbFhkR3hsVXpsTlUxWk9WVlpyVmxOVk1HeFFWR3hPUkZKV1NsVk5SRVZvVFVSQmQwMUVTVFJKVkdzMVQxUnJkRTFVU1hSTmVrWlZUV3BOTms1VWF6Wk9WR3QxVDFSck5VOVVhelZQVm05b0lpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", + "RequestUri": "/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4MCFNREF3TURFMElXdGxlUzlUUkV0VVJWTlVTMFZaSVRBd01EQXlPQ0V5TURFMkxURXlMVEUyVkRBeE9qSTVPakk0TGpnd01EY3dOelZhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L2tleXM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNE1DRk5SRUYzVFVSRk1FbFhkR3hsVXpsVVVrVjBWVkpXVGxWVE1GWmFTVlJCZDAxRVFYbFBRMFY1VFVSRk1reFVSWGxNVkVVeVZrUkJlRTlxU1RWUGFrazBUR3BuZDAxRVkzZE9lbFpoU1ZFdExTSXNJbFJoY21kbGRFeHZZMkYwYVc5dUlqb3dmUSZtYXhyZXN1bHRzPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d4bf1d1-fe3e-43f3-be7a-19eeb2032b20" + "4e2f754e-cb38-4791-ad93-121f19385d8e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082038,\r\n \"updated\": 1477082038\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4OCFNREF3TURJd0lXdGxlUzlUUlV4R1UwbEhUa1ZFUTBWU1ZEQXhJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/sdktestkey\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188947,\r\n \"updated\": 1482188947\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4OCFNREF3TURJd0lXdGxlUzlVUlZOVVNWTlRWVVZTUTBWU1ZEQXhJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "427" @@ -490,7 +498,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:41 GMT" + "Mon, 19 Dec 2016 23:09:57 GMT" ], "Pragma": [ "no-cache" @@ -499,13 +507,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "be92f85f-8caf-423e-8456-3a88f862bce6" + "06757e06-1813-4519-aa29-28e8543ff8d2" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -523,19 +531,20 @@ "StatusCode": 200 }, { - "RequestUri": "/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4OCFNREF3TURJd0lXdGxlUzlUUlV4R1UwbEhUa1ZFUTBWU1ZEQXhJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L2tleXM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNE9DRk5SRUYzVFVSSmQwbFhkR3hsVXpsVVVsVjRSMVV3YkVoVWExWkZVVEJXVTFaRVFYaEpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", + "RequestUri": "/keys?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4OCFNREF3TURJd0lXdGxlUzlVUlZOVVNWTlRWVVZTUTBWU1ZEQXhJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", + "EncodedRequestUri": "L2tleXM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNE9DRk5SRUYzVFVSSmQwbFhkR3hsVXpsVlVsWk9WVk5XVGxSV1ZWWlRVVEJXVTFaRVFYaEpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7981128a-086a-4155-bb20-1fbf90a127db" + "728dc77e-1547-433f-aecf-fbf9b091c4e3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", @@ -553,7 +562,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:41 GMT" + "Mon, 19 Dec 2016 23:09:57 GMT" ], "Pragma": [ "no-cache" @@ -562,13 +571,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "20f9553c-9825-47eb-917a-9bb292243844" + "27c84bb5-2f8e-4b28-a206-88386f2f9229" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -588,8 +597,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListSecretVersionsTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListSecretVersionsTest.json index 90f9d0f1d71a..b262ceb2e8d9 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListSecretVersionsTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListSecretVersionsTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//secrets/listsecretversionstest?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL2xpc3RzZWNyZXR2ZXJzaW9uc3Rlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/listsecretversionstest?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"mysecretvalue\"\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "32" ], "x-ms-client-request-id": [ - "2003b2e4-59fc-48cd-b918-c721c5aa1d46" + "92d3e329-8082-4aab-9bed-3546df6b27c5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/8ef376a91e8340069bd03d56ad4c1b3f\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082066,\r\n \"updated\": 1477082066\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecretversionstest/1d4962b1ed784dbf899f3332e4768b70\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188979,\r\n \"updated\": 1482188979\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "206" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:26 GMT" + "Mon, 19 Dec 2016 23:09:39 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "98162876-9fe9-428b-8ba3-564eac88a723" + "1f1d1303-9d9a-4b51-b447-2a741dca259f" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,8 +71,8 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/listsecretversionstest?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL2xpc3RzZWNyZXR2ZXJzaW9uc3Rlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/listsecretversionstest?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"mysecretvalue\"\r\n}", "RequestHeaders": { @@ -82,16 +83,17 @@ "32" ], "x-ms-client-request-id": [ - "8d7bea90-a20c-47ec-9b21-d18d90be1f08" + "78f86393-f38e-49d7-9f99-58cdbf88b5fa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/b8c456e9612e4990aaabbcde2d93c81c\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082067,\r\n \"updated\": 1477082067\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecretversionstest/c0ea8a0407604b1e989a96cd6b9abfe0\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188979,\r\n \"updated\": 1482188979\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "206" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:26 GMT" + "Mon, 19 Dec 2016 23:09:39 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "f106509c-e76a-49bb-9433-954469fa4d70" + "9d8cdc51-08c1-4717-870a-f7eeefa674fd" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,8 +141,8 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/listsecretversionstest?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL2xpc3RzZWNyZXR2ZXJzaW9uc3Rlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/listsecretversionstest?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"mysecretvalue\"\r\n}", "RequestHeaders": { @@ -151,16 +153,17 @@ "32" ], "x-ms-client-request-id": [ - "2127e651-3c6c-4b14-a716-f779669b28ff" + "bee3c628-9864-40c6-8497-0ba1b313ad48" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/28a525f8dac64f57ab60939fd704c396\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082067,\r\n \"updated\": 1477082067\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecretversionstest/48de2545db17451d8cb1991a805ee753\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188979,\r\n \"updated\": 1482188979\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "206" @@ -175,7 +178,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:26 GMT" + "Mon, 19 Dec 2016 23:09:39 GMT" ], "Pragma": [ "no-cache" @@ -184,13 +187,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "97b895b3-63a0-47a2-9852-e23af014b1ba" + "834d94fa-4175-4b76-95af-b513e25f818e" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -208,22 +211,23 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/listsecretversionstest/versions?maxresults=1&api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL2xpc3RzZWNyZXR2ZXJzaW9uc3Rlc3QvdmVyc2lvbnM/bWF4cmVzdWx0cz0xJmFwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/secrets/listsecretversionstest/versions?maxresults=1&api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9tYXhyZXN1bHRzPTEmYXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8a40f38-8712-4049-a974-e8dfef021eec" + "82ba414a-842d-410e-8cff-51e81e8287cd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/0e86cf1594fc494991e967c465531552\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477070405,\r\n \"updated\": 1477070405\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpFd09EUkROekl4TXpkRlJEUTVRVFJDUkVJeU1rRXhPRVF4UlRRM01rWXpJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecretversionstest/11a536561da34d6b8b452d880df58f3a\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1481851699,\r\n \"updated\": 1481851699\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpGRU5EazJNa0l4UlVRM09EUkVRa1k0T1RsR016TXpNa1UwTnpZNFFqY3dJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "585" @@ -238,7 +242,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:26 GMT" + "Mon, 19 Dec 2016 23:09:39 GMT" ], "Pragma": [ "no-cache" @@ -247,13 +251,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "aafc18ac-0937-4a10-94d0-56eaf3f45912" + "b97c5e20-7d25-4d77-884f-1dc842a4b3ed" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -271,22 +275,23 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpFd09EUkROekl4TXpkRlJEUTVRVFJDUkVJeU1rRXhPRVF4UlRRM01rWXpJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUSHBGZDA5RVVrUk9la2w0VFhwa1JsSkVVVFZSVkZKRFVrVkplVTFyUlhoUFJWRjRVbFJSTTAxcldYcEpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", + "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpGRU5EazJNa0l4UlVRM09EUkVRa1k0T1RsR016TXpNa1UwTnpZNFFqY3dJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUSHBHUlU1RWF6Sk5hMGw0VWxWUk0wOUVVa1ZSYTFrMFQxUnNSMDE2VFhwTmExVXdUbnBaTkZGcVkzZEpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f96fc021-2d36-4fa3-982b-f1f571247baf" + "26a94f8a-e9e4-42ec-a221-c48376a258fb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/1084c72137ed49a4bdb22a18d1e472f3\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477015767,\r\n \"updated\": 1477015767\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpJM01qTkVSVGhCUlRZelFqUkNRamM1TlVORE9EQkNOa0kxTTBWQ05URTFJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecretversionstest/1d4962b1ed784dbf899f3332e4768b70\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188979,\r\n \"updated\": 1482188979\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpKRU5ERTFSakpCTTBNd09EUkdRelpDUmtFeU5qTkdORGszTWpFME0wRXpJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "585" @@ -301,7 +306,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:26 GMT" + "Mon, 19 Dec 2016 23:09:39 GMT" ], "Pragma": [ "no-cache" @@ -310,13 +315,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "7edbc4e1-967b-4fca-988e-85ce1b223fcd" + "e4a5b99a-152b-42d3-9fa0-d077d44340f1" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -334,22 +339,23 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpJM01qTkVSVGhCUlRZelFqUkNRamM1TlVORE9EQkNOa0kxTTBWQ05URTFJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUSHBKTTAxcVRrVlNWR2hDVWxSWmVsRnFVa05SYW1NMVRsVk9SRTlFUWtOT2Ewa3hUVEJXUTA1VVJURkpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", + "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpKRU5ERTFSakpCTTBNd09EUkdRelpDUmtFeU5qTkdORGszTWpFME0wRXpJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUSHBLUlU1RVJURlNha3BDVFRCTmQwOUVVa2RSZWxwRFVtdEZlVTVxVGtkT1JHc3pUV3BGTUUwd1JYcEpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f82551b5-eaf8-4579-8700-47a3c76dffb4" + "0e7adab6-b579-451a-a8a2-54c74968ef84" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/2723de8ae63b4bb795cc80b6b53eb515\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477015767,\r\n \"updated\": 1477015767\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpJNFFUVXlOVVk0UkVGRE5qUkdOVGRCUWpZd09UTTVSa1EzTURSRE16azJJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecretversionstest/2d415f2a3c084fc6bfa263f4972143a3\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1481851699,\r\n \"updated\": 1481851699\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpRNFJFVXlOVFExUkVJeE56UTFNVVE0UTBJeE9Ua3hRVGd3TlVWRk56VXpJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "585" @@ -364,7 +370,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:26 GMT" + "Mon, 19 Dec 2016 23:09:39 GMT" ], "Pragma": [ "no-cache" @@ -373,13 +379,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "79051a1d-293a-4776-88f1-d0f315c202e1" + "6503ad1c-4e9f-4887-89b0-c8c2380dcee4" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -397,22 +403,23 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpJNFFUVXlOVVk0UkVGRE5qUkdOVGRCUWpZd09UTTVSa1EzTURSRE16azJJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUSHBKTkZGVVZYbE9WVmswVWtWR1JFNXFVa2RPVkdSQ1VXcFpkMDlVVFRWU2ExRXpUVVJTUkUxNmF6SkpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", + "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpRNFJFVXlOVFExUkVJeE56UTFNVVE0UTBJeE9Ua3hRVGd3TlVWRk56VXpJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUSHBSTkZKRlZYbE9WRkV4VWtWSmVFNTZVVEZOVlZFMFVUQkplRTlVYTNoUlZHZDNUbFZXUms1NlZYcEpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9f2bd84-b751-481f-bf68-aa934d0a5105" + "158183be-ff1e-4e2e-8a55-56e0d2e076aa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/28a525f8dac64f57ab60939fd704c396\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082067,\r\n \"updated\": 1477082067\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpNMFJEYzFNRUk0TURJMFJEUTVPVE5CT1VVMVF6TXdRVUZDUVVSQk1FWTNJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecretversionstest/48de2545db17451d8cb1991a805ee753\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188979,\r\n \"updated\": 1482188979\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpZelJVWkdRVFl5UVVFeU16UTFNalJCUkRKRU5qYzVORUUyT1ROQ1FqTXhJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "585" @@ -427,7 +434,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:26 GMT" + "Mon, 19 Dec 2016 23:09:39 GMT" ], "Pragma": [ "no-cache" @@ -436,13 +443,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "725ac188-70ff-4f78-9f06-630d1d16d312" + "4679996d-8107-48ec-98e2-f7084678948c" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -460,22 +467,23 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpNMFJEYzFNRUk0TURJMFJEUTVPVE5CT1VVMVF6TXdRVUZDUVVSQk1FWTNJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUSHBOTUZKRVl6Rk5SVWswVFVSSk1GSkVVVFZQVkU1Q1QxVlZNVkY2VFhkUlZVWkRVVlZTUWsxRldUTkpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", + "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpZelJVWkdRVFl5UVVFeU16UTFNalJCUkRKRU5qYzVORUUyT1ROQ1FqTXhJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUSHBaZWxKVldrZFJWRmw1VVZWRmVVMTZVVEZOYWxKQ1VrUktSVTVxWXpWT1JVVXlUMVJPUTFGcVRYaEpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3aabd148-2793-4531-8dfa-500bc315ccd0" + "cd91daaa-da79-4490-ac68-bab252ebea3c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/34d750b8024d4993a9e5c30aabada0f7\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477070262,\r\n \"updated\": 1477070262\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpRd01qTTRSa0ZFUkRRMlF6UkdSVFpCTVRZM1JrSkNSVU5DT1RKQlFqUXlJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecretversionstest/63effa62aa234524ad2d6794a693bb31\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1481851698,\r\n \"updated\": 1481851698\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTDBNd1JVRTRRVEEwTURjMk1EUkNNVVU1T0RsQk9UWkRSRFpDT1VGQ1JrVXdJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "585" @@ -490,7 +498,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:26 GMT" + "Mon, 19 Dec 2016 23:09:39 GMT" ], "Pragma": [ "no-cache" @@ -499,13 +507,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "b13ec99f-6c20-4819-ba88-bb25714dfe0e" + "26ea2ea8-cc9f-4602-b9ac-eaa3581a9460" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -523,400 +531,23 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpRd01qTTRSa0ZFUkRRMlF6UkdSVFpCTVRZM1JrSkNSVU5DT1RKQlFqUXlJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUSHBSZDAxcVRUUlNhMFpGVWtSUk1sRjZVa2RTVkZwQ1RWUlpNMUpyU2tOU1ZVNURUMVJLUWxGcVVYbEpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", + "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTDBNd1JVRTRRVEEwTURjMk1EUkNNVVU1T0RsQk9UWkRSRFpDT1VGQ1JrVXdJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUREJOZDFKVlJUUlJWRUV3VFVSak1rMUVVa05OVlZVMVQwUnNRazlVV2tSU1JGcERUMVZHUTFKclZYZEpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c89eac2-c578-4ad1-a22e-c6533ad7aae7" + "f7f83427-6758-4ba8-8dfc-8538591a2236" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/40238fadd46c4fe6a167fbbecb92ab42\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477070262,\r\n \"updated\": 1477070262\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpRME5rWTBSRVkzUkVaRU5EUXdNams0UWpSR056azNNMFV5UWtaQ09UTkZJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "585" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 21 Oct 2016 20:34:26 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "westus" - ], - "x-ms-request-id": [ - "26409045-4703-4c61-86d2-c81a7dbba5c2" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.781" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpRME5rWTBSRVkzUkVaRU5EUXdNams0UWpSR056azNNMFV5UWtaQ09UTkZJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUSHBSTUU1cldUQlNSVmt6VWtWYVJVNUVVWGROYW1zMFVXcFNSMDU2YXpOTk1GVjVVV3RhUTA5VVRrWkpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8a6d1a11-aa7d-4b34-86d8-345923d8e335" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/446f4df7dfd440298b4f7973e2bfb93e\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477070262,\r\n \"updated\": 1477070262\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpVd05EVkdOakJFT1RNd09EUXpOVGM0UlRNek5VSTVOVVl5UWtFeE16VkVJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "585" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 21 Oct 2016 20:34:26 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "westus" - ], - "x-ms-request-id": [ - "34b3adf6-f82b-4c39-bdd4-28808ac94897" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.781" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpVd05EVkdOakJFT1RNd09EUXpOVGM0UlRNek5VSTVOVVl5UWtFeE16VkVJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUSHBWZDA1RVZrZE9ha0pGVDFSTmQwOUVVWHBPVkdNMFVsUk5lazVWU1RWT1ZWbDVVV3RGZUUxNlZrVkpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d7675b29-014e-409a-a4b8-045198f69d83" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/5045f60d930843578e335b95f2ba135d\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477015768,\r\n \"updated\": 1477015768\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpoRlJqTTNOa0U1TVVVNE16UXdNRFk1UWtRd00wUTFOa0ZFTkVNeFFqTkdJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "585" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 21 Oct 2016 20:34:27 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "westus" - ], - "x-ms-request-id": [ - "fd2ce9ad-0b29-4587-9643-8efbe6db76af" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.781" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTHpoRlJqTTNOa0U1TVVVNE16UXdNRFk1UWtRd00wUTFOa0ZFTkVNeFFqTkdJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUSHBvUmxKcVRUTk9hMFUxVFZWVk5FMTZVWGROUkZrMVVXdFJkMDB3VVRGT2EwWkZUa1ZOZUZGcVRrZEpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bc20222e-3770-41ca-b762-ee6bef1d5ac2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/8ef376a91e8340069bd03d56ad4c1b3f\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082066,\r\n \"updated\": 1477082066\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTDBJNFF6UTFOa1U1TmpFeVJUUTVPVEJCUVVGQ1FrTkVSVEpFT1RORE9ERkRJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "585" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 21 Oct 2016 20:34:27 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "westus" - ], - "x-ms-request-id": [ - "2fd69ad9-2cd4-4c57-a8ae-1f0864bf5379" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.781" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTDBJNFF6UTFOa1U1TmpFeVJUUTVPVEJCUVVGQ1FrTkVSVEpFT1RORE9ERkRJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUREJKTkZGNlVURk9hMVUxVG1wRmVWSlVVVFZQVkVKQ1VWVkdRMUZyVGtWU1ZFcEZUMVJPUkU5RVJrUkpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c51c2fef-6ef3-4007-8645-5bfda5b6b06e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/b8c456e9612e4990aaabbcde2d93c81c\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082067,\r\n \"updated\": 1477082067\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTDBNeVFUVTVRVEJDUXpsR01UUTFOREZCT0RnMk4wVkdPVUkyTlROR1EwSTBJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "585" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 21 Oct 2016 20:34:27 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "westus" - ], - "x-ms-request-id": [ - "d04393a3-1d4b-4f23-9fb8-95cf68f85879" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.781" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTDBNeVFUVTVRVEJDUXpsR01UUTFOREZCT0RnMk4wVkdPVUkyTlROR1EwSTBJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUREJOZVZGVVZUVlJWRUpEVVhwc1IwMVVVVEZPUkVaQ1QwUm5NazR3VmtkUFZVa3lUbFJPUjFFd1NUQkpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "98e2713d-c9a3-4657-bfe7-a661bb1644a0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/c2a59a0bc9f14541a8867ef9b653fcb4\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477070405,\r\n \"updated\": 1477070405\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTDBWR09EWXhRemcxUTBKRE9EUkNOekpCTURFeE9FSTVRVEJGUlRZeVJrVTJJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "585" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 21 Oct 2016 20:34:27 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "westus" - ], - "x-ms-request-id": [ - "449a7215-08bb-41a8-a884-1b56655c9cf5" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.781" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/secrets/listsecretversionstest/versions?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExNDQhTURBd01EWXlJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VTDBWR09EWXhRemcxUTBKRE9EUkNOekpCTURFeE9FSTVRVEJGUlRZeVJrVTJJVEF3TURBeU9DRTVPVGs1TFRFeUxUTXhWREl6T2pVNU9qVTVMams1T1RrNU9UbGFJUS0tIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHZlcnNpb25zdGVzdC92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiRza2lwdG9rZW49ZXlKT1pYaDBUV0Z5YTJWeUlqb2lNaUV4TkRRaFRVUkJkMDFFV1hsSldFNXNXVE5LYkdSRE9VMVRWazVWVlRCV1JGVnJWbFZXYTFaVFZUQnNVRlJzVGxWU1ZrNVZUREJXUjA5RVdYaFJlbWN4VVRCS1JFOUVVa05PZWtwQ1RVUkZlRTlGU1RWUlZFSkdVbFJaZVZKclZUSkpWRUYzVFVSQmVVOURSVFZQVkdzMVRGUkZlVXhVVFhoV1JFbDZUMnBWTlU5cVZUVk1hbXMxVDFSck5VOVViR0ZKVVMwdElpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1748f6c3-59ad-4539-a80d-8193460f7f39" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest/ef861c85cbc84b72a0118b9a0ee62fe6\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477070405,\r\n \"updated\": 1477070405\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecretversionstest/c0ea8a0407604b1e989a96cd6b9abfe0\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188979,\r\n \"updated\": 1482188979\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { "Content-Length": [ "210" @@ -931,7 +562,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:27 GMT" + "Mon, 19 Dec 2016 23:09:40 GMT" ], "Pragma": [ "no-cache" @@ -940,13 +571,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "7bbb7e32-8623-4b96-86dc-adc648b71df0" + "35505647-cca0-40bc-aa91-9b5b35ae644c" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -966,8 +597,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListSecretsTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListSecretsTest.json index ef3d3a4d4441..3d003504d254 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListSecretsTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListSecretsTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//secrets/listsecrettest0?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL2xpc3RzZWNyZXR0ZXN0MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/listsecrettest0?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHRlc3QwP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\"\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "63" ], "x-ms-client-request-id": [ - "1b6db174-e93c-45b3-aa60-d1ccc851258f" + "d5485a29-cb69-4e4f-87b1-757e9c0bd1d1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecrettest0/2d2f781bff174fa5b0c5abda67c471a9\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082128,\r\n \"updated\": 1477082128\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecrettest0/c735224780b44041aa55358b6aa4389a\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189047,\r\n \"updated\": 1482189047\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "225" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:28 GMT" + "Mon, 19 Dec 2016 23:10:46 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "ec991e98-db85-4f39-b060-c8401a1a6852" + "e991212a-12cd-4dde-919a-818fc9f5647a" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,8 +71,8 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/listsecrettest1?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL2xpc3RzZWNyZXR0ZXN0MT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/listsecrettest1?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHRlc3QxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\"\r\n}", "RequestHeaders": { @@ -82,16 +83,17 @@ "63" ], "x-ms-client-request-id": [ - "9f3a19af-ed97-49cd-a321-059b89ddcf7f" + "81178823-07f9-4602-8b79-4b70c172eabf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecrettest1/b4b0e7f53b7c409bbc3a374fde6a42cc\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082129,\r\n \"updated\": 1477082129\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecrettest1/f10d281c94354ee2a089228117ae986b\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189047,\r\n \"updated\": 1482189047\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "225" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:28 GMT" + "Mon, 19 Dec 2016 23:10:47 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "dc9387d3-061b-490d-bf67-9a8c6b172da3" + "0270c0dc-c38e-4b91-9db6-925d018d2ec3" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,8 +141,8 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/listsecrettest2?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL2xpc3RzZWNyZXR0ZXN0Mj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/listsecrettest2?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvbGlzdHNlY3JldHRlc3QyP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\"\r\n}", "RequestHeaders": { @@ -151,16 +153,17 @@ "63" ], "x-ms-client-request-id": [ - "1ef7a94c-e9b4-4fa5-980e-4aa316c3b3e4" + "3e679441-60f7-48c3-bec4-07d1a75d12d0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecrettest2/dafb3bd5d3d749f491e1d547150284a1\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082129,\r\n \"updated\": 1477082129\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecrettest2/96157ee62b2845fab6f57de806782617\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189048,\r\n \"updated\": 1482189048\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "225" @@ -175,7 +178,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:28 GMT" + "Mon, 19 Dec 2016 23:10:47 GMT" ], "Pragma": [ "no-cache" @@ -184,13 +187,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "2e83a8f1-2632-4241-979f-073652b31a7d" + "03847e47-2ab7-486f-a68d-4ba0f4efe39b" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -208,22 +211,23 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets?maxresults=1&api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzP21heHJlc3VsdHM9MSZhcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets?maxresults=1&api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHM/bWF4cmVzdWx0cz0xJmFwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6819ec9d-0d6b-4ad5-8502-0c198c89de8b" + "714b9314-4cd0-4167-b7db-91f2d23e4aa6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecrettest0\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082128,\r\n \"updated\": 1477082128\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4OCFNREF3TURJeUlYTmxZM0psZEM5TVNWTlVVMFZEVWtWVVZFVlRWREVoTURBd01ESTRJVEl3TVRZdE1UQXRNakZVTVRjNk1UZzZNemN1T1RFME9UQXhNbG9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecrettest0\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189047,\r\n \"updated\": 1482189047\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4OCFNREF3TURJeUlYTmxZM0psZEM5TVNWTlVVMFZEVWtWVVZFVlRWREVoTURBd01ESTRJVEl3TVRZdE1USXRNVGxVTWpNNk1UQTZORFV1T0RneE9ERXhNRm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "463" @@ -238,7 +242,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:29 GMT" + "Mon, 19 Dec 2016 23:10:47 GMT" ], "Pragma": [ "no-cache" @@ -247,13 +251,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "4e98d4d6-9679-4415-8006-5a3bb732fd01" + "4bf99215-c251-4ad7-9b7e-f644b4ff16ac" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -271,22 +275,23 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4OCFNREF3TURJeUlYTmxZM0psZEM5TVNWTlVVMFZEVWtWVVZFVlRWREVoTURBd01ESTRJVEl3TVRZdE1UQXRNakZVTVRjNk1UZzZNemN1T1RFME9UQXhNbG9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNE9DRk5SRUYzVFVSSmVVbFlUbXhaTTBwc1pFTTVUVk5XVGxWVk1GWkVWV3RXVlZaRlZsUldSRVZvVFVSQmQwMUVTVFJKVkVsM1RWUlpkRTFVUVhSTmFrWlZUVlJqTmsxVVp6Wk5lbU4xVDFSRk1FOVVRWGhOYkc5b0lpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", + "RequestUri": "/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4OCFNREF3TURJeUlYTmxZM0psZEM5TVNWTlVVMFZEVWtWVVZFVlRWREVoTURBd01ESTRJVEl3TVRZdE1USXRNVGxVTWpNNk1UQTZORFV1T0RneE9ERXhNRm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", + "EncodedRequestUri": "L3NlY3JldHM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNE9DRk5SRUYzVFVSSmVVbFlUbXhaTTBwc1pFTTVUVk5XVGxWVk1GWkVWV3RXVlZaRlZsUldSRVZvVFVSQmQwMUVTVFJKVkVsM1RWUlpkRTFVU1hSTlZHeFZUV3BOTmsxVVFUWk9SRlYxVDBSbmVFOUVSWGhOUm05b0lpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d738f295-973b-4daa-bc85-2f0935ab36f7" + "b5b3b28e-0f72-4864-a8b6-bedb519f6be7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecrettest1\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082129,\r\n \"updated\": 1477082129\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4OCFNREF3TURJeUlYTmxZM0psZEM5TVNWTlVVMFZEVWtWVVZFVlRWREloTURBd01ESTRJVEl3TVRZdE1UQXRNakZVTVRjNk1UZzZNemd1TXpRd09USTBNMW9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecrettest1\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189047,\r\n \"updated\": 1482189047\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4OCFNREF3TURJeUlYTmxZM0psZEM5TVNWTlVVMFZEVWtWVVZFVlRWREloTURBd01ESTRJVEl3TVRZdE1USXRNVGxVTWpNNk1UQTZORFl1TURRek9ESXhNRm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "463" @@ -301,7 +306,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:29 GMT" + "Mon, 19 Dec 2016 23:10:47 GMT" ], "Pragma": [ "no-cache" @@ -310,13 +315,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "f1a13142-077f-4ad9-98d7-ad0d43a6e598" + "3965b012-de2e-431a-894a-5b3088a015fb" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -334,22 +339,23 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4OCFNREF3TURJeUlYTmxZM0psZEM5TVNWTlVVMFZEVWtWVVZFVlRWREloTURBd01ESTRJVEl3TVRZdE1UQXRNakZVTVRjNk1UZzZNemd1TXpRd09USTBNMW9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNE9DRk5SRUYzVFVSSmVVbFlUbXhaTTBwc1pFTTVUVk5XVGxWVk1GWkVWV3RXVlZaRlZsUldSRWxvVFVSQmQwMUVTVFJKVkVsM1RWUlpkRTFVUVhSTmFrWlZUVlJqTmsxVVp6Wk5lbWQxVFhwUmQwOVVTVEJOTVc5b0lpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", + "RequestUri": "/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE4OCFNREF3TURJeUlYTmxZM0psZEM5TVNWTlVVMFZEVWtWVVZFVlRWREloTURBd01ESTRJVEl3TVRZdE1USXRNVGxVTWpNNk1UQTZORFl1TURRek9ESXhNRm9oIiwiVGFyZ2V0TG9jYXRpb24iOjB9&maxresults=1", + "EncodedRequestUri": "L3NlY3JldHM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNE9DRk5SRUYzVFVSSmVVbFlUbXhaTTBwc1pFTTVUVk5XVGxWVk1GWkVWV3RXVlZaRlZsUldSRWxvVFVSQmQwMUVTVFJKVkVsM1RWUlpkRTFVU1hSTlZHeFZUV3BOTmsxVVFUWk9SRmwxVFVSUmVrOUVTWGhOUm05b0lpd2lWR0Z5WjJWMFRHOWpZWFJwYjI0aU9qQjkmbWF4cmVzdWx0cz0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa2bae43-ca02-4f8a-9f7f-2aaca99808e7" + "8a1e9934-5b72-45cc-b2ba-5d5c8086314e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecrettest2\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082129,\r\n \"updated\": 1477082129\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMDAhTURBd01ESTVJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VSVRBd01EQXlPQ0V5TURFMkxURXdMVEl4VkRBeU9qQTVPakkzTGpBMk16UTROamRhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"contentType\": \"plainText\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecrettest2\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482189048,\r\n \"updated\": 1482189048\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMDAhTURBd01ESTVJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VSVRBd01EQXlPQ0V5TURFMkxURXlMVEUyVkRBeE9qSTRPakU1TGpRNE9URTNOREZhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "481" @@ -364,7 +370,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:29 GMT" + "Mon, 19 Dec 2016 23:10:47 GMT" ], "Pragma": [ "no-cache" @@ -373,13 +379,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "2383b0b3-0171-4a60-b32c-b5da25a96c2c" + "16922540-0a7d-4c21-957d-8c416b911dc1" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -397,25 +403,26 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMDAhTURBd01ESTVJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VSVRBd01EQXlPQ0V5TURFMkxURXdMVEl4VkRBeU9qQTVPakkzTGpBMk16UTROamRhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFeE1EQWhUVVJCZDAxRVNUVkpXRTVzV1ROS2JHUkRPVTFUVms1VlZUQldSRlZyVmxWV2ExWlRWVEJzVUZSc1RsVlNWazVWU1ZSQmQwMUVRWGxQUTBWNVRVUkZNa3hVUlhkTVZFbDRWa1JCZVU5cVFUVlBha2t6VEdwQk1rMTZVVFJPYW1SaFNWRXRMU0lzSWxSaGNtZGxkRXh2WTJGMGFXOXVJam93ZlEmbWF4cmVzdWx0cz0x", + "RequestUri": "/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiExMDAhTURBd01ESTVJWE5sWTNKbGRDOU1TVk5VVTBWRFVrVlVWa1ZTVTBsUFRsTlVSVk5VSVRBd01EQXlPQ0V5TURFMkxURXlMVEUyVkRBeE9qSTRPakU1TGpRNE9URTNOREZhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", + "EncodedRequestUri": "L3NlY3JldHM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFeE1EQWhUVVJCZDAxRVNUVkpXRTVzV1ROS2JHUkRPVTFUVms1VlZUQldSRlZyVmxWV2ExWlRWVEJzVUZSc1RsVlNWazVWU1ZSQmQwMUVRWGxQUTBWNVRVUkZNa3hVUlhsTVZFVXlWa1JCZUU5cVNUUlBha1UxVEdwUk5FOVVSVE5PUkVaaFNWRXRMU0lzSWxSaGNtZGxkRXh2WTJGMGFXOXVJam93ZlEmbWF4cmVzdWx0cz0x", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd637e88-725a-4d41-a129-3065d9e3a79e" + "bf7bd7b4-49d7-4a6a-9e69-6ad873b28fa1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/listsecretversionstest\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082067,\r\n \"updated\": 1477082067\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5MiFNREF3TURJMUlYTmxZM0psZEM5TVNWTlVWa1ZTVTBsUFRsTkRSVkpVTURFaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/listsecretversionstest\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188979,\r\n \"updated\": 1482188979\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5NiFNREF3TURJM0lYTmxZM0psZEM5TVQwNUhVMFZNUmxOSlIwNUZSRU5GVWxRd01TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "450" + "455" ], "Content-Type": [ "application/json; charset=utf-8" @@ -427,7 +434,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:29 GMT" + "Mon, 19 Dec 2016 23:10:47 GMT" ], "Pragma": [ "no-cache" @@ -436,13 +443,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "8702df09-adcd-4ea4-8ff8-5bacfd5e598f" + "44a3290d-91e7-479f-8e38-e9f50ad82690" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -460,22 +467,23 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5MiFNREF3TURJMUlYTmxZM0psZEM5TVNWTlVWa1ZTVTBsUFRsTkRSVkpVTURFaE1EQXdNREk0SVRrNU9Ua3RNVEl0TXpGVU1qTTZOVGs2TlRrdU9UazVPVGs1T1ZvaCIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1", - "EncodedRequestUri": "L3NlY3JldHM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNU1pRk5SRUYzVFVSSk1VbFlUbXhaTTBwc1pFTTVUVk5XVGxWV2ExWlRWVEJzVUZSc1RrUlNWa3BWVFVSRmFFMUVRWGROUkVrMFNWUnJOVTlVYTNSTlZFbDBUWHBHVlUxcVRUWk9WR3MyVGxScmRVOVVhelZQVkdzMVQxWnZhQ0lzSWxSaGNtZGxkRXh2WTJGMGFXOXVJam93ZlEmbWF4cmVzdWx0cz0x", + "RequestUri": "/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5NiFNREF3TURJM0lYTmxZM0psZEM5TVQwNUhVMFZNUmxOSlIwNUZSRU5GVWxRd01TRXdNREF3TWpnaE9UazVPUzB4TWkwek1WUXlNem8xT1RvMU9TNDVPVGs1T1RrNVdpRS0iLCJUYXJnZXRMb2NhdGlvbiI6MH0&maxresults=1", + "EncodedRequestUri": "L3NlY3JldHM/YXBpLXZlcnNpb249MjAxNi0xMC0wMSYkc2tpcHRva2VuPWV5Sk9aWGgwVFdGeWEyVnlJam9pTWlFNU5pRk5SRUYzVFVSSk0wbFlUbXhaTTBwc1pFTTVUVlF3TlVoVk1GWk5VbXhPU2xJd05VWlNSVTVHVld4UmQwMVRSWGROUkVGM1RXcG5hRTlVYXpWUFV6QjRUV2t3ZWsxV1VYbE5lbTh4VDFSdk1VOVRORFZQVkdzMVQxUnJOVmRwUlMwaUxDSlVZWEpuWlhSTWIyTmhkR2x2YmlJNk1IMCZtYXhyZXN1bHRzPTE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7162a829-cabd-47a1-87f8-0db00a67abc1" + "ceaf8a90-cb3e-4e92-b1dc-b52f88344cad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"contentType\": \"plaintext\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/secretwithextendedattribs\",\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1477125282,\r\n \"created\": 1477082082,\r\n \"updated\": 1477082082\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1020.vault.azure.net:443/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5MiFNREF3TURJeklYTmxZM0psZEM5VFJVeEdVMGxIVGtWRVEwVlNWREF4SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"contentType\": \"plaintext\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/secretwithextendedattribs\",\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1482232197,\r\n \"created\": 1482188997,\r\n \"updated\": 1482188997\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://testvault1021.vault.azure.net:443/secrets?api-version=2016-10-01&$skiptoken=eyJOZXh0TWFya2VyIjoiMiE5MiFNREF3TURJeklYTmxZM0psZEM5VFJVeEdVMGxIVGtWRVEwVlNWREF4SVRBd01EQXlPQ0U1T1RrNUxURXlMVE14VkRJek9qVTVPalU1TGprNU9UazVPVGxhSVEtLSIsIlRhcmdldExvY2F0aW9uIjowfQ&maxresults=1\"\r\n}", "ResponseHeaders": { "Content-Length": [ "528" @@ -490,7 +498,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:29 GMT" + "Mon, 19 Dec 2016 23:10:47 GMT" ], "Pragma": [ "no-cache" @@ -499,13 +507,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "afc17af0-f804-407e-adf4-416a8b6130f4" + "775e4615-7370-471f-bf9f-05f816835276" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -529,13 +537,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "060c2b8b-ba3c-453e-96c1-dffec1e5e490" + "5a86fc82-2aef-428e-947c-53d29ebe9267" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", @@ -553,7 +562,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:29 GMT" + "Mon, 19 Dec 2016 23:10:47 GMT" ], "Pragma": [ "no-cache" @@ -562,13 +571,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "20f58fad-7061-4a0b-bba9-e62686393f2f" + "f325d330-b6d6-47d5-a44b-c966de01c795" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -588,8 +597,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretCreateDeleteRecoverPurgeTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretCreateDeleteRecoverPurgeTest.json new file mode 100644 index 000000000000..d1f0e85145ee --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretCreateDeleteRecoverPurgeTest.json @@ -0,0 +1,1482 @@ +{ + "Entries": [ + { + "RequestUri": "/secrets/SecretCreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvU2VjcmV0Q3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"value\": \"mysecretvalue\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ], + "x-ms-client-request-id": [ + "92faf20d-5370-427c-8161-2eb3448e7bb4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/SecretCreateDeleteRecoverPurgeTest/735cc9d2c71742ab99e88f2dea2b5afa\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186447,\r\n \"updated\": 1482186447\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:27:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "edabe0cd-a252-4f68-ae81-b240ba2ce4dd" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/secrets/SecretCreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvU2VjcmV0Q3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "acb39d41-cd9d-4b94-911e-6b5452c9c0a3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/SecretCreateDeleteRecoverPurgeTest\",\r\n \"deletedDate\": 1482186447,\r\n \"scheduledPurgeDate\": 1489962447,\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/SecretCreateDeleteRecoverPurgeTest/735cc9d2c71742ab99e88f2dea2b5afa\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186447,\r\n \"updated\": 1482186447\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:27:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "196cdd8c-970c-4e3b-a5ac-8c9c522ffe1e" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/secrets/SecretCreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvU2VjcmV0Q3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70620793-907e-4198-9270-1b0903531c81" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/SecretCreateDeleteRecoverPurgeTest\",\r\n \"deletedDate\": 1482186497,\r\n \"scheduledPurgeDate\": 1489962497,\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/SecretCreateDeleteRecoverPurgeTest/735cc9d2c71742ab99e88f2dea2b5afa\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186447,\r\n \"updated\": 1482186447\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "14f166d0-6a53-4a26-8edb-556f7ff57ae5" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/secrets/SecretCreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvU2VjcmV0Q3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad286506-c4eb-49aa-beef-88736bb35b70" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Secret not found: SecretCreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:27:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "5c629626-b305-4730-98ae-2c0dc458989e" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/secrets/SecretCreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvU2VjcmV0Q3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd4f58cd-969c-461a-8c70-0832bfd80c32" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Secret not found: SecretCreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:27:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "37d177ec-2fb1-4d5c-9c4b-579439b8c144" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/secrets/SecretCreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvU2VjcmV0Q3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ed9bfb1-c831-40af-b27a-7093d3918feb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Secret not found: SecretCreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:27:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "cccacc6c-0c54-4421-8632-b8be3f7f0fd8" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/secrets/SecretCreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvU2VjcmV0Q3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4640f3b-7c25-4c09-b7df-b015f0d1178a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Secret not found: SecretCreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:27:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "272bad70-9dd1-447e-81c6-41ab7f102f94" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/secrets/SecretCreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvU2VjcmV0Q3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c739991-6686-44a2-bdce-126099547178" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/SecretCreateDeleteRecoverPurgeTest/735cc9d2c71742ab99e88f2dea2b5afa\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186447,\r\n \"updated\": 1482186447\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "5ae060f4-f7ba-4c9f-ae8b-1519aa3fe270" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/secrets/SecretCreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvU2VjcmV0Q3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56a553bf-52b5-4088-b2c5-294f5c70edca" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/SecretCreateDeleteRecoverPurgeTest/735cc9d2c71742ab99e88f2dea2b5afa\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186447,\r\n \"updated\": 1482186447\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "6096b5a8-ebab-49e5-8298-6b048ab2c7e2" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/secrets/SecretCreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvU2VjcmV0Q3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef01a165-f4d0-4b20-808e-28492332fc64" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/SecretCreateDeleteRecoverPurgeTest/735cc9d2c71742ab99e88f2dea2b5afa\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186447,\r\n \"updated\": 1482186447\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "cecf0b96-a17d-4f7d-bcdd-64c88045c09b" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/secrets/SecretCreateDeleteRecoverPurgeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvU2VjcmV0Q3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44d20c2e-3636-4fe8-8fae-7751e1e161e4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Secret not found: SecretCreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "100" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "2895b1cd-a3f5-470f-84bf-ea3ddbdbc81a" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/SecretCreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL1NlY3JldENyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47375c24-c6d5-4c43-9f48-17f1a1546d0c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: SecretCreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:27:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "4e01041e-e1a7-4390-9bf4-bbc1cbbd029a" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/SecretCreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL1NlY3JldENyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83dd7ec7-d5c3-4ad4-a98c-6f7da6fd532b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: SecretCreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:27:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "9736d605-b3d6-453a-98e6-b3e457c7a0fc" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/SecretCreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL1NlY3JldENyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7a7f511-e703-4d2a-8153-b9b32f74808a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: SecretCreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:27:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "c924a2e1-2f22-4a8c-a341-cfb49dfdb839" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/SecretCreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL1NlY3JldENyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b013c21a-070a-47de-b849-8476b4a221ce" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/SecretCreateDeleteRecoverPurgeTest\",\r\n \"deletedDate\": 1482186447,\r\n \"scheduledPurgeDate\": 1489962447,\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/SecretCreateDeleteRecoverPurgeTest/735cc9d2c71742ab99e88f2dea2b5afa\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186447,\r\n \"updated\": 1482186447\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:27:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "729d9f97-4ae3-4954-b9ad-185e5b11e681" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets/SecretCreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL1NlY3JldENyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e4b9843-5d12-4f7a-867c-f6242820e3e7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: SecretCreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "0adca316-ff3a-45a2-a34a-e426889bec3e" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/SecretCreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL1NlY3JldENyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6769db4-f84b-42be-b2cd-ce85b833c9ef" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: SecretCreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "9ef5da73-38ea-4611-be89-242f147df50b" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/SecretCreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL1NlY3JldENyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "097a97db-d229-4e4b-b86f-c93010e2f324" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: SecretCreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "24dc2185-f50a-4f21-9a8c-b36a66d364c8" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/SecretCreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL1NlY3JldENyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8138cca-0864-483b-a7bb-4f8f37c0495a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedsecrets/SecretCreateDeleteRecoverPurgeTest\",\r\n \"deletedDate\": 1482186497,\r\n \"scheduledPurgeDate\": 1489962497,\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/SecretCreateDeleteRecoverPurgeTest/735cc9d2c71742ab99e88f2dea2b5afa\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186447,\r\n \"updated\": 1482186447\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "6c77899d-d3df-4909-a914-2dcab2d4c99e" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets/SecretCreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL1NlY3JldENyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da3a8429-5c82-4d51-9b1d-eeb3748dbd26" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: SecretCreateDeleteRecoverPurgeTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "108" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "bcf5112a-b245-4111-88a2-752f74e54f13" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/deletedsecrets/SecretCreateDeleteRecoverPurgeTest/recover?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL1NlY3JldENyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3QvcmVjb3Zlcj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "321c5c9f-9410-491a-b671-222fe445b632" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/SecretCreateDeleteRecoverPurgeTest/735cc9d2c71742ab99e88f2dea2b5afa\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186447,\r\n \"updated\": 1482186447\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "209" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:27:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "8847e5c0-d635-476c-82fb-173c8cc263ac" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/secrets/SecretCreateDeleteRecoverPurgeTest/735cc9d2c71742ab99e88f2dea2b5afa?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvU2VjcmV0Q3JlYXRlRGVsZXRlUmVjb3ZlclB1cmdlVGVzdC83MzVjYzlkMmM3MTc0MmFiOTllODhmMmRlYTJiNWFmYT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8acddbf3-0416-4da5-a726-7ee14a6d9d54" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/secrets/SecretCreateDeleteRecoverPurgeTest/735cc9d2c71742ab99e88f2dea2b5afa\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482186447,\r\n \"updated\": 1482186447\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "233" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "cd0e592d-8246-4183-a5fc-bc750fefd26b" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/deletedsecrets/SecretCreateDeleteRecoverPurgeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2RlbGV0ZWRzZWNyZXRzL1NlY3JldENyZWF0ZURlbGV0ZVJlY292ZXJQdXJnZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06f16bba-1a58-4e67-a723-156ad0711ec9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 19 Dec 2016 22:28:39 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "South Central US" + ], + "x-ms-request-id": [ + "67d2e3d5-94fe-4bff-a7cb-dd7afd78e197" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1066" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", + "KeyName": "sdktestkey", + "KeyVersion": "cf7c860fb9db4564a1389db973a52436" + } +} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretCreateUpdateDeleteTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretCreateUpdateDeleteTest.json index f9179abaa6a8..92824a2fb576 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretCreateUpdateDeleteTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretCreateUpdateDeleteTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//secrets/crpsecret?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL2NycHNlY3JldD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/crpsecret?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvY3Jwc2VjcmV0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"mysecretvalue\"\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "32" ], "x-ms-client-request-id": [ - "dff6b390-9538-4d26-87c5-05f66fbf748e" + "37c727ea-4a95-4be9-aa5d-85ccedb3c047" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/crpsecret/76d72d4a8c3a49c986bf695f81170994\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082070,\r\n \"updated\": 1477082070\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/crpsecret/fc29c692e8a54be89ef5fbd76426113d\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188982,\r\n \"updated\": 1482188982\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "193" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:29 GMT" + "Mon, 19 Dec 2016 23:09:42 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "612cbaa6-b2eb-4c87-8f3a-a0e3957aafe9" + "fb387cdc-a729-4efa-8eb7-10ea841ae4a3" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,8 +71,8 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/crpsecret?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL2NycHNlY3JldD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/crpsecret?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvY3Jwc2VjcmV0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"value\": \"mysecretvalue2\"\r\n}", "RequestHeaders": { @@ -82,16 +83,17 @@ "33" ], "x-ms-client-request-id": [ - "68e6fb33-258c-4725-9e0c-8f8693333506" + "532bbed7-8ad8-4249-ba16-42b1820ebfc5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue2\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/crpsecret/5707da11484a4fbfb4b8342ebf6f63a8\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082070,\r\n \"updated\": 1477082070\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue2\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/crpsecret/42b3fc0104144687aa266a68d8fe039c\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188982,\r\n \"updated\": 1482188982\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "194" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:29 GMT" + "Mon, 19 Dec 2016 23:09:42 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "f190e59c-88ef-4193-a4cd-bac7a72fb309" + "b98df668-5e1b-4599-8ec3-65262a1b178f" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,22 +141,23 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/crpsecret/76d72d4a8c3a49c986bf695f81170994?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvY3Jwc2VjcmV0Lzc2ZDcyZDRhOGMzYTQ5Yzk4NmJmNjk1ZjgxMTcwOTk0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/secrets/crpsecret/fc29c692e8a54be89ef5fbd76426113d?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvY3Jwc2VjcmV0L2ZjMjljNjkyZThhNTRiZTg5ZWY1ZmJkNzY0MjYxMTNkP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77322d70-f408-4139-a045-35eaad1f44da" + "3ddbb70a-d5cb-4192-b531-6743015d10a9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/crpsecret/76d72d4a8c3a49c986bf695f81170994\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082070,\r\n \"updated\": 1477082070\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/crpsecret/fc29c692e8a54be89ef5fbd76426113d\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188982,\r\n \"updated\": 1482188982\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "193" @@ -169,7 +172,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:29 GMT" + "Mon, 19 Dec 2016 23:09:42 GMT" ], "Pragma": [ "no-cache" @@ -178,13 +181,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "fae18875-4d24-4fab-97b6-f084c37276fc" + "d51ae96a-5db9-426f-8f0c-f284a73471d3" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -202,22 +205,23 @@ "StatusCode": 200 }, { - "RequestUri": "/secrets/crpsecret/5707da11484a4fbfb4b8342ebf6f63a8?api-version=2016-10-01", - "EncodedRequestUri": "L3NlY3JldHMvY3Jwc2VjcmV0LzU3MDdkYTExNDg0YTRmYmZiNGI4MzQyZWJmNmY2M2E4P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/secrets/crpsecret/42b3fc0104144687aa266a68d8fe039c?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvY3Jwc2VjcmV0LzQyYjNmYzAxMDQxNDQ2ODdhYTI2NmE2OGQ4ZmUwMzljP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b491717-1e02-4764-8aed-e84e4beb6670" + "c196dee1-9191-48fa-bec3-0385d2912933" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue2\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/crpsecret/5707da11484a4fbfb4b8342ebf6f63a8\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082070,\r\n \"updated\": 1477082070\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue2\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/crpsecret/42b3fc0104144687aa266a68d8fe039c\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188982,\r\n \"updated\": 1482188982\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "194" @@ -232,7 +236,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:29 GMT" + "Mon, 19 Dec 2016 23:09:42 GMT" ], "Pragma": [ "no-cache" @@ -241,13 +245,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "43a8778a-d1cd-4783-826e-2660ea642021" + "2821608f-bf8f-4019-b0a2-1692cbb3bde5" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -265,22 +269,23 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/crpsecret/?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL2NycHNlY3JldC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/crpsecret/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvY3Jwc2VjcmV0Lz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9454fd1-2579-414a-adc6-7e37f7dc8634" + "c6ee2317-a7a8-4211-bc28-586c80798e7b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue2\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/crpsecret/5707da11484a4fbfb4b8342ebf6f63a8\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082070,\r\n \"updated\": 1477082070\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue2\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/crpsecret/42b3fc0104144687aa266a68d8fe039c\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188982,\r\n \"updated\": 1482188982\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "194" @@ -295,7 +300,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:29 GMT" + "Mon, 19 Dec 2016 23:09:42 GMT" ], "Pragma": [ "no-cache" @@ -304,13 +309,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "144a1e3c-9d45-480b-a995-a4ad2f081347" + "0ede554d-16bc-4ead-8513-d9ebd671df66" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -328,19 +333,20 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/crpsecret/?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL2NycHNlY3JldC8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/crpsecret/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvY3Jwc2VjcmV0Lz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74e2d7ed-8f4c-483d-b2d4-72bcd2f3ba47" + "3052e22c-57a3-40b0-a587-684a935714cd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Secret not found: crpsecret\"\r\n }\r\n}", @@ -358,7 +364,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:29 GMT" + "Mon, 19 Dec 2016 23:09:42 GMT" ], "Pragma": [ "no-cache" @@ -367,13 +373,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "ae638004-784a-4437-9cd0-ffb7de4d1c28" + "ff927f84-3215-4108-8043-e06d5edbcd0d" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -391,22 +397,23 @@ "StatusCode": 404 }, { - "RequestUri": "//secrets/crpsecret?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL2NycHNlY3JldD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/secrets/crpsecret?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvY3Jwc2VjcmV0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abaa22db-b20d-43ca-8ddd-4dd71042a1d3" + "7967e66c-7e48-4f4f-8d5f-d070c7411a93" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/crpsecret/5707da11484a4fbfb4b8342ebf6f63a8\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082070,\r\n \"updated\": 1477082070\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/crpsecret/42b3fc0104144687aa266a68d8fe039c\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188982,\r\n \"updated\": 1482188982\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "169" @@ -421,7 +428,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:29 GMT" + "Mon, 19 Dec 2016 23:09:42 GMT" ], "Pragma": [ "no-cache" @@ -430,13 +437,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "d181e131-4274-44a4-8514-63f4b7a69836" + "03cbf7a3-f654-4643-8067-cb50448c8169" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -456,8 +463,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyRS256Test.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyRS256Test.json index 60f1bb70542c..c49f6a865a4b 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyRS256Test.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyRS256Test.json @@ -4,7 +4,7 @@ "RequestUri": "/keys/sdktestkey//sign?api-version=2016-10-01", "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8vc2lnbj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RS256\",\r\n \"value\": \"Enar-zi-e2wIXx_cBKQUh4JvcNPBxxjB9T5S9AS65eQ\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RS256\",\r\n \"value\": \"PS3iee-oQeI_4MQ7uZ93voMkEbOi8f0bQHqUoXYR-nQ\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,16 +13,17 @@ "81" ], "x-ms-client-request-id": [ - "4d28d6c6-2940-47d7-9097-81f7853165d0" + "4900ace8-eedb-405e-90f6-976d4df0a878" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/0389317cb2c84b729affa9c8f101ce37\",\r\n \"value\": \"pGmhUYkAjqOU7kCC3mRcjSfV4lcA9KmJuxYAvzN_2hrXm8kaXQnM9WX_NcJtnm836dS-e1fmsz7NbwW042m0bgti3PV7et6ywYz5Q1Z3tLOlJypV0xT3D65PTk38i4lRDIA02r3z2mt53L4nvWYRGaa44IjtSSFLmIGKGa-tArQxdUwyAiddoAgWoFUHl60ymsr9b5UdQ49h_uIWXr5QlNrf3p49sFhB6qAGBAAu5BF9u4JFhTjO-XTjGwzEJs4zEulXqWiItdCW-y1Rs5CCVFlcPVdSBO_j2Xwj2gFEN9qlZIjYqmu1dfNXWAevlvAKjG2v1qSI1C9HP5Vmgbp79g\"\r\n}", + "ResponseBody": "{\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/sdktestkey/0a9e36203d224dd285d933e17478c870\",\r\n \"value\": \"eU_CgaqYt0QBtj10EToONfruRhcT4JSARPesvU07tgT0RFb9KpIFqpN-3h_Tl-s-fGOTJxG8aZc5s03TgJAYYOmpWNaSk5-ktT2b-iZWY2srUZON9uikIC03ZXZenPPdMcjkJPWh9Gk1LW39DYqaPkASR4hABOW7D6ErT0n1EqfB6-9KJPk31cqhiePhERcBcqrLKoiBDFJBrpeH0aq1Rg56DZB6ZZZXcl3S75_z6eYDNt0Z2y5ptj4JQJab7tqiBV8EZzShow4uhXaWkkEdmyahudSnhrYewDKjU39pPbqtVT0GiVgUOiTu0Q0lACYOTo1vx4W7m6Cq7ytLIct1MA\"\r\n}", "ResponseHeaders": { "Content-Length": [ "449" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:30 GMT" + "Mon, 19 Dec 2016 23:10:47 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "3ab54bba-2566-4b11-9823-03b4ca7cec2d" + "ec598aeb-1026-475e-bf9d-0a868dca4345" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,10 +71,10 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/sdktestkey/0389317cb2c84b729affa9c8f101ce37/verify?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8wMzg5MzE3Y2IyYzg0YjcyOWFmZmE5YzhmMTAxY2UzNy92ZXJpZnk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/keys/sdktestkey/0a9e36203d224dd285d933e17478c870/verify?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8wYTllMzYyMDNkMjI0ZGQyODVkOTMzZTE3NDc4Yzg3MC92ZXJpZnk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RS256\",\r\n \"digest\": \"Enar-zi-e2wIXx_cBKQUh4JvcNPBxxjB9T5S9AS65eQ\",\r\n \"value\": \"pGmhUYkAjqOU7kCC3mRcjSfV4lcA9KmJuxYAvzN_2hrXm8kaXQnM9WX_NcJtnm836dS-e1fmsz7NbwW042m0bgti3PV7et6ywYz5Q1Z3tLOlJypV0xT3D65PTk38i4lRDIA02r3z2mt53L4nvWYRGaa44IjtSSFLmIGKGa-tArQxdUwyAiddoAgWoFUHl60ymsr9b5UdQ49h_uIWXr5QlNrf3p49sFhB6qAGBAAu5BF9u4JFhTjO-XTjGwzEJs4zEulXqWiItdCW-y1Rs5CCVFlcPVdSBO_j2Xwj2gFEN9qlZIjYqmu1dfNXWAevlvAKjG2v1qSI1C9HP5Vmgbp79g\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RS256\",\r\n \"digest\": \"PS3iee-oQeI_4MQ7uZ93voMkEbOi8f0bQHqUoXYR-nQ\",\r\n \"value\": \"eU_CgaqYt0QBtj10EToONfruRhcT4JSARPesvU07tgT0RFb9KpIFqpN-3h_Tl-s-fGOTJxG8aZc5s03TgJAYYOmpWNaSk5-ktT2b-iZWY2srUZON9uikIC03ZXZenPPdMcjkJPWh9Gk1LW39DYqaPkASR4hABOW7D6ErT0n1EqfB6-9KJPk31cqhiePhERcBcqrLKoiBDFJBrpeH0aq1Rg56DZB6ZZZXcl3S75_z6eYDNt0Z2y5ptj4JQJab7tqiBV8EZzShow4uhXaWkkEdmyahudSnhrYewDKjU39pPbqtVT0GiVgUOiTu0Q0lACYOTo1vx4W7m6Cq7ytLIct1MA\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -82,13 +83,14 @@ "440" ], "x-ms-client-request-id": [ - "75428da8-0909-4537-af03-97efea9321c5" + "5a9fdc5d-c2a3-4fd6-a3fb-07c626eb873a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, "ResponseBody": "{\r\n \"value\": true\r\n}", @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:30 GMT" + "Mon, 19 Dec 2016 23:10:47 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "a5debd76-e11e-40d1-b7bf-297dfef84642" + "fe37e3ec-a11e-4190-af9e-3c26aaa6d415" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -141,9 +143,9 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4", - "RandomBytes": "qsvPwSnlNShK69wgxVj28zRScq88AdOFUAIhJAtMxqw=" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155", + "RandomBytes": "ikLmMsdHlxI/phuf7TEMdiaT5YTjq5E7/D7myJXzwHk=" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyRS384Test.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyRS384Test.json index e63ac69fd2b1..7eb8a55d6a74 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyRS384Test.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyRS384Test.json @@ -4,7 +4,7 @@ "RequestUri": "/keys/sdktestkey//sign?api-version=2016-10-01", "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8vc2lnbj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RS384\",\r\n \"value\": \"vMYMRoEC20Vkzmv2ZmgsW1z6dGxv48cZ9YLxzzs5SrlVtUdUyAPVdCzpcCjz7WXH\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RS384\",\r\n \"value\": \"1d_-1POSHNo8Q8NnbAmRIgWdQITWEWhPPbA8XcSW3c-FGVud19050jWAXoNtgcpX\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,16 +13,17 @@ "102" ], "x-ms-client-request-id": [ - "f2cfc6be-5f11-46ec-b9c2-fe8bc616f29b" + "eaa9f71f-f392-4553-89cd-a2199ca3337f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/b669c8bf47a940d8ac818c3831fc11b4\",\r\n \"value\": \"PtEWyWETCyjVmN1_IMIU77xjz5MAD8a_nNugVqMVwh7DjMkVGW3IWGbLFAyZmYo0mrD5W3Y7tzTKEnwT4plKxzTzC3arCMM_MnQW_C1cpLA8vRpjHoTNcOrf-mGC36w23_ZA31wVUo4L4hJ3PhLhy3P5rFYYvzESeEJZ7dYXFMbBBxTKWkl7MdaMAmfCOqQj-gc76b8Bex2jngukwXUJcD2u8OKkjBA_WHlUojcTgHTo1cIsoKTW0qAB9oEG0aMJ5f1AVaZbFm5uAdXYVpiOEYbt0NaLswSxnfK5lCp-KIzerNra_JotvJ9hjTGaJ-6PU8fc2oIRpA8qEVPaKtcUXg\"\r\n}", + "ResponseBody": "{\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/sdktestkey/4eb68492b5f6421e835d961ad2be3155\",\r\n \"value\": \"LbT82MiaLwJBcmOFV2h30ti9hy4ewcr6xL29TV11XzXctfyPSBy-huthxLsfRUGqvn_bYIQS0cbTnD_7DUjPsFePSNxT3TG3rQK-WCszcNqyqmrhx35b4fMSTlXe2lAvTsFp4_BSuN9wnob6cHZeIYev7v1nLkD67G0jwwv0tOFBdFV7nhZTlXePfLPp02yvaesmjnq925619-1OOKNOicYij8i4KawKoT5aOG34vYpr8esMuxspD7XvY5E_LUWhdYRp6hcgY8sR6ML0BEfyjuPUl6cjMXhHWaUazInGhsD12xu70Ae1fNPrXguXK8prUkTOsXILXgyL8cDhj6bpMw\"\r\n}", "ResponseHeaders": { "Content-Length": [ "449" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:03 GMT" + "Mon, 19 Dec 2016 23:09:12 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "976f4533-fa16-43cc-b246-b197f3415747" + "0c05b13a-2b42-4d6b-aaa2-6ea132e92da6" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,10 +71,10 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/sdktestkey/b669c8bf47a940d8ac818c3831fc11b4/verify?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS9iNjY5YzhiZjQ3YTk0MGQ4YWM4MThjMzgzMWZjMTFiNC92ZXJpZnk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/keys/sdktestkey/4eb68492b5f6421e835d961ad2be3155/verify?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS80ZWI2ODQ5MmI1ZjY0MjFlODM1ZDk2MWFkMmJlMzE1NS92ZXJpZnk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RS384\",\r\n \"digest\": \"vMYMRoEC20Vkzmv2ZmgsW1z6dGxv48cZ9YLxzzs5SrlVtUdUyAPVdCzpcCjz7WXH\",\r\n \"value\": \"PtEWyWETCyjVmN1_IMIU77xjz5MAD8a_nNugVqMVwh7DjMkVGW3IWGbLFAyZmYo0mrD5W3Y7tzTKEnwT4plKxzTzC3arCMM_MnQW_C1cpLA8vRpjHoTNcOrf-mGC36w23_ZA31wVUo4L4hJ3PhLhy3P5rFYYvzESeEJZ7dYXFMbBBxTKWkl7MdaMAmfCOqQj-gc76b8Bex2jngukwXUJcD2u8OKkjBA_WHlUojcTgHTo1cIsoKTW0qAB9oEG0aMJ5f1AVaZbFm5uAdXYVpiOEYbt0NaLswSxnfK5lCp-KIzerNra_JotvJ9hjTGaJ-6PU8fc2oIRpA8qEVPaKtcUXg\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RS384\",\r\n \"digest\": \"1d_-1POSHNo8Q8NnbAmRIgWdQITWEWhPPbA8XcSW3c-FGVud19050jWAXoNtgcpX\",\r\n \"value\": \"LbT82MiaLwJBcmOFV2h30ti9hy4ewcr6xL29TV11XzXctfyPSBy-huthxLsfRUGqvn_bYIQS0cbTnD_7DUjPsFePSNxT3TG3rQK-WCszcNqyqmrhx35b4fMSTlXe2lAvTsFp4_BSuN9wnob6cHZeIYev7v1nLkD67G0jwwv0tOFBdFV7nhZTlXePfLPp02yvaesmjnq925619-1OOKNOicYij8i4KawKoT5aOG34vYpr8esMuxspD7XvY5E_LUWhdYRp6hcgY8sR6ML0BEfyjuPUl6cjMXhHWaUazInGhsD12xu70Ae1fNPrXguXK8prUkTOsXILXgyL8cDhj6bpMw\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -82,13 +83,14 @@ "461" ], "x-ms-client-request-id": [ - "14261ec4-5e04-4d08-9894-1860154b046a" + "f5224499-c045-4b8c-b8be-f7d5fcc68b36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, "ResponseBody": "{\r\n \"value\": true\r\n}", @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:03 GMT" + "Mon, 19 Dec 2016 23:09:12 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "af784ac3-8573-4f34-9519-6b183d2c7caa" + "ed35edc9-d69b-4dbf-b070-0dd1271fffa3" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -141,9 +143,9 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4", - "RandomBytes": "FJv5/Yggv1vzRqmNv5nhN/QZ1oUZQoTnVgWUj52lxygRv4RGeSoj5DHwwoKj2cwjBILNF9O9Y9EXEaeCjC+9Tg==" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155", + "RandomBytes": "1pJAH1PS+UoGIYh5oQa/u74vBSVC5vnoeI0cpomdkSDcxc6x+d8wEl62IuHFAuGW0T/xJmW+s++ZV6bFtlLAaA==" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyRS512Test.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyRS512Test.json index d66f763e37c2..04eeb79565c4 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyRS512Test.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyRS512Test.json @@ -4,7 +4,7 @@ "RequestUri": "/keys/sdktestkey//sign?api-version=2016-10-01", "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8vc2lnbj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RS512\",\r\n \"value\": \"YzHWQin2Gvrc8YEtB3t8Q3aMnWOwMixChq2AsC7htzERhKxxv9NP-z7zCk03RVuLf4yYLPWT2fnl0sb5YWoEFw\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RS512\",\r\n \"value\": \"sQV0Lmiz3qANzbFmfHdgpv-BWpiwOFZQzgkMLOoGhSKRszaTdtW_22ui5em1oKY0q36SkY5nJpkL8wCRQk8GvA\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,16 +13,17 @@ "124" ], "x-ms-client-request-id": [ - "d1bf6928-e83d-435a-a556-f33ca1d673c8" + "b0e74068-c329-4f8d-b814-b9ed49b02847" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/b669c8bf47a940d8ac818c3831fc11b4\",\r\n \"value\": \"bj_cUq-_90wu6pWhEmIz7wRhRQY1G8P_ALkQIWjN6CdTJtWOnOY-upASAfZ4epnvXXQzmoZ2U1Y5UxKXhQl7L21LFtbFK53wkUmxWnRGSzY2yZP1K3lzbbjMdwffycIKzmKlGAHkM7p3RYl6V686_etN_YyVRfqxP9Ax_zmgCASbKvlmdA28w5H4kKw3qKMbZGAo3eqxbAnt1CGkZzW5FjchB5KZtQClpTNmuy_aYuizaWJvMiZ7dAm9c9bQ3Bhh9WgThDKD_PAZXVhwgwQnpzFss_PnbPlpSaOGyQ7xyYx4wL85yaizRdIeYMPw2W0hDdvdmnlu5rmK8_PBRVYtVQ\"\r\n}", + "ResponseBody": "{\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/sdktestkey/4eb68492b5f6421e835d961ad2be3155\",\r\n \"value\": \"H0NfAOJqwqbCnYA3fULsAFFu4N1RUqGjlZ6PQ4VicA0bXnvgG8gJ4dj7cz6VzDdw9e2PP_NtXMsX3eOnyFwS_CVEXncnoMygumSY0s6zqA-a5bylOmOgIlh2tcLnn52z3b7YOaDLZLcqOQBHuOfM7DEc4z2wZ2_9qbdR8wGjvpPoX1mP5JVd373iCehUA7wM52nYngVfEwmZbzubloDdN1RMI7KWeGKStAEDFPFDVa6IJCMJyt4p94lYP2sAr8CnpOi2-i6lMnK_UAgJkTJvqduBcWMdYZ8X0j7-adIJzg33TeeEv2VMjowUMNiL9MVFtUAh8vxZrSfOYmj_vEs5EA\"\r\n}", "ResponseHeaders": { "Content-Length": [ "449" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:04 GMT" + "Mon, 19 Dec 2016 23:09:13 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "998f255f-7537-43a0-aa18-48409b6c02ad" + "32c9b524-dcf4-45f1-bfbb-2a1c7369b003" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,10 +71,10 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/sdktestkey/b669c8bf47a940d8ac818c3831fc11b4/verify?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS9iNjY5YzhiZjQ3YTk0MGQ4YWM4MThjMzgzMWZjMTFiNC92ZXJpZnk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/keys/sdktestkey/4eb68492b5f6421e835d961ad2be3155/verify?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS80ZWI2ODQ5MmI1ZjY0MjFlODM1ZDk2MWFkMmJlMzE1NS92ZXJpZnk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RS512\",\r\n \"digest\": \"YzHWQin2Gvrc8YEtB3t8Q3aMnWOwMixChq2AsC7htzERhKxxv9NP-z7zCk03RVuLf4yYLPWT2fnl0sb5YWoEFw\",\r\n \"value\": \"bj_cUq-_90wu6pWhEmIz7wRhRQY1G8P_ALkQIWjN6CdTJtWOnOY-upASAfZ4epnvXXQzmoZ2U1Y5UxKXhQl7L21LFtbFK53wkUmxWnRGSzY2yZP1K3lzbbjMdwffycIKzmKlGAHkM7p3RYl6V686_etN_YyVRfqxP9Ax_zmgCASbKvlmdA28w5H4kKw3qKMbZGAo3eqxbAnt1CGkZzW5FjchB5KZtQClpTNmuy_aYuizaWJvMiZ7dAm9c9bQ3Bhh9WgThDKD_PAZXVhwgwQnpzFss_PnbPlpSaOGyQ7xyYx4wL85yaizRdIeYMPw2W0hDdvdmnlu5rmK8_PBRVYtVQ\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RS512\",\r\n \"digest\": \"sQV0Lmiz3qANzbFmfHdgpv-BWpiwOFZQzgkMLOoGhSKRszaTdtW_22ui5em1oKY0q36SkY5nJpkL8wCRQk8GvA\",\r\n \"value\": \"H0NfAOJqwqbCnYA3fULsAFFu4N1RUqGjlZ6PQ4VicA0bXnvgG8gJ4dj7cz6VzDdw9e2PP_NtXMsX3eOnyFwS_CVEXncnoMygumSY0s6zqA-a5bylOmOgIlh2tcLnn52z3b7YOaDLZLcqOQBHuOfM7DEc4z2wZ2_9qbdR8wGjvpPoX1mP5JVd373iCehUA7wM52nYngVfEwmZbzubloDdN1RMI7KWeGKStAEDFPFDVa6IJCMJyt4p94lYP2sAr8CnpOi2-i6lMnK_UAgJkTJvqduBcWMdYZ8X0j7-adIJzg33TeeEv2VMjowUMNiL9MVFtUAh8vxZrSfOYmj_vEs5EA\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -82,13 +83,14 @@ "483" ], "x-ms-client-request-id": [ - "ca3667f8-177c-47ac-80c1-5c6b6c526e3f" + "e4d9857a-bb5b-455f-bc40-6fef67bbc19b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, "ResponseBody": "{\r\n \"value\": true\r\n}", @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:04 GMT" + "Mon, 19 Dec 2016 23:09:13 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "cf7a0d87-af7e-4d37-a30d-7ea09a501638" + "ef0c4ee5-f5db-4cf2-94fe-741788ef3821" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -141,9 +143,9 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4", - "RandomBytes": "o1uRVNKCC8nXybg4t9o1OPgx9jaDZnm0di5FozTQaprNd7o3OXwhRGEkcDe6WfY1urNInDq6dTzh3N2kPWiVBg==" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155", + "RandomBytes": "6Z3EOTg5wY6ZP8TZSXKneDSrXK0t1p1HmhXp5FZXHPjhbGGfI+EFDhFqQzRfN5Jm0gMUuMgWahP/fJ4jT9w3QQ==" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultTestSecretExtendedAttributes.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultTestSecretExtendedAttributes.json index 85bbe92ce7d2..bb86480a1719 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultTestSecretExtendedAttributes.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultTestSecretExtendedAttributes.json @@ -1,10 +1,10 @@ { "Entries": [ { - "RequestUri": "//secrets/secretwithextendedattribs?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL3NlY3JldHdpdGhleHRlbmRlZGF0dHJpYnM/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/secrets/secretwithextendedattribs?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvc2VjcmV0d2l0aGV4dGVuZGVkYXR0cmlicz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"tags\": {\r\n \"purpose\": \"unit test\"\r\n },\r\n \"contentType\": \"plaintext\",\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1477125282\r\n }\r\n}", + "RequestBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"tags\": {\r\n \"purpose\": \"unit test\"\r\n },\r\n \"contentType\": \"plaintext\",\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1482232197\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,16 +13,17 @@ "181" ], "x-ms-client-request-id": [ - "51463db3-9e4e-4031-998b-e53ea7a2cdd0" + "e16ecea8-8245-4579-835b-5ec5b4da1300" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plaintext\",\r\n \"id\": \"https://testvault1020.vault.azure.net/secrets/secretwithextendedattribs/bb03d9aab0ef426aa2d47d5fed2a2a17\",\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1477125282,\r\n \"created\": 1477082082,\r\n \"updated\": 1477082082\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": \"mysecretvalue\",\r\n \"contentType\": \"plaintext\",\r\n \"id\": \"https://testvault1021.vault.azure.net/secrets/secretwithextendedattribs/8d9b809194a640f4ba21de45c6dd5e7f\",\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1482232197,\r\n \"created\": 1482188997,\r\n \"updated\": 1482188997\r\n },\r\n \"tags\": {\r\n \"purpose\": \"unit test\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "284" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:41 GMT" + "Mon, 19 Dec 2016 23:09:58 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "e3fbee76-deba-46e8-ae36-12c7c61f436f" + "19cd9464-457c-491c-a7d9-5a8564344e5c" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,19 +71,20 @@ "StatusCode": 200 }, { - "RequestUri": "//secrets/secretwithextendedattribs/?api-version=2016-10-01", - "EncodedRequestUri": "Ly9zZWNyZXRzL3NlY3JldHdpdGhleHRlbmRlZGF0dHJpYnMvP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/secrets/secretwithextendedattribs/?api-version=2016-10-01", + "EncodedRequestUri": "L3NlY3JldHMvc2VjcmV0d2l0aGV4dGVuZGVkYXR0cmlicy8/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95bdee4f-2cb8-4e42-bcf7-f3725d564935" + "b759294f-3746-4429-9cbc-74297b534096" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"Forbidden\",\r\n \"message\": \"Operation get is not allowed on a disabled secret.\",\r\n \"innererror\": {\r\n \"code\": \"SecretDisabled\"\r\n }\r\n }\r\n}", @@ -100,7 +102,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:41 GMT" + "Mon, 19 Dec 2016 23:09:58 GMT" ], "Pragma": [ "no-cache" @@ -109,13 +111,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "ee7177cb-9b73-41aa-9cf1-f19151e16751" + "8409e4d8-42be-4d3b-affa-8899399f8c4a" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -135,8 +137,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultUpdateKeyAttributesTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultUpdateKeyAttributesTest.json index 66c0150a26f9..b047fcce47a2 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultUpdateKeyAttributesTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultUpdateKeyAttributesTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//keys/UpdateKeyAttributesTest/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL1VwZGF0ZUtleUF0dHJpYnV0ZXNUZXN0L2NyZWF0ZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/keys/UpdateKeyAttributesTest/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvVXBkYXRlS2V5QXR0cmlidXRlc1Rlc3QvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n}", "RequestHeaders": { @@ -13,16 +13,17 @@ "156" ], "x-ms-client-request-id": [ - "5c85ae46-4105-44ab-83eb-4749aa3538a9" + "d42e66d1-60db-411e-ab35-06ed01806302" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/UpdateKeyAttributesTest/d880f7c42b4b4f0e88d96ba4d71353e4\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"tpvNxv1o4Aa3mJe5gtFJm80eEMGTfUxFHtNU1k-9IMJDDm5KuuTp7LAmDtrfoQGAxHphiExMDvt7sG03_0nCz0hnF1UN9pJCkbBu98dN_pd_-CkcI-05cSwwyGngF4pMbgasv0UBLfEFt1MvvFyl8Pdhd8_g6-BAH_xNy-NTzleaiXA1dpdIdqbgwhFX9ozzsEqd_-in12gzeYnO7hf1t9hWb0FeMDYU-MVhW-HJR5G-qzd_jpyzpFFcXMpAqQ8ilHwakGjNMk5rQWEzJzVOchwglX9vkFFRQMR5thjncIMk71wT7VAPtRHDMYiQpH-19czOUrc8fxN0zOs3zz9G9w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082073,\r\n \"updated\": 1477082073\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/UpdateKeyAttributesTest/90bd15698c554d408355a1dadfd364b1\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"u097XtTHAAfrwqQXRfy4DQBt7VmvZQ9FvlBKua1BJ-CfO22fCzphLFJzF4gyTtwv501jCxWxIxwVDd047ahH_8cz0Fy-LaqRZey4YV-wAl1HqyVrIiChxCL7HCFWe99BRoYnM4EbYp-KVbpd8nmlIG7mInfKFNhRKGBmnAPHPGfqWJJYH4BJRzqiqiwmkctZ59Beu49rLN-YeVkSxIyIPBsdwOtFkmbGum8qimnY02vlVKPIOC0Rr8JgdVDQNA62bAmlDilPZyBKIKps_8c8u6B9IGpV-uHb4g80E6GNk8ktwX8fNVnfG92YTrorXpn6DbEl4wkv5FZT1vKDT6DNbw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188986,\r\n \"updated\": 1482188986\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "631" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:33 GMT" + "Mon, 19 Dec 2016 23:09:45 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "25f46a68-0610-493c-9f33-55836e5e3392" + "aa71abd2-d8ec-471f-b0bb-dbc762889a5e" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,8 +71,8 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/UpdateKeyAttributesTest/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL1VwZGF0ZUtleUF0dHJpYnV0ZXNUZXN0L2NyZWF0ZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/keys/UpdateKeyAttributesTest/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvVXBkYXRlS2V5QXR0cmlidXRlc1Rlc3QvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n}", "RequestHeaders": { @@ -82,16 +83,17 @@ "156" ], "x-ms-client-request-id": [ - "f50f54a6-7307-45e3-91dd-b68d2b0e2340" + "a5cfa253-530e-43b4-a196-4161493d9790" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/UpdateKeyAttributesTest/265f7e2e68374bb3a4d84025cdeeab66\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"yMMisG5o-oveH3YM7GQN1IXB6Xai1PJZdOQItEYzRGc_Qby5h-7AvGCBaegVgfx53B56oIcOrFgGhbaRI_mkpiDuDECEPhTXcHagPLvVIWmpfuXkWr967GlFTzil5I-xfiK6aZGzZ1IYYeEtXDdEGzALTEeLCbBWTynrQ1oxfGPaqV6g3fv2A3CYCx5JhwbGj0uAQe8EgRI2eRTrploEyYULyJtu08gkxJojrcas-VShFUk6lufHfuKNeMnJllBR4GA4xsw7mhPJ0CVSJydSb3Ot2j-T_WWvnwecXj7WG-tY2eBPjKUfe9uqz-PlwLRvp-QzZ6FwzPv3cFD1PishQQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082073,\r\n \"updated\": 1477082073\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/UpdateKeyAttributesTest/e6d589d94db5418596e47e974f6ab1a3\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"l8CT0WrSLrNTTbyBYvuUFkv3Yy0qhxnNX6N_SZ389Qlq3wpvbNHuDPFvqviFq_JrLrC5ZnstT0lv09gM0RvcQjmLfF6eZenb5tC0uSrkKxHFt4hX1hr8jn1EeC9CHVq3GkA82SAS-KtL4Z6K8mE3quzQ4Ax3Z0bW9yXrDLrJY9CB-yQnWdJPbzXx1pS7nH6lD5MWityC8JcmEiV0Tgw5_Mt9Mms9ln8WntwOiwk-me5N7OvIb0-xm_MnPcf5sxwsEzVmHEy72hFqxGzW30TeidOruqtI6lgou3J6PkwFWdCX5l7OnTRDjxyPhTS4uJwEFsOfDbmMDDun-dke-IZbYQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188986,\r\n \"updated\": 1482188986\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "631" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:33 GMT" + "Mon, 19 Dec 2016 23:09:45 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "4b42cf5e-365c-4596-b896-d1db5c61cd80" + "14060771-e3f3-4b83-9880-aeba8105c587" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,8 +141,8 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/UpdateKeyAttributesTest/?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL1VwZGF0ZUtleUF0dHJpYnV0ZXNUZXN0Lz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/keys/UpdateKeyAttributesTest/?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvVXBkYXRlS2V5QXR0cmlidXRlc1Rlc3QvP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"key_ops\": [\r\n \"decrypt\",\r\n \"encrypt\"\r\n ],\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 315561600,\r\n \"exp\": 347184000\r\n }\r\n}", "RequestHeaders": { @@ -151,16 +153,17 @@ "148" ], "x-ms-client-request-id": [ - "f9a9d93b-a09e-4d14-a7aa-51ba506ef53f" + "2c627ab1-652f-452b-9fcd-025bb14fcb8a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/UpdateKeyAttributesTest/d880f7c42b4b4f0e88d96ba4d71353e4\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"decrypt\",\r\n \"encrypt\"\r\n ],\r\n \"n\": \"tpvNxv1o4Aa3mJe5gtFJm80eEMGTfUxFHtNU1k-9IMJDDm5KuuTp7LAmDtrfoQGAxHphiExMDvt7sG03_0nCz0hnF1UN9pJCkbBu98dN_pd_-CkcI-05cSwwyGngF4pMbgasv0UBLfEFt1MvvFyl8Pdhd8_g6-BAH_xNy-NTzleaiXA1dpdIdqbgwhFX9ozzsEqd_-in12gzeYnO7hf1t9hWb0FeMDYU-MVhW-HJR5G-qzd_jpyzpFFcXMpAqQ8ilHwakGjNMk5rQWEzJzVOchwglX9vkFFRQMR5thjncIMk71wT7VAPtRHDMYiQpH-19czOUrc8fxN0zOs3zz9G9w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 315561600,\r\n \"exp\": 347184000,\r\n \"created\": 1477082073,\r\n \"updated\": 1477082073\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/UpdateKeyAttributesTest/90bd15698c554d408355a1dadfd364b1\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"decrypt\",\r\n \"encrypt\"\r\n ],\r\n \"n\": \"u097XtTHAAfrwqQXRfy4DQBt7VmvZQ9FvlBKua1BJ-CfO22fCzphLFJzF4gyTtwv501jCxWxIxwVDd047ahH_8cz0Fy-LaqRZey4YV-wAl1HqyVrIiChxCL7HCFWe99BRoYnM4EbYp-KVbpd8nmlIG7mInfKFNhRKGBmnAPHPGfqWJJYH4BJRzqiqiwmkctZ59Beu49rLN-YeVkSxIyIPBsdwOtFkmbGum8qimnY02vlVKPIOC0Rr8JgdVDQNA62bAmlDilPZyBKIKps_8c8u6B9IGpV-uHb4g80E6GNk8ktwX8fNVnfG92YTrorXpn6DbEl4wkv5FZT1vKDT6DNbw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 315561600,\r\n \"exp\": 347184000,\r\n \"created\": 1482188986,\r\n \"updated\": 1482188986\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "625" @@ -175,7 +178,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:33 GMT" + "Mon, 19 Dec 2016 23:09:45 GMT" ], "Pragma": [ "no-cache" @@ -184,13 +187,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "5785ffab-269f-406a-bb73-4eeedd228a70" + "a94696a3-a7cd-43d2-8d75-91e9e64d3799" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -208,8 +211,8 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/UpdateKeyAttributesTest/d880f7c42b4b4f0e88d96ba4d71353e4?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvVXBkYXRlS2V5QXR0cmlidXRlc1Rlc3QvZDg4MGY3YzQyYjRiNGYwZTg4ZDk2YmE0ZDcxMzUzZTQ/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/keys/UpdateKeyAttributesTest/90bd15698c554d408355a1dadfd364b1?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvVXBkYXRlS2V5QXR0cmlidXRlc1Rlc3QvOTBiZDE1Njk4YzU1NGQ0MDgzNTVhMWRhZGZkMzY0YjE/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"key_ops\": [\r\n \"decrypt\",\r\n \"encrypt\"\r\n ],\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 631180800,\r\n \"exp\": 662716800\r\n }\r\n}", "RequestHeaders": { @@ -220,16 +223,17 @@ "149" ], "x-ms-client-request-id": [ - "bdb598fb-a604-4593-ac74-472b49b9318a" + "514e8a4f-8ec7-4247-8bd5-9eb4036ddb04" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/UpdateKeyAttributesTest/d880f7c42b4b4f0e88d96ba4d71353e4\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"decrypt\",\r\n \"encrypt\"\r\n ],\r\n \"n\": \"tpvNxv1o4Aa3mJe5gtFJm80eEMGTfUxFHtNU1k-9IMJDDm5KuuTp7LAmDtrfoQGAxHphiExMDvt7sG03_0nCz0hnF1UN9pJCkbBu98dN_pd_-CkcI-05cSwwyGngF4pMbgasv0UBLfEFt1MvvFyl8Pdhd8_g6-BAH_xNy-NTzleaiXA1dpdIdqbgwhFX9ozzsEqd_-in12gzeYnO7hf1t9hWb0FeMDYU-MVhW-HJR5G-qzd_jpyzpFFcXMpAqQ8ilHwakGjNMk5rQWEzJzVOchwglX9vkFFRQMR5thjncIMk71wT7VAPtRHDMYiQpH-19czOUrc8fxN0zOs3zz9G9w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 631180800,\r\n \"exp\": 662716800,\r\n \"created\": 1477082073,\r\n \"updated\": 1477082073\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/UpdateKeyAttributesTest/90bd15698c554d408355a1dadfd364b1\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"decrypt\",\r\n \"encrypt\"\r\n ],\r\n \"n\": \"u097XtTHAAfrwqQXRfy4DQBt7VmvZQ9FvlBKua1BJ-CfO22fCzphLFJzF4gyTtwv501jCxWxIxwVDd047ahH_8cz0Fy-LaqRZey4YV-wAl1HqyVrIiChxCL7HCFWe99BRoYnM4EbYp-KVbpd8nmlIG7mInfKFNhRKGBmnAPHPGfqWJJYH4BJRzqiqiwmkctZ59Beu49rLN-YeVkSxIyIPBsdwOtFkmbGum8qimnY02vlVKPIOC0Rr8JgdVDQNA62bAmlDilPZyBKIKps_8c8u6B9IGpV-uHb4g80E6GNk8ktwX8fNVnfG92YTrorXpn6DbEl4wkv5FZT1vKDT6DNbw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 631180800,\r\n \"exp\": 662716800,\r\n \"created\": 1482188986,\r\n \"updated\": 1482188986\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "626" @@ -244,7 +248,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:33 GMT" + "Mon, 19 Dec 2016 23:09:46 GMT" ], "Pragma": [ "no-cache" @@ -253,13 +257,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "d321039d-3c8b-4de0-9213-64b259de10d7" + "5068dbab-f76a-49b6-963f-46116a1144a0" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -277,22 +281,23 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/UpdateKeyAttributesTest?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL1VwZGF0ZUtleUF0dHJpYnV0ZXNUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/UpdateKeyAttributesTest?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvVXBkYXRlS2V5QXR0cmlidXRlc1Rlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c04fc4a-58ea-4cfa-aa50-28c54c6ce081" + "63e010de-2316-4609-a1b1-706be01a6acd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/UpdateKeyAttributesTest/265f7e2e68374bb3a4d84025cdeeab66\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"yMMisG5o-oveH3YM7GQN1IXB6Xai1PJZdOQItEYzRGc_Qby5h-7AvGCBaegVgfx53B56oIcOrFgGhbaRI_mkpiDuDECEPhTXcHagPLvVIWmpfuXkWr967GlFTzil5I-xfiK6aZGzZ1IYYeEtXDdEGzALTEeLCbBWTynrQ1oxfGPaqV6g3fv2A3CYCx5JhwbGj0uAQe8EgRI2eRTrploEyYULyJtu08gkxJojrcas-VShFUk6lufHfuKNeMnJllBR4GA4xsw7mhPJ0CVSJydSb3Ot2j-T_WWvnwecXj7WG-tY2eBPjKUfe9uqz-PlwLRvp-QzZ6FwzPv3cFD1PishQQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1477082073,\r\n \"updated\": 1477082073\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/UpdateKeyAttributesTest/e6d589d94db5418596e47e974f6ab1a3\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"l8CT0WrSLrNTTbyBYvuUFkv3Yy0qhxnNX6N_SZ389Qlq3wpvbNHuDPFvqviFq_JrLrC5ZnstT0lv09gM0RvcQjmLfF6eZenb5tC0uSrkKxHFt4hX1hr8jn1EeC9CHVq3GkA82SAS-KtL4Z6K8mE3quzQ4Ax3Z0bW9yXrDLrJY9CB-yQnWdJPbzXx1pS7nH6lD5MWityC8JcmEiV0Tgw5_Mt9Mms9ln8WntwOiwk-me5N7OvIb0-xm_MnPcf5sxwsEzVmHEy72hFqxGzW30TeidOruqtI6lgou3J6PkwFWdCX5l7OnTRDjxyPhTS4uJwEFsOfDbmMDDun-dke-IZbYQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1482188986,\r\n \"updated\": 1482188986\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "631" @@ -307,7 +312,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:33 GMT" + "Mon, 19 Dec 2016 23:09:46 GMT" ], "Pragma": [ "no-cache" @@ -316,13 +321,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "0e84afd2-6665-4203-9e3c-79dc5b64b565" + "5cb732d1-3b3d-476b-b066-834a8b93caba" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -342,8 +347,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultUpdateKeyAttributesWithNoChangeTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultUpdateKeyAttributesWithNoChangeTest.json index b473e0e68167..ab6afb1a2cfa 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultUpdateKeyAttributesWithNoChangeTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultUpdateKeyAttributesWithNoChangeTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "//keys/UpdateKeyAttributesWithNoChangeTest/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL1VwZGF0ZUtleUF0dHJpYnV0ZXNXaXRoTm9DaGFuZ2VUZXN0L2NyZWF0ZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/keys/UpdateKeyAttributesWithNoChangeTest/create?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvVXBkYXRlS2V5QXR0cmlidXRlc1dpdGhOb0NoYW5nZVRlc3QvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800\r\n }\r\n}", "RequestHeaders": { @@ -13,19 +13,20 @@ "251" ], "x-ms-client-request-id": [ - "1a27af55-ca93-47c0-baf3-e1d42aeb4e53" + "3a55e552-010c-4241-bc6d-eb2332692ce1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/UpdateKeyAttributesWithNoChangeTest/f5ec34e196e644e289b7eaba05ff83c9\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"7wE6auQVaIsQNFyEoXMOA5lRO2ARTs9i4jmQBPwb7EvXkBc3LHunZ1G2a7JppKP5I8nFrUYzZ1hpEr7LdwBfXYsjveNErzairEzm86O1Q_i6jet41KQJb362OXGkTrw4Pyxo25GjFrNrb1WVlYf0uXVXaMTkI1VVDzHPub5ctlpYWdf1HhWswgnCzMSBHDz_t-RBUx4VYEZqlP5mVKf6QXDDzSCuCgMCpfUjkpcNC478s304iLTSJQyFqk3_bFhElivxihVyudemjUxjGCIWH1qRiEJwyKE1vApvwBXYvowGVUqjpXfNr_afwcG71Cs1pMh2ejWAD3ekclk1LmL7ZQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1477082138,\r\n \"updated\": 1477082138\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/UpdateKeyAttributesWithNoChangeTest/395e0ffd71384bd685cec4c566c1c69c\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"5efg_DnU77o3Qwrz3cRZArr3uWLghIpdm22oRVVwD6lOvU92c3SgKlq2vt0ZjJQw82Lg_wBYY57F8wP2tK7EdyN3BoFiqcMw4Wu3L7LFghsMh-4NCCyr9tDVQ6wYiaL383dPlcxZb-m8Qdk5qvb_1NudUsfcas8vgwwbaDrQO1nDM_VoAezvwN_JluPmcRBHr3IiKjQb7AgqmyqQM-e_yIjEf-lp1aaKCZBtYscINL1hwtr8hD44HBj1TGQui8Tom7glnxWXL4Emio72zsg43bmHyVuK3zfHcZ5DSYvEQ5djWsMrQ4yo0mdIhUaoOqWnN0Gkyql9EnuczfEnpo5VTw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1482189536,\r\n \"updated\": 1482189536\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "678" + "693" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:38 GMT" + "Mon, 19 Dec 2016 23:18:56 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "d34b0b4b-5a54-4aa8-895d-99579491c9a6" + "d6c10e4e-932c-4566-ab6d-7d55dc03d9d9" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,8 +71,8 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/UpdateKeyAttributesWithNoChangeTest/?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL1VwZGF0ZUtleUF0dHJpYnV0ZXNXaXRoTm9DaGFuZ2VUZXN0Lz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/keys/UpdateKeyAttributesWithNoChangeTest/?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvVXBkYXRlS2V5QXR0cmlidXRlc1dpdGhOb0NoYW5nZVRlc3QvP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800\r\n }\r\n}", "RequestHeaders": { @@ -82,19 +83,20 @@ "98" ], "x-ms-client-request-id": [ - "6cf24fdc-547a-4e35-a569-7c548ef6dd51" + "ae415498-d065-4bf6-9077-1e39b2e39d28" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/UpdateKeyAttributesWithNoChangeTest/f5ec34e196e644e289b7eaba05ff83c9\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"7wE6auQVaIsQNFyEoXMOA5lRO2ARTs9i4jmQBPwb7EvXkBc3LHunZ1G2a7JppKP5I8nFrUYzZ1hpEr7LdwBfXYsjveNErzairEzm86O1Q_i6jet41KQJb362OXGkTrw4Pyxo25GjFrNrb1WVlYf0uXVXaMTkI1VVDzHPub5ctlpYWdf1HhWswgnCzMSBHDz_t-RBUx4VYEZqlP5mVKf6QXDDzSCuCgMCpfUjkpcNC478s304iLTSJQyFqk3_bFhElivxihVyudemjUxjGCIWH1qRiEJwyKE1vApvwBXYvowGVUqjpXfNr_afwcG71Cs1pMh2ejWAD3ekclk1LmL7ZQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1477082138,\r\n \"updated\": 1477082138\r\n }\r\n}", + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/UpdateKeyAttributesWithNoChangeTest/395e0ffd71384bd685cec4c566c1c69c\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"5efg_DnU77o3Qwrz3cRZArr3uWLghIpdm22oRVVwD6lOvU92c3SgKlq2vt0ZjJQw82Lg_wBYY57F8wP2tK7EdyN3BoFiqcMw4Wu3L7LFghsMh-4NCCyr9tDVQ6wYiaL383dPlcxZb-m8Qdk5qvb_1NudUsfcas8vgwwbaDrQO1nDM_VoAezvwN_JluPmcRBHr3IiKjQb7AgqmyqQM-e_yIjEf-lp1aaKCZBtYscINL1hwtr8hD44HBj1TGQui8Tom7glnxWXL4Emio72zsg43bmHyVuK3zfHcZ5DSYvEQ5djWsMrQ4yo0mdIhUaoOqWnN0Gkyql9EnuczfEnpo5VTw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1482189536,\r\n \"updated\": 1482189536\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "678" + "693" ], "Content-Type": [ "application/json; charset=utf-8" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:38 GMT" + "Mon, 19 Dec 2016 23:18:56 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "295a8c6f-0348-49e1-83dc-297e5594c1e3" + "af81cf32-45c7-4eec-bf49-df8e2b0ecc3c" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -139,25 +141,26 @@ "StatusCode": 200 }, { - "RequestUri": "//keys/UpdateKeyAttributesWithNoChangeTest?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL1VwZGF0ZUtleUF0dHJpYnV0ZXNXaXRoTm9DaGFuZ2VUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestUri": "/keys/UpdateKeyAttributesWithNoChangeTest?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvVXBkYXRlS2V5QXR0cmlidXRlc1dpdGhOb0NoYW5nZVRlc3Q/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad775bc0-22f8-4818-9921-f5638453e855" + "a49015f4-a9b6-49cc-97e3-26190c519bd7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/UpdateKeyAttributesWithNoChangeTest/f5ec34e196e644e289b7eaba05ff83c9\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"7wE6auQVaIsQNFyEoXMOA5lRO2ARTs9i4jmQBPwb7EvXkBc3LHunZ1G2a7JppKP5I8nFrUYzZ1hpEr7LdwBfXYsjveNErzairEzm86O1Q_i6jet41KQJb362OXGkTrw4Pyxo25GjFrNrb1WVlYf0uXVXaMTkI1VVDzHPub5ctlpYWdf1HhWswgnCzMSBHDz_t-RBUx4VYEZqlP5mVKf6QXDDzSCuCgMCpfUjkpcNC478s304iLTSJQyFqk3_bFhElivxihVyudemjUxjGCIWH1qRiEJwyKE1vApvwBXYvowGVUqjpXfNr_afwcG71Cs1pMh2ejWAD3ekclk1LmL7ZQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1477082138,\r\n \"updated\": 1477082138\r\n }\r\n}", + "ResponseBody": "{\r\n \"recoveryId\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/deletedkeys/UpdateKeyAttributesWithNoChangeTest\",\r\n \"deletedDate\": 1482189536,\r\n \"scheduledPurgeDate\": 1489965536,\r\n \"key\": {\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/UpdateKeyAttributesWithNoChangeTest/395e0ffd71384bd685cec4c566c1c69c\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"5efg_DnU77o3Qwrz3cRZArr3uWLghIpdm22oRVVwD6lOvU92c3SgKlq2vt0ZjJQw82Lg_wBYY57F8wP2tK7EdyN3BoFiqcMw4Wu3L7LFghsMh-4NCCyr9tDVQ6wYiaL383dPlcxZb-m8Qdk5qvb_1NudUsfcas8vgwwbaDrQO1nDM_VoAezvwN_JluPmcRBHr3IiKjQb7AgqmyqQM-e_yIjEf-lp1aaKCZBtYscINL1hwtr8hD44HBj1TGQui8Tom7glnxWXL4Emio72zsg43bmHyVuK3zfHcZ5DSYvEQ5djWsMrQ4yo0mdIhUaoOqWnN0Gkyql9EnuczfEnpo5VTw\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1482189536,\r\n \"updated\": 1482189536\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "678" + "866" ], "Content-Type": [ "application/json; charset=utf-8" @@ -169,7 +172,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:38 GMT" + "Mon, 19 Dec 2016 23:18:56 GMT" ], "Pragma": [ "no-cache" @@ -178,13 +181,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "4981c87d-373e-4135-8f1d-d532acc79d4a" + "d3193274-e821-46aa-893a-b652d88d9e8d" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -204,8 +207,8 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4" + "KeyVersion": "f2a7e60b8dd0477d943b3a9fb2a63f0b" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultWrapUnwrapRsa15Test.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultWrapUnwrapRsa15Test.json index 293b199ee29a..cdac1b912f6b 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultWrapUnwrapRsa15Test.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultWrapUnwrapRsa15Test.json @@ -4,7 +4,7 @@ "RequestUri": "/keys/sdktestkey//wrapkey?api-version=2016-10-01", "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8vd3JhcGtleT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"Vh_njtgfZUmnhqsdU29bQYhC7HF4nR9j3jXLcb7UXQ0\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"ovQIlbB0DgWhZA7sgkPxbg9H-Ly-VlNGPSgGrrZvlIo\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,19 +13,20 @@ "82" ], "x-ms-client-request-id": [ - "3c8b72f0-161f-4c0c-af05-95bd17c54005" + "9ef10a20-3fd7-4a70-b0c8-627e3a77f86b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/0389317cb2c84b729affa9c8f101ce37\",\r\n \"value\": \"VFIBvwh8wLf5UwY281gbfaZH-iHvXwV007NPZe9WTGNpJG39HV7c0peLZEKuR4hKO51JUohzbDEvQZs4ey2sPzEkwvyUeY25MdsXWLzTOdo7TQFv9b-8ypVgLfbNTtV3NLV6V10FlEoOza6WjUl9ac4m6O2P0l8IDTAVcyoEqxyforWtb8n3ecIaHObNpEF9MKYXBOJWc7TF2iGsEFe8xnwgfAkAOq-T4q7i1n2hggCERRuiDWVcwCMzyBupO47ishx7DNePt_xjqCFwCmQVhSMnWwtiefFotTpwcZ9Ahe4kNgcDPEJdDo8J4NYfVF6fodRM3I39bjp6jCJdvQm9aQ\"\r\n}", + "ResponseBody": "{\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/sdktestkey/0698c2156c1a4e1da5b6bab6f6422fd6\",\r\n \"value\": \"khwIe26NuAZazS7upywDBpGRmRNMW5-4h_JQKxOdB78nYVxZWnBXwCxOv7a3Sr_mCjiVzKsoQQZwL-CJzhYa0512tfYem56zls5a44y5QsdcfvuSzOvpthVhA9XkEfCJSqSY_sip5d8BelT_w_ikvd_8KqiQ_0H54RqYUN8svCpu28paHgBocHFNXTQ9NtU9ec2qgESXk7Jp4OTy9HJtQJavKDUqTJ3YmtLxUgsgBCe0FNMHUSEYC0Ys6PavYzdTwIzYCq84idmAxJOj-O_6eALJFH2sDTOQYHjzOae2t8eFmw6C-t55qjrCI91a9mUJEGPhYixiG4gR4PaEJ7wGvw\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "449" + "464" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:33 GMT" + "Mon, 19 Dec 2016 23:18:44 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "7acecdba-cea2-4049-9b79-80b6facf188e" + "30b3fbb4-f4ce-4c67-b672-fb9e5725d39e" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,10 +71,10 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/sdktestkey/0389317cb2c84b729affa9c8f101ce37/unwrapkey?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8wMzg5MzE3Y2IyYzg0YjcyOWFmZmE5YzhmMTAxY2UzNy91bndyYXBrZXk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/keys/sdktestkey/0698c2156c1a4e1da5b6bab6f6422fd6/unwrapkey?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8wNjk4YzIxNTZjMWE0ZTFkYTViNmJhYjZmNjQyMmZkNi91bndyYXBrZXk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"VFIBvwh8wLf5UwY281gbfaZH-iHvXwV007NPZe9WTGNpJG39HV7c0peLZEKuR4hKO51JUohzbDEvQZs4ey2sPzEkwvyUeY25MdsXWLzTOdo7TQFv9b-8ypVgLfbNTtV3NLV6V10FlEoOza6WjUl9ac4m6O2P0l8IDTAVcyoEqxyforWtb8n3ecIaHObNpEF9MKYXBOJWc7TF2iGsEFe8xnwgfAkAOq-T4q7i1n2hggCERRuiDWVcwCMzyBupO47ishx7DNePt_xjqCFwCmQVhSMnWwtiefFotTpwcZ9Ahe4kNgcDPEJdDo8J4NYfVF6fodRM3I39bjp6jCJdvQm9aQ\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RSA1_5\",\r\n \"value\": \"khwIe26NuAZazS7upywDBpGRmRNMW5-4h_JQKxOdB78nYVxZWnBXwCxOv7a3Sr_mCjiVzKsoQQZwL-CJzhYa0512tfYem56zls5a44y5QsdcfvuSzOvpthVhA9XkEfCJSqSY_sip5d8BelT_w_ikvd_8KqiQ_0H54RqYUN8svCpu28paHgBocHFNXTQ9NtU9ec2qgESXk7Jp4OTy9HJtQJavKDUqTJ3YmtLxUgsgBCe0FNMHUSEYC0Ys6PavYzdTwIzYCq84idmAxJOj-O_6eALJFH2sDTOQYHjzOae2t8eFmw6C-t55qjrCI91a9mUJEGPhYixiG4gR4PaEJ7wGvw\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -82,19 +83,20 @@ "381" ], "x-ms-client-request-id": [ - "8f6d2ed8-9df2-4826-8437-80946160b0b8" + "ffe922a9-3235-452c-940a-8fae6c39c9c0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/0389317cb2c84b729affa9c8f101ce37\",\r\n \"value\": \"Vh_njtgfZUmnhqsdU29bQYhC7HF4nR9j3jXLcb7UXQ0\"\r\n}", + "ResponseBody": "{\r\n \"kid\": \"https://karlaugsoftdeletesdk.vault-int.azure-int.net/keys/sdktestkey/0698c2156c1a4e1da5b6bab6f6422fd6\",\r\n \"value\": \"ovQIlbB0DgWhZA7sgkPxbg9H-Ly-VlNGPSgGrrZvlIo\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "150" + "165" ], "Content-Type": [ "application/json; charset=utf-8" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:35:33 GMT" + "Mon, 19 Dec 2016 23:18:44 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "South Central US" ], "x-ms-request-id": [ - "fd438350-8f91-4343-82c6-8896e43bb657" + "50f56af9-e561-468f-ba01-737615d56f7d" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.1066" ], "X-AspNet-Version": [ "4.0.30319" @@ -141,9 +143,9 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4", - "SymmetricKeyBytes": "Vh/njtgfZUmnhqsdU29bQYhC7HF4nR9j3jXLcb7UXQ0=" + "KeyVersion": "f2a7e60b8dd0477d943b3a9fb2a63f0b", + "SymmetricKeyBytes": "ovQIlbB0DgWhZA7sgkPxbg9H+Ly+VlNGPSgGrrZvlIo=" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultWrapUnwrapRsaOaepTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultWrapUnwrapRsaOaepTest.json index 5607ae30eb9b..904532588846 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultWrapUnwrapRsaOaepTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultWrapUnwrapRsaOaepTest.json @@ -4,7 +4,7 @@ "RequestUri": "/keys/sdktestkey//wrapkey?api-version=2016-10-01", "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8vd3JhcGtleT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RSA-OAEP\",\r\n \"value\": \"IniWt2llQKX2c1lWq2liZG5WGdfuTU_0Onxy7Sa532U\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RSA-OAEP\",\r\n \"value\": \"Z9xfIPYUMHDxlwqoy5K1agdQxLcjloese4fLgzezhj4\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -13,16 +13,17 @@ "84" ], "x-ms-client-request-id": [ - "9563c0b2-88dd-45f5-8285-e9cc3be42975" + "741f6211-0112-46bf-93de-8c7e3483131d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/b669c8bf47a940d8ac818c3831fc11b4\",\r\n \"value\": \"FxvNB3r-aMGqjjxruQGp6qFfUBBx031h8YqncnnFGxALZl1Od7U_389oqgPkrpk7DiCbm0s3M5vgBdDnvoVNutH5tIPQ20bFQBL3hGapsmWPnXoaq6ix2ECBHz7418J88fS1YYXtEQJjWrD3EzFqd_blEodAXGVLew41KpyK65nFlZ7unYRQtw39SmG7clzAw3YpPNikP5gukQxzeCM7pvmYPXxw1P4V5BshO1KAhbeHdCl6m32u-MddI53Q0rAtvZ7FjXI933FJZ2a1p1xbSerFRXA2UKUj7vxoLOKGcagynIcxBEO75IZ1fxIgoI593gocGa4-9Irf_GAJAyxc0g\"\r\n}", + "ResponseBody": "{\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/sdktestkey/4eb68492b5f6421e835d961ad2be3155\",\r\n \"value\": \"W1qgvoCKTsGUBQdjC4ON5mpslhcPoz6GzXn_63uaw-5hm3jYemT5VDJnCyJRSJfUNoXpS1KgWFw-gBiLDx2CAkIJq6TEPPQz89QAcD7_agz1JYRuy54raTeBeIVnrTlQmkPpUoMIlbV8Mm3c7VeJKSi60L9sOOHU72INMIXZ7wVrUL0H0FMAneuhdi5GOV1ajrvCrL5JAB22h2IEsGaaBOoc8k_DAtcmxTWWFOp3p4U2G14vMniU6IP4J5Co8zZbjNCTMsFcycspxq632jcS2_TvPEJSzkFNB29dY5WcGfBQ706D60gvSMh7cJYG0qC_3RtrqQQuvBmOnDI1-syyZw\"\r\n}", "ResponseHeaders": { "Content-Length": [ "449" @@ -37,7 +38,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:01 GMT" + "Mon, 19 Dec 2016 23:09:12 GMT" ], "Pragma": [ "no-cache" @@ -46,13 +47,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "cc2627b9-9d32-4004-ba71-f846c8a9f235" + "a51b35f8-65f3-4225-8732-d6d522d6b4fa" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -70,10 +71,10 @@ "StatusCode": 200 }, { - "RequestUri": "/keys/sdktestkey/b669c8bf47a940d8ac818c3831fc11b4/unwrapkey?api-version=2016-10-01", - "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS9iNjY5YzhiZjQ3YTk0MGQ4YWM4MThjMzgzMWZjMTFiNC91bndyYXBrZXk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestUri": "/keys/sdktestkey/4eb68492b5f6421e835d961ad2be3155/unwrapkey?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS80ZWI2ODQ5MmI1ZjY0MjFlODM1ZDk2MWFkMmJlMzE1NS91bndyYXBrZXk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"alg\": \"RSA-OAEP\",\r\n \"value\": \"FxvNB3r-aMGqjjxruQGp6qFfUBBx031h8YqncnnFGxALZl1Od7U_389oqgPkrpk7DiCbm0s3M5vgBdDnvoVNutH5tIPQ20bFQBL3hGapsmWPnXoaq6ix2ECBHz7418J88fS1YYXtEQJjWrD3EzFqd_blEodAXGVLew41KpyK65nFlZ7unYRQtw39SmG7clzAw3YpPNikP5gukQxzeCM7pvmYPXxw1P4V5BshO1KAhbeHdCl6m32u-MddI53Q0rAtvZ7FjXI933FJZ2a1p1xbSerFRXA2UKUj7vxoLOKGcagynIcxBEO75IZ1fxIgoI593gocGa4-9Irf_GAJAyxc0g\"\r\n}", + "RequestBody": "{\r\n \"alg\": \"RSA-OAEP\",\r\n \"value\": \"W1qgvoCKTsGUBQdjC4ON5mpslhcPoz6GzXn_63uaw-5hm3jYemT5VDJnCyJRSJfUNoXpS1KgWFw-gBiLDx2CAkIJq6TEPPQz89QAcD7_agz1JYRuy54raTeBeIVnrTlQmkPpUoMIlbV8Mm3c7VeJKSi60L9sOOHU72INMIXZ7wVrUL0H0FMAneuhdi5GOV1ajrvCrL5JAB22h2IEsGaaBOoc8k_DAtcmxTWWFOp3p4U2G14vMniU6IP4J5Co8zZbjNCTMsFcycspxq632jcS2_TvPEJSzkFNB29dY5WcGfBQ706D60gvSMh7cJYG0qC_3RtrqQQuvBmOnDI1-syyZw\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -82,16 +83,17 @@ "383" ], "x-ms-client-request-id": [ - "adb8555c-07bb-4b7e-b42c-6c4b43636a17" + "598fe0a4-cfc5-4236-915e-553d36232f2f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.3-preview" + "FxVersion/4.6.24709.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" ] }, - "ResponseBody": "{\r\n \"kid\": \"https://testvault1020.vault.azure.net/keys/sdktestkey/b669c8bf47a940d8ac818c3831fc11b4\",\r\n \"value\": \"IniWt2llQKX2c1lWq2liZG5WGdfuTU_0Onxy7Sa532U\"\r\n}", + "ResponseBody": "{\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/sdktestkey/4eb68492b5f6421e835d961ad2be3155\",\r\n \"value\": \"Z9xfIPYUMHDxlwqoy5K1agdQxLcjloese4fLgzezhj4\"\r\n}", "ResponseHeaders": { "Content-Length": [ "150" @@ -106,7 +108,7 @@ "no-cache" ], "Date": [ - "Fri, 21 Oct 2016 20:34:01 GMT" + "Mon, 19 Dec 2016 23:09:12 GMT" ], "Pragma": [ "no-cache" @@ -115,13 +117,13 @@ "Microsoft-IIS/8.5" ], "x-ms-keyvault-region": [ - "westus" + "eastus" ], "x-ms-request-id": [ - "a7f4742e-4429-4265-ba57-c3cbf077dff1" + "2419a5ba-4844-4ad0-bfbb-aad46525f3e3" ], "x-ms-keyvault-service-version": [ - "1.0.0.781" + "1.0.0.793" ], "X-AspNet-Version": [ "4.0.30319" @@ -141,9 +143,9 @@ ], "Names": {}, "Variables": { - "VaultAddress": "https://testvault1020.vault.azure.net/", + "VaultAddress": "https://testvault1021.vault.azure.net", "KeyName": "sdktestkey", - "KeyVersion": "b669c8bf47a940d8ac818c3831fc11b4", - "SymmetricKeyBytes": "IniWt2llQKX2c1lWq2liZG5WGdfuTU/0Onxy7Sa532U=" + "KeyVersion": "4eb68492b5f6421e835d961ad2be3155", + "SymmetricKeyBytes": "Z9xfIPYUMHDxlwqoy5K1agdQxLcjloese4fLgzezhj4=" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/appsettings.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/appsettings.json index dfe2c47dab1a..de3e0dbdbac8 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/appsettings.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/appsettings.json @@ -3,6 +3,7 @@ "VaultUrl": "", "AuthClientId": "", "AuthClientSecret": "", - "StandardVaultOnly": "false" + "StandardVaultOnly": "false", + "SoftDeleteEnabled": "false" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/project.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/project.json index 65559d5bd731..d9618cc0bc05 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/project.json @@ -15,7 +15,7 @@ "dependencies": { "dotnet-test-xunit": "2.2.0-preview2-build1029", - "Microsoft.Azure.KeyVault": "[2.0.6, 3.0)", + "Microsoft.Azure.KeyVault": "[2.1.0-preview, 3.0)", "Microsoft.AspNet.WebApi.Client": "5.2.2", "Microsoft.Azure.KeyVault.TestFramework": "[2.0.2-preview, 3.0)", "xunit": "2.2.0-beta2-build3300" diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedKeyBundle.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedKeyBundle.cs new file mode 100644 index 000000000000..3ec9f7c7baf2 --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedKeyBundle.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Microsoft.Azure.KeyVault.Models +{ + public partial class DeletedKeyBundle + { + /// + /// The identifier of the deleted key object. This is used to recover the key. + /// + public DeletedKeyIdentifier RecoveryIdentifier + { + get + { + if (!string.IsNullOrWhiteSpace(RecoveryId)) + return new DeletedKeyIdentifier(RecoveryId); + else + return null; + } + } + } +} diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedKeyItem.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedKeyItem.cs new file mode 100644 index 000000000000..7a32776a1f85 --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedKeyItem.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Microsoft.Azure.KeyVault.Models +{ + public partial class DeletedKeyItem + { + /// + /// The identifier of the deleted key object. This is used to recover the key. + /// + public DeletedKeyIdentifier RecoveryIdentifier + { + get + { + if (!string.IsNullOrWhiteSpace(RecoveryId)) + return new DeletedKeyIdentifier(RecoveryId); + else + return null; + } + } + } +} diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedSecretBundle.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedSecretBundle.cs new file mode 100644 index 000000000000..6b2c69c33ea2 --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedSecretBundle.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Microsoft.Azure.KeyVault.Models +{ + public partial class DeletedSecretBundle + { + /// + /// The identifier of the deleted secret object. This is used to recover the secret. + /// + public DeletedSecretIdentifier RecoveryIdentifier + { + get + { + if (!string.IsNullOrWhiteSpace(RecoveryId)) + return new DeletedSecretIdentifier(RecoveryId); + else + return null; + } + } + } +} diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedSecretItem.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedSecretItem.cs new file mode 100644 index 000000000000..1ee5e22bab4b --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Customized/DeletedSecretItem.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Microsoft.Azure.KeyVault.Models +{ + public partial class DeletedSecretItem + { + /// + /// The identifier of the deleted secret object. This is used to recover the secret. + /// + public DeletedSecretIdentifier RecoveryIdentifier + { + get + { + if (!string.IsNullOrWhiteSpace(RecoveryId)) + return new DeletedSecretIdentifier(RecoveryId); + else + return null; + } + } + } +} diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Customized/KeyVaultClientExtensions.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Customized/KeyVaultClientExtensions.cs index 9b5a8415e5b2..0cb1495dc8b0 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Customized/KeyVaultClientExtensions.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Customized/KeyVaultClientExtensions.cs @@ -305,6 +305,9 @@ public static partial class KeyVaultClientExtensions } } + #endregion + + #region Secret Management /// /// Gets a secret. @@ -368,6 +371,86 @@ public static partial class KeyVaultClientExtensions } #endregion + #region Recovery Management + + /// + /// Recovers the deleted secret. + /// + /// The recoveryId of the deleted secret, returned from deletion. + /// Optional cancellation token + /// A response message containing the recovered secret + public static async Task RecoverDeletedSecretAsync(this IKeyVaultClient operations, string recoveryId, CancellationToken cancellationToken = default(CancellationToken)) + { + if (string.IsNullOrEmpty(recoveryId)) + throw new ArgumentNullException(nameof(recoveryId)); + + var secretRecoveryId = new DeletedSecretIdentifier(recoveryId); + + using (var _result = await operations.RecoverDeletedSecretWithHttpMessagesAsync(secretRecoveryId.Vault, secretRecoveryId.Name, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Recovers the deleted key. + /// + /// The recoveryId of the deleted key, returned from deletion. + /// Optional cancellation token + /// A response message containing the recovered key + public static async Task RecoverDeletedKeyAsync(this IKeyVaultClient operations, string recoveryId, CancellationToken cancellationToken = default(CancellationToken)) + { + if (string.IsNullOrEmpty(recoveryId)) + throw new ArgumentNullException(nameof(recoveryId)); + + var keyRecoveryId = new DeletedKeyIdentifier(recoveryId); + + using (var _result = await operations.RecoverDeletedKeyWithHttpMessagesAsync(keyRecoveryId.Vault, keyRecoveryId.Name, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Purges the deleted secret immediately. + /// + /// The recoveryId of the deleted secret, returned from deletion. + /// Optional cancellation token + /// A response message containing the recovered secret + public static async Task PurgeDeletedSecretAsync(this IKeyVaultClient operations, string recoveryId, CancellationToken cancellationToken = default(CancellationToken)) + { + if (string.IsNullOrEmpty(recoveryId)) + throw new ArgumentNullException(nameof(recoveryId)); + + var secretRecoveryId = new DeletedSecretIdentifier(recoveryId); + + using (var _result = await operations.PurgeDeletedSecretWithHttpMessagesAsync(secretRecoveryId.Vault, secretRecoveryId.Name, null, cancellationToken).ConfigureAwait(false)) + { + return; + } + } + + /// + /// Purges the deleted key immediately. + /// + /// The recoveryId of the deleted key, returned from deletion. + /// Optional cancellation token + /// A response message containing the recovered key + public static async Task PurgeDeletedKeyAsync(this IKeyVaultClient operations, string recoveryId, CancellationToken cancellationToken = default(CancellationToken)) + { + if (string.IsNullOrEmpty(recoveryId)) + throw new ArgumentNullException(nameof(recoveryId)); + + var keyRecoveryId = new DeletedKeyIdentifier(recoveryId); + + using (var _result = await operations.PurgeDeletedKeyWithHttpMessagesAsync(keyRecoveryId.Vault, keyRecoveryId.Name, null, cancellationToken).ConfigureAwait(false)) + { + return; + } + } + + #endregion + #region Certificate Management /// @@ -383,7 +466,7 @@ public static partial class KeyVaultClientExtensions throw new ArgumentNullException("vaultBaseUrl"); if (string.IsNullOrEmpty(certificateName)) - throw new ArgumentNullException("keyName"); + throw new ArgumentNullException("certificateName"); using (var _result = await operations.GetCertificateWithHttpMessagesAsync(vaultBaseUrl, certificateName, string.Empty, null, cancellationToken).ConfigureAwait(false)) { @@ -448,6 +531,9 @@ public static partial class KeyVaultClientExtensions if (string.IsNullOrWhiteSpace(vaultBaseUrl)) throw new ArgumentNullException("vaultBaseUrl"); + if (string.IsNullOrWhiteSpace(certificateName)) + throw new ArgumentNullException("certificateName"); + if (null == certificateCollection) throw new ArgumentNullException("certificateCollection"); diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Customized/ObjectIdentifier.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Customized/ObjectIdentifier.cs index 044206b50c98..30e487757d2c 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Customized/ObjectIdentifier.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Customized/ObjectIdentifier.cs @@ -34,7 +34,7 @@ protected static bool IsObjectIdentifier(string collection, string identifier) if (baseUri.Segments.Length != 3 && baseUri.Segments.Length != 4) return false; - if (!string.Equals(baseUri.Segments[1], collection + "/")) + if (!string.Equals(baseUri.Segments[1], collection + "/", StringComparison.OrdinalIgnoreCase)) return false; return true; @@ -109,7 +109,7 @@ protected ObjectIdentifier(string collection, string identifier) if (baseUri.Segments.Length != 3 && baseUri.Segments.Length != 4) throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, "Invalid ObjectIdentifier: {0}. Bad number of segments: {1}", identifier, baseUri.Segments.Length)); - if (!string.Equals(baseUri.Segments[1], collection + "/")) + if (!string.Equals(baseUri.Segments[1], collection + "/", StringComparison.OrdinalIgnoreCase)) throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, "Invalid ObjectIdentifier: {0}. segment [1] should be '{1}/', found '{2}'", identifier, collection, baseUri.Segments[1])); _name = baseUri.Segments[2].Substring(0, baseUri.Segments[2].Length).TrimEnd('/'); @@ -257,6 +257,82 @@ public SecretIdentifier(string identifier) } } + /// + /// The Key Vault deleted key identifier. Aka the recoveryId. + /// + public sealed class DeletedKeyIdentifier : ObjectIdentifier + { + /// + /// Verifies whether the identifier belongs to a key vault deleted key. + /// + /// The key vault deleted key identifier. + /// True if the identifier belongs to a key vault deleted key. False otherwise. + public static bool IsDeletedKeyIdentifier(string identifier) + { + return ObjectIdentifier.IsObjectIdentifier("deletedkeys", identifier); + } + + /// + /// Constructor. + /// + /// the vault base URL + /// the name of the deleted key + public DeletedKeyIdentifier(string vaultBaseUrl, string name) + : base(vaultBaseUrl, "deletedkeys", name, string.Empty) + { + Identifier = BaseIdentifier; // Deleted entities are unversioned. + } + + /// + /// Constructor. + /// + /// The identifier for the deleted key. Aka the recoveryId return from deletion. + public DeletedKeyIdentifier(string identifier) + : base("deletedkeys", identifier) + { + Version = string.Empty; + Identifier = BaseIdentifier; // Deleted entities are unversioned. + } + } + + /// + /// The Key Vault deleted secret identifier. Aka the recoveryId. + /// + public sealed class DeletedSecretIdentifier : ObjectIdentifier + { + /// + /// Verifies whether the identifier belongs to a key vault deleted secret. + /// + /// The key vault secret identifier. + /// True if the identifier belongs to a key vault deleted secret. False otherwise. + public static bool IsDeletedSecretIdentifier(string identifier) + { + return ObjectIdentifier.IsObjectIdentifier("deletedsecrets", identifier); + } + + /// + /// Constructor. + /// + /// the vault base URL + /// the name of the deleted secret + public DeletedSecretIdentifier(string vaultBaseUrl, string name) + : base(vaultBaseUrl, "deletedsecrets", name, string.Empty) + { + Identifier = BaseIdentifier; // Deleted entities are unversioned. + } + + /// + /// Constructor. + /// + /// The identifier for the deleted secret. Aka the recoveryId return from deletion. + public DeletedSecretIdentifier(string identifier) + : base("deletedsecrets", identifier) + { + Version = string.Empty; + Identifier = BaseIdentifier; // Deleted entities are unversioned. + } + } + /// /// The Key Vault certificate identifier. /// diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/IKeyVaultClient.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/IKeyVaultClient.cs index 82f9c2869c40..96c6bee21987 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/IKeyVaultClient.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/IKeyVaultClient.cs @@ -157,7 +157,7 @@ public partial interface IKeyVaultClient : System.IDisposable /// /// The cancellation token. /// - Task> DeleteKeyWithHttpMessagesAsync(string vaultBaseUrl, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteKeyWithHttpMessagesAsync(string vaultBaseUrl, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// The update key operation changes specified attributes of a stored @@ -452,6 +452,75 @@ public partial interface IKeyVaultClient : System.IDisposable /// Task> UnwrapKeyWithHttpMessagesAsync(string vaultBaseUrl, string keyName, string keyVersion, string algorithm, byte[] value, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List deleted keys in the specified vault + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// Maximum number of results to return in a page. If not specified the + /// service will return up to 25 results. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetDeletedKeysWithHttpMessagesAsync(string vaultBaseUrl, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Retrieves the deleted key information plus its attributes + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the key + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetDeletedKeyWithHttpMessagesAsync(string vaultBaseUrl, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Permanently deletes the specified key. aka purges the key. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the key + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task PurgeDeletedKeyWithHttpMessagesAsync(string vaultBaseUrl, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Recovers the deleted key back to its current version under /keys + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the deleted key + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> RecoverDeletedKeyWithHttpMessagesAsync(string vaultBaseUrl, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Sets a secret in a specified key vault. /// @@ -496,7 +565,7 @@ public partial interface IKeyVaultClient : System.IDisposable /// /// The cancellation token. /// - Task> DeleteSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates the attributes associated with a specified secret in a @@ -587,6 +656,76 @@ public partial interface IKeyVaultClient : System.IDisposable /// Task>> GetSecretVersionsWithHttpMessagesAsync(string vaultBaseUrl, string secretName, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List deleted secrets in the specified vault + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// Maximum number of results to return in a page. If not specified the + /// service will return up to 25 results. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetDeletedSecretsWithHttpMessagesAsync(string vaultBaseUrl, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Retrieves the deleted secret information plus its attributes + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the secret + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetDeletedSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Permanently deletes the specified secret. aka purges the secret. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the secret + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task PurgeDeletedSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + + /// + /// Recovers the deleted secret back to its current version under + /// /secrets + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the deleted secret + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> RecoverDeletedSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// List certificates in a specified key vault /// @@ -1059,6 +1198,20 @@ public partial interface IKeyVaultClient : System.IDisposable /// Task>> GetKeysNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List deleted keys in the specified vault + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetDeletedKeysNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// List secrets in a specified key vault /// @@ -1087,6 +1240,20 @@ public partial interface IKeyVaultClient : System.IDisposable /// Task>> GetSecretVersionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List deleted secrets in the specified vault + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> GetDeletedSecretsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// List certificates in a specified key vault /// diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClient.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClient.cs index 82df7631f80c..28c321df71ac 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClient.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClient.cs @@ -692,7 +692,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> DeleteKeyWithHttpMessagesAsync(string vaultBaseUrl, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteKeyWithHttpMessagesAsync(string vaultBaseUrl, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { @@ -816,7 +816,7 @@ private void Initialize() 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")) @@ -829,7 +829,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -3433,25 +3433,14 @@ private void Initialize() } /// - /// Sets a secret in a specified key vault. + /// List deleted keys in the specified vault /// /// /// The vault name, for example https://myvault.vault.azure.net. /// - /// - /// The name of the secret. - /// - /// - /// The value of the secret. - /// - /// - /// Application specific metadata in the form of key-value pairs. - /// - /// - /// Type of the secret value such as a password. - /// - /// - /// The secret management attributes. + /// + /// Maximum number of results to return in a page. If not specified the service + /// will return up to 25 results. /// /// /// Headers that will be added to request. @@ -3474,39 +3463,24 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> SetSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, string value, IDictionary tags = default(IDictionary), string contentType = default(string), SecretAttributes secretAttributes = default(SecretAttributes), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetDeletedKeysWithHttpMessagesAsync(string vaultBaseUrl, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } - if (secretName == null) + if (maxresults > 25) { - throw new ValidationException(ValidationRules.CannotBeNull, "secretName"); + throw new ValidationException(ValidationRules.InclusiveMaximum, "maxresults", 25); } - if (secretName != null) + if (maxresults < 1) { - if (!System.Text.RegularExpressions.Regex.IsMatch(secretName, "^[0-9a-zA-Z-]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "secretName", "^[0-9a-zA-Z-]+$"); - } + throw new ValidationException(ValidationRules.InclusiveMinimum, "maxresults", 1); } if (ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } - if (value == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "value"); - } - SecretSetParameters parameters = new SecretSetParameters(); - if (value != null || tags != null || contentType != null || secretAttributes != null) - { - parameters.Value = value; - parameters.Tags = tags; - parameters.ContentType = contentType; - parameters.SecretAttributes = secretAttributes; - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3515,17 +3489,19 @@ private void Initialize() _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); - tracingParameters.Add("secretName", secretName); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("maxresults", maxresults); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "SetSecret", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetDeletedKeys", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets/{secret-name}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "deletedkeys"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); - _url = _url.Replace("{secret-name}", System.Uri.EscapeDataString(secretName)); List _queryParameters = new List(); + if (maxresults != null) + { + _queryParameters.Add(string.Format("maxresults={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(maxresults, SerializationSettings).Trim('"')))); + } if (ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(ApiVersion))); @@ -3537,7 +3513,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -3568,12 +3544,6 @@ private void Initialize() // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = SafeJsonConvert.SerializeObject(parameters, SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Credentials != null) { @@ -3624,7 +3594,7 @@ private void Initialize() 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")) @@ -3637,7 +3607,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -3657,13 +3627,13 @@ private void Initialize() } /// - /// Deletes a secret from a specified key vault. + /// Retrieves the deleted key information plus its attributes /// /// /// The vault name, for example https://myvault.vault.azure.net. /// - /// - /// The name of the secret. + /// + /// The name of the key /// /// /// Headers that will be added to request. @@ -3686,15 +3656,15 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> DeleteSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetDeletedKeyWithHttpMessagesAsync(string vaultBaseUrl, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } - if (secretName == null) + if (keyName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "secretName"); + throw new ValidationException(ValidationRules.CannotBeNull, "keyName"); } if (ApiVersion == null) { @@ -3708,15 +3678,15 @@ private void Initialize() _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); - tracingParameters.Add("secretName", secretName); + tracingParameters.Add("keyName", keyName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteSecret", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetDeletedKey", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets/{secret-name}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "deletedkeys/{key-name}"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); - _url = _url.Replace("{secret-name}", System.Uri.EscapeDataString(secretName)); + _url = _url.Replace("{key-name}", System.Uri.EscapeDataString(keyName)); List _queryParameters = new List(); if (ApiVersion != null) { @@ -3729,7 +3699,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -3810,7 +3780,7 @@ private void Initialize() 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")) @@ -3823,7 +3793,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -3843,26 +3813,13 @@ private void Initialize() } /// - /// Updates the attributes associated with a specified secret in a given key - /// vault. + /// Permanently deletes the specified key. aka purges the key. /// /// /// The vault name, for example https://myvault.vault.azure.net. /// - /// - /// The name of the secret. - /// - /// - /// The version of the secret. - /// - /// - /// Type of the secret value such as a password. - /// - /// - /// The secret management attributes. - /// - /// - /// Application specific metadata in the form of key-value pairs. + /// + /// The name of the key /// /// /// Headers that will be added to request. @@ -3873,9 +3830,6 @@ private void Initialize() /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -3885,31 +3839,20 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> UpdateSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, string secretVersion, string contentType = default(string), SecretAttributes secretAttributes = default(SecretAttributes), IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task PurgeDeletedKeyWithHttpMessagesAsync(string vaultBaseUrl, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } - if (secretName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "secretName"); - } - if (secretVersion == null) + if (keyName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "secretVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "keyName"); } if (ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } - SecretUpdateParameters parameters = new SecretUpdateParameters(); - if (contentType != null || secretAttributes != null || tags != null) - { - parameters.ContentType = contentType; - parameters.SecretAttributes = secretAttributes; - parameters.Tags = tags; - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3918,18 +3861,15 @@ private void Initialize() _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); - tracingParameters.Add("secretName", secretName); - tracingParameters.Add("secretVersion", secretVersion); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("keyName", keyName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "UpdateSecret", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "PurgeDeletedKey", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets/{secret-name}/{secret-version}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "deletedkeys/{key-name}"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); - _url = _url.Replace("{secret-name}", System.Uri.EscapeDataString(secretName)); - _url = _url.Replace("{secret-version}", System.Uri.EscapeDataString(secretVersion)); + _url = _url.Replace("{key-name}", System.Uri.EscapeDataString(keyName)); List _queryParameters = new List(); if (ApiVersion != null) { @@ -3942,7 +3882,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -3973,12 +3913,6 @@ private void Initialize() // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = SafeJsonConvert.SerializeObject(parameters, SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Credentials != null) { @@ -3999,7 +3933,7 @@ private void Initialize() HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 204) { var ex = new KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -4029,31 +3963,13 @@ private void Initialize() 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")) { _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 = SafeJsonConvert.DeserializeObject(_responseContent, 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); @@ -4062,16 +3978,13 @@ private void Initialize() } /// - /// Get a specified secret from a given key vault. + /// Recovers the deleted key back to its current version under /keys /// /// /// The vault name, for example https://myvault.vault.azure.net. /// - /// - /// The name of the secret. - /// - /// - /// The version of the secret. + /// + /// The name of the deleted key /// /// /// Headers that will be added to request. @@ -4094,19 +4007,15 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> GetSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, string secretVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> RecoverDeletedKeyWithHttpMessagesAsync(string vaultBaseUrl, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } - if (secretName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "secretName"); - } - if (secretVersion == null) + if (keyName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "secretVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "keyName"); } if (ApiVersion == null) { @@ -4120,17 +4029,15 @@ private void Initialize() _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); - tracingParameters.Add("secretName", secretName); - tracingParameters.Add("secretVersion", secretVersion); + tracingParameters.Add("keyName", keyName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetSecret", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "RecoverDeletedKey", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets/{secret-name}/{secret-version}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "deletedkeys/{key-name}/recover"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); - _url = _url.Replace("{secret-name}", System.Uri.EscapeDataString(secretName)); - _url = _url.Replace("{secret-version}", System.Uri.EscapeDataString(secretVersion)); + _url = _url.Replace("{key-name}", System.Uri.EscapeDataString(keyName)); List _queryParameters = new List(); if (ApiVersion != null) { @@ -4143,7 +4050,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -4224,7 +4131,7 @@ private void Initialize() 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")) @@ -4237,7 +4144,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -4257,14 +4164,25 @@ private void Initialize() } /// - /// List secrets in a specified key vault + /// Sets a secret in a specified key vault. /// /// /// The vault name, for example https://myvault.vault.azure.net. /// - /// - /// Maximum number of results to return in a page. If not specified the service - /// will return up to 25 results. + /// + /// The name of the secret. + /// + /// + /// The value of the secret. + /// + /// + /// Application specific metadata in the form of key-value pairs. + /// + /// + /// Type of the secret value such as a password. + /// + /// + /// The secret management attributes. /// /// /// Headers that will be added to request. @@ -4287,24 +4205,39 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task>> GetSecretsWithHttpMessagesAsync(string vaultBaseUrl, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> SetSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, string value, IDictionary tags = default(IDictionary), string contentType = default(string), SecretAttributes secretAttributes = default(SecretAttributes), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } - if (maxresults > 25) + if (secretName == null) { - throw new ValidationException(ValidationRules.InclusiveMaximum, "maxresults", 25); + throw new ValidationException(ValidationRules.CannotBeNull, "secretName"); } - if (maxresults < 1) + if (secretName != null) { - throw new ValidationException(ValidationRules.InclusiveMinimum, "maxresults", 1); + if (!System.Text.RegularExpressions.Regex.IsMatch(secretName, "^[0-9a-zA-Z-]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "secretName", "^[0-9a-zA-Z-]+$"); + } } if (ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } + if (value == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "value"); + } + SecretSetParameters parameters = new SecretSetParameters(); + if (value != null || tags != null || contentType != null || secretAttributes != null) + { + parameters.Value = value; + parameters.Tags = tags; + parameters.ContentType = contentType; + parameters.SecretAttributes = secretAttributes; + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4313,19 +4246,17 @@ private void Initialize() _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); - tracingParameters.Add("maxresults", maxresults); + tracingParameters.Add("secretName", secretName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetSecrets", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "SetSecret", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets/{secret-name}"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + _url = _url.Replace("{secret-name}", System.Uri.EscapeDataString(secretName)); List _queryParameters = new List(); - if (maxresults != null) - { - _queryParameters.Add(string.Format("maxresults={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(maxresults, SerializationSettings).Trim('"')))); - } if (ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(ApiVersion))); @@ -4337,7 +4268,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -4368,6 +4299,12 @@ private void Initialize() // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Credentials != null) { @@ -4418,7 +4355,7 @@ private void Initialize() 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")) @@ -4431,7 +4368,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -4451,7 +4388,7 @@ private void Initialize() } /// - /// List the versions of the specified secret. + /// Deletes a secret from a specified key vault. /// /// /// The vault name, for example https://myvault.vault.azure.net. @@ -4459,10 +4396,6 @@ private void Initialize() /// /// The name of the secret. /// - /// - /// Maximum number of results to return in a page. If not specified the service - /// will return up to 25 results. - /// /// /// Headers that will be added to request. /// @@ -4484,7 +4417,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task>> GetSecretVersionsWithHttpMessagesAsync(string vaultBaseUrl, string secretName, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { @@ -4494,14 +4427,6 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "secretName"); } - if (maxresults > 25) - { - throw new ValidationException(ValidationRules.InclusiveMaximum, "maxresults", 25); - } - if (maxresults < 1) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "maxresults", 1); - } if (ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); @@ -4515,20 +4440,15 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); tracingParameters.Add("secretName", secretName); - tracingParameters.Add("maxresults", maxresults); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetSecretVersions", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteSecret", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets/{secret-name}/versions"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets/{secret-name}"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); _url = _url.Replace("{secret-name}", System.Uri.EscapeDataString(secretName)); List _queryParameters = new List(); - if (maxresults != null) - { - _queryParameters.Add(string.Format("maxresults={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(maxresults, SerializationSettings).Trim('"')))); - } if (ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(ApiVersion))); @@ -4540,7 +4460,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -4621,7 +4541,7 @@ private void Initialize() 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")) @@ -4634,7 +4554,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -4654,14 +4574,26 @@ private void Initialize() } /// - /// List certificates in a specified key vault + /// Updates the attributes associated with a specified secret in a given key + /// vault. /// /// /// The vault name, for example https://myvault.vault.azure.net. /// - /// - /// Maximum number of results to return in a page. If not specified the service - /// will return up to 25 results. + /// + /// The name of the secret. + /// + /// + /// The version of the secret. + /// + /// + /// Type of the secret value such as a password. + /// + /// + /// The secret management attributes. + /// + /// + /// Application specific metadata in the form of key-value pairs. /// /// /// Headers that will be added to request. @@ -4684,24 +4616,31 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task>> GetCertificatesWithHttpMessagesAsync(string vaultBaseUrl, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, string secretVersion, string contentType = default(string), SecretAttributes secretAttributes = default(SecretAttributes), IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } - if (maxresults > 25) + if (secretName == null) { - throw new ValidationException(ValidationRules.InclusiveMaximum, "maxresults", 25); + throw new ValidationException(ValidationRules.CannotBeNull, "secretName"); } - if (maxresults < 1) + if (secretVersion == null) { - throw new ValidationException(ValidationRules.InclusiveMinimum, "maxresults", 1); + throw new ValidationException(ValidationRules.CannotBeNull, "secretVersion"); } if (ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } + SecretUpdateParameters parameters = new SecretUpdateParameters(); + if (contentType != null || secretAttributes != null || tags != null) + { + parameters.ContentType = contentType; + parameters.SecretAttributes = secretAttributes; + parameters.Tags = tags; + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -4710,19 +4649,19 @@ private void Initialize() _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); - tracingParameters.Add("maxresults", maxresults); + tracingParameters.Add("secretName", secretName); + tracingParameters.Add("secretVersion", secretVersion); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetCertificates", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "UpdateSecret", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets/{secret-name}/{secret-version}"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + _url = _url.Replace("{secret-name}", System.Uri.EscapeDataString(secretName)); + _url = _url.Replace("{secret-version}", System.Uri.EscapeDataString(secretVersion)); List _queryParameters = new List(); - if (maxresults != null) - { - _queryParameters.Add(string.Format("maxresults={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(maxresults, SerializationSettings).Trim('"')))); - } if (ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(ApiVersion))); @@ -4734,7 +4673,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -4765,6 +4704,12 @@ private void Initialize() // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Credentials != null) { @@ -4815,7 +4760,7 @@ private void Initialize() 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")) @@ -4828,7 +4773,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -4848,13 +4793,16 @@ private void Initialize() } /// - /// Deletes a certificate from a specified key vault. + /// Get a specified secret from a given key vault. /// /// /// The vault name, for example https://myvault.vault.azure.net. /// - /// - /// The name of the certificate. + /// + /// The name of the secret. + /// + /// + /// The version of the secret. /// /// /// Headers that will be added to request. @@ -4877,15 +4825,19 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCertificateWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, string secretVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } - if (certificateName == null) + if (secretName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); + throw new ValidationException(ValidationRules.CannotBeNull, "secretName"); + } + if (secretVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "secretVersion"); } if (ApiVersion == null) { @@ -4899,15 +4851,17 @@ private void Initialize() _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); - tracingParameters.Add("certificateName", certificateName); + tracingParameters.Add("secretName", secretName); + tracingParameters.Add("secretVersion", secretVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteCertificate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetSecret", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets/{secret-name}/{secret-version}"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); - _url = _url.Replace("{certificate-name}", System.Uri.EscapeDataString(certificateName)); + _url = _url.Replace("{secret-name}", System.Uri.EscapeDataString(secretName)); + _url = _url.Replace("{secret-version}", System.Uri.EscapeDataString(secretVersion)); List _queryParameters = new List(); if (ApiVersion != null) { @@ -4920,7 +4874,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -5001,7 +4955,7 @@ private void Initialize() 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")) @@ -5014,7 +4968,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -5034,13 +4988,14 @@ private void Initialize() } /// - /// Sets the certificate contacts for the specified key vault. + /// List secrets in a specified key vault /// /// /// The vault name, for example https://myvault.vault.azure.net. /// - /// - /// The contacts for the key vault certificate. + /// + /// Maximum number of results to return in a page. If not specified the service + /// will return up to 25 results. /// /// /// Headers that will be added to request. @@ -5063,15 +5018,19 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> SetCertificateContactsWithHttpMessagesAsync(string vaultBaseUrl, Contacts contacts, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetSecretsWithHttpMessagesAsync(string vaultBaseUrl, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } - if (contacts == null) + if (maxresults > 25) { - throw new ValidationException(ValidationRules.CannotBeNull, "contacts"); + throw new ValidationException(ValidationRules.InclusiveMaximum, "maxresults", 25); + } + if (maxresults < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "maxresults", 1); } if (ApiVersion == null) { @@ -5085,15 +5044,19 @@ private void Initialize() _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); - tracingParameters.Add("contacts", contacts); + tracingParameters.Add("maxresults", maxresults); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "SetCertificateContacts", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetSecrets", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/contacts"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); List _queryParameters = new List(); + if (maxresults != null) + { + _queryParameters.Add(string.Format("maxresults={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(maxresults, SerializationSettings).Trim('"')))); + } if (ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(ApiVersion))); @@ -5105,7 +5068,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -5136,12 +5099,6 @@ private void Initialize() // Serialize Request string _requestContent = null; - if(contacts != null) - { - _requestContent = SafeJsonConvert.SerializeObject(contacts, SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Credentials != null) { @@ -5192,7 +5149,7 @@ private void Initialize() 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")) @@ -5205,7 +5162,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -5225,11 +5182,18 @@ private void Initialize() } /// - /// Lists the certificate contacts for a specified key vault. + /// List the versions of the specified secret. /// /// /// The vault name, for example https://myvault.vault.azure.net. /// + /// + /// The name of the secret. + /// + /// + /// Maximum number of results to return in a page. If not specified the service + /// will return up to 25 results. + /// /// /// Headers that will be added to request. /// @@ -5251,12 +5215,24 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> GetCertificateContactsWithHttpMessagesAsync(string vaultBaseUrl, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetSecretVersionsWithHttpMessagesAsync(string vaultBaseUrl, string secretName, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } + if (secretName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "secretName"); + } + if (maxresults > 25) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "maxresults", 25); + } + if (maxresults < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "maxresults", 1); + } if (ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); @@ -5269,14 +5245,21 @@ private void Initialize() _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); + tracingParameters.Add("secretName", secretName); + tracingParameters.Add("maxresults", maxresults); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetCertificateContacts", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetSecretVersions", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/contacts"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets/{secret-name}/versions"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + _url = _url.Replace("{secret-name}", System.Uri.EscapeDataString(secretName)); List _queryParameters = new List(); + if (maxresults != null) + { + _queryParameters.Add(string.Format("maxresults={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(maxresults, SerializationSettings).Trim('"')))); + } if (ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(ApiVersion))); @@ -5369,7 +5352,7 @@ private void Initialize() 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")) @@ -5382,7 +5365,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -5402,11 +5385,15 @@ private void Initialize() } /// - /// Deletes the certificate contacts for a specified key vault. + /// List deleted secrets in the specified vault /// /// /// The vault name, for example https://myvault.vault.azure.net. /// + /// + /// Maximum number of results to return in a page. If not specified the service + /// will return up to 25 results. + /// /// /// Headers that will be added to request. /// @@ -5428,12 +5415,20 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCertificateContactsWithHttpMessagesAsync(string vaultBaseUrl, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetDeletedSecretsWithHttpMessagesAsync(string vaultBaseUrl, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } + if (maxresults > 25) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "maxresults", 25); + } + if (maxresults < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "maxresults", 1); + } if (ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); @@ -5446,14 +5441,19 @@ private void Initialize() _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); + tracingParameters.Add("maxresults", maxresults); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteCertificateContacts", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetDeletedSecrets", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/contacts"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "deletedsecrets"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); List _queryParameters = new List(); + if (maxresults != null) + { + _queryParameters.Add(string.Format("maxresults={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(maxresults, SerializationSettings).Trim('"')))); + } if (ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(ApiVersion))); @@ -5465,7 +5465,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -5546,7 +5546,7 @@ private void Initialize() 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")) @@ -5559,7 +5559,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -5579,14 +5579,13 @@ private void Initialize() } /// - /// List certificate issuers for a specified key vault. + /// Retrieves the deleted secret information plus its attributes /// /// /// The vault name, for example https://myvault.vault.azure.net. /// - /// - /// Maximum number of results to return in a page. If not specified the service - /// will return up to 25 results. + /// + /// The name of the secret /// /// /// Headers that will be added to request. @@ -5609,19 +5608,15 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task>> GetCertificateIssuersWithHttpMessagesAsync(string vaultBaseUrl, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetDeletedSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } - if (maxresults > 25) - { - throw new ValidationException(ValidationRules.InclusiveMaximum, "maxresults", 25); - } - if (maxresults < 1) + if (secretName == null) { - throw new ValidationException(ValidationRules.InclusiveMinimum, "maxresults", 1); + throw new ValidationException(ValidationRules.CannotBeNull, "secretName"); } if (ApiVersion == null) { @@ -5635,19 +5630,16 @@ private void Initialize() _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); - tracingParameters.Add("maxresults", maxresults); + tracingParameters.Add("secretName", secretName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetCertificateIssuers", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetDeletedSecret", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/issuers"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "deletedsecrets/{secret-name}"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + _url = _url.Replace("{secret-name}", System.Uri.EscapeDataString(secretName)); List _queryParameters = new List(); - if (maxresults != null) - { - _queryParameters.Add(string.Format("maxresults={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(maxresults, SerializationSettings).Trim('"')))); - } if (ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(ApiVersion))); @@ -5740,7 +5732,7 @@ private void Initialize() 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")) @@ -5753,7 +5745,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -5773,16 +5765,1703 @@ private void Initialize() } /// - /// Sets the specified certificate issuer. + /// Permanently deletes the specified secret. aka purges the secret. /// /// /// The vault name, for example https://myvault.vault.azure.net. /// - /// - /// The name of the issuer. + /// + /// The name of the secret /// - /// - /// The issuer provider. + /// + /// 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 PurgeDeletedSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (vaultBaseUrl == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); + } + if (secretName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "secretName"); + } + if (ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); + tracingParameters.Add("secretName", secretName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "PurgeDeletedSecret", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "deletedsecrets/{secret-name}"; + _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + _url = _url.Replace("{secret-name}", System.Uri.EscapeDataString(secretName)); + 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", 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 (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await 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) + { + var ex = new KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + KeyVaultError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Recovers the deleted secret back to its current version under /secrets + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the deleted secret + /// + /// + /// 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> RecoverDeletedSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (vaultBaseUrl == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); + } + if (secretName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "secretName"); + } + if (ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); + tracingParameters.Add("secretName", secretName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "RecoverDeletedSecret", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "deletedsecrets/{secret-name}/recover"; + _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + _url = _url.Replace("{secret-name}", System.Uri.EscapeDataString(secretName)); + 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", 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 (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await 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 KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + KeyVaultError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 = SafeJsonConvert.DeserializeObject(_responseContent, 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; + } + + /// + /// List certificates in a specified key vault + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// Maximum number of results to return in a page. If not specified the service + /// will return up to 25 results. + /// + /// + /// 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>> GetCertificatesWithHttpMessagesAsync(string vaultBaseUrl, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (vaultBaseUrl == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); + } + if (maxresults > 25) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "maxresults", 25); + } + if (maxresults < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "maxresults", 1); + } + if (ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); + tracingParameters.Add("maxresults", maxresults); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetCertificates", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates"; + _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + List _queryParameters = new List(); + if (maxresults != null) + { + _queryParameters.Add(string.Format("maxresults={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(maxresults, SerializationSettings).Trim('"')))); + } + 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", 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 (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await 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 KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + KeyVaultError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 = SafeJsonConvert.DeserializeObject>(_responseContent, 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 a certificate from a specified key vault. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the certificate. + /// + /// + /// 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> DeleteCertificateWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (vaultBaseUrl == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); + } + if (certificateName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); + } + if (ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); + tracingParameters.Add("certificateName", certificateName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DeleteCertificate", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}"; + _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + _url = _url.Replace("{certificate-name}", System.Uri.EscapeDataString(certificateName)); + 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", 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 (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await 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 KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + KeyVaultError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 = SafeJsonConvert.DeserializeObject(_responseContent, 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; + } + + /// + /// Sets the certificate contacts for the specified key vault. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The contacts for the key vault certificate. + /// + /// + /// 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> SetCertificateContactsWithHttpMessagesAsync(string vaultBaseUrl, Contacts contacts, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (vaultBaseUrl == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); + } + if (contacts == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "contacts"); + } + if (ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); + tracingParameters.Add("contacts", contacts); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "SetCertificateContacts", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/contacts"; + _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", 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(contacts != null) + { + _requestContent = SafeJsonConvert.SerializeObject(contacts, SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await 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 KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + KeyVaultError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 = SafeJsonConvert.DeserializeObject(_responseContent, 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; + } + + /// + /// Lists the certificate contacts for a specified key vault. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// 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> GetCertificateContactsWithHttpMessagesAsync(string vaultBaseUrl, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (vaultBaseUrl == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); + } + if (ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetCertificateContacts", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/contacts"; + _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", 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 (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await 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 KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + KeyVaultError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 = SafeJsonConvert.DeserializeObject(_responseContent, 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 certificate contacts for a specified key vault. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// 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> DeleteCertificateContactsWithHttpMessagesAsync(string vaultBaseUrl, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (vaultBaseUrl == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); + } + if (ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DeleteCertificateContacts", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/contacts"; + _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", 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 (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await 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 KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + KeyVaultError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 = SafeJsonConvert.DeserializeObject(_responseContent, 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; + } + + /// + /// List certificate issuers for a specified key vault. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// Maximum number of results to return in a page. If not specified the service + /// will return up to 25 results. + /// + /// + /// 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>> GetCertificateIssuersWithHttpMessagesAsync(string vaultBaseUrl, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (vaultBaseUrl == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); + } + if (maxresults > 25) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "maxresults", 25); + } + if (maxresults < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "maxresults", 1); + } + if (ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); + tracingParameters.Add("maxresults", maxresults); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetCertificateIssuers", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/issuers"; + _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + List _queryParameters = new List(); + if (maxresults != null) + { + _queryParameters.Add(string.Format("maxresults={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(maxresults, SerializationSettings).Trim('"')))); + } + 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", 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 (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await 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 KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + KeyVaultError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 = SafeJsonConvert.DeserializeObject>(_responseContent, 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; + } + + /// + /// Sets the specified certificate issuer. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the issuer. + /// + /// + /// The issuer provider. + /// + /// + /// The credentials to be used for the issuer. + /// + /// + /// Details of the organization as provided to the issuer. + /// + /// + /// Attributes of the issuer object. + /// + /// + /// 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> SetCertificateIssuerWithHttpMessagesAsync(string vaultBaseUrl, string issuerName, string provider, IssuerCredentials credentials = default(IssuerCredentials), OrganizationDetails organizationDetails = default(OrganizationDetails), IssuerAttributes attributes = default(IssuerAttributes), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (vaultBaseUrl == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); + } + if (issuerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "issuerName"); + } + if (ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); + } + if (provider == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "provider"); + } + CertificateIssuerSetParameters parameter = new CertificateIssuerSetParameters(); + if (provider != null || credentials != null || organizationDetails != null || attributes != null) + { + parameter.Provider = provider; + parameter.Credentials = credentials; + parameter.OrganizationDetails = organizationDetails; + parameter.Attributes = attributes; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); + tracingParameters.Add("issuerName", issuerName); + tracingParameters.Add("parameter", parameter); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "SetCertificateIssuer", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/issuers/{issuer-name}"; + _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + _url = _url.Replace("{issuer-name}", System.Uri.EscapeDataString(issuerName)); + 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", 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(parameter != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameter, SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await 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 KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + KeyVaultError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 = SafeJsonConvert.DeserializeObject(_responseContent, 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; + } + + /// + /// Updates the specified certificate issuer. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the issuer. + /// + /// + /// The issuer provider. /// /// /// The credentials to be used for the issuer. @@ -5790,8 +7469,209 @@ private void Initialize() /// /// Details of the organization as provided to the issuer. /// - /// - /// Attributes of the issuer object. + /// + /// Attributes of the issuer object. + /// + /// + /// 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> UpdateCertificateIssuerWithHttpMessagesAsync(string vaultBaseUrl, string issuerName, string provider = default(string), IssuerCredentials credentials = default(IssuerCredentials), OrganizationDetails organizationDetails = default(OrganizationDetails), IssuerAttributes attributes = default(IssuerAttributes), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (vaultBaseUrl == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); + } + if (issuerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "issuerName"); + } + if (ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); + } + CertificateIssuerUpdateParameters parameter = new CertificateIssuerUpdateParameters(); + if (provider != null || credentials != null || organizationDetails != null || attributes != null) + { + parameter.Provider = provider; + parameter.Credentials = credentials; + parameter.OrganizationDetails = organizationDetails; + parameter.Attributes = attributes; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); + tracingParameters.Add("issuerName", issuerName); + tracingParameters.Add("parameter", parameter); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "UpdateCertificateIssuer", tracingParameters); + } + // Construct URL + var _baseUrl = BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/issuers/{issuer-name}"; + _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + _url = _url.Replace("{issuer-name}", System.Uri.EscapeDataString(issuerName)); + 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", 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(parameter != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameter, SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await 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 KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + KeyVaultError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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 = SafeJsonConvert.DeserializeObject(_responseContent, 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; + } + + /// + /// Lists the specified certificate issuer. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the issuer. /// /// /// Headers that will be added to request. @@ -5814,7 +7694,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> SetCertificateIssuerWithHttpMessagesAsync(string vaultBaseUrl, string issuerName, string provider, IssuerCredentials credentials = default(IssuerCredentials), OrganizationDetails organizationDetails = default(OrganizationDetails), IssuerAttributes attributes = default(IssuerAttributes), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetCertificateIssuerWithHttpMessagesAsync(string vaultBaseUrl, string issuerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { @@ -5828,18 +7708,6 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } - if (provider == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "provider"); - } - CertificateIssuerSetParameters parameter = new CertificateIssuerSetParameters(); - if (provider != null || credentials != null || organizationDetails != null || attributes != null) - { - parameter.Provider = provider; - parameter.Credentials = credentials; - parameter.OrganizationDetails = organizationDetails; - parameter.Attributes = attributes; - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -5849,9 +7717,8 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); tracingParameters.Add("issuerName", issuerName); - tracingParameters.Add("parameter", parameter); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "SetCertificateIssuer", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetCertificateIssuer", tracingParameters); } // Construct URL var _baseUrl = BaseUri; @@ -5870,7 +7737,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -5901,12 +7768,6 @@ private void Initialize() // Serialize Request string _requestContent = null; - if(parameter != null) - { - _requestContent = SafeJsonConvert.SerializeObject(parameter, SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Credentials != null) { @@ -5990,7 +7851,7 @@ private void Initialize() } /// - /// Updates the specified certificate issuer. + /// Deletes the specified certificate issuer. /// /// /// The vault name, for example https://myvault.vault.azure.net. @@ -5998,18 +7859,6 @@ private void Initialize() /// /// The name of the issuer. /// - /// - /// The issuer provider. - /// - /// - /// The credentials to be used for the issuer. - /// - /// - /// Details of the organization as provided to the issuer. - /// - /// - /// Attributes of the issuer object. - /// /// /// Headers that will be added to request. /// @@ -6031,7 +7880,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> UpdateCertificateIssuerWithHttpMessagesAsync(string vaultBaseUrl, string issuerName, string provider = default(string), IssuerCredentials credentials = default(IssuerCredentials), OrganizationDetails organizationDetails = default(OrganizationDetails), IssuerAttributes attributes = default(IssuerAttributes), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCertificateIssuerWithHttpMessagesAsync(string vaultBaseUrl, string issuerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { @@ -6045,14 +7894,6 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } - CertificateIssuerUpdateParameters parameter = new CertificateIssuerUpdateParameters(); - if (provider != null || credentials != null || organizationDetails != null || attributes != null) - { - parameter.Provider = provider; - parameter.Credentials = credentials; - parameter.OrganizationDetails = organizationDetails; - parameter.Attributes = attributes; - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -6062,9 +7903,8 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); tracingParameters.Add("issuerName", issuerName); - tracingParameters.Add("parameter", parameter); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "UpdateCertificateIssuer", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteCertificateIssuer", tracingParameters); } // Construct URL var _baseUrl = BaseUri; @@ -6083,7 +7923,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -6114,12 +7954,6 @@ private void Initialize() // Serialize Request string _requestContent = null; - if(parameter != null) - { - _requestContent = SafeJsonConvert.SerializeObject(parameter, SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Credentials != null) { @@ -6203,13 +8037,23 @@ private void Initialize() } /// - /// Lists the specified certificate issuer. + /// Creates a new certificate. If this is the first version, the certificate + /// resource is created. /// /// /// The vault name, for example https://myvault.vault.azure.net. /// - /// - /// The name of the issuer. + /// + /// The name of the certificate. + /// + /// + /// The management policy for the certificate. + /// + /// + /// The attributes of the certificate (optional). + /// + /// + /// Application specific metadata in the form of key-value pairs. /// /// /// Headers that will be added to request. @@ -6232,20 +8076,38 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> GetCertificateIssuerWithHttpMessagesAsync(string vaultBaseUrl, string issuerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateCertificateWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, CertificatePolicy certificatePolicy = default(CertificatePolicy), CertificateAttributes certificateAttributes = default(CertificateAttributes), IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } - if (issuerName == null) + if (certificateName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "issuerName"); + throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); + } + if (certificateName != null) + { + if (!System.Text.RegularExpressions.Regex.IsMatch(certificateName, "^[0-9a-zA-Z-]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "certificateName", "^[0-9a-zA-Z-]+$"); + } } if (ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } + if (certificatePolicy != null) + { + certificatePolicy.Validate(); + } + CertificateCreateParameters parameters = new CertificateCreateParameters(); + if (certificatePolicy != null || certificateAttributes != null || tags != null) + { + parameters.CertificatePolicy = certificatePolicy; + parameters.CertificateAttributes = certificateAttributes; + parameters.Tags = tags; + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -6254,15 +8116,16 @@ private void Initialize() _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); - tracingParameters.Add("issuerName", issuerName); + tracingParameters.Add("certificateName", certificateName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetCertificateIssuer", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateCertificate", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/issuers/{issuer-name}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/create"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); - _url = _url.Replace("{issuer-name}", System.Uri.EscapeDataString(issuerName)); + _url = _url.Replace("{certificate-name}", System.Uri.EscapeDataString(certificateName)); List _queryParameters = new List(); if (ApiVersion != null) { @@ -6275,7 +8138,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -6306,6 +8169,12 @@ private void Initialize() // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Credentials != null) { @@ -6326,7 +8195,7 @@ private void Initialize() HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 202) { var ex = new KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -6356,7 +8225,7 @@ private void Initialize() 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")) @@ -6364,12 +8233,12 @@ private void Initialize() _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if ((int)_statusCode == 200) + if ((int)_statusCode == 202) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -6389,13 +8258,30 @@ private void Initialize() } /// - /// Deletes the specified certificate issuer. + /// Imports a certificate into a specified key vault. /// /// /// The vault name, for example https://myvault.vault.azure.net. /// - /// - /// The name of the issuer. + /// + /// The name of the certificate. + /// + /// + /// Base64 encoded representation of the certificate object to import. This + /// certificate needs to contain the private key. + /// + /// + /// If the private key in base64EncodedCertificate is encrypted, the password + /// used for encryption. + /// + /// + /// The management policy for the certificate. + /// + /// + /// The attributes of the certificate (optional). + /// + /// + /// Application specific metadata in the form of key-value pairs. /// /// /// Headers that will be added to request. @@ -6418,20 +8304,44 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCertificateIssuerWithHttpMessagesAsync(string vaultBaseUrl, string issuerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ImportCertificateWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, string base64EncodedCertificate, string password = default(string), CertificatePolicy certificatePolicy = default(CertificatePolicy), CertificateAttributes certificateAttributes = default(CertificateAttributes), IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } - if (issuerName == null) + if (certificateName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "issuerName"); + throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); + } + if (certificateName != null) + { + if (!System.Text.RegularExpressions.Regex.IsMatch(certificateName, "^[0-9a-zA-Z-]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "certificateName", "^[0-9a-zA-Z-]+$"); + } } if (ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } + if (base64EncodedCertificate == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "base64EncodedCertificate"); + } + if (certificatePolicy != null) + { + certificatePolicy.Validate(); + } + CertificateImportParameters parameters = new CertificateImportParameters(); + if (base64EncodedCertificate != null || password != null || certificatePolicy != null || certificateAttributes != null || tags != null) + { + parameters.Base64EncodedCertificate = base64EncodedCertificate; + parameters.Password = password; + parameters.CertificatePolicy = certificatePolicy; + parameters.CertificateAttributes = certificateAttributes; + parameters.Tags = tags; + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -6440,15 +8350,16 @@ private void Initialize() _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); - tracingParameters.Add("issuerName", issuerName); + tracingParameters.Add("certificateName", certificateName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteCertificateIssuer", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ImportCertificate", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/issuers/{issuer-name}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/import"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); - _url = _url.Replace("{issuer-name}", System.Uri.EscapeDataString(issuerName)); + _url = _url.Replace("{certificate-name}", System.Uri.EscapeDataString(certificateName)); List _queryParameters = new List(); if (ApiVersion != null) { @@ -6461,7 +8372,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -6492,6 +8403,12 @@ private void Initialize() // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Credentials != null) { @@ -6542,7 +8459,7 @@ private void Initialize() 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")) @@ -6555,7 +8472,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -6575,8 +8492,7 @@ private void Initialize() } /// - /// Creates a new certificate. If this is the first version, the certificate - /// resource is created. + /// List the versions of a certificate. /// /// /// The vault name, for example https://myvault.vault.azure.net. @@ -6584,14 +8500,9 @@ private void Initialize() /// /// The name of the certificate. /// - /// - /// The management policy for the certificate. - /// - /// - /// The attributes of the certificate (optional). - /// - /// - /// Application specific metadata in the form of key-value pairs. + /// + /// Maximum number of results to return in a page. If not specified the service + /// will return up to 25 results. /// /// /// Headers that will be added to request. @@ -6614,7 +8525,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> CreateCertificateWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, CertificatePolicy certificatePolicy = default(CertificatePolicy), CertificateAttributes certificateAttributes = default(CertificateAttributes), IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetCertificateVersionsWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { @@ -6624,27 +8535,17 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); } - if (certificateName != null) - { - if (!System.Text.RegularExpressions.Regex.IsMatch(certificateName, "^[0-9a-zA-Z-]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "certificateName", "^[0-9a-zA-Z-]+$"); - } - } - if (ApiVersion == null) + if (maxresults > 25) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); + throw new ValidationException(ValidationRules.InclusiveMaximum, "maxresults", 25); } - if (certificatePolicy != null) + if (maxresults < 1) { - certificatePolicy.Validate(); + throw new ValidationException(ValidationRules.InclusiveMinimum, "maxresults", 1); } - CertificateCreateParameters parameters = new CertificateCreateParameters(); - if (certificatePolicy != null || certificateAttributes != null || tags != null) + if (ApiVersion == null) { - parameters.CertificatePolicy = certificatePolicy; - parameters.CertificateAttributes = certificateAttributes; - parameters.Tags = tags; + throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -6655,16 +8556,20 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); tracingParameters.Add("certificateName", certificateName); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("maxresults", maxresults); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateCertificate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetCertificateVersions", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/create"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/versions"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); _url = _url.Replace("{certificate-name}", System.Uri.EscapeDataString(certificateName)); List _queryParameters = new List(); + if (maxresults != null) + { + _queryParameters.Add(string.Format("maxresults={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(maxresults, SerializationSettings).Trim('"')))); + } if (ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(ApiVersion))); @@ -6676,7 +8581,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -6707,12 +8612,6 @@ private void Initialize() // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = SafeJsonConvert.SerializeObject(parameters, SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Credentials != null) { @@ -6733,7 +8632,7 @@ private void Initialize() HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202) + if ((int)_statusCode != 200) { var ex = new KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -6763,7 +8662,7 @@ private void Initialize() 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")) @@ -6771,12 +8670,12 @@ private void Initialize() _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if ((int)_statusCode == 202) + if ((int)_statusCode == 200) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -6796,30 +8695,13 @@ private void Initialize() } /// - /// Imports a certificate into a specified key vault. + /// Lists the policy for a certificate. /// /// /// The vault name, for example https://myvault.vault.azure.net. /// /// - /// The name of the certificate. - /// - /// - /// Base64 encoded representation of the certificate object to import. This - /// certificate needs to contain the private key. - /// - /// - /// If the private key in base64EncodedCertificate is encrypted, the password - /// used for encryption. - /// - /// - /// The management policy for the certificate. - /// - /// - /// The attributes of the certificate (optional). - /// - /// - /// Application specific metadata in the form of key-value pairs. + /// The name of the certificate in a given key vault. /// /// /// Headers that will be added to request. @@ -6842,7 +8724,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> ImportCertificateWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, string base64EncodedCertificate, string password = default(string), CertificatePolicy certificatePolicy = default(CertificatePolicy), CertificateAttributes certificateAttributes = default(CertificateAttributes), IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetCertificatePolicyWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { @@ -6852,34 +8734,10 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); } - if (certificateName != null) - { - if (!System.Text.RegularExpressions.Regex.IsMatch(certificateName, "^[0-9a-zA-Z-]+$")) - { - throw new ValidationException(ValidationRules.Pattern, "certificateName", "^[0-9a-zA-Z-]+$"); - } - } if (ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } - if (base64EncodedCertificate == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "base64EncodedCertificate"); - } - if (certificatePolicy != null) - { - certificatePolicy.Validate(); - } - CertificateImportParameters parameters = new CertificateImportParameters(); - if (base64EncodedCertificate != null || password != null || certificatePolicy != null || certificateAttributes != null || tags != null) - { - parameters.Base64EncodedCertificate = base64EncodedCertificate; - parameters.Password = password; - parameters.CertificatePolicy = certificatePolicy; - parameters.CertificateAttributes = certificateAttributes; - parameters.Tags = tags; - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -6889,13 +8747,12 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); tracingParameters.Add("certificateName", certificateName); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ImportCertificate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetCertificatePolicy", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/import"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/policy"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); _url = _url.Replace("{certificate-name}", System.Uri.EscapeDataString(certificateName)); List _queryParameters = new List(); @@ -6910,7 +8767,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -6941,12 +8798,6 @@ private void Initialize() // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = SafeJsonConvert.SerializeObject(parameters, SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Credentials != null) { @@ -6997,7 +8848,7 @@ private void Initialize() 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")) @@ -7010,7 +8861,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -7030,17 +8881,17 @@ private void Initialize() } /// - /// List the versions of a certificate. + /// Updates the policy for a certificate. Set specified members in the + /// certificate policy. Leave others as null. /// /// /// The vault name, for example https://myvault.vault.azure.net. /// /// - /// The name of the certificate. + /// The name of the certificate in the given vault. /// - /// - /// Maximum number of results to return in a page. If not specified the service - /// will return up to 25 results. + /// + /// The policy for the certificate. /// /// /// Headers that will be added to request. @@ -7063,7 +8914,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task>> GetCertificateVersionsWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, int? maxresults = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateCertificatePolicyWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, CertificatePolicy certificatePolicy, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { @@ -7073,13 +8924,9 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); } - if (maxresults > 25) - { - throw new ValidationException(ValidationRules.InclusiveMaximum, "maxresults", 25); - } - if (maxresults < 1) + if (certificatePolicy == null) { - throw new ValidationException(ValidationRules.InclusiveMinimum, "maxresults", 1); + throw new ValidationException(ValidationRules.CannotBeNull, "certificatePolicy"); } if (ApiVersion == null) { @@ -7094,20 +8941,16 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); tracingParameters.Add("certificateName", certificateName); - tracingParameters.Add("maxresults", maxresults); + tracingParameters.Add("certificatePolicy", certificatePolicy); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetCertificateVersions", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "UpdateCertificatePolicy", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/versions"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/policy"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); _url = _url.Replace("{certificate-name}", System.Uri.EscapeDataString(certificateName)); List _queryParameters = new List(); - if (maxresults != null) - { - _queryParameters.Add(string.Format("maxresults={0}", System.Uri.EscapeDataString(SafeJsonConvert.SerializeObject(maxresults, SerializationSettings).Trim('"')))); - } if (ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(ApiVersion))); @@ -7119,7 +8962,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -7150,6 +8993,12 @@ private void Initialize() // Serialize Request string _requestContent = null; + if(certificatePolicy != null) + { + _requestContent = SafeJsonConvert.SerializeObject(certificatePolicy, SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Credentials != null) { @@ -7200,7 +9049,7 @@ private void Initialize() 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")) @@ -7213,7 +9062,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -7233,13 +9082,25 @@ private void Initialize() } /// - /// Lists the policy for a certificate. + /// Updates the specified attributes associated with the given certificate. /// /// /// The vault name, for example https://myvault.vault.azure.net. /// /// - /// The name of the certificate in a given key vault. + /// The name of the certificate in the given key vault. + /// + /// + /// The version of the certificate. + /// + /// + /// The management policy for the certificate. + /// + /// + /// The attributes of the certificate (optional). + /// + /// + /// Application specific metadata in the form of key-value pairs. /// /// /// Headers that will be added to request. @@ -7262,7 +9123,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> GetCertificatePolicyWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateCertificateWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, string certificateVersion, CertificatePolicy certificatePolicy = default(CertificatePolicy), CertificateAttributes certificateAttributes = default(CertificateAttributes), IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { @@ -7272,10 +9133,25 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); } + if (certificateVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "certificateVersion"); + } if (ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } + if (certificatePolicy != null) + { + certificatePolicy.Validate(); + } + CertificateUpdateParameters parameters = new CertificateUpdateParameters(); + if (certificatePolicy != null || certificateAttributes != null || tags != null) + { + parameters.CertificatePolicy = certificatePolicy; + parameters.CertificateAttributes = certificateAttributes; + parameters.Tags = tags; + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -7285,14 +9161,17 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); tracingParameters.Add("certificateName", certificateName); + tracingParameters.Add("certificateVersion", certificateVersion); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetCertificatePolicy", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "UpdateCertificate", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/policy"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/{certificate-version}"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); _url = _url.Replace("{certificate-name}", System.Uri.EscapeDataString(certificateName)); + _url = _url.Replace("{certificate-version}", System.Uri.EscapeDataString(certificateVersion)); List _queryParameters = new List(); if (ApiVersion != null) { @@ -7305,7 +9184,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -7336,6 +9215,12 @@ private void Initialize() // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Credentials != null) { @@ -7386,7 +9271,7 @@ private void Initialize() 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")) @@ -7399,7 +9284,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -7419,8 +9304,7 @@ private void Initialize() } /// - /// Updates the policy for a certificate. Set specified members in the - /// certificate policy. Leave others as null. + /// Gets information about a specified certificate. /// /// /// The vault name, for example https://myvault.vault.azure.net. @@ -7428,8 +9312,8 @@ private void Initialize() /// /// The name of the certificate in the given vault. /// - /// - /// The policy for the certificate. + /// + /// The version of the certificate. /// /// /// Headers that will be added to request. @@ -7452,7 +9336,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> UpdateCertificatePolicyWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, CertificatePolicy certificatePolicy, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetCertificateWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, string certificateVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { @@ -7462,9 +9346,9 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); } - if (certificatePolicy == null) + if (certificateVersion == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "certificatePolicy"); + throw new ValidationException(ValidationRules.CannotBeNull, "certificateVersion"); } if (ApiVersion == null) { @@ -7479,15 +9363,16 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); tracingParameters.Add("certificateName", certificateName); - tracingParameters.Add("certificatePolicy", certificatePolicy); + tracingParameters.Add("certificateVersion", certificateVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "UpdateCertificatePolicy", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetCertificate", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/policy"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/{certificate-version}"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); _url = _url.Replace("{certificate-name}", System.Uri.EscapeDataString(certificateName)); + _url = _url.Replace("{certificate-version}", System.Uri.EscapeDataString(certificateVersion)); List _queryParameters = new List(); if (ApiVersion != null) { @@ -7500,7 +9385,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -7531,12 +9416,6 @@ private void Initialize() // Serialize Request string _requestContent = null; - if(certificatePolicy != null) - { - _requestContent = SafeJsonConvert.SerializeObject(certificatePolicy, SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Credentials != null) { @@ -7587,7 +9466,7 @@ private void Initialize() 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")) @@ -7600,7 +9479,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -7620,25 +9499,16 @@ private void Initialize() } /// - /// Updates the specified attributes associated with the given certificate. + /// Updates a certificate operation. /// /// /// The vault name, for example https://myvault.vault.azure.net. /// /// - /// The name of the certificate in the given key vault. - /// - /// - /// The version of the certificate. - /// - /// - /// The management policy for the certificate. - /// - /// - /// The attributes of the certificate (optional). + /// The name of the certificate. /// - /// - /// Application specific metadata in the form of key-value pairs. + /// + /// Indicates if cancellation was requested on the certificate operation. /// /// /// Headers that will be added to request. @@ -7661,7 +9531,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> UpdateCertificateWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, string certificateVersion, CertificatePolicy certificatePolicy = default(CertificatePolicy), CertificateAttributes certificateAttributes = default(CertificateAttributes), IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateCertificateOperationWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, bool cancellationRequested, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { @@ -7671,25 +9541,12 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); } - if (certificateVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "certificateVersion"); - } if (ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } - if (certificatePolicy != null) - { - certificatePolicy.Validate(); - } - CertificateUpdateParameters parameters = new CertificateUpdateParameters(); - if (certificatePolicy != null || certificateAttributes != null || tags != null) - { - parameters.CertificatePolicy = certificatePolicy; - parameters.CertificateAttributes = certificateAttributes; - parameters.Tags = tags; - } + CertificateOperationUpdateParameter certificateOperation = new CertificateOperationUpdateParameter(); + certificateOperation.CancellationRequested = cancellationRequested; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -7699,17 +9556,15 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); tracingParameters.Add("certificateName", certificateName); - tracingParameters.Add("certificateVersion", certificateVersion); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("certificateOperation", certificateOperation); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "UpdateCertificate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "UpdateCertificateOperation", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/{certificate-version}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/pending"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); _url = _url.Replace("{certificate-name}", System.Uri.EscapeDataString(certificateName)); - _url = _url.Replace("{certificate-version}", System.Uri.EscapeDataString(certificateVersion)); List _queryParameters = new List(); if (ApiVersion != null) { @@ -7753,9 +9608,9 @@ private void Initialize() // Serialize Request string _requestContent = null; - if(parameters != null) + if(certificateOperation != null) { - _requestContent = SafeJsonConvert.SerializeObject(parameters, SerializationSettings); + _requestContent = SafeJsonConvert.SerializeObject(certificateOperation, SerializationSettings); _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } @@ -7809,7 +9664,7 @@ private void Initialize() 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")) @@ -7822,7 +9677,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -7842,16 +9697,13 @@ private void Initialize() } /// - /// Gets information about a specified certificate. + /// Gets the operation associated with a specified certificate. /// /// /// The vault name, for example https://myvault.vault.azure.net. /// /// - /// The name of the certificate in the given vault. - /// - /// - /// The version of the certificate. + /// The name of the certificate. /// /// /// Headers that will be added to request. @@ -7874,7 +9726,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> GetCertificateWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, string certificateVersion, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetCertificateOperationWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { @@ -7884,10 +9736,6 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); } - if (certificateVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "certificateVersion"); - } if (ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); @@ -7901,16 +9749,14 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); tracingParameters.Add("certificateName", certificateName); - tracingParameters.Add("certificateVersion", certificateVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetCertificate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetCertificateOperation", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/{certificate-version}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/pending"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); _url = _url.Replace("{certificate-name}", System.Uri.EscapeDataString(certificateName)); - _url = _url.Replace("{certificate-version}", System.Uri.EscapeDataString(certificateVersion)); List _queryParameters = new List(); if (ApiVersion != null) { @@ -8004,7 +9850,7 @@ private void Initialize() 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")) @@ -8017,7 +9863,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -8037,7 +9883,7 @@ private void Initialize() } /// - /// Updates a certificate operation. + /// Deletes the operation for a specified certificate. /// /// /// The vault name, for example https://myvault.vault.azure.net. @@ -8045,9 +9891,6 @@ private void Initialize() /// /// The name of the certificate. /// - /// - /// Indicates if cancellation was requested on the certificate operation. - /// /// /// Headers that will be added to request. /// @@ -8069,7 +9912,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> UpdateCertificateOperationWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, bool cancellationRequested, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteCertificateOperationWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { @@ -8083,8 +9926,6 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } - CertificateOperationUpdateParameter certificateOperation = new CertificateOperationUpdateParameter(); - certificateOperation.CancellationRequested = cancellationRequested; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -8094,9 +9935,8 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); tracingParameters.Add("certificateName", certificateName); - tracingParameters.Add("certificateOperation", certificateOperation); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "UpdateCertificateOperation", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteCertificateOperation", tracingParameters); } // Construct URL var _baseUrl = BaseUri; @@ -8115,7 +9955,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -8146,12 +9986,6 @@ private void Initialize() // Serialize Request string _requestContent = null; - if(certificateOperation != null) - { - _requestContent = SafeJsonConvert.SerializeObject(certificateOperation, SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Credentials != null) { @@ -8235,7 +10069,8 @@ private void Initialize() } /// - /// Gets the operation associated with a specified certificate. + /// Merges a certificate or a certificate chain with a key pair existing on the + /// server. /// /// /// The vault name, for example https://myvault.vault.azure.net. @@ -8243,6 +10078,15 @@ private void Initialize() /// /// The name of the certificate. /// + /// + /// The certificate or the certificate chain to merge. + /// + /// + /// The attributes of the certificate (optional). + /// + /// + /// Application specific metadata in the form of key-value pairs. + /// /// /// Headers that will be added to request. /// @@ -8264,7 +10108,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> GetCertificateOperationWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> MergeCertificateWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, IList x509Certificates, CertificateAttributes certificateAttributes = default(CertificateAttributes), IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (vaultBaseUrl == null) { @@ -8278,6 +10122,17 @@ private void Initialize() { throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } + if (x509Certificates == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "x509Certificates"); + } + CertificateMergeParameters parameters = new CertificateMergeParameters(); + if (x509Certificates != null || certificateAttributes != null || tags != null) + { + parameters.X509Certificates = x509Certificates; + parameters.CertificateAttributes = certificateAttributes; + parameters.Tags = tags; + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -8287,12 +10142,13 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); tracingParameters.Add("certificateName", certificateName); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetCertificateOperation", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "MergeCertificate", tracingParameters); } // Construct URL var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/pending"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/pending/merge"; _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); _url = _url.Replace("{certificate-name}", System.Uri.EscapeDataString(certificateName)); List _queryParameters = new List(); @@ -8307,7 +10163,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -8338,6 +10194,12 @@ private void Initialize() // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(parameters, SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Credentials != null) { @@ -8358,7 +10220,7 @@ private void Initialize() HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 201) { var ex = new KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -8388,7 +10250,7 @@ private void Initialize() 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")) @@ -8396,12 +10258,12 @@ private void Initialize() _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if ((int)_statusCode == 200) + if ((int)_statusCode == 201) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -8421,13 +10283,12 @@ private void Initialize() } /// - /// Deletes the operation for a specified certificate. + /// Retrieves a list of individual key versions with the same key name. The + /// full key identifier, attributes, and tags are provided in the response. + /// Authorization: Requires the keys/list permission. /// - /// - /// The vault name, for example https://myvault.vault.azure.net. - /// - /// - /// The name of the certificate. + /// + /// The NextLink from the previous successful call to List operation. /// /// /// Headers that will be added to request. @@ -8450,19 +10311,11 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> DeleteCertificateOperationWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetKeyVersionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (vaultBaseUrl == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); - } - if (certificateName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); - } - if (ApiVersion == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -8471,21 +10324,14 @@ private void Initialize() { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); - tracingParameters.Add("certificateName", certificateName); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteCertificateOperation", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetKeyVersionsNext", tracingParameters); } // Construct URL - var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/pending"; - _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); - _url = _url.Replace("{certificate-name}", System.Uri.EscapeDataString(certificateName)); + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); 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); @@ -8493,7 +10339,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -8574,7 +10420,7 @@ private void Initialize() 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")) @@ -8587,7 +10433,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -8607,23 +10453,10 @@ private void Initialize() } /// - /// Merges a certificate or a certificate chain with a key pair existing on the - /// server. + /// List keys in the specified vault. /// - /// - /// The vault name, for example https://myvault.vault.azure.net. - /// - /// - /// The name of the certificate. - /// - /// - /// The certificate or the certificate chain to merge. - /// - /// - /// The attributes of the certificate (optional). - /// - /// - /// Application specific metadata in the form of key-value pairs. + /// + /// The NextLink from the previous successful call to List operation. /// /// /// Headers that will be added to request. @@ -8646,30 +10479,11 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> MergeCertificateWithHttpMessagesAsync(string vaultBaseUrl, string certificateName, IList x509Certificates, CertificateAttributes certificateAttributes = default(CertificateAttributes), IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetKeysNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (vaultBaseUrl == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); - } - if (certificateName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); - } - if (ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); - } - if (x509Certificates == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "x509Certificates"); - } - CertificateMergeParameters parameters = new CertificateMergeParameters(); - if (x509Certificates != null || certificateAttributes != null || tags != null) + if (nextPageLink == null) { - parameters.X509Certificates = x509Certificates; - parameters.CertificateAttributes = certificateAttributes; - parameters.Tags = tags; + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -8678,22 +10492,14 @@ private void Initialize() { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); - tracingParameters.Add("certificateName", certificateName); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "MergeCertificate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetKeysNext", tracingParameters); } // Construct URL - var _baseUrl = BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "certificates/{certificate-name}/pending/merge"; - _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); - _url = _url.Replace("{certificate-name}", System.Uri.EscapeDataString(certificateName)); + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); 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); @@ -8701,7 +10507,7 @@ private void Initialize() // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (GenerateClientRequestId != null && GenerateClientRequestId.Value) @@ -8732,12 +10538,6 @@ private void Initialize() // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = SafeJsonConvert.SerializeObject(parameters, SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Credentials != null) { @@ -8758,7 +10558,7 @@ private void Initialize() HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -8788,7 +10588,7 @@ private void Initialize() 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")) @@ -8796,12 +10596,12 @@ private void Initialize() _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if ((int)_statusCode == 201) + if ((int)_statusCode == 200) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -8821,9 +10621,7 @@ private void Initialize() } /// - /// Retrieves a list of individual key versions with the same key name. The - /// full key identifier, attributes, and tags are provided in the response. - /// Authorization: Requires the keys/list permission. + /// List deleted keys in the specified vault /// /// /// The NextLink from the previous successful call to List operation. @@ -8849,7 +10647,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task>> GetKeyVersionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetDeletedKeysNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -8864,7 +10662,7 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetKeyVersionsNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetDeletedKeysNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -8958,7 +10756,7 @@ private void Initialize() 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")) @@ -8971,7 +10769,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -8991,7 +10789,7 @@ private void Initialize() } /// - /// List keys in the specified vault. + /// List secrets in a specified key vault /// /// /// The NextLink from the previous successful call to List operation. @@ -9017,7 +10815,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task>> GetKeysNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetSecretsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -9032,7 +10830,7 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetKeysNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetSecretsNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -9126,7 +10924,7 @@ private void Initialize() 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")) @@ -9139,7 +10937,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } catch (JsonException ex) { @@ -9159,7 +10957,7 @@ private void Initialize() } /// - /// List secrets in a specified key vault + /// List the versions of the specified secret. /// /// /// The NextLink from the previous successful call to List operation. @@ -9185,7 +10983,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task>> GetSecretsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetSecretVersionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -9200,7 +10998,7 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetSecretsNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetSecretVersionsNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -9327,7 +11125,7 @@ private void Initialize() } /// - /// List the versions of the specified secret. + /// List deleted secrets in the specified vault /// /// /// The NextLink from the previous successful call to List operation. @@ -9353,7 +11151,7 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task>> GetSecretVersionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetDeletedSecretsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -9368,7 +11166,7 @@ private void Initialize() Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetSecretVersionsNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetDeletedSecretsNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -9462,7 +11260,7 @@ private void Initialize() 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")) @@ -9475,7 +11273,7 @@ private void Initialize() _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, DeserializationSettings); } catch (JsonException ex) { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClientExtensions.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClientExtensions.cs index 26b4717a3cc0..cbee66088301 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClientExtensions.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClientExtensions.cs @@ -123,7 +123,7 @@ public static partial class KeyVaultClientExtensions /// /// The cancellation token. /// - public static async Task DeleteKeyAsync(this IKeyVaultClient operations, string vaultBaseUrl, string keyName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteKeyAsync(this IKeyVaultClient operations, string vaultBaseUrl, string keyName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.DeleteKeyWithHttpMessagesAsync(vaultBaseUrl, keyName, null, cancellationToken).ConfigureAwait(false)) { @@ -494,6 +494,96 @@ public static partial class KeyVaultClientExtensions } } + /// + /// List deleted keys in the specified vault + /// + /// + /// The operations group for this extension method. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// Maximum number of results to return in a page. If not specified the service + /// will return up to 25 results. + /// + /// + /// The cancellation token. + /// + public static async Task> GetDeletedKeysAsync(this IKeyVaultClient operations, string vaultBaseUrl, int? maxresults = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetDeletedKeysWithHttpMessagesAsync(vaultBaseUrl, maxresults, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Retrieves the deleted key information plus its attributes + /// + /// + /// The operations group for this extension method. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the key + /// + /// + /// The cancellation token. + /// + public static async Task GetDeletedKeyAsync(this IKeyVaultClient operations, string vaultBaseUrl, string keyName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetDeletedKeyWithHttpMessagesAsync(vaultBaseUrl, keyName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Permanently deletes the specified key. aka purges the key. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the key + /// + /// + /// The cancellation token. + /// + public static async Task PurgeDeletedKeyAsync(this IKeyVaultClient operations, string vaultBaseUrl, string keyName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.PurgeDeletedKeyWithHttpMessagesAsync(vaultBaseUrl, keyName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Recovers the deleted key back to its current version under /keys + /// + /// + /// The operations group for this extension method. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the deleted key + /// + /// + /// The cancellation token. + /// + public static async Task RecoverDeletedKeyAsync(this IKeyVaultClient operations, string vaultBaseUrl, string keyName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.RecoverDeletedKeyWithHttpMessagesAsync(vaultBaseUrl, keyName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Sets a secret in a specified key vault. /// @@ -544,7 +634,7 @@ public static partial class KeyVaultClientExtensions /// /// The cancellation token. /// - public static async Task DeleteSecretAsync(this IKeyVaultClient operations, string vaultBaseUrl, string secretName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteSecretAsync(this IKeyVaultClient operations, string vaultBaseUrl, string secretName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.DeleteSecretWithHttpMessagesAsync(vaultBaseUrl, secretName, null, cancellationToken).ConfigureAwait(false)) { @@ -665,6 +755,96 @@ public static partial class KeyVaultClientExtensions } } + /// + /// List deleted secrets in the specified vault + /// + /// + /// The operations group for this extension method. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// Maximum number of results to return in a page. If not specified the service + /// will return up to 25 results. + /// + /// + /// The cancellation token. + /// + public static async Task> GetDeletedSecretsAsync(this IKeyVaultClient operations, string vaultBaseUrl, int? maxresults = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetDeletedSecretsWithHttpMessagesAsync(vaultBaseUrl, maxresults, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Retrieves the deleted secret information plus its attributes + /// + /// + /// The operations group for this extension method. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the secret + /// + /// + /// The cancellation token. + /// + public static async Task GetDeletedSecretAsync(this IKeyVaultClient operations, string vaultBaseUrl, string secretName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetDeletedSecretWithHttpMessagesAsync(vaultBaseUrl, secretName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Permanently deletes the specified secret. aka purges the secret. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the secret + /// + /// + /// The cancellation token. + /// + public static async Task PurgeDeletedSecretAsync(this IKeyVaultClient operations, string vaultBaseUrl, string secretName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.PurgeDeletedSecretWithHttpMessagesAsync(vaultBaseUrl, secretName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Recovers the deleted secret back to its current version under /secrets + /// + /// + /// The operations group for this extension method. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the deleted secret + /// + /// + /// The cancellation token. + /// + public static async Task RecoverDeletedSecretAsync(this IKeyVaultClient operations, string vaultBaseUrl, string secretName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.RecoverDeletedSecretWithHttpMessagesAsync(vaultBaseUrl, secretName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// List certificates in a specified key vault /// @@ -1273,6 +1453,26 @@ public static partial class KeyVaultClientExtensions } } + /// + /// List deleted keys in the specified vault + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> GetDeletedKeysNextAsync(this IKeyVaultClient operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetDeletedKeysNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// List secrets in a specified key vault /// @@ -1313,6 +1513,26 @@ public static partial class KeyVaultClientExtensions } } + /// + /// List deleted secrets in the specified vault + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> GetDeletedSecretsNextAsync(this IKeyVaultClient operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetDeletedSecretsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// List certificates in a specified key vault /// diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedKeyBundle.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedKeyBundle.cs new file mode 100644 index 000000000000..559858b78016 --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedKeyBundle.cs @@ -0,0 +1,79 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.KeyVault.Models +{ + using Azure; + using KeyVault; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using Microsoft.Azure.KeyVault.WebKey; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A DeletedKeyBundle consisting of a WebKey plus its Attributes and + /// deletion info + /// + public partial class DeletedKeyBundle : KeyBundle + { + /// + /// Initializes a new instance of the DeletedKeyBundle class. + /// + public DeletedKeyBundle() { } + + /// + /// Initializes a new instance of the DeletedKeyBundle class. + /// + /// The Json web key. + /// The key management attributes. + /// Application specific metadata in the form of + /// key-value pairs. + /// True if the key's lifetime is managed by key + /// vault. If this is a key backing a certificate, then managed will be + /// true. + /// The url of the recovery object, used to + /// identify and recover the deleted key. + /// The time when the key is scheduled + /// to be purged, in UTC + /// The time when the key was deleted, in + /// UTC + public DeletedKeyBundle(JsonWebKey key = default(JsonWebKey), KeyAttributes attributes = default(KeyAttributes), IDictionary tags = default(IDictionary), bool? managed = default(bool?), string recoveryId = default(string), System.DateTime? scheduledPurgeDate = default(System.DateTime?), System.DateTime? deletedDate = default(System.DateTime?)) + : base(key, attributes, tags, managed) + { + RecoveryId = recoveryId; + ScheduledPurgeDate = scheduledPurgeDate; + DeletedDate = deletedDate; + } + + /// + /// Gets or sets the url of the recovery object, used to identify and + /// recover the deleted key. + /// + [JsonProperty(PropertyName = "recoveryId")] + public string RecoveryId { get; set; } + + /// + /// Gets the time when the key is scheduled to be purged, in UTC + /// + [JsonConverter(typeof(UnixTimeJsonConverter))] + [JsonProperty(PropertyName = "scheduledPurgeDate")] + public System.DateTime? ScheduledPurgeDate { get; protected set; } + + /// + /// Gets the time when the key was deleted, in UTC + /// + [JsonConverter(typeof(UnixTimeJsonConverter))] + [JsonProperty(PropertyName = "deletedDate")] + public System.DateTime? DeletedDate { get; protected set; } + + } +} + diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedKeyItem.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedKeyItem.cs new file mode 100644 index 000000000000..58c21f7cc65c --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedKeyItem.cs @@ -0,0 +1,78 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.KeyVault.Models +{ + using Azure; + using KeyVault; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The deleted key item containing the deleted key metadata and + /// information about deletion. + /// + public partial class DeletedKeyItem : KeyItem + { + /// + /// Initializes a new instance of the DeletedKeyItem class. + /// + public DeletedKeyItem() { } + + /// + /// Initializes a new instance of the DeletedKeyItem class. + /// + /// Key identifier. + /// The key management attributes. + /// Application specific metadata in the form of + /// key-value pairs. + /// True if the key's lifetime is managed by key + /// vault. If this is a key backing a certificate, then managed will be + /// true. + /// The url of the recovery object, used to + /// identify and recover the deleted key. + /// The time when the key is scheduled + /// to be purged, in UTC + /// The time when the key was deleted, in + /// UTC + public DeletedKeyItem(string kid = default(string), KeyAttributes attributes = default(KeyAttributes), IDictionary tags = default(IDictionary), bool? managed = default(bool?), string recoveryId = default(string), System.DateTime? scheduledPurgeDate = default(System.DateTime?), System.DateTime? deletedDate = default(System.DateTime?)) + : base(kid, attributes, tags, managed) + { + RecoveryId = recoveryId; + ScheduledPurgeDate = scheduledPurgeDate; + DeletedDate = deletedDate; + } + + /// + /// Gets or sets the url of the recovery object, used to identify and + /// recover the deleted key. + /// + [JsonProperty(PropertyName = "recoveryId")] + public string RecoveryId { get; set; } + + /// + /// Gets the time when the key is scheduled to be purged, in UTC + /// + [JsonConverter(typeof(UnixTimeJsonConverter))] + [JsonProperty(PropertyName = "scheduledPurgeDate")] + public System.DateTime? ScheduledPurgeDate { get; protected set; } + + /// + /// Gets the time when the key was deleted, in UTC + /// + [JsonConverter(typeof(UnixTimeJsonConverter))] + [JsonProperty(PropertyName = "deletedDate")] + public System.DateTime? DeletedDate { get; protected set; } + + } +} + diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedSecretBundle.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedSecretBundle.cs new file mode 100644 index 000000000000..117fa9f285df --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedSecretBundle.cs @@ -0,0 +1,83 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.KeyVault.Models +{ + using Azure; + using KeyVault; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A Deleted Secret consisting of its previous id, attributes and its + /// tags, as well as information on when it will be purged. + /// + public partial class DeletedSecretBundle : SecretBundle + { + /// + /// Initializes a new instance of the DeletedSecretBundle class. + /// + public DeletedSecretBundle() { } + + /// + /// Initializes a new instance of the DeletedSecretBundle class. + /// + /// The secret value. + /// The secret id. + /// The content type of the secret. + /// The secret management attributes. + /// Application specific metadata in the form of + /// key-value pairs. + /// If this is a secret backing a KV certificate, + /// then this field specifies the corresponding key backing the KV + /// certificate. + /// True if the secret's lifetime is managed by + /// key vault. If this is a secret backing a certificate, then managed + /// will be true. + /// The url of the recovery object, used to + /// identify and recover the deleted secret. + /// The time when the secret is + /// scheduled to be purged, in UTC + /// The time when the secret was deleted, in + /// UTC + public DeletedSecretBundle(string value = default(string), string id = default(string), string contentType = default(string), SecretAttributes attributes = default(SecretAttributes), IDictionary tags = default(IDictionary), string kid = default(string), bool? managed = default(bool?), string recoveryId = default(string), System.DateTime? scheduledPurgeDate = default(System.DateTime?), System.DateTime? deletedDate = default(System.DateTime?)) + : base(value, id, contentType, attributes, tags, kid, managed) + { + RecoveryId = recoveryId; + ScheduledPurgeDate = scheduledPurgeDate; + DeletedDate = deletedDate; + } + + /// + /// Gets or sets the url of the recovery object, used to identify and + /// recover the deleted secret. + /// + [JsonProperty(PropertyName = "recoveryId")] + public string RecoveryId { get; set; } + + /// + /// Gets the time when the secret is scheduled to be purged, in UTC + /// + [JsonConverter(typeof(UnixTimeJsonConverter))] + [JsonProperty(PropertyName = "scheduledPurgeDate")] + public System.DateTime? ScheduledPurgeDate { get; protected set; } + + /// + /// Gets the time when the secret was deleted, in UTC + /// + [JsonConverter(typeof(UnixTimeJsonConverter))] + [JsonProperty(PropertyName = "deletedDate")] + public System.DateTime? DeletedDate { get; protected set; } + + } +} + diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedSecretItem.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedSecretItem.cs new file mode 100644 index 000000000000..fb47c9f23c8a --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/DeletedSecretItem.cs @@ -0,0 +1,79 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.KeyVault.Models +{ + using Azure; + using KeyVault; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The deleted secret item containing metadata about the deleted secret. + /// + public partial class DeletedSecretItem : SecretItem + { + /// + /// Initializes a new instance of the DeletedSecretItem class. + /// + public DeletedSecretItem() { } + + /// + /// Initializes a new instance of the DeletedSecretItem class. + /// + /// Secret identifier. + /// The secret management attributes. + /// Application specific metadata in the form of + /// key-value pairs. + /// Type of the secret value such as a + /// password. + /// True if the secret's lifetime is managed by + /// key vault. If this is a key backing a certificate, then managed + /// will be true. + /// The url of the recovery object, used to + /// identify and recover the deleted secret. + /// The time when the secret is + /// scheduled to be purged, in UTC + /// The time when the secret was deleted, in + /// UTC + public DeletedSecretItem(string id = default(string), SecretAttributes attributes = default(SecretAttributes), IDictionary tags = default(IDictionary), string contentType = default(string), bool? managed = default(bool?), string recoveryId = default(string), System.DateTime? scheduledPurgeDate = default(System.DateTime?), System.DateTime? deletedDate = default(System.DateTime?)) + : base(id, attributes, tags, contentType, managed) + { + RecoveryId = recoveryId; + ScheduledPurgeDate = scheduledPurgeDate; + DeletedDate = deletedDate; + } + + /// + /// Gets or sets the url of the recovery object, used to identify and + /// recover the deleted secret. + /// + [JsonProperty(PropertyName = "recoveryId")] + public string RecoveryId { get; set; } + + /// + /// Gets the time when the secret is scheduled to be purged, in UTC + /// + [JsonConverter(typeof(UnixTimeJsonConverter))] + [JsonProperty(PropertyName = "scheduledPurgeDate")] + public System.DateTime? ScheduledPurgeDate { get; protected set; } + + /// + /// Gets the time when the secret was deleted, in UTC + /// + [JsonConverter(typeof(UnixTimeJsonConverter))] + [JsonProperty(PropertyName = "deletedDate")] + public System.DateTime? DeletedDate { get; protected set; } + + } +} + diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeyAttributes.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeyAttributes.cs index 8559dd8cdc19..dd9fd2a76c18 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeyAttributes.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeyAttributes.cs @@ -10,6 +10,7 @@ namespace Microsoft.Azure.KeyVault.Models { using Azure; using KeyVault; + using Newtonsoft.Json; using System.Linq; /// @@ -31,11 +32,21 @@ public KeyAttributes() { } /// Expiry date in UTC. /// Creation time in UTC. /// Last updated time in UTC. - public KeyAttributes(bool? enabled = default(bool?), System.DateTime? notBefore = default(System.DateTime?), System.DateTime? expires = default(System.DateTime?), System.DateTime? created = default(System.DateTime?), System.DateTime? updated = default(System.DateTime?)) + /// Reflects the purge protection status of + /// the key. If true, purge is disabled, false, otherwise. + public KeyAttributes(bool? enabled = default(bool?), System.DateTime? notBefore = default(System.DateTime?), System.DateTime? expires = default(System.DateTime?), System.DateTime? created = default(System.DateTime?), System.DateTime? updated = default(System.DateTime?), bool purgeDisabled = default(bool)) : base(enabled, notBefore, expires, created, updated) { + PurgeDisabled = purgeDisabled; } + /// + /// Gets reflects the purge protection status of the key. If true, + /// purge is disabled, false, otherwise. + /// + [JsonProperty(PropertyName = "purgeDisabled")] + public bool PurgeDisabled { get; protected set; } + } } diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Properties/AssemblyInfo.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Properties/AssemblyInfo.cs index 92a1687bca2e..2ddd42bc4682 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Properties/AssemblyInfo.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ [assembly: AssemblyDescription("Azure Key Vault enables users to store and use cryptographic keys within the Microsoft Azure environment. Azure Key Vault supports multiple key types and algorithms and enables the use of Hardware Security Modules (HSM) for high value customer keys. In addition, Azure Key Vault allows users to securely store secrets in a Key Vault; secrets are limited size octet objects and Azure Key Vault applies no specific semantics to these objects. A Key Vault may contain a mix of keys and secrets at the same time, and access control for the two types of object is independently controlled. Users, subject to appropriate authorization, may: 1) Manage cryptographic keys using Create, Import, Update, Delete and other operations 2) Manage secrets using Get, Set, Delete and other operations 3) Use cryptographic keys with Sign/Verify, WrapKey/UnwrapKey and Encrypt/Decrypt operations. Operations against Key Vaults are authenticated and authorized using Azure Active Directory.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.0.6.0")] +[assembly: AssemblyFileVersion("2.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/project.json b/src/KeyVault/Microsoft.Azure.KeyVault/project.json index 39306a5116c3..ae356daf5edf 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/project.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault/project.json @@ -1,5 +1,5 @@ { - "version": "2.0.6", + "version": "2.1.0-preview", "title": "Microsoft Azure key vault", "description": "Azure Key Vault enables users to store and use cryptographic keys within the Microsoft Azure environment. Azure Key Vault supports multiple key types and algorithms and enables the use of Hardware Security Modules (HSM) for high value customer keys. In addition, Azure Key Vault allows users to securely store secrets in a Key Vault; secrets are limited size octet objects and Azure Key Vault applies no specific semantics to these objects. A Key Vault may contain a mix of keys and secrets at the same time, and access control for the two types of object is independently controlled. Users, subject to appropriate authorization, may: 1) Manage cryptographic keys using Create, Import, Update, Delete and other operations 2) Manage secrets using Get, Set, Delete and other operations 3) Use cryptographic keys with Sign/Verify, WrapKey/UnwrapKey and Encrypt/Decrypt operations. Operations against Key Vaults are authenticated and authorized using Azure Active Directory. Key Vault now supports certificates, a complex type that makes use of existing key and secret infrastructure for certificate operations. KV certificates also support notification and auto-renewal as well as other management features.", "authors": [ "Microsoft" ], diff --git a/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/KeyVaultTestBase.cs b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/KeyVaultTestBase.cs index 71b42894b568..40be9dcca9d2 100644 --- a/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/KeyVaultTestBase.cs +++ b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/KeyVaultTestBase.cs @@ -10,6 +10,9 @@ using Microsoft.Azure.Management.ResourceManager; using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Microsoft.Azure.Management.KeyVault.Models; +using System.Collections.Generic; +using Microsoft.Azure.Management.ResourceManager.Models; namespace KeyVault.Management.Tests { @@ -29,6 +32,14 @@ public class KeyVaultTestBase : TestBase public KeyVaultManagementClient client { get; set; } public ResourceManagementClient resourcesClient { get; set; } + public AccessPolicyEntry accPol { get; internal set; } + public string objectIdGuid { get; internal set; } + public string rgName { get; internal set; } + public Dictionary tags { get; internal set; } + public Guid tenantIdGuid { get; internal set; } + public string vaultName { get; internal set; } + public VaultProperties vaultProperties { get; internal set; } + public KeyVaultTestBase(MockContext context) { var testEnv = TestEnvironmentFactory.GetTestEnvironment(); @@ -42,7 +53,7 @@ public KeyVaultTestBase(MockContext context) this.subscriptionId = testEnv.SubscriptionId; var graphClient = context.GetServiceClient(); graphClient.TenantID = this.tenantId; - graphClient.BaseUri = new Uri("https://graph.windows.net"); + graphClient.BaseUri = testEnv.Endpoints.GraphUri; this.objectId = graphClient.User.Get(testEnv.UserName).ObjectId; this.applicationId = Guid.NewGuid().ToString(); HttpMockServer.Variables[TenantIdKey] = tenantId; @@ -69,6 +80,41 @@ public KeyVaultTestBase(MockContext context) } ).First().Locations.FirstOrDefault(); + Initialize(); + } + + private void Initialize() + { + rgName = TestUtilities.GenerateName("sdktestrg"); + resourcesClient.ResourceGroups.CreateOrUpdate(rgName, new ResourceGroup { Location = location }); + + vaultName = TestUtilities.GenerateName("sdktestvault"); + tenantIdGuid = Guid.Parse(tenantId); + objectIdGuid = objectId; + tags = new Dictionary { { "tag1", "value1" }, { "tag2", "value2" }, { "tag3", "value3" } }; + accPol = new AccessPolicyEntry + { + TenantId = tenantIdGuid, + ObjectId = objectIdGuid, + Permissions = new Permissions + { + Keys = new string[] { "all" }, + Secrets = new string[] { "all" }, + Certificates = new string[] { "all" } + } + }; + + vaultProperties = new VaultProperties + { + EnabledForDeployment = true, + EnabledForDiskEncryption = true, + EnabledForTemplateDeployment = true, + EnableSoftDelete = true, + Sku = new Microsoft.Azure.Management.KeyVault.Models.Sku { Name = SkuName.Standard }, + TenantId = tenantIdGuid, + VaultUri = "", + AccessPolicies = new[] { accPol } + }; } } } \ No newline at end of file diff --git a/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementListDeletedVaults.json b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementListDeletedVaults.json new file mode 100644 index 000000000000..71340aaa4776 --- /dev/null +++ b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementListDeletedVaults.json @@ -0,0 +1,2043 @@ +{ + "Entries": [ + { + "RequestUri": "/dfe47ca8-acfc-4539-9519-7d196a9c79e4/users/subadmin@aztestkmsbvtoutlook.ccsctp.net?api-version=1.42-previewInternal", + "EncodedRequestUri": "L2RmZTQ3Y2E4LWFjZmMtNDUzOS05NTE5LTdkMTk2YTljNzllNC91c2Vycy9zdWJhZG1pbkBhenRlc3RrbXNidnRvdXRsb29rLmNjc2N0cC5uZXQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25a93111-9b21-4544-8694-39c3324c31fb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/2.2.2-preview" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.ppe.windows.net/dfe47ca8-acfc-4539-9519-7d196a9c79e4/$metadata#directoryObjects/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Subscription Admin\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"subadmin\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE8D4B0C05\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"subadmin@aztestkmsbvtoutlook.ccsctp.net\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"thumbnailPhoto@odata.mediaEditLink\": \"directoryObjects/5abe9358-10ae-4095-ba23-d34111430228/Microsoft.WindowsAzure.ActiveDirectory.User/thumbnailPhoto\",\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"subadmin@aztestkmsbvtoutlook.ccsctp.net\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2100" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:08:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "ocp-aad-diagnostics-server-name": [ + "ZE0QSYmhZQQLTZydJhtukJWOmhRx4jcY3NbmCe9pPIU=" + ], + "request-id": [ + "56f79192-5581-40ec-8e25-e808c5679491" + ], + "client-request-id": [ + "0007a3cb-1935-435a-9091-7c2234f13cd5" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "VmAa8LzHENKrcvHbAHfY-rRjtt7WjVPaOPh8Ez675C5GwQkDVVbe9B1uSf57pBcTF-IWSt-RuW1xArrMI2twAEtVU7tHMvjiFpMtEYElDdW1MVPVvEiEZMn8L5842sV-.gEj6P2bAvFoE8e4owlzHGAP2pTCeid7UEp7bwxvbU40" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Duration": [ + "1948512" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c2f5728-af8c-49df-871d-ba79e5455d2c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-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": [ + "Fri, 17 Feb 2017 00:08:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "e55d88b4-28b3-46ef-b5a6-570832a46b48" + ], + "x-ms-correlation-request-id": [ + "e55d88b4-28b3-46ef-b5a6-570832a46b48" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000805Z:e55d88b4-28b3-46ef-b5a6-570832a46b48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourcegroups/sdktestrg8225?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzgyMjU/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "x-ms-client-request-id": [ + "2a5bf8eb-e541-4b3f-841c-e731caf37aa6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225\",\r\n \"name\": \"sdktestrg8225\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:08:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "38911ee7-af76-4e5d-b2a9-1af797bae70a" + ], + "x-ms-correlation-request-id": [ + "38911ee7-af76-4e5d-b2a9-1af797bae70a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000805Z:38911ee7-af76-4e5d-b2a9-1af797bae70a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault6368?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgyMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NjM2OD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "820" + ], + "x-ms-client-request-id": [ + "83e46f20-5b4e-4873-9af0-1810edd889ff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault6368\",\r\n \"name\": \"sdktestvault6368\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault6368.vault-int.azure-int.net\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:08:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "b2806ce7-c90b-4257-be7e-d6d2616898b6" + ], + "x-ms-correlation-request-id": [ + "b2806ce7-c90b-4257-be7e-d6d2616898b6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000807Z:b2806ce7-c90b-4257-be7e-d6d2616898b6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault6368?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgyMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NjM2OD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b03dbdf4-baa4-4abd-9263-203438f62bce" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:08:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "00c93f78-0816-4bf6-89ed-f35434f414e7" + ], + "x-ms-correlation-request-id": [ + "00c93f78-0816-4bf6-89ed-f35434f414e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000808Z:00c93f78-0816-4bf6-89ed-f35434f414e7" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/East%20US%202/deletedVaults/sdktestvault6368?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL0Vhc3QlMjBVUyUyMDIvZGVsZXRlZFZhdWx0cy9zZGt0ZXN0dmF1bHQ2MzY4P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74886024-ed78-4ff3-a780-085c30ecdef5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/sdktestvault6368\",\r\n \"name\": \"sdktestvault6368\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault6368\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2017-02-17 00:08:07Z\",\r\n \"scheduledPurgeDate\": \"2017-05-18 00:08:07Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:08:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "0e9865a2-57fc-4c16-963e-6ad1d13dec12" + ], + "x-ms-correlation-request-id": [ + "0e9865a2-57fc-4c16-963e-6ad1d13dec12" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000808Z:0e9865a2-57fc-4c16-963e-6ad1d13dec12" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/East%20US%202/deletedVaults/sdktestvault6368?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL0Vhc3QlMjBVUyUyMDIvZGVsZXRlZFZhdWx0cy9zZGt0ZXN0dmF1bHQ2MzY4P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d0cfa1ac-7ed4-44b9-bfc6-185de7b83b73" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The specified resource does not exist.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:12:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "5795a316-5640-49ad-b73c-570ddd84f31a" + ], + "x-ms-correlation-request-id": [ + "5795a316-5640-49ad-b73c-570ddd84f31a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T001251Z:5795a316-5640-49ad-b73c-570ddd84f31a" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault3724?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgyMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzcyND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "820" + ], + "x-ms-client-request-id": [ + "daa499d3-0eb0-422c-b93b-d10cadd433fa" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault3724\",\r\n \"name\": \"sdktestvault3724\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault3724.vault-int.azure-int.net\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:08:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "087580a4-9af2-421e-8805-f206cfe8d3c1" + ], + "x-ms-correlation-request-id": [ + "087580a4-9af2-421e-8805-f206cfe8d3c1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000809Z:087580a4-9af2-421e-8805-f206cfe8d3c1" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault3724?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgyMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzcyND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0e85f98-b562-46b4-bc6f-4b07aaea898d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:08:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-request-id": [ + "51298e67-4d29-422a-950d-463080b0ab6d" + ], + "x-ms-correlation-request-id": [ + "51298e67-4d29-422a-950d-463080b0ab6d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000810Z:51298e67-4d29-422a-950d-463080b0ab6d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/East%20US%202/deletedVaults/sdktestvault3724?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL0Vhc3QlMjBVUyUyMDIvZGVsZXRlZFZhdWx0cy9zZGt0ZXN0dmF1bHQzNzI0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a001c2c-c6a6-4173-b56e-c012b3ed2f6e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/sdktestvault3724\",\r\n \"name\": \"sdktestvault3724\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault3724\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2017-02-17 00:08:09Z\",\r\n \"scheduledPurgeDate\": \"2017-05-18 00:08:09Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:08:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "6ca90f9e-8659-455b-b6e8-56a203516e3a" + ], + "x-ms-correlation-request-id": [ + "6ca90f9e-8659-455b-b6e8-56a203516e3a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000810Z:6ca90f9e-8659-455b-b6e8-56a203516e3a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/East%20US%202/deletedVaults/sdktestvault3724?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL0Vhc3QlMjBVUyUyMDIvZGVsZXRlZFZhdWx0cy9zZGt0ZXN0dmF1bHQzNzI0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94f5ac2c-5ceb-48ad-af5b-b4ab62b87fa4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The specified resource does not exist.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:11:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "12d48e31-f87b-4334-b945-1598e46f3c28" + ], + "x-ms-correlation-request-id": [ + "12d48e31-f87b-4334-b945-1598e46f3c28" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T001118Z:12d48e31-f87b-4334-b945-1598e46f3c28" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault5980?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgyMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTk4MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "820" + ], + "x-ms-client-request-id": [ + "7a281596-d384-4203-b438-38ddff2ba856" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault5980\",\r\n \"name\": \"sdktestvault5980\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault5980.vault-int.azure-int.net\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:08:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-request-id": [ + "ba192348-4932-4405-b812-75d9532de445" + ], + "x-ms-correlation-request-id": [ + "ba192348-4932-4405-b812-75d9532de445" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000810Z:ba192348-4932-4405-b812-75d9532de445" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault5980?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgyMjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTk4MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fab3dd2c-39fe-4c55-aa4d-6574c56a9997" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:08:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-request-id": [ + "2b702ecb-25ce-4161-8a36-551baef10ce5" + ], + "x-ms-correlation-request-id": [ + "2b702ecb-25ce-4161-8a36-551baef10ce5" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000811Z:2b702ecb-25ce-4161-8a36-551baef10ce5" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/East%20US%202/deletedVaults/sdktestvault5980?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL0Vhc3QlMjBVUyUyMDIvZGVsZXRlZFZhdWx0cy9zZGt0ZXN0dmF1bHQ1OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2045b711-786c-43eb-a822-c83f8f55fa3b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/sdktestvault5980\",\r\n \"name\": \"sdktestvault5980\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault5980\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2017-02-17 00:08:11Z\",\r\n \"scheduledPurgeDate\": \"2017-05-18 00:08:11Z\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:08:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "124630eb-8371-4ba9-a3fe-67339b50ce6e" + ], + "x-ms-correlation-request-id": [ + "124630eb-8371-4ba9-a3fe-67339b50ce6e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000811Z:124630eb-8371-4ba9-a3fe-67339b50ce6e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/East%20US%202/deletedVaults/sdktestvault5980?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL0Vhc3QlMjBVUyUyMDIvZGVsZXRlZFZhdWx0cy9zZGt0ZXN0dmF1bHQ1OTgwP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26083a11-bfbc-4b0d-bf41-567b9aec3223" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The specified resource does not exist.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:09:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "5a01ff9c-9ee0-4cfe-90ea-461b8a6bf3a6" + ], + "x-ms-correlation-request-id": [ + "5a01ff9c-9ee0-4cfe-90ea-461b8a6bf3a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000946Z:5a01ff9c-9ee0-4cfe-90ea-461b8a6bf3a6" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/deletedVaults?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvZGVsZXRlZFZhdWx0cz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa9d500c-b2d3-4c8f-a5e7-9d4be2c517e9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/sdktestvault5980\",\r\n \"name\": \"sdktestvault5980\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault5980\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2017-02-17 00:08:11Z\",\r\n \"scheduledPurgeDate\": \"2017-05-18 00:08:11Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/sdktestvault3724\",\r\n \"name\": \"sdktestvault3724\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault3724\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2017-02-17 00:08:09Z\",\r\n \"scheduledPurgeDate\": \"2017-05-18 00:08:09Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/sdktestvault6368\",\r\n \"name\": \"sdktestvault6368\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8225/providers/Microsoft.KeyVault/vaults/sdktestvault6368\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2017-02-17 00:08:07Z\",\r\n \"scheduledPurgeDate\": \"2017-05-18 00:08:07Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/sdktestvault1359\",\r\n \"name\": \"sdktestvault1359\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg6867/providers/Microsoft.KeyVault/vaults/sdktestvault1359\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2017-02-16 23:57:23Z\",\r\n \"scheduledPurgeDate\": \"2017-05-17 23:57:23Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/pnh-sdk-test\",\r\n \"name\": \"pnh-sdk-test\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/keyvault/providers/Microsoft.KeyVault/vaults/pnh-sdk-test\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2017-02-16 23:47:52Z\",\r\n \"scheduledPurgeDate\": \"2017-05-17 23:47:52Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/SoftDeleteTestNCU-0\",\r\n \"name\": \"SoftDeleteTestNCU-0\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/SoftDeleteTestGroup/providers/Microsoft.KeyVault/vaults/SoftDeleteTestNCU-0\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2017-02-03 23:47:35Z\",\r\n \"scheduledPurgeDate\": \"2017-05-04 23:47:35Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/southcentralus/deletedVaults/SoftDeleteTestSCU-0\",\r\n \"name\": \"SoftDeleteTestSCU-0\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/SoftDeleteTestGroup/providers/Microsoft.KeyVault/vaults/SoftDeleteTestSCU-0\",\r\n \"location\": \" South Central US\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2017-02-03 23:48:07Z\",\r\n \"scheduledPurgeDate\": \"2017-05-04 23:48:07Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://api-dogfood.resources.windows-int.net/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/deletedVaults?api-version=2016-10-01&%24skiptoken=5dLBjpswEAbgd0FVTyUYEnZJpFWVrB2aNB4LsKnUG8FOFoxwhMmGsNp3L81jtKfRSKN%2fRp%2fmw2nV0B%2bqVltn9eGQdcZFFjgr563vL3blecWlcqU5n4yRs05Zc%2b1KZWe3qpXmZt2q7Wet6j17Pdqyqy59ZVrrnYogRItl4D4pVbiLYi7dKAqf3aMKn4%2fLUKIgUt6lM%2b%2bVVJ31aFV2xppTP%2fup7nlxbXpPqkb1Sj4a%2b%2f3vDe%2fT5BT%2bEiD%2fyfWRi%2fyvX6yeNhqt2heh819pvuepSLec5CITS3YQjTjhnU%2b5HoCvh6neYRQI6vJO8T5ifB%2bDzgmQ3Q24DgFvXhnZY8BJSHkTJ%2fXuxriMU0Gdbw6wlP94JcDT9UFk%2fx5QTUbgBAEufcBiAttEdKQh1AliD8Q3DBMV1WROCR0ZzrfJKGOozz4gMQFlTPwHQAOtd3Na6wXDvyOK6CJB0weNmy17wDUxEDKkOt8CPgcpEXcgKaE1dT4%2f%2fwA%3d\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:08:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "66063f0d-d54a-4e6f-9cc7-cfcb5f9f007a" + ], + "x-ms-correlation-request-id": [ + "66063f0d-d54a-4e6f-9cc7-cfcb5f9f007a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000813Z:66063f0d-d54a-4e6f-9cc7-cfcb5f9f007a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/East%20US%202/deletedVaults/sdktestvault5980/purge?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL0Vhc3QlMjBVUyUyMDIvZGVsZXRlZFZhdWx0cy9zZGt0ZXN0dmF1bHQ1OTgwL3B1cmdlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ae81f34-1964-4258-95f0-4b22cf7036b7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:08:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg2ODk0MzE5NTIxMHwzNUFFQkNENkYxM0M0Mzg1QjQzQTQzNzk3NDI4QzQ4Ng?api-version=2016-10-01" + ], + "Retry-After": [ + "5" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-request-id": [ + "03b678fc-509c-4fbd-bd93-c1013c79840b" + ], + "x-ms-correlation-request-id": [ + "03b678fc-509c-4fbd-bd93-c1013c79840b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000814Z:03b678fc-509c-4fbd-bd93-c1013c79840b" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg2ODk0MzE5NTIxMHwzNUFFQkNENkYxM0M0Mzg1QjQzQTQzNzk3NDI4QzQ4Ng?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9WVlI4TURZek5qSXlPRGcyT0RrME16RTVOVEl4TUh3ek5VRkZRa05FTmtZeE0wTTBNemcxUWpRelFUUXpOemszTkRJNFF6UTROZz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2017-02-17 00:08:13Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:08:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg2ODk0MzE5NTIxMHwzNUFFQkNENkYxM0M0Mzg1QjQzQTQzNzk3NDI4QzQ4Ng?api-version=2016-10-01" + ], + "Retry-After": [ + "5" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-request-id": [ + "fc30dd7b-2a99-49e8-99a3-864264e3a365" + ], + "x-ms-correlation-request-id": [ + "fc30dd7b-2a99-49e8-99a3-864264e3a365" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000844Z:fc30dd7b-2a99-49e8-99a3-864264e3a365" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg2ODk0MzE5NTIxMHwzNUFFQkNENkYxM0M0Mzg1QjQzQTQzNzk3NDI4QzQ4Ng?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9WVlI4TURZek5qSXlPRGcyT0RrME16RTVOVEl4TUh3ek5VRkZRa05FTmtZeE0wTTBNemcxUWpRelFUUXpOemszTkRJNFF6UTROZz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2017-02-17 00:08:13Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:09:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg2ODk0MzE5NTIxMHwzNUFFQkNENkYxM0M0Mzg1QjQzQTQzNzk3NDI4QzQ4Ng?api-version=2016-10-01" + ], + "Retry-After": [ + "5" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "c8bf5616-7065-4a67-9623-e0056d78a886" + ], + "x-ms-correlation-request-id": [ + "c8bf5616-7065-4a67-9623-e0056d78a886" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000914Z:c8bf5616-7065-4a67-9623-e0056d78a886" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg2ODk0MzE5NTIxMHwzNUFFQkNENkYxM0M0Mzg1QjQzQTQzNzk3NDI4QzQ4Ng?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9WVlI4TURZek5qSXlPRGcyT0RrME16RTVOVEl4TUh3ek5VRkZRa05FTmtZeE0wTTBNemcxUWpRelFUUXpOemszTkRJNFF6UTROZz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2017-02-17 00:08:13Z\",\r\n \"lastActionDateTime\": \"2017-02-17 00:09:46Z\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:09:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "817078af-8247-4895-8028-82ed82c24d43" + ], + "x-ms-correlation-request-id": [ + "817078af-8247-4895-8028-82ed82c24d43" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000946Z:817078af-8247-4895-8028-82ed82c24d43" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/East%20US%202/deletedVaults/sdktestvault3724/purge?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL0Vhc3QlMjBVUyUyMDIvZGVsZXRlZFZhdWx0cy9zZGt0ZXN0dmF1bHQzNzI0L3B1cmdlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ea7323f-584f-48ba-be0c-7c4d0fb6e2da" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:09:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg2OTg3NjcyNjkzN3xCODVFNjUwRjNBM0U0NDJEOEU1RTUxMDYyQzM3Njg3NQ?api-version=2016-10-01" + ], + "Retry-After": [ + "5" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-request-id": [ + "bd46acb7-d1fc-4909-ad01-ac08be18c651" + ], + "x-ms-correlation-request-id": [ + "bd46acb7-d1fc-4909-ad01-ac08be18c651" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T000947Z:bd46acb7-d1fc-4909-ad01-ac08be18c651" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg2OTg3NjcyNjkzN3xCODVFNjUwRjNBM0U0NDJEOEU1RTUxMDYyQzM3Njg3NQ?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9WVlI4TURZek5qSXlPRGcyT1RnM05qY3lOamt6TjN4Q09EVkZOalV3UmpOQk0wVTBOREpFT0VVMVJUVXhNRFl5UXpNM05qZzNOUT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2017-02-17 00:09:47Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:10:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg2OTg3NjcyNjkzN3xCODVFNjUwRjNBM0U0NDJEOEU1RTUxMDYyQzM3Njg3NQ?api-version=2016-10-01" + ], + "Retry-After": [ + "5" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "5141cd31-07e9-4c06-a329-2379808388cd" + ], + "x-ms-correlation-request-id": [ + "5141cd31-07e9-4c06-a329-2379808388cd" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T001017Z:5141cd31-07e9-4c06-a329-2379808388cd" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg2OTg3NjcyNjkzN3xCODVFNjUwRjNBM0U0NDJEOEU1RTUxMDYyQzM3Njg3NQ?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9WVlI4TURZek5qSXlPRGcyT1RnM05qY3lOamt6TjN4Q09EVkZOalV3UmpOQk0wVTBOREpFT0VVMVJUVXhNRFl5UXpNM05qZzNOUT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2017-02-17 00:09:47Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:10:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg2OTg3NjcyNjkzN3xCODVFNjUwRjNBM0U0NDJEOEU1RTUxMDYyQzM3Njg3NQ?api-version=2016-10-01" + ], + "Retry-After": [ + "5" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "9809b644-28aa-406e-a92d-396fe743a469" + ], + "x-ms-correlation-request-id": [ + "9809b644-28aa-406e-a92d-396fe743a469" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T001047Z:9809b644-28aa-406e-a92d-396fe743a469" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg2OTg3NjcyNjkzN3xCODVFNjUwRjNBM0U0NDJEOEU1RTUxMDYyQzM3Njg3NQ?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9WVlI4TURZek5qSXlPRGcyT1RnM05qY3lOamt6TjN4Q09EVkZOalV3UmpOQk0wVTBOREpFT0VVMVJUVXhNRFl5UXpNM05qZzNOUT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2017-02-17 00:09:47Z\",\r\n \"lastActionDateTime\": \"2017-02-17 00:11:18Z\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:11:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "807c5ff4-a014-49e8-9bdc-e2e2b2798c07" + ], + "x-ms-correlation-request-id": [ + "807c5ff4-a014-49e8-9bdc-e2e2b2798c07" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T001118Z:807c5ff4-a014-49e8-9bdc-e2e2b2798c07" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/East%20US%202/deletedVaults/sdktestvault6368/purge?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL0Vhc3QlMjBVUyUyMDIvZGVsZXRlZFZhdWx0cy9zZGt0ZXN0dmF1bHQ2MzY4L3B1cmdlP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c50fadd5-a32d-44b6-86f1-1192d92fd1e4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:11:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg3MDgwMTM4MTM4MnxEMDAxQTI1RDM4RjU0QTFCQUY5MjNBQkEyOENCODk0Mw?api-version=2016-10-01" + ], + "Retry-After": [ + "5" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-request-id": [ + "b98e4ade-4e0f-4c69-8e74-6e1a1abf16d0" + ], + "x-ms-correlation-request-id": [ + "b98e4ade-4e0f-4c69-8e74-6e1a1abf16d0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T001119Z:b98e4ade-4e0f-4c69-8e74-6e1a1abf16d0" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg3MDgwMTM4MTM4MnxEMDAxQTI1RDM4RjU0QTFCQUY5MjNBQkEyOENCODk0Mw?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9WVlI4TURZek5qSXlPRGczTURnd01UTTRNVE00TW54RU1EQXhRVEkxUkRNNFJqVTBRVEZDUVVZNU1qTkJRa0V5T0VOQ09EazBNdz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2017-02-17 00:11:19Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:11:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg3MDgwMTM4MTM4MnxEMDAxQTI1RDM4RjU0QTFCQUY5MjNBQkEyOENCODk0Mw?api-version=2016-10-01" + ], + "Retry-After": [ + "5" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "c6fcaad0-fc1d-4aae-bc69-84dfa50a3817" + ], + "x-ms-correlation-request-id": [ + "c6fcaad0-fc1d-4aae-bc69-84dfa50a3817" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T001150Z:c6fcaad0-fc1d-4aae-bc69-84dfa50a3817" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg3MDgwMTM4MTM4MnxEMDAxQTI1RDM4RjU0QTFCQUY5MjNBQkEyOENCODk0Mw?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9WVlI4TURZek5qSXlPRGczTURnd01UTTRNVE00TW54RU1EQXhRVEkxUkRNNFJqVTBRVEZDUVVZNU1qTkJRa0V5T0VOQ09EazBNdz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2017-02-17 00:11:19Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:12:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg3MDgwMTM4MTM4MnxEMDAxQTI1RDM4RjU0QTFCQUY5MjNBQkEyOENCODk0Mw?api-version=2016-10-01" + ], + "Retry-After": [ + "5" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "ee5e86fd-5f3b-4aae-becf-9742d662f268" + ], + "x-ms-correlation-request-id": [ + "ee5e86fd-5f3b-4aae-becf-9742d662f268" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T001220Z:ee5e86fd-5f3b-4aae-becf-9742d662f268" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzNjIyODg3MDgwMTM4MTM4MnxEMDAxQTI1RDM4RjU0QTFCQUY5MjNBQkEyOENCODk0Mw?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL2Vhc3R1czIvb3BlcmF0aW9uUmVzdWx0cy9WVlI4TURZek5qSXlPRGczTURnd01UTTRNVE00TW54RU1EQXhRVEkxUkRNNFJqVTBRVEZDUVVZNU1qTkJRa0V5T0VOQ09EazBNdz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2017-02-17 00:11:19Z\",\r\n \"lastActionDateTime\": \"2017-02-17 00:12:51Z\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:12:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.664" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "89973380-158c-4440-aa62-38f9b74ceec3" + ], + "x-ms-correlation-request-id": [ + "89973380-158c-4440-aa62-38f9b74ceec3" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T001251Z:89973380-158c-4440-aa62-38f9b74ceec3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/deletedVaults?api-version=2016-10-01&%24skiptoken=5dLBjpswEAbgd0FVTyUYEnZJpFWVrB2aNB4LsKnUG8FOFoxwhMmGsNp3L81jtKfRSKN%2fRp%2fmw2nV0B%2bqVltn9eGQdcZFFjgr563vL3blecWlcqU5n4yRs05Zc%2b1KZWe3qpXmZt2q7Wet6j17Pdqyqy59ZVrrnYogRItl4D4pVbiLYi7dKAqf3aMKn4%2fLUKIgUt6lM%2b%2bVVJ31aFV2xppTP%2fup7nlxbXpPqkb1Sj4a%2b%2f3vDe%2fT5BT%2bEiD%2fyfWRi%2fyvX6yeNhqt2heh819pvuepSLec5CITS3YQjTjhnU%2b5HoCvh6neYRQI6vJO8T5ifB%2bDzgmQ3Q24DgFvXhnZY8BJSHkTJ%2fXuxriMU0Gdbw6wlP94JcDT9UFk%2fx5QTUbgBAEufcBiAttEdKQh1AliD8Q3DBMV1WROCR0ZzrfJKGOozz4gMQFlTPwHQAOtd3Na6wXDvyOK6CJB0weNmy17wDUxEDKkOt8CPgcpEXcgKaE1dT4%2f%2fwA%3d", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvZGVsZXRlZFZhdWx0cz9hcGktdmVyc2lvbj0yMDE2LTEwLTAxJiUyNHNraXB0b2tlbj01ZExCanBzd0VBYmdkMEZWVHlVWUVuWkpwRldWckIyYU5CNExzS25VRzhGT0ZveHdoTW1Hc05wM0w4MWp0S2ZSU0tOJTJmUnAlMmZtdzJuVjBCJTJicVZsdG45ZUdRZGNaRkZqZ3I1NjN2TDNibGVjV2xjcVU1bjR5UnMwNVpjJTJiMUtaV2UzcXBYbVp0MnE3V2V0NmoxN1BkcXlxeTU5WlZycm5Zb2dSSXRsNEQ0cFZiaUxZaTdkS0FxZjNhTUtuNCUyZkxVS0lnVXQ2bE0lMmIlMmJWVkozMWFGVjJ4cHBUUCUyZnVwN25seGJYcFBxa2IxU2o0YSUyYiUyZjN2RGUlMmZUNUJUJTJiRWlEJTJmeWZXUmklMmZ5dlg2eWVOaHF0MmhlaDgxOXB2dWVwU0xlYzVDSVRTM1lRalRqaG5VJTJiNUhvQ3ZoNm5lWVJRSTZ2Sk84VDVpZkIlMmJEemdtUTNRMjREZ0Z2WGhuWlk4QkpTSGtUSiUyZlh1eHJpTVUwR2RidzZ3bFA5NEpjRFQ5VUZrJTJmeDVRVFViZ0JBRXVmY0JpQXR0RWRLUWgxQWxpRDhRM0RCTVYxV1JPQ1IwWnpyZkpLR09veno0Z01RRmxUUHdIUUFPdGQzTmE2d1hEdnlPSzZDSkIwd2VObXkxN3dEVXhFREtrT3Q4Q1BnY3BFWGNnS2FFMWRUNCUyZiUyZndBJTNk", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d874805-1eb2-414f-8862-c78829417273" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/pnh-psh-sd\",\r\n \"name\": \"pnh-psh-sd\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/keyvault/providers/Microsoft.KeyVault/vaults/pnh-psh-sd\",\r\n \"location\": \"east us 2\",\r\n \"tags\": {\r\n \"x\": \"y\"\r\n },\r\n \"deletionDate\": \"2017-02-16 18:58:11Z\",\r\n \"scheduledPurgeDate\": \"2017-05-17 18:58:11Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/pshtv-pnh-0215174914\",\r\n \"name\": \"pshtv-pnh-0215174914\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/pshtrg-pnh-0215174847/providers/Microsoft.KeyVault/vaults/pshtv-pnh-0215174914\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2017-02-16 01:51:48Z\",\r\n \"scheduledPurgeDate\": \"2017-05-17 01:51:48Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/pshtv-pnh-0215174919\",\r\n \"name\": \"pshtv-pnh-0215174919\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/pshtrg-pnh-0215174847/providers/Microsoft.KeyVault/vaults/pshtv-pnh-0215174919\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"m\": \"n\"\r\n },\r\n \"deletionDate\": \"2017-02-16 01:51:43Z\",\r\n \"scheduledPurgeDate\": \"2017-05-17 01:51:43Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/pshtv-pnh-0215174434\",\r\n \"name\": \"pshtv-pnh-0215174434\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/pshtrg-pnh-0215174402/providers/Microsoft.KeyVault/vaults/pshtv-pnh-0215174434\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2017-02-16 01:47:06Z\",\r\n \"scheduledPurgeDate\": \"2017-05-17 01:47:06Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/pshtv-pnh-0215174437\",\r\n \"name\": \"pshtv-pnh-0215174437\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/pshtrg-pnh-0215174402/providers/Microsoft.KeyVault/vaults/pshtv-pnh-0215174437\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"m\": \"n\"\r\n },\r\n \"deletionDate\": \"2017-02-16 01:47:06Z\",\r\n \"scheduledPurgeDate\": \"2017-05-17 01:47:06Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://api-dogfood.resources.windows-int.net/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault/deletedVaults?api-version=2016-10-01&%24skiptoken=HY7RboIwGEbfhSy7Ky0IiiZmYaEmbhYjtixeIv1xXQ0ltCpqfPe5XX7JyTnf3WthcCvVauvN7h5Nt1xsQ2%2fmfTvX2RnGVaeQNIfGGOn3YM2pr8H6F9VKc7FItc5vwWF72tu6V51TprW4qcKYRNMQjQEqFFUjiZIknqA9xJP9NJYkTAB3vTkrCb3FTNW9saZx%2fidcy%2bp0dFjCERzI%2f2Hf%2fj6cn%2bRTPg9JMEYBQSR4fbH6WTQa2rnQ5VdRfvBCFAtOS7EV0%2fVKHEWTLQPG9ZDzNGacjtjtMKwzGuQ%2fZbLhdVzoXcQIvTKyjHK6HPJMR0WW3tY8DTZ68Z5nm5DRnfd4%2fAI%3d\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 17 Feb 2017 00:12:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-original-request-ids": [ + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "a7356904-2381-4b9f-80cc-f8f79fe7ee19" + ], + "x-ms-correlation-request-id": [ + "a7356904-2381-4b9f-80cc-f8f79fe7ee19" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170217T001252Z:a7356904-2381-4b9f-80cc-f8f79fe7ee19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Initialize": [ + "sdktestrg8225", + "sdktestvault7044" + ], + "KeyVaultManagementListDeletedVaults": [ + "sdktestvault6368", + "sdktestvault3724", + "sdktestvault5980" + ] + }, + "Variables": { + "SubscriptionId": "fa250492-6eea-4a3d-8857-be57b95d028e", + "TenantId": "dfe47ca8-acfc-4539-9519-7d196a9c79e4", + "ObjectId": "5abe9358-10ae-4095-ba23-d34111430228", + "SubId": "fa250492-6eea-4a3d-8857-be57b95d028e", + "ApplicationId": "56db032e-936f-4f58-9cc8-9ca98e4a178a" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementListVaults.json b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementListVaults.json index 8379797580b5..9f3a5a2d6bca 100644 --- a/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementListVaults.json +++ b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementListVaults.json @@ -1,25 +1,26 @@ { "Entries": [ { - "RequestUri": "/dab60df3-eb31-470e-9aa7-0bb580c2624c/users/testuser@mstestkeyvaultoutlook.onmicrosoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "L2RhYjYwZGYzLWViMzEtNDcwZS05YWE3LTBiYjU4MGMyNjI0Yy91c2Vycy90ZXN0dXNlckBtc3Rlc3RrZXl2YXVsdG91dGxvb2sub25taWNyb3NvZnQuY29tP2FwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", + "RequestUri": "/dfe47ca8-acfc-4539-9519-7d196a9c79e4/users/subadmin@aztestkmsbvtoutlook.ccsctp.net?api-version=1.42-previewInternal", + "EncodedRequestUri": "L2RmZTQ3Y2E4LWFjZmMtNDUzOS05NTE5LTdkMTk2YTljNzllNC91c2Vycy9zdWJhZG1pbkBhenRlc3RrbXNidnRvdXRsb29rLmNjc2N0cC5uZXQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c365172e-d291-48e4-9e3c-ed7249b05941" + "42db05bd-e639-4ec5-8c23-e5d020d7ed87" ], "accept-language": [ "en-US" ], "User-Agent": [ + "FxVersion/4.6.24214.01", "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/2.2.2-preview" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/dab60df3-eb31-470e-9aa7-0bb580c2624c/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test User\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Test\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"testuser\",\r\n \"mobile\": null,\r\n \"netId\": \"10033FFF933CA699\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"karlaug@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration, DisableStrongPassword\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": \"en-US\",\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"testuser@mstestkeyvaultoutlook.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"User\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"testuser@mstestkeyvaultoutlook.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.ppe.windows.net/dfe47ca8-acfc-4539-9519-7d196a9c79e4/$metadata#directoryObjects/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Subscription Admin\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"subadmin\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE8D4B0C05\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"subadmin@aztestkmsbvtoutlook.ccsctp.net\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"thumbnailPhoto@odata.mediaEditLink\": \"directoryObjects/5abe9358-10ae-4095-ba23-d34111430228/Microsoft.WindowsAzure.ActiveDirectory.User/thumbnailPhoto\",\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"subadmin@aztestkmsbvtoutlook.ccsctp.net\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2046" + "2100" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -31,7 +32,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:53 GMT" + "Wed, 08 Feb 2017 21:32:34 GMT" ], "Pragma": [ "no-cache" @@ -40,22 +41,19 @@ "Microsoft-IIS/8.5" ], "ocp-aad-diagnostics-server-name": [ - "u1zY2RAEFJujUTEm17mVSvn6K80FdHiv6WbV1yhVndQ=" + "T9/56u+IxXzVBkloeOIfRE0GeKZr+9AWbLSz9dsy+Eo=" ], "request-id": [ - "5532c90a-676c-4ea5-b9c4-76aa63c3c0c5" + "02c94df5-1b6c-4e0d-8ee4-c4ea1e5b739a" ], "client-request-id": [ - "feba2746-3d6c-4f8e-9cc8-f3289f50d4f9" + "917673da-1411-4585-b729-7a78360bb3ad" ], "x-ms-dirapi-data-contract-version": [ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "wqXt6rxoEtCkCDMOoWRMSIRXczPqqxIBrdHguI-mVu0p7KrO4TfI_ga-1CUvo4xW1mGBds6PUsqkb0rzlhl9tWei3Uft1LTpCku0vrlhySvpWokqBuVQWn7iCDbSC-th.9JVLG9WEnDc3oDfvNrYvQqexgYkQrjPh9XlSdny4Jhg" - ], - "X-Content-Type-Options": [ - "nosniff" + "PpG2-ODd_QLtig6ReaIu6JXoqY5Kgfb-ecim4iAo91HgAhgwAyWykVMjhxGeVbi-pytRvzfiXQfPjHGs3YfwLJCBlzFsTv6lMES42U_CkwtACKPvkRV7Ok_8nmEcHXSD.q-xHite7FUoBFxq4hEGMiJFKsvXAkfb-U2dxp9I6MZc" ], "DataServiceVersion": [ "3.0;" @@ -74,28 +72,29 @@ "ASP.NET" ], "Duration": [ - "781611" + "802456" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/providers/Microsoft.KeyVault?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab271311-4c65-495a-886c-0baf42be6735" + "ceca575c-5ad8-4fb8-91a6-b4d125124c48" ], "accept-language": [ "en-US" ], "User-Agent": [ + "FxVersion/4.6.24214.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -107,7 +106,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:54 GMT" + "Wed, 08 Feb 2017 21:32:34 GMT" ], "Pragma": [ "no-cache" @@ -116,16 +115,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-request-id": [ - "9343a4bb-6ea5-45a1-959a-19229acf4f04" + "8f2da5aa-6904-4a83-984a-e8da09e663e0" ], "x-ms-correlation-request-id": [ - "9343a4bb-6ea5-45a1-959a-19229acf4f04" + "8f2da5aa-6904-4a83-984a-e8da09e663e0" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044454Z:9343a4bb-6ea5-45a1-959a-19229acf4f04" + "CENTRALUS:20170208T213235Z:8f2da5aa-6904-4a83-984a-e8da09e663e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -134,31 +133,32 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourcegroups/sdktestrg811?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzgxMT9hcGktdmVyc2lvbj0yMDE2LTAyLTAx", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourcegroups/sdktestrg9384?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzkzODQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "31" ], "x-ms-client-request-id": [ - "bc25628a-b7a6-4ca3-a49d-7937d0182333" + "a49276cd-4603-4d9f-b86d-ec086e271b6b" ], "accept-language": [ "en-US" ], "User-Agent": [ + "FxVersion/4.6.24214.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811\",\r\n \"name\": \"sdktestrg811\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384\",\r\n \"name\": \"sdktestrg9384\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "185" + "180" ], "Content-Type": [ "application/json; charset=utf-8" @@ -170,22 +170,22 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:54 GMT" + "Wed, 08 Feb 2017 21:32:35 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1186" ], "x-ms-request-id": [ - "f29434fa-ca6c-4928-b49d-e41bf4297a6a" + "b21b07cf-ccec-4164-9561-1f760665e783" ], "x-ms-correlation-request-id": [ - "f29434fa-ca6c-4928-b49d-e41bf4297a6a" + "b21b07cf-ccec-4164-9561-1f760665e783" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044454Z:f29434fa-ca6c-4928-b49d-e41bf4297a6a" + "CENTRALUS:20170208T213235Z:b21b07cf-ccec-4164-9561-1f760665e783" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -194,28 +194,29 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults/sdktestvault7829?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9zZGt0ZXN0dmF1bHQ3ODI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMDE=", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults/sdktestvault8553?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzODQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0ODU1Mz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "796" + "789" ], "x-ms-client-request-id": [ - "dac63a3b-782b-4cc3-950a-eb13c39dc1f1" + "ca28a003-b9b7-48e5-b09a-c35ca9d6323f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults/sdktestvault7829\",\r\n \"name\": \"sdktestvault7829\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault7829.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults/sdktestvault8553\",\r\n \"name\": \"sdktestvault8553\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault8553.vault-int.azure-int.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +228,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:55 GMT" + "Wed, 08 Feb 2017 21:32:36 GMT" ], "Pragma": [ "no-cache" @@ -241,6 +242,9 @@ "Vary": [ "Accept-Encoding" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -254,43 +258,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1177" ], "x-ms-request-id": [ - "32632c1c-1517-4fe7-84d9-88bdfee2529d" + "d3520df6-5995-432d-9e93-f8dc459903af" ], "x-ms-correlation-request-id": [ - "32632c1c-1517-4fe7-84d9-88bdfee2529d" + "d3520df6-5995-432d-9e93-f8dc459903af" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044455Z:32632c1c-1517-4fe7-84d9-88bdfee2529d" + "CENTRALUS:20170208T213237Z:d3520df6-5995-432d-9e93-f8dc459903af" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults/sdktestvault9122?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9zZGt0ZXN0dmF1bHQ5MTIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDE=", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults/sdktestvault6076?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzODQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NjA3Nj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "796" + "789" ], "x-ms-client-request-id": [ - "f2ab13e0-298a-4c0f-9f9e-533d21efd7db" + "c7223e2e-62e6-45db-8ea0-95dec7e91a6d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults/sdktestvault9122\",\r\n \"name\": \"sdktestvault9122\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault9122.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults/sdktestvault6076\",\r\n \"name\": \"sdktestvault6076\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault6076.vault-int.azure-int.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -302,7 +307,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:55 GMT" + "Wed, 08 Feb 2017 21:32:37 GMT" ], "Pragma": [ "no-cache" @@ -316,6 +321,9 @@ "Vary": [ "Accept-Encoding" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -329,43 +337,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1176" ], "x-ms-request-id": [ - "bfb46a7c-5180-4cc2-a68a-10db738d118c" + "c92eb1bd-41db-4015-bef6-f83ede571252" ], "x-ms-correlation-request-id": [ - "bfb46a7c-5180-4cc2-a68a-10db738d118c" + "c92eb1bd-41db-4015-bef6-f83ede571252" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044456Z:bfb46a7c-5180-4cc2-a68a-10db738d118c" + "CENTRALUS:20170208T213237Z:c92eb1bd-41db-4015-bef6-f83ede571252" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults/sdktestvault5656?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9zZGt0ZXN0dmF1bHQ1NjU2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMDE=", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults/sdktestvault6984?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzODQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Njk4ND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "796" + "789" ], "x-ms-client-request-id": [ - "8b8332f0-b8df-4965-8d1d-3ff4b675d4ee" + "757b8933-4c99-407c-add1-5397f4d20b7a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults/sdktestvault5656\",\r\n \"name\": \"sdktestvault5656\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault5656.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults/sdktestvault6984\",\r\n \"name\": \"sdktestvault6984\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault6984.vault-int.azure-int.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -377,7 +386,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:56 GMT" + "Wed, 08 Feb 2017 21:32:38 GMT" ], "Pragma": [ "no-cache" @@ -391,6 +400,9 @@ "Vary": [ "Accept-Encoding" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -404,37 +416,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1175" ], "x-ms-request-id": [ - "609e51d5-e6fb-41fb-8cae-0f0f6149ff7c" + "75bedb83-04a2-43fd-8c92-63af3de5d6c4" ], "x-ms-correlation-request-id": [ - "609e51d5-e6fb-41fb-8cae-0f0f6149ff7c" + "75bedb83-04a2-43fd-8c92-63af3de5d6c4" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044457Z:609e51d5-e6fb-41fb-8cae-0f0f6149ff7c" + "CENTRALUS:20170208T213238Z:75bedb83-04a2-43fd-8c92-63af3de5d6c4" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults?$top=2&api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cz8kdG9wPTImYXBpLXZlcnNpb249MjAxNS0wNi0wMQ==", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults?$top=2&api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzODQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHM/JHRvcD0yJmFwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9174cca-6d7f-4022-ad71-b6b25cea6067" + "273ab6c6-f9ac-430e-be70-f1ca126a9fbb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults/sdktestvault5656\",\r\n \"name\": \"sdktestvault5656\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault5656.vault.azure.net/\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults/sdktestvault7829\",\r\n \"name\": \"sdktestvault7829\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault7829.vault.azure.net/\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults/sdktestvault9122\",\r\n \"name\": \"sdktestvault9122\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault9122.vault.azure.net/\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults?$top=2&api-version=2015-06-01&$skiptoken=c2RrdGVzdHZhdWx0OTEyMg==\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults/sdktestvault6076\",\r\n \"name\": \"sdktestvault6076\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault6076.vault-int.azure-int.net/\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults/sdktestvault6984\",\r\n \"name\": \"sdktestvault6984\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault6984.vault-int.azure-int.net/\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults/sdktestvault8553\",\r\n \"name\": \"sdktestvault8553\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault8553.vault-int.azure-int.net/\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://api-dogfood.resources.windows-int.net/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults?$top=2&api-version=2016-10-01&$skiptoken=c2RrdGVzdHZhdWx0ODU1Mw==\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -446,7 +459,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:56 GMT" + "Wed, 08 Feb 2017 21:32:38 GMT" ], "Pragma": [ "no-cache" @@ -460,6 +473,9 @@ "Vary": [ "Accept-Encoding" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -473,34 +489,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14984" ], "x-ms-request-id": [ - "e3073404-955b-4a70-8fa4-f69edd142de3" + "18f254b6-c08a-4c1a-a0a1-d29dedad398b" ], "x-ms-correlation-request-id": [ - "e3073404-955b-4a70-8fa4-f69edd142de3" + "18f254b6-c08a-4c1a-a0a1-d29dedad398b" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044457Z:e3073404-955b-4a70-8fa4-f69edd142de3" + "CENTRALUS:20170208T213239Z:18f254b6-c08a-4c1a-a0a1-d29dedad398b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults?$top=2&api-version=2015-06-01&$skiptoken=c2RrdGVzdHZhdWx0OTEyMg==", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cz8kdG9wPTImYXBpLXZlcnNpb249MjAxNS0wNi0wMSYkc2tpcHRva2VuPWMyUnJkR1Z6ZEhaaGRXeDBPVEV5TWc9PQ==", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults?$top=2&api-version=2016-10-01&$skiptoken=c2RrdGVzdHZhdWx0ODU1Mw==", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzODQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHM/JHRvcD0yJmFwaS12ZXJzaW9uPTIwMTYtMTAtMDEmJHNraXB0b2tlbj1jMlJyZEdWemRIWmhkV3gwT0RVMU13PT0=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8edac35-e52b-4646-be61-77d5915b1003" + "50595d2c-f244-426a-b9cf-ba337ef4592a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -515,7 +532,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:57 GMT" + "Wed, 08 Feb 2017 21:32:38 GMT" ], "Pragma": [ "no-cache" @@ -529,6 +546,9 @@ "Vary": [ "Accept-Encoding" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -542,37 +562,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14983" ], "x-ms-request-id": [ - "c2304319-bd53-4165-931d-056d36b1ffa2" + "440ca357-f868-4784-b5a6-c00d474a66bc" ], "x-ms-correlation-request-id": [ - "c2304319-bd53-4165-931d-056d36b1ffa2" + "440ca357-f868-4784-b5a6-c00d474a66bc" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044458Z:c2304319-bd53-4165-931d-056d36b1ffa2" + "CENTRALUS:20170208T213239Z:440ca357-f868-4784-b5a6-c00d474a66bc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&$top=2&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJTI3TWljcm9zb2Z0LktleVZhdWx0JTJGdmF1bHRzJTI3JiR0b3A9MiZhcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&$top=2&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJTI3TWljcm9zb2Z0LktleVZhdWx0JTJGdmF1bHRzJTI3JiR0b3A9MiZhcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a05af9bd-c0b6-4657-b263-244ba17877a9" + "7afccabe-356e-4456-99d9-e4f97a49f8f2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/JenkinsTesting/providers/Microsoft.KeyVault/vaults/JenkinsSecrets\",\r\n \"name\": \"JenkinsSecrets\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/KVTestRG7d4685ea/providers/Microsoft.KeyVault/vaults/KVTestVault2f18a602\",\r\n \"name\": \"KVTestVault2f18a602\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2fvaults%27&%24top=2&api-version=2015-11-01&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IVFVWTVNalUtIiwibmV4dFJvd0tleSI6IjEhMTYwIU5FWkNSVEk0TVRBNFJVTTBORFEwTXpnNFJqUXhSREJCTmtFeU1USkVNREpmVkVkT1RDMU5TVU5TVDFOUFJsUTZNa1ZMUlZsV1FWVk1WRG95UmxaQlZVeFVVeTFMVmxSRlUxUldRVlZNVkRnMFFqVTBORUZFTFV0V1ZFVlRWRlpCVlV4VU5UVkRNRVpHUTBFdFFsSkJXa2xNVTA5VlZFZy0ifQ%3d%3d\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg1015/providers/Microsoft.KeyVault/vaults/sdktestvault6217\",\r\n \"name\": \"sdktestvault6217\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg3279/providers/Microsoft.KeyVault/vaults/sdktestvault3912\",\r\n \"name\": \"sdktestvault3912\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://api-dogfood.resources.windows-int.net/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2fvaults%27&%24top=2&api-version=2015-11-01&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IVJFSTNOakUtIiwibmV4dFJvd0tleSI6IjEhMTQ0IVJrRXlOVEEwT1RJMlJVVkJORUV6UkRnNE5UZENSVFUzUWprMVJEQXlPRVZmVkVkT1RDMU5TVU5TVDFOUFJsUTZNa1ZMUlZsV1FWVk1WRG95UmxaQlZVeFVVeTFUUkV0VVJWTlVVa2MxT0RjNUxWTkVTMVJGVTFSV1FWVk1WRGs1TURRdFJVRlRWRlZUTWctLSJ9\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -584,7 +605,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:57 GMT" + "Wed, 08 Feb 2017 21:32:38 GMT" ], "Pragma": [ "no-cache" @@ -593,16 +614,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14982" ], "x-ms-request-id": [ - "b2a34d84-49cd-42b1-a22c-6106241e3854" + "6b50c23b-c283-49a6-bab0-71f053819c83" ], "x-ms-correlation-request-id": [ - "b2a34d84-49cd-42b1-a22c-6106241e3854" + "6b50c23b-c283-49a6-bab0-71f053819c83" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044458Z:b2a34d84-49cd-42b1-a22c-6106241e3854" + "CENTRALUS:20170208T213239Z:6b50c23b-c283-49a6-bab0-71f053819c83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -611,19 +632,20 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults/sdktestvault7829?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9zZGt0ZXN0dmF1bHQ3ODI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMDE=", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults/sdktestvault8553?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzODQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0ODU1Mz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4659782b-f47e-49bc-9b46-f6f5597f2163" + "c1e1581c-96bc-4c30-9746-50f3ffa6e0fc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, "ResponseBody": "", @@ -638,7 +660,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:58 GMT" + "Wed, 08 Feb 2017 21:32:39 GMT" ], "Pragma": [ "no-cache" @@ -646,6 +668,9 @@ "Server": [ "Microsoft-IIS/8.5" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -659,34 +684,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1174" ], "x-ms-request-id": [ - "1f8a9939-726d-46bb-8050-5cd6bad00936" + "6c573ea1-ac88-4909-98a6-d043121a5a48" ], "x-ms-correlation-request-id": [ - "1f8a9939-726d-46bb-8050-5cd6bad00936" + "6c573ea1-ac88-4909-98a6-d043121a5a48" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044459Z:1f8a9939-726d-46bb-8050-5cd6bad00936" + "CENTRALUS:20170208T213240Z:6c573ea1-ac88-4909-98a6-d043121a5a48" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults/sdktestvault9122?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9zZGt0ZXN0dmF1bHQ5MTIyP2FwaS12ZXJzaW9uPTIwMTUtMDYtMDE=", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults/sdktestvault6076?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzODQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NjA3Nj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30a07762-13c5-47b8-a480-aaa3ce84f56c" + "284c24ef-de50-458a-9bb8-4c4ef55dd87d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, "ResponseBody": "", @@ -701,7 +727,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:59 GMT" + "Wed, 08 Feb 2017 21:32:40 GMT" ], "Pragma": [ "no-cache" @@ -709,6 +735,9 @@ "Server": [ "Microsoft-IIS/8.5" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -722,34 +751,35 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1173" ], "x-ms-request-id": [ - "fb1478c9-c999-41e6-8a41-6faa766c81fb" + "0463992e-ed4b-44f3-b3bd-578e8609d9d2" ], "x-ms-correlation-request-id": [ - "fb1478c9-c999-41e6-8a41-6faa766c81fb" + "0463992e-ed4b-44f3-b3bd-578e8609d9d2" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044500Z:fb1478c9-c999-41e6-8a41-6faa766c81fb" + "CENTRALUS:20170208T213241Z:0463992e-ed4b-44f3-b3bd-578e8609d9d2" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg811/providers/Microsoft.KeyVault/vaults/sdktestvault5656?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9zZGt0ZXN0dmF1bHQ1NjU2P2FwaS12ZXJzaW9uPTIwMTUtMDYtMDE=", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg9384/providers/Microsoft.KeyVault/vaults/sdktestvault6984?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzkzODQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Njk4ND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "260f719b-1f19-403c-b23e-d8bb151e0b71" + "a05383ef-5d82-417f-8f3c-af16867ee070" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, "ResponseBody": "", @@ -764,7 +794,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:45:00 GMT" + "Wed, 08 Feb 2017 21:32:42 GMT" ], "Pragma": [ "no-cache" @@ -772,6 +802,9 @@ "Server": [ "Microsoft-IIS/8.5" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -785,34 +818,37 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1172" ], "x-ms-request-id": [ - "ec07af58-42f7-48bb-80b9-35024888d6d4" + "19de1076-4a38-4cd9-bc9a-68c9f4afdec7" ], "x-ms-correlation-request-id": [ - "ec07af58-42f7-48bb-80b9-35024888d6d4" + "19de1076-4a38-4cd9-bc9a-68c9f4afdec7" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044501Z:ec07af58-42f7-48bb-80b9-35024888d6d4" + "CENTRALUS:20170208T213242Z:19de1076-4a38-4cd9-bc9a-68c9f4afdec7" ] }, "StatusCode": 200 } ], "Names": { + "Initialize": [ + "sdktestrg9384", + "sdktestvault6422" + ], "KeyVaultManagementListVaults": [ - "sdktestrg811", - "sdktestvault7829", - "sdktestvault9122", - "sdktestvault5656" + "sdktestvault8553", + "sdktestvault6076", + "sdktestvault6984" ] }, "Variables": { - "SubscriptionId": "4fbe2810-8ec4-4443-88f4-1d0a6a212d02", - "TenantId": "dab60df3-eb31-470e-9aa7-0bb580c2624c", - "ObjectId": "8d3eb738-13c6-4117-aa01-b8aa50beba40", - "SubId": "4fbe2810-8ec4-4443-88f4-1d0a6a212d02", - "ApplicationId": "4a51b5db-82d7-4216-b48a-2d6724410532" + "SubscriptionId": "fa250492-6eea-4a3d-8857-be57b95d028e", + "TenantId": "dfe47ca8-acfc-4539-9519-7d196a9c79e4", + "ObjectId": "5abe9358-10ae-4095-ba23-d34111430228", + "SubId": "fa250492-6eea-4a3d-8857-be57b95d028e", + "ApplicationId": "da227136-7cf7-4f1e-8cee-fe3f46a0bc47" } } \ No newline at end of file diff --git a/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementRecoverDeletedVault.json b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementRecoverDeletedVault.json new file mode 100644 index 000000000000..a679e4e32a26 --- /dev/null +++ b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementRecoverDeletedVault.json @@ -0,0 +1,849 @@ +{ + "Entries": [ + { + "RequestUri": "/dfe47ca8-acfc-4539-9519-7d196a9c79e4/users/subadmin@aztestkmsbvtoutlook.ccsctp.net?api-version=1.42-previewInternal", + "EncodedRequestUri": "L2RmZTQ3Y2E4LWFjZmMtNDUzOS05NTE5LTdkMTk2YTljNzllNC91c2Vycy9zdWJhZG1pbkBhenRlc3RrbXNidnRvdXRsb29rLmNjc2N0cC5uZXQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f8f2ec6-3b62-4c50-b5df-234dec36a48c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/2.2.2-preview" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.ppe.windows.net/dfe47ca8-acfc-4539-9519-7d196a9c79e4/$metadata#directoryObjects/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Subscription Admin\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"subadmin\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE8D4B0C05\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"subadmin@aztestkmsbvtoutlook.ccsctp.net\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"thumbnailPhoto@odata.mediaEditLink\": \"directoryObjects/5abe9358-10ae-4095-ba23-d34111430228/Microsoft.WindowsAzure.ActiveDirectory.User/thumbnailPhoto\",\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"subadmin@aztestkmsbvtoutlook.ccsctp.net\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2100" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Feb 2017 20:27:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "ocp-aad-diagnostics-server-name": [ + "T9/56u+IxXzVBkloeOIfRE0GeKZr+9AWbLSz9dsy+Eo=" + ], + "request-id": [ + "3a12371a-7008-4079-b088-970a7a766ad9" + ], + "client-request-id": [ + "c54ef4d3-9feb-4752-a54e-b66ca96f40af" + ], + "x-ms-dirapi-data-contract-version": [ + "1.42-previewInternal" + ], + "ocp-aad-session-key": [ + "yoKIUnKDeB7E6oF4fEK0qg46sxV36DPga0eheGXFtERbeJP_qjdq36M-cq5qWLFrIDEG18mIGZW8_AshxjaqYBEPrvFw8-TAUyFuRmw1ubS6NIrO3tZVtZ2vM2AXgwBs.6tLZQyIUEE46nLyF6_j9JF0wn8GnHIf4nyXpWYmIkds" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Duration": [ + "800326" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ef0a9ba-1765-4e24-b871-b76c0e374872" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-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, 09 Feb 2017 20:27:14 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "424c6721-9fdd-459f-9fd8-214820d5f873" + ], + "x-ms-correlation-request-id": [ + "424c6721-9fdd-459f-9fd8-214820d5f873" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170209T202715Z:424c6721-9fdd-459f-9fd8-214820d5f873" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourcegroups/sdktestrg2024?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzIwMjQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ], + "x-ms-client-request-id": [ + "072d9dab-e5e5-427c-8202-c0081f8b4bae" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024\",\r\n \"name\": \"sdktestrg2024\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Feb 2017 20:27:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "86b5be18-0443-4978-93e6-28c664cd51a1" + ], + "x-ms-correlation-request-id": [ + "86b5be18-0443-4978-93e6-28c664cd51a1" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170209T202715Z:86b5be18-0443-4978-93e6-28c664cd51a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024/providers/Microsoft.KeyVault/vaults/sdktestvault5390?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTM5MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "820" + ], + "x-ms-client-request-id": [ + "8eb0c2ee-cfcb-44f2-9e53-12b4afad92cc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024/providers/Microsoft.KeyVault/vaults/sdktestvault5390\",\r\n \"name\": \"sdktestvault5390\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault5390.vault-int.azure-int.net\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Feb 2017 20:27:17 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "6c13243c-5599-46c1-a4f6-e9c106f6f20a" + ], + "x-ms-correlation-request-id": [ + "6c13243c-5599-46c1-a4f6-e9c106f6f20a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170209T202717Z:6c13243c-5599-46c1-a4f6-e9c106f6f20a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024/providers/Microsoft.KeyVault/vaults/sdktestvault5390?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTM5MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "820" + ], + "x-ms-client-request-id": [ + "030dd77e-6a45-459e-9015-a3d35fa07169" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024/providers/Microsoft.KeyVault/vaults/sdktestvault5390\",\r\n \"name\": \"sdktestvault5390\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault5390.vault-int.azure-int.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Feb 2017 20:27:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "840f84af-f0ff-4461-adcb-51f9f9f57e64" + ], + "x-ms-correlation-request-id": [ + "840f84af-f0ff-4461-adcb-51f9f9f57e64" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170209T202718Z:840f84af-f0ff-4461-adcb-51f9f9f57e64" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024/providers/Microsoft.KeyVault/vaults/sdktestvault5390?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTM5MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"createMode\": \"recover\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "299" + ], + "x-ms-client-request-id": [ + "5c3abf1d-762d-4f65-ba4d-6e4856e8cb5e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024/providers/Microsoft.KeyVault/vaults/sdktestvault5390\",\r\n \"name\": \"sdktestvault5390\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault5390.vault-int.azure-int.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Feb 2017 20:27:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "3159235b-8222-4e8f-b484-a194ff0212a9" + ], + "x-ms-correlation-request-id": [ + "3159235b-8222-4e8f-b484-a194ff0212a9" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170209T202719Z:3159235b-8222-4e8f-b484-a194ff0212a9" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024/providers/Microsoft.KeyVault/vaults/sdktestvault5390?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTM5MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "221c5ab7-f8b1-466e-9785-422754f6f549" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Feb 2017 20:27:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "a82e9222-2c1d-4f5f-b240-8124af0ea6ef" + ], + "x-ms-correlation-request-id": [ + "a82e9222-2c1d-4f5f-b240-8124af0ea6ef" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170209T202718Z:a82e9222-2c1d-4f5f-b240-8124af0ea6ef" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024/providers/Microsoft.KeyVault/vaults/sdktestvault5390?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTM5MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eaa7636e-88b1-4319-b492-cd9705c4dde4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Feb 2017 20:27:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "3ddf5d85-325c-4410-8b65-af7547a28957" + ], + "x-ms-correlation-request-id": [ + "3ddf5d85-325c-4410-8b65-af7547a28957" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170209T202719Z:3ddf5d85-325c-4410-8b65-af7547a28957" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024/providers/Microsoft.KeyVault/vaults/sdktestvault5390?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTM5MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96af750c-c1ee-4a32-974e-22a781238648" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Feb 2017 20:27:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "66a2fec4-b37a-4cbd-a3db-7ea52112cf34" + ], + "x-ms-correlation-request-id": [ + "66a2fec4-b37a-4cbd-a3db-7ea52112cf34" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170209T202720Z:66a2fec4-b37a-4cbd-a3db-7ea52112cf34" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024/providers/Microsoft.KeyVault/vaults/sdktestvault5390?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTM5MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2985bc66-05fc-441f-a9ec-05af043153bb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/sdktestvault5390' under resource group 'sdktestrg2024' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "159" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Feb 2017 20:27:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "d19bca04-f900-4831-a501-38cec05a2542" + ], + "x-ms-correlation-request-id": [ + "d19bca04-f900-4831-a501-38cec05a2542" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170209T202718Z:d19bca04-f900-4831-a501-38cec05a2542" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024/providers/Microsoft.KeyVault/vaults/sdktestvault5390?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTM5MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14d79418-50a8-4668-9c9d-211ab7880fef" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024/providers/Microsoft.KeyVault/vaults/sdktestvault5390\",\r\n \"name\": \"sdktestvault5390\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault5390.vault-int.azure-int.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Feb 2017 20:27:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "96f471ab-f8ae-481a-8b98-3907ea89d6a4" + ], + "x-ms-correlation-request-id": [ + "96f471ab-f8ae-481a-8b98-3907ea89d6a4" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170209T202719Z:96f471ab-f8ae-481a-8b98-3907ea89d6a4" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024/providers/Microsoft.KeyVault/vaults/sdktestvault5390?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTM5MD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e155079-214c-4377-8f65-8053edb43e6b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg2024/providers/Microsoft.KeyVault/vaults/sdktestvault5390\",\r\n \"name\": \"sdktestvault5390\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault5390.vault-int.azure-int.net/\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Feb 2017 20:27:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "7614159f-b728-4750-89c5-57d8af2c2e7a" + ], + "x-ms-correlation-request-id": [ + "7614159f-b728-4750-89c5-57d8af2c2e7a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170209T202720Z:7614159f-b728-4750-89c5-57d8af2c2e7a" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "Initialize": [ + "sdktestrg2024", + "sdktestvault5390" + ] + }, + "Variables": { + "SubscriptionId": "fa250492-6eea-4a3d-8857-be57b95d028e", + "TenantId": "dfe47ca8-acfc-4539-9519-7d196a9c79e4", + "ObjectId": "5abe9358-10ae-4095-ba23-d34111430228", + "SubId": "fa250492-6eea-4a3d-8857-be57b95d028e", + "ApplicationId": "28f5f4cf-d015-48f2-b3e3-e1a2b2b3149b" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementVaultCreateUpdateDelete.json b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementVaultCreateUpdateDelete.json index af69f284e483..429fe8584a0e 100644 --- a/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementVaultCreateUpdateDelete.json +++ b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementVaultCreateUpdateDelete.json @@ -1,25 +1,26 @@ { "Entries": [ { - "RequestUri": "/dab60df3-eb31-470e-9aa7-0bb580c2624c/users/testuser@mstestkeyvaultoutlook.onmicrosoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "L2RhYjYwZGYzLWViMzEtNDcwZS05YWE3LTBiYjU4MGMyNjI0Yy91c2Vycy90ZXN0dXNlckBtc3Rlc3RrZXl2YXVsdG91dGxvb2sub25taWNyb3NvZnQuY29tP2FwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", + "RequestUri": "/dfe47ca8-acfc-4539-9519-7d196a9c79e4/users/subadmin@aztestkmsbvtoutlook.ccsctp.net?api-version=1.42-previewInternal", + "EncodedRequestUri": "L2RmZTQ3Y2E4LWFjZmMtNDUzOS05NTE5LTdkMTk2YTljNzllNC91c2Vycy9zdWJhZG1pbkBhenRlc3RrbXNidnRvdXRsb29rLmNjc2N0cC5uZXQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8838252f-c07a-44cb-909b-4b48fe0e9e16" + "9a961fad-889e-4454-aa78-4b316be75dc9" ], "accept-language": [ "en-US" ], "User-Agent": [ + "FxVersion/4.6.24214.01", "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/2.2.2-preview" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/dab60df3-eb31-470e-9aa7-0bb580c2624c/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test User\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Test\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"testuser\",\r\n \"mobile\": null,\r\n \"netId\": \"10033FFF933CA699\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"karlaug@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration, DisableStrongPassword\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": \"en-US\",\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"testuser@mstestkeyvaultoutlook.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"User\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"testuser@mstestkeyvaultoutlook.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.ppe.windows.net/dfe47ca8-acfc-4539-9519-7d196a9c79e4/$metadata#directoryObjects/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Subscription Admin\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"subadmin\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE8D4B0C05\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"subadmin@aztestkmsbvtoutlook.ccsctp.net\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"thumbnailPhoto@odata.mediaEditLink\": \"directoryObjects/5abe9358-10ae-4095-ba23-d34111430228/Microsoft.WindowsAzure.ActiveDirectory.User/thumbnailPhoto\",\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"subadmin@aztestkmsbvtoutlook.ccsctp.net\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2046" + "2100" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -31,7 +32,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:38 GMT" + "Wed, 08 Feb 2017 21:32:16 GMT" ], "Pragma": [ "no-cache" @@ -40,22 +41,19 @@ "Microsoft-IIS/8.5" ], "ocp-aad-diagnostics-server-name": [ - "8p5PqXu+FgLpf4c/0OFRV1UNuUXCca6D94e5Veodb8Q=" + "3KJX1Gy2hruUIUgwZttKte3ayI+bWJZKm1QQ2LDyX2Q=" ], "request-id": [ - "05c3537c-7cf2-47b8-b43c-4d82a63d425f" + "1b5f1f97-4d87-45a2-82be-14030200117b" ], "client-request-id": [ - "5089207b-ae9e-4735-a44d-af4998e7c526" + "90b45890-98d9-4050-a298-50b7972499f9" ], "x-ms-dirapi-data-contract-version": [ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "AluEGoBB6TaS6bbs-vrJVms2I2vtb4jhkN-QcL91JnyTi1ZKpHcCCochSGbNxgf3N0HjzC56M93FlXXX4xPdZKObrq8PCGUob541CE0T-FKunmnN6XZf8DQDK-U5k_-0.ISVjzKCwRYER5l3Rg00olAdQVPHrDpcnrfJGsPG0osc" - ], - "X-Content-Type-Options": [ - "nosniff" + "mvrVXZYxCa-LRU-a528OnQ4VBbWN7KqZpzMnL-V1Xk7WTKWXMl06glNLIuwcElBKXKy5ssqhETYayPLo76SqSApSEe6vUq702_yFkScB65BWPlt1GrLLUiVJI-enXJZh.5fRda2fXrkYSLxYxUn1bMuhKo9F6QtnhRXfIfb779rE" ], "DataServiceVersion": [ "3.0;" @@ -74,28 +72,29 @@ "ASP.NET" ], "Duration": [ - "923049" + "3379622" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/providers/Microsoft.KeyVault?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47c7a6f0-c5f3-442d-9dc9-32f26d530816" + "20216690-83c5-41de-bc8a-18e630dfdea8" ], "accept-language": [ "en-US" ], "User-Agent": [ + "FxVersion/4.6.24214.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -107,7 +106,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:40 GMT" + "Wed, 08 Feb 2017 21:32:17 GMT" ], "Pragma": [ "no-cache" @@ -116,16 +115,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14986" ], "x-ms-request-id": [ - "770ee34d-3b2e-4e50-bf33-680775590651" + "ab5c1725-4c43-4394-96f0-a50026565718" ], "x-ms-correlation-request-id": [ - "770ee34d-3b2e-4e50-bf33-680775590651" + "ab5c1725-4c43-4394-96f0-a50026565718" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044440Z:770ee34d-3b2e-4e50-bf33-680775590651" + "CENTRALUS:20170208T213218Z:ab5c1725-4c43-4394-96f0-a50026565718" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -134,31 +133,32 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourcegroups/sdktestrg8610?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzg2MTA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourcegroups/sdktestrg1069?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzEwNjk/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "31" ], "x-ms-client-request-id": [ - "4c671d3e-193c-484e-8ebe-8ec06f49a2e6" + "956754cb-ac7a-4ffc-8ed9-d247f6d4ef54" ], "accept-language": [ "en-US" ], "User-Agent": [ + "FxVersion/4.6.24214.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg8610\",\r\n \"name\": \"sdktestrg8610\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg1069\",\r\n \"name\": \"sdktestrg1069\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "187" + "180" ], "Content-Type": [ "application/json; charset=utf-8" @@ -170,22 +170,22 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:41 GMT" + "Wed, 08 Feb 2017 21:32:18 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1179" ], "x-ms-request-id": [ - "3d1b4edd-e39f-4e48-a4d2-f5f8f4714d88" + "f45c7268-3445-4fa5-a412-426496f9f92d" ], "x-ms-correlation-request-id": [ - "3d1b4edd-e39f-4e48-a4d2-f5f8f4714d88" + "f45c7268-3445-4fa5-a412-426496f9f92d" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044442Z:3d1b4edd-e39f-4e48-a4d2-f5f8f4714d88" + "CENTRALUS:20170208T213218Z:f45c7268-3445-4fa5-a412-426496f9f92d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -194,28 +194,29 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg8610/providers/Microsoft.KeyVault/vaults/sdktestvault5467?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTQ2Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTAx", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg1069/providers/Microsoft.KeyVault/vaults/sdktestvault2304?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MjMwND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "739" + "789" ], "x-ms-client-request-id": [ - "633b8a99-0c15-4495-943e-1df06072a5ed" + "3f598752-d790-4920-abf9-a53dc9fb596e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg8610/providers/Microsoft.KeyVault/vaults/sdktestvault5467\",\r\n \"name\": \"sdktestvault5467\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault5467.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg1069/providers/Microsoft.KeyVault/vaults/sdktestvault2304\",\r\n \"name\": \"sdktestvault2304\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault2304.vault-int.azure-int.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +228,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:44 GMT" + "Wed, 08 Feb 2017 21:32:19 GMT" ], "Pragma": [ "no-cache" @@ -241,6 +242,9 @@ "Vary": [ "Accept-Encoding" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -257,40 +261,41 @@ "1199" ], "x-ms-request-id": [ - "7dd367e1-dfb2-47ee-911e-2a4bedc14444" + "7e88cee5-4af4-440a-bb8c-dc05e20d0919" ], "x-ms-correlation-request-id": [ - "7dd367e1-dfb2-47ee-911e-2a4bedc14444" + "7e88cee5-4af4-440a-bb8c-dc05e20d0919" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044445Z:7dd367e1-dfb2-47ee-911e-2a4bedc14444" + "CENTRALUS:20170208T213220Z:7e88cee5-4af4-440a-bb8c-dc05e20d0919" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg8610/providers/Microsoft.KeyVault/vaults/sdktestvault5467?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTQ2Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTAx", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg1069/providers/Microsoft.KeyVault/vaults/sdktestvault2304?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MjMwND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"vaultUri\": \"https://sdktestvault5467.vault.azure.net\",\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"vaultUri\": \"https://sdktestvault2304.vault-int.azure-int.net\",\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"sku\": {\r\n \"name\": \"premium\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "801" + "802" ], "x-ms-client-request-id": [ - "723be6fb-2ce7-4c11-af7c-2ff4bf7acb1b" + "fffb04a0-6f6e-4d8c-a136-2e93e15f44e0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg8610/providers/Microsoft.KeyVault/vaults/sdktestvault5467\",\r\n \"name\": \"sdktestvault5467\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault5467.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg1069/providers/Microsoft.KeyVault/vaults/sdktestvault2304\",\r\n \"name\": \"sdktestvault2304\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault2304.vault-int.azure-int.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -302,7 +307,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:44 GMT" + "Wed, 08 Feb 2017 21:32:19 GMT" ], "Pragma": [ "no-cache" @@ -316,6 +321,9 @@ "Vary": [ "Accept-Encoding" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -332,34 +340,35 @@ "1198" ], "x-ms-request-id": [ - "041343cd-caa6-449a-8e40-558c8e9cc919" + "4a25509c-8fb8-4727-8804-50a6b598a264" ], "x-ms-correlation-request-id": [ - "041343cd-caa6-449a-8e40-558c8e9cc919" + "4a25509c-8fb8-4727-8804-50a6b598a264" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044445Z:041343cd-caa6-449a-8e40-558c8e9cc919" + "CENTRALUS:20170208T213220Z:4a25509c-8fb8-4727-8804-50a6b598a264" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg8610/providers/Microsoft.KeyVault/vaults/sdktestvault5467?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTQ2Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTAx", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg1069/providers/Microsoft.KeyVault/vaults/sdktestvault2304?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MjMwND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc78497f-d03a-4151-98e6-2bd33e4993d7" + "db991b01-4760-4dc2-826e-6fe4d23bf27b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg8610/providers/Microsoft.KeyVault/vaults/sdktestvault5467\",\r\n \"name\": \"sdktestvault5467\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault5467.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg1069/providers/Microsoft.KeyVault/vaults/sdktestvault2304\",\r\n \"name\": \"sdktestvault2304\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault2304.vault-int.azure-int.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -371,7 +380,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:45 GMT" + "Wed, 08 Feb 2017 21:32:20 GMT" ], "Pragma": [ "no-cache" @@ -385,6 +394,9 @@ "Vary": [ "Accept-Encoding" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -401,34 +413,35 @@ "14999" ], "x-ms-request-id": [ - "bdf07151-ffbe-47b2-a37b-8be70e7b0654" + "3ea7fa6d-3776-4e08-97e7-11f466752ecc" ], "x-ms-correlation-request-id": [ - "bdf07151-ffbe-47b2-a37b-8be70e7b0654" + "3ea7fa6d-3776-4e08-97e7-11f466752ecc" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044445Z:bdf07151-ffbe-47b2-a37b-8be70e7b0654" + "CENTRALUS:20170208T213220Z:3ea7fa6d-3776-4e08-97e7-11f466752ecc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg8610/providers/Microsoft.KeyVault/vaults/sdktestvault5467?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTQ2Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTAx", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg1069/providers/Microsoft.KeyVault/vaults/sdktestvault2304?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MjMwND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c010ec66-cba2-4fa7-847e-0907898df1d5" + "fe78d3a1-1cf0-4735-af89-6fd5de0d4150" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/sdktestvault5467' under resource group 'sdktestrg8610' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/sdktestvault2304' under resource group 'sdktestrg1069' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "159" @@ -443,7 +456,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:46 GMT" + "Wed, 08 Feb 2017 21:32:20 GMT" ], "Pragma": [ "no-cache" @@ -452,13 +465,13 @@ "gateway" ], "x-ms-request-id": [ - "00297d75-0359-432d-a934-21ad8b1cf372" + "ac939cf0-958e-4d75-9d77-55a768d88d70" ], "x-ms-correlation-request-id": [ - "00297d75-0359-432d-a934-21ad8b1cf372" + "ac939cf0-958e-4d75-9d77-55a768d88d70" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044447Z:00297d75-0359-432d-a934-21ad8b1cf372" + "CENTRALUS:20170208T213221Z:ac939cf0-958e-4d75-9d77-55a768d88d70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -467,19 +480,20 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg8610/providers/Microsoft.KeyVault/vaults/sdktestvault5467?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg2MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTQ2Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTAx", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg1069/providers/Microsoft.KeyVault/vaults/sdktestvault2304?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEwNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MjMwND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe09d9c1-00c7-4208-bcba-189c53529c7c" + "f2fa6540-8a6b-4d85-ac23-25548e5e62b4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, "ResponseBody": "", @@ -494,7 +508,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:46 GMT" + "Wed, 08 Feb 2017 21:32:20 GMT" ], "Pragma": [ "no-cache" @@ -502,6 +516,9 @@ "Server": [ "Microsoft-IIS/8.5" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -518,29 +535,29 @@ "1197" ], "x-ms-request-id": [ - "0a0fa073-71fb-4709-9c58-905d9de754f7" + "a4ea647d-4eaf-45f0-883f-37d47cc53d7f" ], "x-ms-correlation-request-id": [ - "0a0fa073-71fb-4709-9c58-905d9de754f7" + "a4ea647d-4eaf-45f0-883f-37d47cc53d7f" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044447Z:0a0fa073-71fb-4709-9c58-905d9de754f7" + "CENTRALUS:20170208T213221Z:a4ea647d-4eaf-45f0-883f-37d47cc53d7f" ] }, "StatusCode": 200 } ], "Names": { - "KeyVaultManagementVaultCreateUpdateDelete": [ - "sdktestrg8610", - "sdktestvault5467" + "Initialize": [ + "sdktestrg1069", + "sdktestvault2304" ] }, "Variables": { - "SubscriptionId": "4fbe2810-8ec4-4443-88f4-1d0a6a212d02", - "TenantId": "dab60df3-eb31-470e-9aa7-0bb580c2624c", - "ObjectId": "8d3eb738-13c6-4117-aa01-b8aa50beba40", - "SubId": "4fbe2810-8ec4-4443-88f4-1d0a6a212d02", - "ApplicationId": "675f8a86-23d9-43df-ac6b-2e2b5a694f4f" + "SubscriptionId": "fa250492-6eea-4a3d-8857-be57b95d028e", + "TenantId": "dfe47ca8-acfc-4539-9519-7d196a9c79e4", + "ObjectId": "5abe9358-10ae-4095-ba23-d34111430228", + "SubId": "fa250492-6eea-4a3d-8857-be57b95d028e", + "ApplicationId": "ef0a08a5-f132-48cf-9a62-76a708a79379" } } \ No newline at end of file diff --git a/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy.json b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy.json index e25dfb58f4d5..566502a39cd7 100644 --- a/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy.json +++ b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/SessionRecords/KeyVault.Management.Tests.VaultOperationsTest/KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy.json @@ -1,25 +1,26 @@ { "Entries": [ { - "RequestUri": "/dab60df3-eb31-470e-9aa7-0bb580c2624c/users/testuser@mstestkeyvaultoutlook.onmicrosoft.com?api-version=1.42-previewInternal", - "EncodedRequestUri": "L2RhYjYwZGYzLWViMzEtNDcwZS05YWE3LTBiYjU4MGMyNjI0Yy91c2Vycy90ZXN0dXNlckBtc3Rlc3RrZXl2YXVsdG91dGxvb2sub25taWNyb3NvZnQuY29tP2FwaS12ZXJzaW9uPTEuNDItcHJldmlld0ludGVybmFs", + "RequestUri": "/dfe47ca8-acfc-4539-9519-7d196a9c79e4/users/subadmin@aztestkmsbvtoutlook.ccsctp.net?api-version=1.42-previewInternal", + "EncodedRequestUri": "L2RmZTQ3Y2E4LWFjZmMtNDUzOS05NTE5LTdkMTk2YTljNzllNC91c2Vycy9zdWJhZG1pbkBhenRlc3RrbXNidnRvdXRsb29rLmNjc2N0cC5uZXQ/YXBpLXZlcnNpb249MS40Mi1wcmV2aWV3SW50ZXJuYWw=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bce3dc4-16dc-487d-960b-3c797360c2b8" + "a5ef6b5c-8b17-4a24-9e3d-02731ffc81a6" ], "accept-language": [ "en-US" ], "User-Agent": [ + "FxVersion/4.6.24214.01", "Microsoft.Azure.Graph.RBAC.GraphRbacManagementClient/2.2.2-preview" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/dab60df3-eb31-470e-9aa7-0bb580c2624c/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test User\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Test\",\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"testuser\",\r\n \"mobile\": null,\r\n \"netId\": \"10033FFF933CA699\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"karlaug@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration, DisableStrongPassword\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": \"en-US\",\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"testuser@mstestkeyvaultoutlook.onmicrosoft.com\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"User\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": \"US\",\r\n \"userPrincipalName\": \"testuser@mstestkeyvaultoutlook.onmicrosoft.com\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.ppe.windows.net/dfe47ca8-acfc-4539-9519-7d196a9c79e4/$metadata#directoryObjects/Microsoft.WindowsAzure.ActiveDirectory.User/@Element\",\r\n \"odata.type\": \"Microsoft.WindowsAzure.ActiveDirectory.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"softDeletionTimestamp\": null,\r\n \"acceptedAs\": null,\r\n \"acceptedOn\": null,\r\n \"accountEnabled\": true,\r\n \"alternativeSecurityIds\": [],\r\n \"appMetadata\": null,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Subscription Admin\",\r\n \"extensionAttribute1\": null,\r\n \"extensionAttribute2\": null,\r\n \"extensionAttribute3\": null,\r\n \"extensionAttribute4\": null,\r\n \"extensionAttribute5\": null,\r\n \"extensionAttribute6\": null,\r\n \"extensionAttribute7\": null,\r\n \"extensionAttribute8\": null,\r\n \"extensionAttribute9\": null,\r\n \"extensionAttribute10\": null,\r\n \"extensionAttribute11\": null,\r\n \"extensionAttribute12\": null,\r\n \"extensionAttribute13\": null,\r\n \"extensionAttribute14\": null,\r\n \"extensionAttribute15\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"invitedOn\": null,\r\n \"inviteReplyUrl\": [],\r\n \"inviteResources\": [],\r\n \"inviteTicket\": [],\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"jrnlAddress\": null,\r\n \"lastDirSyncTime\": null,\r\n \"logonIdentifiers\": [],\r\n \"mail\": null,\r\n \"mailNickname\": \"subadmin\",\r\n \"mobile\": null,\r\n \"netId\": \"10037FFE8D4B0C05\",\r\n \"onPremiseSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"primarySMTPAddress\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"searchableDeviceKey\": [],\r\n \"selfServePasswordResetData\": null,\r\n \"signInName\": \"subadmin@aztestkmsbvtoutlook.ccsctp.net\",\r\n \"sipProxyAddress\": null,\r\n \"smtpAddresses\": [],\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userPrincipalName\": \"subadmin@aztestkmsbvtoutlook.ccsctp.net\",\r\n \"userState\": null,\r\n \"userStateChangedOn\": null,\r\n \"userType\": \"Member\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2046" + "1992" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -31,7 +32,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:48 GMT" + "Wed, 08 Feb 2017 21:32:29 GMT" ], "Pragma": [ "no-cache" @@ -40,19 +41,19 @@ "Microsoft-IIS/8.5" ], "ocp-aad-diagnostics-server-name": [ - "HIDIlXA97MLaYaGq6RNQ/VPopq18Y5SezVeO/oPxf0A=" + "ZE0QSYmhZQQLTZydJhtukJWOmhRx4jcY3NbmCe9pPIU=" ], "request-id": [ - "096a566b-1696-4795-b4af-ad5d975f1de0" + "91cf57d0-b5b3-4444-a744-e8888743e560" ], "client-request-id": [ - "079ee504-efa8-4432-8325-bdfb32adffaf" + "1a49c86a-ecdd-4495-a882-d0057ddde89b" ], "x-ms-dirapi-data-contract-version": [ "1.42-previewInternal" ], "ocp-aad-session-key": [ - "Es4YlbT3poLHjpwjbyUFgFQ9CwjYQsOV6KoZKGCKqakT_OYFeQzcBuYVs-te9-3WGeo0C73Ba7OJ_L0wva-OFvGulxrLnfw3EKHuzUVFXMzOTVRK0lfXD2lCYpG5EO09.KG0_wxmBiRFVRwBDujx8TSbPuQ8ocxD5SW55FetmTdg" + "b4KOIX_PIUVVgyACSvOu-cZdRlFuJgQ7FaHyaNWT2dQYP1_qRo6tMSRLMStZr2TRHJJ0RHNl8h9GUrarK3WZWXZI55AN_4ctvQFLh7lfIyvywggLPUQ8OfBvZvA2heZz.ivyCPym_dU1rmkIYZIvKWddiuyJ5wdC4pB9jwTbdynM" ], "X-Content-Type-Options": [ "nosniff" @@ -74,28 +75,29 @@ "ASP.NET" ], "Duration": [ - "789675" + "3962956" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/providers/Microsoft.KeyVault?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0cd4954-cc34-44fd-b213-485b1eef2f65" + "afee4d7f-bcbe-4d6a-a725-859f31759b0d" ], "accept-language": [ "en-US" ], "User-Agent": [ + "FxVersion/4.6.24214.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK North\",\r\n \"UK South 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -107,7 +109,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:49 GMT" + "Wed, 08 Feb 2017 21:32:29 GMT" ], "Pragma": [ "no-cache" @@ -119,13 +121,13 @@ "14998" ], "x-ms-request-id": [ - "92272636-3d5d-45f4-8b95-5ddeca4ea23d" + "c288d7eb-60b7-4273-8582-53e7ca816a0d" ], "x-ms-correlation-request-id": [ - "92272636-3d5d-45f4-8b95-5ddeca4ea23d" + "c288d7eb-60b7-4273-8582-53e7ca816a0d" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044449Z:92272636-3d5d-45f4-8b95-5ddeca4ea23d" + "CENTRALUS:20170208T213230Z:c288d7eb-60b7-4273-8582-53e7ca816a0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -134,31 +136,32 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourcegroups/sdktestrg1220?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzEyMjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourcegroups/sdktestrg8133?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzgxMzM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "31" ], "x-ms-client-request-id": [ - "3eebe6df-0e3c-4696-a517-021c06ef689f" + "36c2008f-7f87-4fb1-a263-dc668a44f26c" ], "accept-language": [ "en-US" ], "User-Agent": [ + "FxVersion/4.6.24214.01", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg1220\",\r\n \"name\": \"sdktestrg1220\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8133\",\r\n \"name\": \"sdktestrg8133\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "187" + "180" ], "Content-Type": [ "application/json; charset=utf-8" @@ -170,22 +173,22 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:49 GMT" + "Wed, 08 Feb 2017 21:32:30 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-request-id": [ - "7cd3bc1c-4d83-43e6-bb8d-7ee2da86d453" + "ad4d1661-579c-41f0-8226-b08ec2d9fc23" ], "x-ms-correlation-request-id": [ - "7cd3bc1c-4d83-43e6-bb8d-7ee2da86d453" + "ad4d1661-579c-41f0-8226-b08ec2d9fc23" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044450Z:7cd3bc1c-4d83-43e6-bb8d-7ee2da86d453" + "CENTRALUS:20170208T213230Z:ad4d1661-579c-41f0-8226-b08ec2d9fc23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -194,28 +197,29 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg1220/providers/Microsoft.KeyVault/vaults/sdktestvault3487?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzQ4Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTAx", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8133/providers/Microsoft.KeyVault/vaults/sdktestvault6823?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NjgyMz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"applicationId\": \"8b654ae6-39e7-4137-b959-7f5e3b5f35a4\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"vaultUri\": \"\",\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"applicationId\": \"4027dc19-c17b-45d8-88cf-29f922a5713b\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "805" + "855" ], "x-ms-client-request-id": [ - "03e04a7d-2bee-47c7-9dd0-98b3250fb093" + "b201c86f-e34b-4026-815a-40f249369342" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg1220/providers/Microsoft.KeyVault/vaults/sdktestvault3487\",\r\n \"name\": \"sdktestvault3487\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"applicationId\": \"8b654ae6-39e7-4137-b959-7f5e3b5f35a4\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault3487.vault.azure.net\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8133/providers/Microsoft.KeyVault/vaults/sdktestvault6823\",\r\n \"name\": \"sdktestvault6823\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"applicationId\": \"4027dc19-c17b-45d8-88cf-29f922a5713b\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault6823.vault-int.azure-int.net\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -227,7 +231,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:50 GMT" + "Wed, 08 Feb 2017 21:32:31 GMT" ], "Pragma": [ "no-cache" @@ -241,6 +245,9 @@ "Vary": [ "Accept-Encoding" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -254,37 +261,38 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-request-id": [ - "e6dbc67f-4546-4a5b-b9a5-09eb44bdedaa" + "b64cd468-38ce-4231-890b-feb9a8956640" ], "x-ms-correlation-request-id": [ - "e6dbc67f-4546-4a5b-b9a5-09eb44bdedaa" + "b64cd468-38ce-4231-890b-feb9a8956640" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044451Z:e6dbc67f-4546-4a5b-b9a5-09eb44bdedaa" + "CENTRALUS:20170208T213231Z:b64cd468-38ce-4231-890b-feb9a8956640" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg1220/providers/Microsoft.KeyVault/vaults/sdktestvault3487?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzQ4Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTAx", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8133/providers/Microsoft.KeyVault/vaults/sdktestvault6823?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NjgyMz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9b01609-233a-4dde-809d-de78616011ce" + "d45b50f8-60f3-4c81-b733-dc91f1e70fba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg1220/providers/Microsoft.KeyVault/vaults/sdktestvault3487\",\r\n \"name\": \"sdktestvault3487\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dab60df3-eb31-470e-9aa7-0bb580c2624c\",\r\n \"objectId\": \"8d3eb738-13c6-4117-aa01-b8aa50beba40\",\r\n \"applicationId\": \"8b654ae6-39e7-4137-b959-7f5e3b5f35a4\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault3487.vault.azure.net/\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8133/providers/Microsoft.KeyVault/vaults/sdktestvault6823\",\r\n \"name\": \"sdktestvault6823\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"dfe47ca8-acfc-4539-9519-7d196a9c79e4\",\r\n \"objectId\": \"5abe9358-10ae-4095-ba23-d34111430228\",\r\n \"applicationId\": \"4027dc19-c17b-45d8-88cf-29f922a5713b\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault6823.vault-int.azure-int.net/\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -296,7 +304,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:50 GMT" + "Wed, 08 Feb 2017 21:32:31 GMT" ], "Pragma": [ "no-cache" @@ -310,6 +318,9 @@ "Vary": [ "Accept-Encoding" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -326,34 +337,35 @@ "14997" ], "x-ms-request-id": [ - "e7c363fe-e82b-4eda-8824-136e16ea6d6f" + "09392939-68dd-4c76-aabf-8123f5507e6b" ], "x-ms-correlation-request-id": [ - "e7c363fe-e82b-4eda-8824-136e16ea6d6f" + "09392939-68dd-4c76-aabf-8123f5507e6b" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044451Z:e7c363fe-e82b-4eda-8824-136e16ea6d6f" + "CENTRALUS:20170208T213232Z:09392939-68dd-4c76-aabf-8123f5507e6b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg1220/providers/Microsoft.KeyVault/vaults/sdktestvault3487?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzQ4Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTAx", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8133/providers/Microsoft.KeyVault/vaults/sdktestvault6823?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NjgyMz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad1f86a5-ad96-4570-a1c7-22817a5b5731" + "3b81c3aa-0e7f-43a7-8b1b-c76ec32e1d70" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/sdktestvault3487' under resource group 'sdktestrg1220' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/sdktestvault6823' under resource group 'sdktestrg8133' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "159" @@ -368,7 +380,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:51 GMT" + "Wed, 08 Feb 2017 21:32:32 GMT" ], "Pragma": [ "no-cache" @@ -377,13 +389,13 @@ "gateway" ], "x-ms-request-id": [ - "505d6bc5-77ba-439d-ac4e-c88102cbc3c7" + "6d85d319-55e9-4d64-a803-cca49e198814" ], "x-ms-correlation-request-id": [ - "505d6bc5-77ba-439d-ac4e-c88102cbc3c7" + "6d85d319-55e9-4d64-a803-cca49e198814" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044452Z:505d6bc5-77ba-439d-ac4e-c88102cbc3c7" + "CENTRALUS:20170208T213233Z:6d85d319-55e9-4d64-a803-cca49e198814" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -392,19 +404,20 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/4fbe2810-8ec4-4443-88f4-1d0a6a212d02/resourceGroups/sdktestrg1220/providers/Microsoft.KeyVault/vaults/sdktestvault3487?api-version=2015-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGZiZTI4MTAtOGVjNC00NDQzLTg4ZjQtMWQwYTZhMjEyZDAyL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzEyMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzQ4Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTAx", + "RequestUri": "/subscriptions/fa250492-6eea-4a3d-8857-be57b95d028e/resourceGroups/sdktestrg8133/providers/Microsoft.KeyVault/vaults/sdktestvault6823?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmEyNTA0OTItNmVlYS00YTNkLTg4NTctYmU1N2I5NWQwMjhlL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzgxMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NjgyMz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38439ab0-b3f7-4bea-9e47-096d2f73a3d8" + "5be9def3-c6bf-406c-9d6a-6bf086f4ccdd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.0-preview" + "FxVersion/4.6.24214.01", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.0.2" ] }, "ResponseBody": "", @@ -419,7 +432,7 @@ "no-cache" ], "Date": [ - "Mon, 11 Jul 2016 04:44:51 GMT" + "Wed, 08 Feb 2017 21:32:32 GMT" ], "Pragma": [ "no-cache" @@ -427,6 +440,9 @@ "Server": [ "Microsoft-IIS/8.5" ], + "x-ms-keyvault-service-version": [ + "1.0.1.660" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], @@ -440,32 +456,32 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-request-id": [ - "cc1357bf-49eb-4f31-bc7c-b4554c22c95a" + "0c1a1c97-4d52-4475-a5fb-04a5ba315237" ], "x-ms-correlation-request-id": [ - "cc1357bf-49eb-4f31-bc7c-b4554c22c95a" + "0c1a1c97-4d52-4475-a5fb-04a5ba315237" ], "x-ms-routing-request-id": [ - "WESTUS:20160711T044452Z:cc1357bf-49eb-4f31-bc7c-b4554c22c95a" + "CENTRALUS:20170208T213233Z:0c1a1c97-4d52-4475-a5fb-04a5ba315237" ] }, "StatusCode": 200 } ], "Names": { - "KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy": [ - "sdktestrg1220", - "sdktestvault3487" + "Initialize": [ + "sdktestrg8133", + "sdktestvault6823" ] }, "Variables": { - "SubscriptionId": "4fbe2810-8ec4-4443-88f4-1d0a6a212d02", - "TenantId": "dab60df3-eb31-470e-9aa7-0bb580c2624c", - "ObjectId": "8d3eb738-13c6-4117-aa01-b8aa50beba40", - "SubId": "4fbe2810-8ec4-4443-88f4-1d0a6a212d02", - "ApplicationId": "8b654ae6-39e7-4137-b959-7f5e3b5f35a4" + "SubscriptionId": "fa250492-6eea-4a3d-8857-be57b95d028e", + "TenantId": "dfe47ca8-acfc-4539-9519-7d196a9c79e4", + "ObjectId": "5abe9358-10ae-4095-ba23-d34111430228", + "SubId": "fa250492-6eea-4a3d-8857-be57b95d028e", + "ApplicationId": "4027dc19-c17b-45d8-88cf-29f922a5713b" } } \ No newline at end of file diff --git a/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/VaultOperationsTest.cs b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/VaultOperationsTest.cs index e9632125fe8a..612034c2e1da 100644 --- a/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/VaultOperationsTest.cs +++ b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/VaultOperationsTest.cs @@ -3,16 +3,15 @@ // license information. // -using System.Linq; -using System.Collections.Generic; -using Microsoft.Azure.Management.ResourceManager; -using Microsoft.Azure.Management.ResourceManager.Models; -using Xunit; -using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Microsoft.Azure.Management.KeyVault; using Microsoft.Azure.Management.KeyVault.Models; +using Microsoft.Azure.Management.ResourceManager; using Microsoft.Rest.Azure; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; +using System.Collections.Generic; +using System.Linq; +using Xunit; namespace KeyVault.Management.Tests { @@ -24,123 +23,96 @@ public void KeyVaultManagementVaultCreateUpdateDelete() using (MockContext context = MockContext.Start(this.GetType().FullName)) { var testBase = new KeyVaultTestBase(context); - var client = testBase.client; + testBase.vaultProperties.EnableSoftDelete = null; - string rgName = TestUtilities.GenerateName("sdktestrg"); - testBase.resourcesClient.ResourceGroups.CreateOrUpdate(rgName, new ResourceGroup { Location = testBase.location }); - - string vaultName = TestUtilities.GenerateName("sdktestvault"); - var tenantIdGuid = Guid.Parse(testBase.tenantId); - var objectIdGuid = testBase.objectId; - var tags = new Dictionary { { "tag1", "value1" }, { "tag2", "value2" }, { "tag3", "value3" } }; - var accPol = new AccessPolicyEntry - { - TenantId = tenantIdGuid, - ObjectId = objectIdGuid, - Permissions = new Permissions - { - Keys = new string[] { "all" }, - Secrets = null, - Certificates = new string[] { "all" } - } - }; - var createdVault = client.Vaults.CreateOrUpdate( - resourceGroupName: rgName, - vaultName: vaultName, + var createdVault = testBase.client.Vaults.CreateOrUpdate( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName, parameters: new VaultCreateOrUpdateParameters { Location = testBase.location, - Tags = tags, - Properties = new VaultProperties - { - EnabledForDeployment = true, - EnabledForDiskEncryption = true, - EnabledForTemplateDeployment = true, - Sku = new Microsoft.Azure.Management.KeyVault.Models.Sku { Name = SkuName.Standard }, - TenantId = tenantIdGuid, - VaultUri = "", - AccessPolicies = new[] - { - accPol - } - } + Tags = testBase.tags, + Properties = testBase.vaultProperties } ); ValidateVault(createdVault, - vaultName, - rgName, + testBase.vaultName, + testBase.rgName, testBase.subscriptionId, - tenantIdGuid, + testBase.tenantIdGuid, testBase.location, "A", SkuName.Standard, true, true, true, - new[] { accPol }, - tags); + null, + new[] { testBase.accPol }, + testBase.tags); //Update createdVault.Properties.Sku.Name = SkuName.Premium; - accPol.Permissions.Secrets = new string[] { "get", "set" }; - accPol.Permissions.Keys = null; - createdVault.Properties.AccessPolicies = new[] { accPol }; + testBase.accPol.Permissions.Secrets = new string[] { "get", "set" }; + testBase.accPol.Permissions.Keys = null; + createdVault.Properties.AccessPolicies = new[] { testBase.accPol }; - var updateVault = client.Vaults.CreateOrUpdate( - resourceGroupName: rgName, - vaultName: vaultName, + var updateVault = testBase.client.Vaults.CreateOrUpdate( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName, parameters: new VaultCreateOrUpdateParameters { Location = testBase.location, - Tags = tags, + Tags = testBase.tags, Properties = createdVault.Properties } ); ValidateVault(updateVault, - vaultName, - rgName, + testBase.vaultName, + testBase.rgName, testBase.subscriptionId, - tenantIdGuid, + testBase.tenantIdGuid, testBase.location, "A", SkuName.Premium, true, true, true, - new[] { accPol }, - tags); + null, + new[] { testBase.accPol }, + testBase.tags); - var retrievedVault = client.Vaults.Get( - resourceGroupName: rgName, - vaultName: vaultName); + var retrievedVault = testBase.client.Vaults.Get( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName); ValidateVault(retrievedVault, - vaultName, - rgName, + testBase.vaultName, + testBase.rgName, testBase.subscriptionId, - tenantIdGuid, + testBase.tenantIdGuid, testBase.location, "A", SkuName.Premium, true, true, true, - new[] { accPol }, - tags); + null, + new[] { testBase.accPol }, + testBase.tags); // Delete - client.Vaults.Delete( - resourceGroupName: rgName, - vaultName: vaultName); + testBase.client.Vaults.Delete( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName); Assert.Throws(() => { - client.Vaults.Get( - resourceGroupName: rgName, - vaultName: vaultName); + testBase.client.Vaults.Get( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName); }); } } @@ -151,169 +123,70 @@ public void KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy() using (MockContext context = MockContext.Start(this.GetType().FullName)) { var testBase = new KeyVaultTestBase(context); - var client = testBase.client; - - string rgName = TestUtilities.GenerateName("sdktestrg"); - testBase.resourcesClient.ResourceGroups.CreateOrUpdate(rgName, new ResourceGroup { Location = testBase.location }); + testBase.accPol.ApplicationId = Guid.Parse(testBase.applicationId); + testBase.vaultProperties.EnableSoftDelete = null; - string vaultName = TestUtilities.GenerateName("sdktestvault"); - var tenantIdGuid = Guid.Parse(testBase.tenantId); - var objectIdGuid = testBase.objectId; - var applicationId = Guid.Parse(testBase.applicationId); - var tags = new Dictionary { { "tag1", "value1" }, { "tag2", "value2" }, { "tag3", "value3" } }; - var accPol = new AccessPolicyEntry - { - TenantId = tenantIdGuid, - ObjectId = objectIdGuid, - ApplicationId = applicationId, - Permissions = new Permissions - { - Keys = new string[] { "all" }, - Secrets = null, - Certificates = new string[] { "all" } - } - }; - var createVault = client.Vaults.CreateOrUpdate( - resourceGroupName: rgName, - vaultName: vaultName, + var createVault = testBase.client.Vaults.CreateOrUpdate( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName, parameters: new VaultCreateOrUpdateParameters { Location = testBase.location, - Tags = tags, - Properties = new VaultProperties - { - EnabledForDeployment = true, - EnabledForDiskEncryption = true, - EnabledForTemplateDeployment = true, - Sku = new Microsoft.Azure.Management.KeyVault.Models.Sku { Name = SkuName.Standard }, - TenantId = tenantIdGuid, - VaultUri = "", - AccessPolicies = new[] - { - accPol - } - } + Tags = testBase.tags, + Properties = testBase.vaultProperties } ); ValidateVault(createVault, - vaultName, - rgName, + testBase.vaultName, + testBase.rgName, testBase.subscriptionId, - tenantIdGuid, + testBase.tenantIdGuid, testBase.location, "A", SkuName.Standard, true, true, true, - new[] { accPol }, - tags); + null, + new[] { testBase.accPol }, + testBase.tags); // Get - var retrievedVault = client.Vaults.Get( - resourceGroupName: rgName, - vaultName: vaultName); + var retrievedVault = testBase.client.Vaults.Get( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName); ValidateVault(retrievedVault, - vaultName, - rgName, + testBase.vaultName, + testBase.rgName, testBase.subscriptionId, - tenantIdGuid, + testBase.tenantIdGuid, testBase.location, "A", SkuName.Standard, true, true, true, - new[] { accPol }, - tags); + null, + new[] { testBase.accPol }, + testBase.tags); // Delete - client.Vaults.Delete( - resourceGroupName: rgName, - vaultName: vaultName); + testBase.client.Vaults.Delete( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName); Assert.Throws(() => { - client.Vaults.Get( - resourceGroupName: rgName, - vaultName: vaultName); + testBase.client.Vaults.Get( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName); }); } } - private void ValidateVault( - Vault vault, - string expectedVaultName, - string expectedResourceGroupName, - string expectedSubId, - Guid expectedTenantId, - string expectedLocation, - string expectedSkuFamily, - SkuName expectedSku, - bool expectedEnabledForDeployment, - bool expectedEnabledForTemplateDeployment, - bool expectedEnabledForDiskEncryption, - AccessPolicyEntry[] expectedPolicies, - Dictionary expectedTags) - { - Assert.NotNull(vault); - Assert.NotNull(vault.Properties); - - string resourceIdFormat = "/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.KeyVault/vaults/{2}"; - string expectedResourceId = string.Format(resourceIdFormat, expectedSubId, expectedResourceGroupName, expectedVaultName); - - Assert.Equal(expectedResourceId, vault.Id); - Assert.Equal(expectedLocation, vault.Location); - Assert.Equal(expectedTenantId, vault.Properties.TenantId); - Assert.Equal(expectedSku, vault.Properties.Sku.Name); - Assert.Equal(expectedVaultName, vault.Name); - Assert.Equal(expectedEnabledForDeployment, vault.Properties.EnabledForDeployment); - Assert.Equal(expectedEnabledForTemplateDeployment, vault.Properties.EnabledForTemplateDeployment); - Assert.Equal(expectedEnabledForDiskEncryption, vault.Properties.EnabledForDiskEncryption); - Assert.True(expectedTags.DictionaryEqual(vault.Tags)); - Assert.True(CompareAccessPolicies(expectedPolicies, vault.Properties.AccessPolicies.ToArray())); - } - - private bool CompareAccessPolicies(AccessPolicyEntry[] expected, AccessPolicyEntry[] actual) - { - if (expected == null && actual == null) - return true; - - if (expected == null || actual == null) - return false; - - if (expected.Length != actual.Length) - return false; - - AccessPolicyEntry[] expectedCopy = new AccessPolicyEntry[expected.Length]; - expected.CopyTo(expectedCopy, 0); - - foreach (AccessPolicyEntry a in actual) - { - var match = expectedCopy.Where(e => - e.TenantId == a.TenantId && - e.ObjectId == a.ObjectId && - e.ApplicationId == a.ApplicationId && - ((a.Permissions.Secrets == null && e.Permissions.Secrets == null) || - Enumerable.SequenceEqual(e.Permissions.Secrets, a.Permissions.Secrets)) && - ((a.Permissions.Keys == null && e.Permissions.Keys == null) || - Enumerable.SequenceEqual(a.Permissions.Keys, a.Permissions.Keys)) - ).FirstOrDefault(); - if (match == null) - return false; - - expectedCopy = expectedCopy.Where(e => e != match).ToArray(); - } - if (expectedCopy.Length > 0) - return false; - - return true; - } - - [Fact] public void KeyVaultManagementListVaults() { @@ -322,49 +195,21 @@ public void KeyVaultManagementListVaults() using (MockContext context = MockContext.Start(this.GetType().FullName)) { var testBase = new KeyVaultTestBase(context); - var client = testBase.client; - - string rgName = TestUtilities.GenerateName("sdktestrg"); - var tenantIdGuid = Guid.Parse(testBase.tenantId); - var objectIdGuid = testBase.objectId; + testBase.vaultProperties.EnableSoftDelete = null; - var tags = new Dictionary { { "tag1", "value1" }, { "tag2", "value2" }, { "tag3", "value3" } }; - - testBase.resourcesClient.ResourceGroups.CreateOrUpdate(rgName, new ResourceGroup { Location = testBase.location }); List resourceIds = new List(); List vaultNameList = new List(); for (int i = 0; i < n; i++) { string vaultName = TestUtilities.GenerateName("sdktestvault"); - var createdVault = client.Vaults.CreateOrUpdate( - resourceGroupName: rgName, + var createdVault = testBase.client.Vaults.CreateOrUpdate( + resourceGroupName: testBase.rgName, vaultName: vaultName, parameters: new VaultCreateOrUpdateParameters { Location = testBase.location, - Tags = tags, - Properties = new VaultProperties - { - EnabledForDeployment = true, - EnabledForDiskEncryption = true, - EnabledForTemplateDeployment = true, - Sku = new Microsoft.Azure.Management.KeyVault.Models.Sku { Name = SkuName.Standard }, - TenantId = tenantIdGuid, - VaultUri = "", - AccessPolicies = new[] - { - new AccessPolicyEntry - { - TenantId = tenantIdGuid, - ObjectId = objectIdGuid, - Permissions = new Permissions{ - Keys = new string[]{"all"}, - Secrets = new string[]{"all"}, - Certificates = new string[] { "all" } - } - } - } - } + Tags = testBase.tags, + Properties = testBase.vaultProperties } ); @@ -374,7 +219,7 @@ public void KeyVaultManagementListVaults() vaultNameList.Add(createdVault.Name); } - var vaults = client.Vaults.ListByResourceGroup(rgName, top); + var vaults = testBase.client.Vaults.ListByResourceGroup(testBase.rgName, top); Assert.NotNull(vaults); foreach (var v in vaults) @@ -384,7 +229,7 @@ public void KeyVaultManagementListVaults() while (vaults.NextPageLink != null) { - vaults = client.Vaults.ListByResourceGroupNext(vaults.NextPageLink); + vaults = testBase.client.Vaults.ListByResourceGroupNext(vaults.NextPageLink); Assert.NotNull(vaults); foreach (var v in vaults) { @@ -393,16 +238,208 @@ public void KeyVaultManagementListVaults() } Assert.True(resourceIds.Count == 0); - var allVaults = client.Vaults.List(top); + var allVaults = testBase.client.Vaults.List(top); Assert.NotNull(vaults); // Delete foreach (var v in vaultNameList) { - client.Vaults.Delete(resourceGroupName: rgName, vaultName: v); + testBase.client.Vaults.Delete(resourceGroupName: testBase.rgName, vaultName: v); } } } + + [Fact] + public void KeyVaultManagementRecoverDeletedVault() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var testBase = new KeyVaultTestBase(context); + + var createdVault = testBase.client.Vaults.CreateOrUpdate( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName, + parameters: new VaultCreateOrUpdateParameters + { + Location = testBase.location, + Tags = testBase.tags, + Properties = testBase.vaultProperties + } + ); + + // Delete + testBase.client.Vaults.Delete( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName); + + // Get deleted vault + Assert.Throws(() => + { + testBase.client.Vaults.Get( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName); + }); + + // Recover in default mode + var recoveredVault = testBase.client.Vaults.CreateOrUpdate( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName, + parameters: new VaultCreateOrUpdateParameters + { + Location = testBase.location, + Tags = testBase.tags, + Properties = testBase.vaultProperties + } + ); + + Assert.True(recoveredVault.IsEqual(createdVault)); + + // Get recovered vault + testBase.client.Vaults.Get( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName); + + // Delete + testBase.client.Vaults.Delete( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName); + + // Recover in recover mode + var recoveredVault2 = testBase.client.Vaults.CreateOrUpdate( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName, + parameters: new VaultCreateOrUpdateParameters + { + Location = testBase.location, + Tags = testBase.tags, + Properties = new VaultProperties + { + CreateMode = CreateMode.Recover + } + } + ); + + Assert.True(recoveredVault2.IsEqual(createdVault)); + + // Get recovered vault + testBase.client.Vaults.Get( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName); + + // Delete + testBase.client.Vaults.Delete( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName); + } + } + + [Fact] + public void KeyVaultManagementListDeletedVaults() + { + int n = 3; + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var testBase = new KeyVaultTestBase(context); + + List resourceIds = new List(); + List vaultNameList = new List(); + for (int i = 0; i < n; i++) + { + string vaultName = TestUtilities.GenerateName("sdktestvault"); + var createdVault = testBase.client.Vaults.CreateOrUpdate( + resourceGroupName: testBase.rgName, + vaultName: vaultName, + parameters: new VaultCreateOrUpdateParameters + { + Location = testBase.location, + Tags = testBase.tags, + Properties = testBase.vaultProperties + } + ); + + Assert.NotNull(createdVault); + Assert.NotNull(createdVault.Id); + resourceIds.Add(createdVault.Id); + vaultNameList.Add(createdVault.Name); + + testBase.client.Vaults.Delete(resourceGroupName: testBase.rgName, vaultName: vaultName); + + var deletedVault = testBase.client.Vaults.GetDeleted(vaultName, testBase.location); + deletedVault.IsEqual(createdVault); + } + + var deletedVaults = testBase.client.Vaults.ListDeleted(); + Assert.NotNull(deletedVaults); + + foreach (var v in deletedVaults) + { + var exists = resourceIds.Remove(v.Properties.VaultId); + + if (exists) + { + // Purge vault + testBase.client.Vaults.PurgeDeleted(v.Name, testBase.location); + Assert.Throws(() => testBase.client.Vaults.GetDeleted(v.Name, testBase.location)); + } + } + + while (deletedVaults.NextPageLink != null) + { + deletedVaults = testBase.client.Vaults.ListDeletedNext(deletedVaults.NextPageLink); + Assert.NotNull(deletedVaults); + foreach (var v in deletedVaults) + { + var exists = resourceIds.Remove(v.Id); + + if (exists) + { + // Purge vault + testBase.client.Vaults.PurgeDeleted(v.Name, testBase.location); + Assert.Throws(() => testBase.client.Vaults.GetDeleted(v.Name, testBase.location)); + } + } + + if (resourceIds.Count == 0) + break; + } + Assert.True(resourceIds.Count == 0); + } + } + + private void ValidateVault( + Vault vault, + string expectedVaultName, + string expectedResourceGroupName, + string expectedSubId, + Guid expectedTenantId, + string expectedLocation, + string expectedSkuFamily, + SkuName expectedSku, + bool expectedEnabledForDeployment, + bool expectedEnabledForTemplateDeployment, + bool expectedEnabledForDiskEncryption, + bool? expectedEnableSoftDelete, + AccessPolicyEntry[] expectedPolicies, + Dictionary expectedTags) + { + Assert.NotNull(vault); + Assert.NotNull(vault.Properties); + + string resourceIdFormat = "/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.KeyVault/vaults/{2}"; + string expectedResourceId = string.Format(resourceIdFormat, expectedSubId, expectedResourceGroupName, expectedVaultName); + + Assert.Equal(expectedResourceId, vault.Id); + Assert.Equal(expectedLocation, vault.Location); + Assert.Equal(expectedTenantId, vault.Properties.TenantId); + Assert.Equal(expectedSku, vault.Properties.Sku.Name); + Assert.Equal(expectedVaultName, vault.Name); + Assert.Equal(expectedEnabledForDeployment, vault.Properties.EnabledForDeployment); + Assert.Equal(expectedEnabledForTemplateDeployment, vault.Properties.EnabledForTemplateDeployment); + Assert.Equal(expectedEnabledForDiskEncryption, vault.Properties.EnabledForDiskEncryption); + Assert.Equal(expectedEnableSoftDelete, vault.Properties.EnableSoftDelete); + Assert.True(expectedTags.DictionaryEqual(vault.Tags)); + Assert.True(expectedPolicies.IsEqual(vault.Properties.AccessPolicies)); + } } public static class Extensions @@ -430,5 +467,72 @@ public static bool DictionaryEqual( } return true; } + + public static bool IsEqual(this DeletedVault deletedVault, Vault createdVault) + { + Assert.Equal(createdVault.Location, deletedVault.Properties.Location); + Assert.Equal(createdVault.Name, deletedVault.Name); + Assert.Equal(createdVault.Id, deletedVault.Properties.VaultId); + Assert.Equal("Microsoft.KeyVault/deletedVaults", deletedVault.Type); + Assert.True(createdVault.Tags.DictionaryEqual(deletedVault.Properties.Tags)); + Assert.NotNull(deletedVault.Properties.ScheduledPurgeDate); + Assert.NotNull(deletedVault.Properties.DeletionDate); + Assert.NotNull(deletedVault.Id); + return true; + } + + public static bool IsEqual(this Vault vault1, Vault vault2) + { + Assert.Equal(vault2.Location, vault1.Location); + Assert.Equal(vault2.Name, vault1.Name); + Assert.Equal(vault2.Id, vault1.Id); + Assert.True(vault2.Tags.DictionaryEqual(vault1.Tags)); + + Assert.Equal(vault2.Properties.VaultUri.TrimEnd('/'), vault1.Properties.VaultUri.TrimEnd('/')); + Assert.Equal(vault2.Properties.TenantId, vault1.Properties.TenantId); + Assert.Equal(vault2.Properties.Sku.Name, vault1.Properties.Sku.Name); + Assert.Equal(vault2.Properties.EnableSoftDelete, vault1.Properties.EnableSoftDelete); + Assert.Equal(vault2.Properties.EnabledForTemplateDeployment, vault1.Properties.EnabledForTemplateDeployment); + Assert.Equal(vault2.Properties.EnabledForDiskEncryption, vault1.Properties.EnabledForDiskEncryption); + Assert.Equal(vault2.Properties.EnabledForDeployment, vault1.Properties.EnabledForDeployment); + Assert.True(vault2.Properties.AccessPolicies.IsEqual(vault1.Properties.AccessPolicies)); + return true; + } + + public static bool IsEqual(this IList expected, IList actual) + { + if (expected == null && actual == null) + return true; + + if (expected == null || actual == null) + return false; + + if (expected.Count != actual.Count) + return false; + + AccessPolicyEntry[] expectedCopy = new AccessPolicyEntry[expected.Count]; + expected.CopyTo(expectedCopy, 0); + + foreach (AccessPolicyEntry a in actual) + { + var match = expectedCopy.Where(e => + e.TenantId == a.TenantId && + e.ObjectId == a.ObjectId && + e.ApplicationId == a.ApplicationId && + ((a.Permissions.Secrets == null && e.Permissions.Secrets == null) || + Enumerable.SequenceEqual(e.Permissions.Secrets, a.Permissions.Secrets)) && + ((a.Permissions.Keys == null && e.Permissions.Keys == null) || + Enumerable.SequenceEqual(a.Permissions.Keys, a.Permissions.Keys)) + ).FirstOrDefault(); + if (match == null) + return false; + + expectedCopy = expectedCopy.Where(e => e != match).ToArray(); + } + if (expectedCopy.Length > 0) + return false; + + return true; + } } } \ No newline at end of file diff --git a/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/project.json b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/project.json index 3933a82bc85e..0051e9c0df7e 100644 --- a/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/project.json +++ b/src/ResourceManagement/KeyVaultManagement/KeyVaultManagement.Tests/project.json @@ -17,9 +17,9 @@ }, "dependencies": { "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", - "Microsoft.Azure.Management.KeyVault": "2.0.1-preview", + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.1-preview,2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Azure.Management.KeyVault": "2.1.0-preview", "Microsoft.Azure.Management.ResourceManager": "1.1.3-preview", "xunit": "2.2.0-beta2-build3300", "dotnet-test-xunit": "2.2.0-preview2-build1029", diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/IVaultsOperations.cs b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/IVaultsOperations.cs index d1e308bb5945..c4567fa7c21a 100644 --- a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/IVaultsOperations.cs +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/IVaultsOperations.cs @@ -124,6 +124,96 @@ public partial interface IVaultsOperations /// Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Gets information about the deleted vaults in a subscription. + /// + /// + /// 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>> ListDeletedWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the deleted Azure key vault. + /// + /// + /// The name of the vault. + /// + /// + /// The location of the deleted vault. + /// + /// + /// 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> GetDeletedWithHttpMessagesAsync(string vaultName, string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes the specified vault forever. aka Purges the deleted Azure + /// key vault. + /// + /// + /// The name of the soft-deleted vault. + /// + /// + /// The location of the soft-deleted vault. + /// + /// + /// 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 PurgeDeletedWithHttpMessagesAsync(string vaultName, string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes the specified vault forever. aka Purges the deleted Azure + /// key vault. + /// + /// + /// The name of the soft-deleted vault. + /// + /// + /// The location of the soft-deleted vault. + /// + /// + /// 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 BeginPurgeDeletedWithHttpMessagesAsync(string vaultName, string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// The List operation gets information about the vaults associated /// with the subscription. /// @@ -170,6 +260,28 @@ public partial interface IVaultsOperations /// Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Gets information about the deleted vaults in a subscription. + /// + /// + /// 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>> ListDeletedNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// The List operation gets information about the vaults associated /// with the subscription. /// diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/KeyVaultManagementClient.cs b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/KeyVaultManagementClient.cs index e248b0de0a3e..8d0f6e32e3c3 100644 --- a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/KeyVaultManagementClient.cs +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/KeyVaultManagementClient.cs @@ -288,7 +288,7 @@ private void Initialize() { this.Vaults = new VaultsOperations(this); this.BaseUri = new Uri("https://management.azure.com"); - this.ApiVersion = "2015-06-01"; + this.ApiVersion = "2016-10-01"; this.AcceptLanguage = "en-US"; this.LongRunningOperationRetryTimeout = 30; this.GenerateClientRequestId = true; diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/CertificatePermissions.cs b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/CertificatePermissions.cs index 371d1b7a41f7..f4d0e83c042b 100644 --- a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/CertificatePermissions.cs +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/CertificatePermissions.cs @@ -17,7 +17,6 @@ namespace Microsoft.Azure.Management.KeyVault.Models /// public static class CertificatePermissions { - public const string All = "all"; public const string Get = "get"; public const string List = "list"; public const string Delete = "delete"; diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/CreateMode.cs b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/CreateMode.cs new file mode 100644 index 000000000000..c94626ffb154 --- /dev/null +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/CreateMode.cs @@ -0,0 +1,26 @@ +// 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 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.KeyVault.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime.Serialization; + + /// + /// Defines values for CreateMode. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum CreateMode + { + [EnumMember(Value = "recover")] + Recover, + [EnumMember(Value = "default")] + Default + } +} diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/DeletedVault.cs b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/DeletedVault.cs new file mode 100644 index 000000000000..34f35b0f8212 --- /dev/null +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/DeletedVault.cs @@ -0,0 +1,69 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.KeyVault.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Deleted vault information with extended details. + /// + public partial class DeletedVault + { + /// + /// Initializes a new instance of the DeletedVault class. + /// + public DeletedVault() { } + + /// + /// Initializes a new instance of the DeletedVault class. + /// + /// The resource ID for the deleted key vault. + /// The name of the key vault. + /// The resource type of the key vault. + /// Properties of the vault + public DeletedVault(string id = default(string), string name = default(string), string type = default(string), DeletedVaultProperties properties = default(DeletedVaultProperties)) + { + Id = id; + Name = name; + Type = type; + Properties = properties; + } + + /// + /// Gets the resource ID for the deleted key vault. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets the name of the key vault. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the resource type of the key vault. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets or sets properties of the vault + /// + [JsonProperty(PropertyName = "properties")] + public DeletedVaultProperties Properties { get; set; } + + } +} diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/DeletedVaultProperties.cs b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/DeletedVaultProperties.cs new file mode 100644 index 000000000000..752ed759c78b --- /dev/null +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/DeletedVaultProperties.cs @@ -0,0 +1,78 @@ +// 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 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.KeyVault.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Properties of the deleted vault. + /// + public partial class DeletedVaultProperties + { + /// + /// Initializes a new instance of the DeletedVaultProperties class. + /// + public DeletedVaultProperties() { } + + /// + /// Initializes a new instance of the DeletedVaultProperties class. + /// + /// The resource id of the original + /// vault. + /// The location of the original vault. + /// The deleted date. + /// The scheduled purged date. + /// Tags of the original vault. + public DeletedVaultProperties(string vaultId = default(string), string location = default(string), DateTime? deletionDate = default(DateTime?), DateTime? scheduledPurgeDate = default(DateTime?), IDictionary tags = default(IDictionary)) + { + VaultId = vaultId; + Location = location; + DeletionDate = deletionDate; + ScheduledPurgeDate = scheduledPurgeDate; + Tags = tags; + } + + /// + /// Gets the resource id of the original vault. + /// + [JsonProperty(PropertyName = "vaultId")] + public string VaultId { get; private set; } + + /// + /// Gets the location of the original vault. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; private set; } + + /// + /// Gets the deleted date. + /// + [JsonProperty(PropertyName = "deletionDate")] + public DateTime? DeletionDate { get; private set; } + + /// + /// Gets the scheduled purged date. + /// + [JsonProperty(PropertyName = "scheduledPurgeDate")] + public DateTime? ScheduledPurgeDate { get; private set; } + + /// + /// Gets tags of the original vault. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; private set; } + + } +} diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/KeyPermissions.cs b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/KeyPermissions.cs index 0f2bca6ddd18..7b35dd3ba788 100644 --- a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/KeyPermissions.cs +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/KeyPermissions.cs @@ -17,7 +17,6 @@ namespace Microsoft.Azure.Management.KeyVault.Models /// public static class KeyPermissions { - public const string All = "all"; public const string Encrypt = "encrypt"; public const string Decrypt = "decrypt"; public const string WrapKey = "wrapKey"; @@ -32,5 +31,7 @@ public static class KeyPermissions public const string Delete = "delete"; public const string Backup = "backup"; public const string Restore = "restore"; + public const string Recover = "recover"; + public const string Purge = "purge"; } } diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/SecretPermissions.cs b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/SecretPermissions.cs index a64b52c78351..1f4617de6ad5 100644 --- a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/SecretPermissions.cs +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/SecretPermissions.cs @@ -17,10 +17,13 @@ namespace Microsoft.Azure.Management.KeyVault.Models /// public static class SecretPermissions { - public const string All = "all"; public const string Get = "get"; public const string List = "list"; public const string Set = "set"; public const string Delete = "delete"; + public const string Backup = "backup"; + public const string Restore = "restore"; + public const string Recover = "recover"; + public const string Purge = "purge"; } } diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/VaultCreateOrUpdateParameters.cs b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/VaultCreateOrUpdateParameters.cs index 782365435a7b..5732941e3cdb 100644 --- a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/VaultCreateOrUpdateParameters.cs +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/VaultCreateOrUpdateParameters.cs @@ -38,7 +38,7 @@ public VaultCreateOrUpdateParameters() /// vault should be created. /// Properties of the vault /// The tags that will be assigned to the key - /// vault. + /// vault. public VaultCreateOrUpdateParameters(string location, VaultProperties properties, IDictionary tags = default(IDictionary)) { Properties = new VaultProperties(); diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/VaultProperties.cs b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/VaultProperties.cs index aa66f35ae1ee..463438776ced 100644 --- a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/VaultProperties.cs +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/Models/VaultProperties.cs @@ -50,25 +50,26 @@ public VaultProperties() /// Property to specify /// whether Azure Resource Manager is permitted to retrieve secrets /// from the key vault. - public VaultProperties(Guid tenantId, Sku sku, IList accessPolicies, string vaultUri = default(string), bool? enabledForDeployment = default(bool?), bool? enabledForDiskEncryption = default(bool?), bool? enabledForTemplateDeployment = default(bool?)) + /// Property to specify whether the + /// 'soft delete' functionality is enabled for this key vault. It + /// does not accept false value. + /// The vault's create mode to indicate + /// whether the vault need to be recovered or not. Possible values + /// include: 'recover', 'default' + public VaultProperties(Guid tenantId, Sku sku, IList accessPolicies = default(IList), string vaultUri = default(string), bool? enabledForDeployment = default(bool?), bool? enabledForDiskEncryption = default(bool?), bool? enabledForTemplateDeployment = default(bool?), bool? enableSoftDelete = default(bool?), CreateMode? createMode = default(CreateMode?)) { Sku = new Sku(); - VaultUri = vaultUri; TenantId = tenantId; Sku = sku; AccessPolicies = accessPolicies; + VaultUri = vaultUri; EnabledForDeployment = enabledForDeployment; EnabledForDiskEncryption = enabledForDiskEncryption; EnabledForTemplateDeployment = enabledForTemplateDeployment; + EnableSoftDelete = enableSoftDelete; + CreateMode = createMode; } - /// - /// Gets or sets the URI of the vault for performing operations on - /// keys and secrets. - /// - [JsonProperty(PropertyName = "vaultUri")] - public string VaultUri { get; set; } - /// /// Gets or sets the Azure Active Directory tenant ID that should be /// used for authenticating requests to the key vault. @@ -90,6 +91,13 @@ public VaultProperties() [JsonProperty(PropertyName = "accessPolicies")] public IList AccessPolicies { get; set; } + /// + /// Gets or sets the URI of the vault for performing operations on + /// keys and secrets. + /// + [JsonProperty(PropertyName = "vaultUri")] + public string VaultUri { get; set; } + /// /// Gets or sets property to specify whether Azure Virtual Machines /// are permitted to retrieve certificates stored as secrets from the @@ -112,6 +120,22 @@ public VaultProperties() [JsonProperty(PropertyName = "enabledForTemplateDeployment")] public bool? EnabledForTemplateDeployment { get; set; } + /// + /// Gets or sets property to specify whether the 'soft delete' + /// functionality is enabled for this key vault. It does not accept + /// false value. + /// + [JsonProperty(PropertyName = "enableSoftDelete")] + public bool? EnableSoftDelete { get; set; } + + /// + /// Gets or sets the vault's create mode to indicate whether the vault + /// need to be recovered or not. Possible values include: 'recover', + /// 'default' + /// + [JsonProperty(PropertyName = "createMode")] + public CreateMode? CreateMode { get; set; } + /// /// Validate the object. /// @@ -124,10 +148,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "Sku"); } - if (AccessPolicies == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "AccessPolicies"); - } if (this.Sku != null) { this.Sku.Validate(); diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/VaultsOperations.cs b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/VaultsOperations.cs index 8f3608445ee5..ea96167fb2b2 100644 --- a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/VaultsOperations.cs +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/VaultsOperations.cs @@ -834,6 +834,557 @@ internal VaultsOperations(KeyVaultManagementClient client) return _result; } + /// + /// Gets information about the deleted vaults in a subscription. + /// + /// + /// 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 + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListDeletedWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListDeleted", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.KeyVault/deletedVaults").ToString(); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.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 (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.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 = SafeJsonConvert.DeserializeObject(_responseContent, this.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 = SafeJsonConvert.DeserializeObject>(_responseContent, this.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 deleted Azure key vault. + /// + /// + /// The name of the vault. + /// + /// + /// The location of the deleted vault. + /// + /// + /// 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 + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetDeletedWithHttpMessagesAsync(string vaultName, string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (vaultName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultName"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("vaultName", vaultName); + tracingParameters.Add("location", location); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetDeleted", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.KeyVault/locations/{location}/deletedVaults/{vaultName}").ToString(); + _url = _url.Replace("{vaultName}", Uri.EscapeDataString(vaultName)); + _url = _url.Replace("{location}", Uri.EscapeDataString(location)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.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 (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.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 = SafeJsonConvert.DeserializeObject(_responseContent, this.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 = SafeJsonConvert.DeserializeObject(_responseContent, this.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 vault forever. aka Purges the deleted Azure key + /// vault. + /// + /// + /// The name of the soft-deleted vault. + /// + /// + /// The location of the soft-deleted vault. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task PurgeDeletedWithHttpMessagesAsync(string vaultName, string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginPurgeDeletedWithHttpMessagesAsync( + vaultName, location, customHeaders, cancellationToken); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken); + } + + /// + /// Deletes the specified vault forever. aka Purges the deleted Azure key + /// vault. + /// + /// + /// The name of the soft-deleted vault. + /// + /// + /// The location of the soft-deleted vault. + /// + /// + /// 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 + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginPurgeDeletedWithHttpMessagesAsync(string vaultName, string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (vaultName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultName"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("vaultName", vaultName); + tracingParameters.Add("location", location); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginPurgeDeleted", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.KeyVault/locations/{location}/deletedVaults/{vaultName}/purge").ToString(); + _url = _url.Replace("{vaultName}", Uri.EscapeDataString(vaultName)); + _url = _url.Replace("{location}", Uri.EscapeDataString(location)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.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 (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.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)); + if (_httpResponse.Content != null) { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + } + else { + _responseContent = string.Empty; + } + 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; + } + /// /// The List operation gets information about the vaults associated with the /// subscription. @@ -1189,6 +1740,174 @@ internal VaultsOperations(KeyVaultManagementClient client) return _result; } + /// + /// Gets information about the deleted vaults in a subscription. + /// + /// + /// 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 + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListDeletedNextWithHttpMessagesAsync(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, "ListDeletedNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.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 (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.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 = SafeJsonConvert.DeserializeObject(_responseContent, this.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 = SafeJsonConvert.DeserializeObject>(_responseContent, this.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; + } + /// /// The List operation gets information about the vaults associated with the /// subscription. diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/VaultsOperationsExtensions.cs b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/VaultsOperationsExtensions.cs index 7159de4f8fc0..56047c84af9a 100644 --- a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/VaultsOperationsExtensions.cs +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/Generated/VaultsOperationsExtensions.cs @@ -187,6 +187,152 @@ public static Vault Get(this IVaultsOperations operations, string resourceGroupN } } + /// + /// Gets information about the deleted vaults in a subscription. + /// + /// + /// The operations group for this extension method. + /// + public static IPage ListDeleted(this IVaultsOperations operations) + { + return Task.Factory.StartNew(s => ((IVaultsOperations)s).ListDeletedAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets information about the deleted vaults in a subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListDeletedAsync(this IVaultsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListDeletedWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the deleted Azure key vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the vault. + /// + /// + /// The location of the deleted vault. + /// + public static DeletedVault GetDeleted(this IVaultsOperations operations, string vaultName, string location) + { + return Task.Factory.StartNew(s => ((IVaultsOperations)s).GetDeletedAsync(vaultName, location), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets the deleted Azure key vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the vault. + /// + /// + /// The location of the deleted vault. + /// + /// + /// The cancellation token. + /// + public static async Task GetDeletedAsync(this IVaultsOperations operations, string vaultName, string location, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetDeletedWithHttpMessagesAsync(vaultName, location, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes the specified vault forever. aka Purges the deleted Azure key + /// vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the soft-deleted vault. + /// + /// + /// The location of the soft-deleted vault. + /// + public static void PurgeDeleted(this IVaultsOperations operations, string vaultName, string location) + { + Task.Factory.StartNew(s => ((IVaultsOperations)s).PurgeDeletedAsync(vaultName, location), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified vault forever. aka Purges the deleted Azure key + /// vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the soft-deleted vault. + /// + /// + /// The location of the soft-deleted vault. + /// + /// + /// The cancellation token. + /// + public static async Task PurgeDeletedAsync(this IVaultsOperations operations, string vaultName, string location, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.PurgeDeletedWithHttpMessagesAsync(vaultName, location, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes the specified vault forever. aka Purges the deleted Azure key + /// vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the soft-deleted vault. + /// + /// + /// The location of the soft-deleted vault. + /// + public static void BeginPurgeDeleted(this IVaultsOperations operations, string vaultName, string location) + { + Task.Factory.StartNew(s => ((IVaultsOperations)s).BeginPurgeDeletedAsync(vaultName, location), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified vault forever. aka Purges the deleted Azure key + /// vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the soft-deleted vault. + /// + /// + /// The location of the soft-deleted vault. + /// + /// + /// The cancellation token. + /// + public static async Task BeginPurgeDeletedAsync(this IVaultsOperations operations, string vaultName, string location, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.BeginPurgeDeletedWithHttpMessagesAsync(vaultName, location, null, cancellationToken).ConfigureAwait(false); + } + /// /// The List operation gets information about the vaults associated with the /// subscription. @@ -259,6 +405,40 @@ public static IPage ListByResourceGroupNext(this IVaultsOperations operat } } + /// + /// Gets information about the deleted vaults in a subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListDeletedNext(this IVaultsOperations operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((IVaultsOperations)s).ListDeletedNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Gets information about the deleted vaults in a subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListDeletedNextAsync(this IVaultsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListDeletedNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// The List operation gets information about the vaults associated with the /// subscription. diff --git a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/generate.cmd b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/generate.cmd index b4710b889754..aad64237f472 100644 --- a/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/generate.cmd +++ b/src/ResourceManagement/KeyVaultManagement/Microsoft.Azure.Management.KeyVault/generate.cmd @@ -4,7 +4,7 @@ :: @echo off -set autoRestVersion=0.17.0-Nightly20160629 +set autoRestVersion=0.17.0-Nightly20160726 if "%1" == "" ( set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-keyvault/2015-06-01/swagger/keyvault.json" From 484c733087a63dc8cd0411a03c59d41e1a9f0f26 Mon Sep 17 00:00:00 2001 From: Klein Hu Date: Thu, 6 Apr 2017 10:56:30 -0700 Subject: [PATCH 54/56] Azure Machine Learning WebServicesRP new API version (#3036) * Initial change for a new version * Update the POST operation id * POST method update * Make the POST call long running operation and handle the request id. * Update existing test cases to work with new API version. * Add new test case for POST * Add test case for large payload scenario. * Description update according to swagger update * Update generate.cmd to point to new swagger spec * Suppress CredScan message for certificate thumbprint, which is for encryption, not auth. * Replace real thumbprints with dummy strings * More thumbprints replaced with dummy strings * Replace hardcoded web service keys with dummy strings * Replace keys and thumbprints with dummy strings * Remove all encrypted content which were treated as credentials by CredScan in the lab build. * Update .net SDK with the latest swagger. --- .../ScenarioTests/WebServiceTests.cs | 138 +- .../CreateAndListWebServices.json | 2185 +++++++++-------- .../CreateAndPostOnGraphWebService.json | 1640 +++++++++++++ .../CreateAndUpdateOnGraphWebService.json | 1221 +++++---- .../CreateGetRemoveGraphWebService.json | 1104 +++++---- ...RemoveGraphWebServiceWithLargePayload.json | 1686 +++++++++++++ .../GraphWebServiceDefinition_Dogfood.json | 4 +- ...ebServiceDefinition_LargePayload_Prod.json | 36 + .../GraphWebServiceDefinition_Prod.json | 559 ++++- .../IWebServicesOperationsAdditions.cs | 4 +- .../WebServicesOperationsAdditions.cs | 36 + ...ebServicesOperationsExtensionsAdditions.cs | 42 + .../AzureMLWebServicesManagementClient.cs | 118 +- .../IAzureMLWebServicesManagementClient.cs | 25 +- .../WebServices/IWebServicesOperations.cs | 187 +- .../Generated/WebServices/Models/AssetItem.cs | 69 +- .../WebServices/Models/AssetLocation.cs | 66 - .../Generated/WebServices/Models/AssetType.cs | 10 +- .../Models/AsyncOperationErrorInfo.cs | 76 + .../Models/AsyncOperationStatus.cs | 106 + .../WebServices/Models/BlobLocation.cs | 78 + .../WebServices/Models/ColumnFormat.cs | 10 +- .../WebServices/Models/ColumnSpecification.cs | 57 +- .../WebServices/Models/ColumnType.cs | 10 +- .../WebServices/Models/CommitmentPlan.cs | 29 +- .../Models/DiagnosticsConfiguration.cs | 38 +- .../WebServices/Models/DiagnosticsLevel.cs | 10 +- .../WebServices/Models/ExampleRequest.cs | 38 +- .../Generated/WebServices/Models/GraphEdge.cs | 46 +- .../Generated/WebServices/Models/GraphNode.cs | 36 +- .../WebServices/Models/GraphPackage.cs | 43 +- .../WebServices/Models/GraphParameter.cs | 51 +- .../WebServices/Models/GraphParameterLink.cs | 33 +- .../Generated/WebServices/Models/InputPort.cs | 24 +- .../WebServices/Models/InputPortType.cs | 10 +- .../Models/MachineLearningWorkspace.cs | 33 +- .../WebServices/Models/ModeValueInfo.cs | 32 +- .../Models/ModuleAssetParameter.cs | 38 +- .../WebServices/Models/OutputPort.cs | 24 +- .../WebServices/Models/OutputPortType.cs | 10 +- .../Generated/WebServices/Models/Page.cs | 33 +- .../WebServices/Models/ParameterType.cs | 10 +- .../WebServices/Models/ProvisioningState.cs | 10 +- .../Models/RealtimeConfiguration.cs | 35 +- .../Generated/WebServices/Models/Resource.cs | 53 +- .../Models/ServiceInputOutputSpecification.cs | 57 +- .../WebServices/Models/StorageAccount.cs | 26 +- .../WebServices/Models/TableSpecification.cs | 51 +- .../WebServices/Models/WebService.cs | 37 +- .../WebServices/Models/WebServiceKeys.cs | 26 +- .../WebServices/Models/WebServiceParameter.cs | 60 + .../Models/WebServiceProperties.cs | 211 +- .../Models/WebServicePropertiesForGraph.cs | 91 +- .../WebServices/WebServicesOperations.cs | 1375 +++++++---- .../WebServicesOperationsExtensions.cs | 355 ++- .../Properties/AssemblyInfo.cs | 4 +- .../generate.cmd | 2 +- .../project.json | 2 +- 58 files changed, 8713 insertions(+), 3687 deletions(-) create mode 100644 src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndPostOnGraphWebService.json create mode 100644 src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebServiceWithLargePayload.json create mode 100644 src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_LargePayload_Prod.json delete mode 100644 src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetLocation.cs create mode 100644 src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AsyncOperationErrorInfo.cs create mode 100644 src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AsyncOperationStatus.cs create mode 100644 src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/BlobLocation.cs create mode 100644 src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceParameter.cs diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/ScenarioTests/WebServiceTests.cs b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/ScenarioTests/WebServiceTests.cs index 9581bc0c7e2d..e85bc5d2cda2 100644 --- a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/ScenarioTests/WebServiceTests.cs +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/ScenarioTests/WebServiceTests.cs @@ -26,7 +26,7 @@ namespace MachineLearning.Tests.ScenarioTests { public class WebServiceTests : BaseScenarioTests { - private const string DefaultLocation = "South Central US"; + private const string DefaultLocation = "West Central US"; private const string TestServiceNamePrefix = "amlws"; private const string TestCommitmentPlanNamePrefix = "amlcp"; private const string TestResourceGroupNamePrefix = "amlrg"; @@ -42,6 +42,7 @@ public class WebServiceTests : BaseScenarioTests /// is working as expected, re-record the test against Prod before submitting an official pull request. /// private readonly string TestServiceDefinitionFile; + private readonly string TestServiceDefinitionFileWithLargePayload; private const int AsyncOperationPollingIntervalSeconds = 5; @@ -56,6 +57,7 @@ private delegate void AMLWebServiceTestDelegate( public WebServiceTests() { TestServiceDefinitionFile = Path.Combine(Directory.GetCurrentDirectory(), "TestData", "GraphWebServiceDefinition_Prod.json"); + TestServiceDefinitionFileWithLargePayload = Path.Combine(Directory.GetCurrentDirectory(), "TestData", "GraphWebServiceDefinition_LargePayload_Prod.json"); } [Fact] @@ -93,6 +95,13 @@ public void CreateGetRemoveGraphWebService() Assert.NotNull(expectedCloudException.Body); Assert.True(string.Equals(expectedCloudException.Body.Code, "NotFound")); } + catch (Exception ex) + { + Trace.TraceError("Caught unexpected exception: "); + Trace.TraceError(ex.Message); + + throw; + } finally { // Remove the web service @@ -141,6 +150,13 @@ public void CreateAndUpdateOnGraphWebService() Assert.Equal(serviceKeys.Primary, serviceUpdates.Properties.Keys.Primary); Assert.Equal(serviceKeys.Secondary, serviceDefinition.Properties.Keys.Secondary); } + catch (Exception ex) + { + Trace.TraceError("Caught unexpected exception: "); + Trace.TraceError(ex.Message); + + throw; + } finally { // Remove the web service @@ -149,6 +165,113 @@ public void CreateAndUpdateOnGraphWebService() }); } + [Fact] + public void CreateAndPostOnGraphWebService() + { + const string NewRegion = "southcentralus"; + + this.RunAMLWebServiceTestScenario((webServiceName, resourceGroupName, resourcesClient, amlServicesClient, cpResourceId, storageAccount) => + { + try + { + // Create and validate the AML service resource + var serviceDefinition = WebServiceTests.GetServiceDefinitionFromTestData(this.TestServiceDefinitionFile, cpResourceId, storageAccount); + var webService = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, resourceGroupName, webServiceName); + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, webService, serviceDefinition); + + //Validate that the expected not found exception is thrown before create the regional properties + var expectedCloudException = Assert.Throws(() => amlServicesClient.WebServices.Get(resourceGroupName, webServiceName, NewRegion)); + Assert.NotNull(expectedCloudException.Body); + Assert.True(string.Equals(expectedCloudException.Body.Code, "NotFound")); + + // Submit some updates to this resource + amlServicesClient.WebServices.CreateRegionalPropertiesWithRequestId(resourceGroupName, webServiceName, NewRegion); + + // Retrieve the AML web service after POST + var retrievedService = amlServicesClient.WebServices.Get(resourceGroupName, webServiceName, NewRegion); + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, retrievedService); + Assert.NotNull(retrievedService.Properties); + var properties = retrievedService.Properties as WebServicePropertiesForGraph; + Assert.NotNull(properties); + Assert.NotNull(properties.Package); + Assert.NotNull(properties.Package.Nodes); + Assert.NotNull(properties.Package.Nodes["node1"]); + Assert.NotNull(properties.Package.Nodes["node1"].Parameters); + Assert.NotNull(properties.Package.Nodes["node1"].Parameters["Account Key"]); + + WebServiceParameter param = properties.Package.Nodes["node1"].Parameters["Account Key"]; + + string expectedThumbprint = "ONE_THUMBPRINT"; + Assert.Equal(expectedThumbprint, param.CertificateThumbprint); + } + catch (Exception ex) + { + Trace.TraceError("Caught unexpected exception: "); + Trace.TraceError(ex.Message); + + throw; + } + finally + { + // Remove the web service + BaseScenarioTests.DisposeOfTestResource(() => amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName)); + } + }); + } + + [Fact] + public void CreateGetRemoveGraphWebServiceWithLargePayload() + { + this.RunAMLWebServiceTestScenario((webServiceName, resourceGroupName, resourcesClient, amlServicesClient, cpResourceId, storageAccount) => + { + bool serviceWasRemoved = false; + try + { + //Validate expected NO-OP behavior on deleting a non existing service + amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName); + + // Create and validate the AML service resource + var serviceDefinition = WebServiceTests.GetServiceDefinitionFromTestData(this.TestServiceDefinitionFileWithLargePayload, cpResourceId, storageAccount); + var webService = amlServicesClient.WebServices.CreateOrUpdateWithRequestId(serviceDefinition, resourceGroupName, webServiceName); + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, webService); + + // Retrieve the AML web service after creation + var retrievedService = amlServicesClient.WebServices.Get(resourceGroupName, webServiceName); + WebServiceTests.ValidateWebServiceResource(amlServicesClient.SubscriptionId, resourceGroupName, webServiceName, retrievedService); + + // Retrieve the AML web service's keys + WebServiceKeys serviceKeys = amlServicesClient.WebServices.ListKeys(resourceGroupName, webServiceName); + Assert.NotNull(serviceKeys); + Assert.Equal(serviceKeys.Primary, serviceDefinition.Properties.Keys.Primary); + Assert.Equal(serviceKeys.Secondary, serviceDefinition.Properties.Keys.Secondary); + + // Remove the web service + amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName); + serviceWasRemoved = true; + + //Validate that the expected not found exception is thrown after deletion when trying to access the service + var expectedCloudException = Assert.Throws(() => amlServicesClient.WebServices.Get(resourceGroupName, webServiceName)); + Assert.NotNull(expectedCloudException.Body); + Assert.True(string.Equals(expectedCloudException.Body.Code, "NotFound")); + } + catch (Exception ex) + { + Trace.TraceError("Caught unexpected exception: "); + Trace.TraceError(ex.Message); + + throw; + } + finally + { + // Remove the web service + if (!serviceWasRemoved) + { + BaseScenarioTests.DisposeOfTestResource(() => amlServicesClient.WebServices.RemoveWithRequestId(resourceGroupName, webServiceName)); + } + } + }); + } + [Fact] public void CreateAndListWebServices() { @@ -189,9 +312,9 @@ public void CreateAndListWebServices() Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service3ExpectedId, StringComparison.OrdinalIgnoreCase))); // Validate that all services are called when getting the AML service resource list for the subscription - var servicesInSubscription = amlServicesClient.WebServices.List(); + var servicesInSubscription = amlServicesClient.WebServices.ListBySubscriptionIdWithHttpMessagesAsync().Result; Assert.NotNull(servicesInSubscription); - servicesList = servicesInSubscription.ToList(); + servicesList = servicesInSubscription.Body.ToList(); Assert.NotNull(servicesList); Assert.True(servicesList.Count >= 4); Assert.True(servicesList.Any(svc => string.Equals(svc.Id, service1ExpectedId, StringComparison.OrdinalIgnoreCase))); @@ -200,6 +323,13 @@ public void CreateAndListWebServices() string otherServiceExpectedId = string.Format(CultureInfo.InvariantCulture, WebServiceTests.ResourceIdFormat, amlServicesClient.SubscriptionId, otherResourceGroupName, otherServiceName); Assert.True(servicesList.Any(svc => string.Equals(svc.Id, otherServiceExpectedId, StringComparison.OrdinalIgnoreCase))); } + catch(Exception ex) + { + Trace.TraceError("Caught unexpected exception: "); + Trace.TraceError(ex.Message); + + throw; + } finally { // Remove the resources created by the test @@ -342,7 +472,7 @@ private static void ValidateWebServiceResource(string subscriptionId, string res private static Tuple CreateCommitmentPlanResource(string resourceGroupName, string commitmentPlanName, string deploymentName, ResourceManagementClient resourcesClient, string cpApiVersion) { - string deploymentParams = @"{'planName': {'value': '" + commitmentPlanName + "'}, 'planSkuName': {'value': 'PLAN_SKU_NAME'}, 'planSkuTier': {'value': 'PLAN_SKU_TIER'}, 'apiVersion': {'value': '" + cpApiVersion + "'}}"; + string deploymentParams = @"{'planName': {'value': '" + commitmentPlanName + "'}, 'planSkuName': {'value': 'S1'}, 'planSkuTier': {'value': 'Standard'}, 'apiVersion': {'value': '" + cpApiVersion + "'}}"; var deploymentProperties = new DeploymentProperties { Template = JObject.Parse(File.ReadAllText(Path.Combine(Directory.GetCurrentDirectory(), "TestData", "DeployCommitmentPlanTemplate.json"))), diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndListWebServices.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndListWebServices.json index 0b6335638da9..a1343810af5d 100644 --- a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndListWebServices.json +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndListWebServices.json @@ -1,31 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "37" ], "x-ms-client-request-id": [ - "df64abd8-205d-439d-b63f-828a1f2d8284" + "efff1a92-dc7e-4c28-a166-23d73711d9ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353\",\r\n \"name\": \"amlrg353\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093\",\r\n \"name\": \"amlrg3093\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,53 +34,54 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:08:01 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-request-id": [ - "beacbc44-0765-4d93-a2db-74970e975df2" + "c7944e54-a204-487d-950b-43786488833c" ], "x-ms-correlation-request-id": [ - "beacbc44-0765-4d93-a2db-74970e975df2" + "c7944e54-a204-487d-950b-43786488833c" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011323Z:beacbc44-0765-4d93-a2db-74970e975df2" + "WESTCENTRALUS:20170309T080801Z:c7944e54-a204-487d-950b-43786488833c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:13:22 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.Storage/storageAccounts/amlstor6957?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYW1sc3RvcjY5NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.Storage/storageAccounts/amlstor7289?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I3Mjg5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "97" ], "x-ms-client-request-id": [ - "4952a52e-c0a8-4ffe-bffd-e5efb864e152" + "79f9c649-2347-4b12-bca9-1527194ca674" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, "ResponseBody": "", @@ -90,233 +92,243 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "25" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-request-id": [ - "a6759c76-bcb2-4087-bb7f-5123408b0148" + "Date": [ + "Thu, 09 Mar 2017 08:08:04 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.Storage/operations/bdc5d92e-087c-443f-a733-a1eacfd5fdb1?monitor=true&api-version=2015-06-15" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/de494db1-cf32-4be8-a3b4-ba5960502b86?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "dadd81fe-0b40-4b2d-a504-0aca05a675a9" + ], "x-ms-correlation-request-id": [ - "a6759c76-bcb2-4087-bb7f-5123408b0148" + "dadd81fe-0b40-4b2d-a504-0aca05a675a9" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011330Z:a6759c76-bcb2-4087-bb7f-5123408b0148" + "WESTCENTRALUS:20170309T080804Z:dadd81fe-0b40-4b2d-a504-0aca05a675a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:13:29 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.Storage/operations/bdc5d92e-087c-443f-a733-a1eacfd5fdb1?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2JkYzVkOTJlLTA4N2MtNDQzZi1hNzMzLWExZWFjZmQ1ZmRiMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/de494db1-cf32-4be8-a3b4-ba5960502b86?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2RlNDk0ZGIxLWNmMzItNGJlOC1hM2I0LWJhNTk2MDUwMmI4Nj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "75" - ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "c9f19961-bf15-482a-aed6-a80f323f2e09" + "Date": [ + "Thu, 09 Mar 2017 08:08:34 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "282ec9b9-cb59-465c-b99d-6ff8cedb01d7" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14980" ], "x-ms-correlation-request-id": [ - "c9f19961-bf15-482a-aed6-a80f323f2e09" + "282ec9b9-cb59-465c-b99d-6ff8cedb01d7" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011400Z:c9f19961-bf15-482a-aed6-a80f323f2e09" + "WESTCENTRALUS:20170309T080834Z:282ec9b9-cb59-465c-b99d-6ff8cedb01d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:14:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.Storage/storageAccounts/amlstor6957/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYW1sc3RvcjY5NTcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.Storage/storageAccounts/amlstor7289/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I3Mjg5L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf91afff-39b6-400a-a9dd-f5081bb43171" + "4f768234-8766-443d-829b-276e0a37ac19" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"key1\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\",\r\n \"key2\": \"3A2kEiYjf/0f+2xsqzN2vYCVbZ9ebqQXdxPKKPNOD9Xm2khlGIlvZ+Qj1MWnufZVyffczPOeE4I7g2+/Y+IeLA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"SOME_STORAGE_KEY\",\r\n \"key2\": \"SOME_OTHER_STORAGE_KEY\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "198" - ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "ad26e8ae-ad64-4679-b890-67e0e4f9a620" + "Date": [ + "Thu, 09 Mar 2017 08:08:34 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "32e5594c-ddd6-43bb-8051-2f6a4ca4f209" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-correlation-request-id": [ - "ad26e8ae-ad64-4679-b890-67e0e4f9a620" + "32e5594c-ddd6-43bb-8051-2f6a4ca4f209" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011400Z:ad26e8ae-ad64-4679-b890-67e0e4f9a620" + "WESTCENTRALUS:20170309T080835Z:32e5594c-ddd6-43bb-8051-2f6a4ca4f209" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:14:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fc07123-d834-4c10-bf5f-e22fe84db1f5" + "0cf01bcd-a8ce-4b28-b431-7a047c91b7bb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1186" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:08:34 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" + "14999" ], "x-ms-request-id": [ - "a559cd25-bb8d-4dd5-acc9-0a2e30e867e1" + "fe8af103-e690-413a-8f94-6d70c9db7ff2" ], "x-ms-correlation-request-id": [ - "a559cd25-bb8d-4dd5-acc9-0a2e30e867e1" + "fe8af103-e690-413a-8f94-6d70c9db7ff2" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011400Z:a559cd25-bb8d-4dd5-acc9-0a2e30e867e1" + "WESTCENTRALUS:20170309T080835Z:fe8af103-e690-413a-8f94-6d70c9db7ff2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353/providers/Microsoft.Resources/deployments/deplamlcp4366?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2RlcGxhbWxjcDQzNjY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093/providers/Microsoft.Resources/deployments/deplamlcp6381?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A2MzgxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"string\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"[parameters('apiVersion')]\",\r\n \"name\": \"[parameters('planName')]\",\r\n \"type\": \"Microsoft.MachineLearning/CommitmentPlans\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('planSkuName')]\",\r\n \"tier\": \"[parameters('planSkuTier')]\",\r\n \"capacity\": \"1\"\r\n },\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"planName\": {\r\n \"value\": \"amlcp4366\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"string\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"[parameters('apiVersion')]\",\r\n \"name\": \"[parameters('planName')]\",\r\n \"type\": \"Microsoft.MachineLearning/CommitmentPlans\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('planSkuName')]\",\r\n \"tier\": \"[parameters('planSkuTier')]\",\r\n \"capacity\": \"1\"\r\n },\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"planName\": {\r\n \"value\": \"amlcp6381\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1274" + "1258" ], "x-ms-client-request-id": [ - "94e3461d-b78e-4cda-b74e-7aef823209a8" + "c74f46e8-c44f-44e7-b5cb-5bdfbad7e8ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.Resources/deployments/deplamlcp4366\",\r\n \"name\": \"deplamlcp4366\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp4366\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-05-18T01:14:01.7069455Z\",\r\n \"duration\": \"PT0.3094051S\",\r\n \"correlationId\": \"50b9557f-7a03-42b1-b0e1-779d0011fbf1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.Resources/deployments/deplamlcp6381\",\r\n \"name\": \"deplamlcp6381\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp6381\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2017-03-09T08:08:36.0960781Z\",\r\n \"duration\": \"PT0.1418088S\",\r\n \"correlationId\": \"213447ed-d18e-401c-a292-0a815518bb8c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "748" + "769" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,215 +336,222 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:08:36 GMT" + ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353/providers/Microsoft.Resources/deployments/deplamlcp4366/operationStatuses/08587380728440801310?api-version=2015-11-01" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093/providers/Microsoft.Resources/deployments/deplamlcp6381/operationStatuses/08587125599695233423?api-version=2015-11-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-request-id": [ - "50b9557f-7a03-42b1-b0e1-779d0011fbf1" + "213447ed-d18e-401c-a292-0a815518bb8c" ], "x-ms-correlation-request-id": [ - "50b9557f-7a03-42b1-b0e1-779d0011fbf1" + "213447ed-d18e-401c-a292-0a815518bb8c" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011401Z:50b9557f-7a03-42b1-b0e1-779d0011fbf1" + "WESTCENTRALUS:20170309T080836Z:213447ed-d18e-401c-a292-0a815518bb8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:01 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353/providers/Microsoft.Resources/deployments/deplamlcp4366/operationStatuses/08587380728440801310?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2RlcGxhbWxjcDQzNjYvb3BlcmF0aW9uU3RhdHVzZXMvMDg1ODczODA3Mjg0NDA4MDEzMTA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093/providers/Microsoft.Resources/deployments/deplamlcp6381/operationStatuses/08587125599695233423?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A2MzgxL29wZXJhdGlvblN0YXR1c2VzLzA4NTg3MTI1NTk5Njk1MjMzNDIzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "22" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:05 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14998" ], "x-ms-request-id": [ - "7fea6f84-271c-4099-afa7-0268fffc06ae" + "a08b034d-b5b8-490a-b34b-f8759c25ed05" ], "x-ms-correlation-request-id": [ - "7fea6f84-271c-4099-afa7-0268fffc06ae" + "a08b034d-b5b8-490a-b34b-f8759c25ed05" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011432Z:7fea6f84-271c-4099-afa7-0268fffc06ae" + "WESTCENTRALUS:20170309T080906Z:a08b034d-b5b8-490a-b34b-f8759c25ed05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353/providers/Microsoft.Resources/deployments/deplamlcp4366?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2RlcGxhbWxjcDQzNjY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093/providers/Microsoft.Resources/deployments/deplamlcp6381?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A2MzgxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.Resources/deployments/deplamlcp4366\",\r\n \"name\": \"deplamlcp4366\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp4366\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-05-18T01:14:06.0568828Z\",\r\n \"duration\": \"PT4.6593424S\",\r\n \"correlationId\": \"50b9557f-7a03-42b1-b0e1-779d0011fbf1\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp4366\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.Resources/deployments/deplamlcp6381\",\r\n \"name\": \"deplamlcp6381\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp6381\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2017-03-09T08:08:39.3329891Z\",\r\n \"duration\": \"PT3.3787198S\",\r\n \"correlationId\": \"213447ed-d18e-401c-a292-0a815518bb8c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp6381\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "830" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:05 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" + "14997" ], "x-ms-request-id": [ - "cdd716df-b859-4d99-8e04-bcb4f309ebe5" + "47b7291c-aee8-4d86-a99e-ada13b6a764c" ], "x-ms-correlation-request-id": [ - "cdd716df-b859-4d99-8e04-bcb4f309ebe5" + "47b7291c-aee8-4d86-a99e-ada13b6a764c" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011432Z:cdd716df-b859-4d99-8e04-bcb4f309ebe5" + "WESTCENTRALUS:20170309T080906Z:47b7291c-aee8-4d86-a99e-ada13b6a764c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353/providers/Microsoft.MachineLearning//commitmentPlans/amlcp4366?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nLy9jb21taXRtZW50UGxhbnMvYW1sY3A0MzY2P2FwaS12ZXJzaW9uPTIwMTYtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093/providers/Microsoft.MachineLearning//commitmentPlans/amlcp6381?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNjM4MT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ed84408-41ce-4fa0-82f8-7c27b73f865b" + "7add1453-c338-400c-8341-7afe82caaa2b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"etag\": \"00000901-0000-0000-0000-573bc1db0000\",\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"amlcp4366\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2016-05-18T01:14:02.8089875Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 100.0,\r\n \"amount\": 100.0,\r\n \"includedQuantityMeter\": \"93284d87-d24e-448a-9d4c-c5df44b3bb52\",\r\n \"overageMeter\": \"60c709a8-0783-47cd-a4f8-662814c46aa0\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 10000.0,\r\n \"amount\": 10000.0,\r\n \"includedQuantityMeter\": \"a22f9766-117b-4865-8389-631cb8f852b1\",\r\n \"overageMeter\": \"d9f14fca-2680-44a1-83ca-511364fe3201\"\r\n }\r\n },\r\n \"planMeter\": \"2d38cd70-6831-4e50-acc4-4c72d6ef57c1\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false,\r\n \"maxAssociationLimit\": 10000\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"PLAN_SKU_NAME\",\r\n \"tier\": \"PLAN_SKU_TIER\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", + "ResponseBody": "{\r\n \"etag\": \"00009903-0000-0000-0000-58c10d850000\",\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/commitmentPlans/amlcp6381\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"amlcp6381\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2017-03-09T08:08:36.3560224Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 25.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"29187de1-b4a1-4503-a6f6-078271b3fc9d\",\r\n \"overageMeter\": \"842f92f7-a46b-4522-ac62-8134271dc591\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 100000.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"303743b6-4cd0-44df-8ec2-a93c8f14943b\",\r\n \"overageMeter\": \"c906e161-98b8-41b1-81e2-b59e0b263740\"\r\n }\r\n },\r\n \"maxAssociationLimit\": 10000,\r\n \"maxCapacityLimit\": 10,\r\n \"minCapacityLimit\": 1,\r\n \"planMeter\": \"4a5a4b83-6216-47c5-b3db-fe430fa6e2c3\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1019" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "eeb9cc4c-1533-4a1f-b9cf-208acf572227" + "Date": [ + "Thu, 09 Mar 2017 08:09:06 GMT" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "Pragma": [ + "no-cache" ], - "x-ms-correlation-request-id": [ - "11d1843a-738a-4f4e-907d-a0b3ac2cc7bd" + "Transfer-Encoding": [ + "chunked" ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011433Z:11d1843a-738a-4f4e-907d-a0b3ac2cc7bd" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "a7c158a0-2910-4efd-bbdb-4ca46073bec8" ], - "Date": [ - "Wed, 18 May 2016 01:14:32 GMT" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-correlation-request-id": [ + "5081a9d4-ccd8-4122-bb67-84438f1a3108" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T080906Z:5081a9d4-ccd8-4122-bb67-84438f1a3108" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws2371?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzMjM3MT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws4297?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czQyOTc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": true,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_01\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {}\r\n },\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"keys\": {\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\",\r\n \"key\": \"SOME_STORAGE_KEY\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/commitmentPlans/amlcp6381\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"payloadsInBlobStorage\": false\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5901" + "15025" ], "x-ms-client-request-id": [ - "fbb122b7-591d-4dfa-8c27-1b4753a108e2" + "51bef486-7e40-401a-b081-9b41e62d1929" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws2371\",\r\n \"name\": \"amlws2371\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws4297\",\r\n \"name\": \"amlws4297\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "6165" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -540,221 +559,304 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:10 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/b0c94121-f111-4455-80fd-25a2c2f57376?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b03da86f-0926-4569-b8ad-c465e91bc1ba?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "449" + ], "x-ms-correlation-request-id": [ - "9d2caa69-bbc8-4bca-9c45-1ab92f5d64ce" + "5ca25f92-9c89-40a0-b467-2283e1a3b9e6" ], "x-ms-request-id": [ - "50670419-f5c0-40a6-b9b3-b6a519c98cb2" + "45263c4d-7038-4cdd-83b4-68f455d28c05" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011440Z:9d2caa69-bbc8-4bca-9c45-1ab92f5d64ce" + "WESTCENTRALUS:20170309T080911Z:5ca25f92-9c89-40a0-b467-2283e1a3b9e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:40 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/b0c94121-f111-4455-80fd-25a2c2f57376?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2IwYzk0MTIxLWYxMTEtNDQ1NS04MGZkLTI1YTJjMmY1NzM3Nj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b03da86f-0926-4569-b8ad-c465e91bc1ba?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYjAzZGE4NmYtMDkyNi00NTY5LWI4YWQtYzQ2NWU5MWJjMWJhP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/b0c94121-f111-4455-80fd-25a2c2f57376\",\r\n \"name\": \"b0c94121-f111-4455-80fd-25a2c2f57376\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:14:40.3223021Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b03da86f-0926-4569-b8ad-c465e91bc1ba\",\r\n \"name\": \"b03da86f-0926-4569-b8ad-c465e91bc1ba\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:09:10.7860223Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "353" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:16 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "70" + ], "x-ms-correlation-request-id": [ - "0946c652-02f7-41df-b695-3b0ba8b0ce2b" + "c72c6cb9-062d-42b9-a02b-70c209e886be" ], "x-ms-request-id": [ - "91e01dcb-9199-4e65-991e-c1bac6c9c3c6" + "3cba2f50-d89d-421c-9b10-398305472b1a" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14992" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011446Z:0946c652-02f7-41df-b695-3b0ba8b0ce2b" + "WESTCENTRALUS:20170309T080916Z:c72c6cb9-062d-42b9-a02b-70c209e886be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:46 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/b0c94121-f111-4455-80fd-25a2c2f57376?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2IwYzk0MTIxLWYxMTEtNDQ1NS04MGZkLTI1YTJjMmY1NzM3Nj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b03da86f-0926-4569-b8ad-c465e91bc1ba?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYjAzZGE4NmYtMDkyNi00NTY5LWI4YWQtYzQ2NWU5MWJjMWJhP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/b0c94121-f111-4455-80fd-25a2c2f57376\",\r\n \"name\": \"b0c94121-f111-4455-80fd-25a2c2f57376\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:14:40.3223021Z\",\r\n \"endTime\": \"2016-05-18T01:14:50.3290536Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b03da86f-0926-4569-b8ad-c465e91bc1ba\",\r\n \"name\": \"b03da86f-0926-4569-b8ad-c465e91bc1ba\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:09:10.7860223Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "380" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:21 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "19" + ], "x-ms-correlation-request-id": [ - "5184aef5-e5b1-44f9-a7b6-bf61ffd69bc9" + "f8ae5c3b-82f6-468c-a5fb-db695f020ed7" ], "x-ms-request-id": [ - "6923ebee-d535-4a9b-86ee-6ee49b157d96" + "b896d239-7059-4b2b-9820-a4aa7f95b491" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" + "14991" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011451Z:5184aef5-e5b1-44f9-a7b6-bf61ffd69bc9" + "WESTCENTRALUS:20170309T080921Z:f8ae5c3b-82f6-468c-a5fb-db695f020ed7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:51 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws2371?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzMjM3MT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b03da86f-0926-4569-b8ad-c465e91bc1ba?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYjAzZGE4NmYtMDkyNi00NTY5LWI4YWQtYzQ2NWU5MWJjMWJhP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws2371\",\r\n \"name\": \"amlws2371\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:14:40.1965104Z\",\r\n \"modifiedOn\": \"2016-05-18T01:14:50.4134101Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/646597da03b94cbc82d6157ec122f123/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b03da86f-0926-4569-b8ad-c465e91bc1ba\",\r\n \"name\": \"b03da86f-0926-4569-b8ad-c465e91bc1ba\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:09:10.7860223Z\",\r\n \"endTime\": \"2017-03-09T08:09:23.5773794Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5915" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:26 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "8" + ], "x-ms-correlation-request-id": [ - "ed9e4d42-ce52-4b4e-bc18-73213eab6396" + "b9f7b496-1c59-41c5-9da2-d64caac1e5ef" ], "x-ms-request-id": [ - "2c0fe7e1-00c2-460b-b654-e68bc74d6336" + "c861218c-2c9e-4174-ad60-291f05551cd1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" + "14990" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011451Z:ed9e4d42-ce52-4b4e-bc18-73213eab6396" + "WESTCENTRALUS:20170309T080926Z:b9f7b496-1c59-41c5-9da2-d64caac1e5ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws4297?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czQyOTc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws4297\",\r\n \"name\": \"amlws4297\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:12.4691516Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:23.6390019Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/17efc65f9f2f4853bd4013a391cadc22/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_04\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\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": [ - "Wed, 18 May 2016 01:14:51 GMT" + "Thu, 09 Mar 2017 08:09:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "18" + ], + "x-ms-correlation-request-id": [ + "bcd3cd63-2578-4ad1-a0d0-cc4101d10c5d" + ], + "x-ms-request-id": [ + "1f0096e1-6534-42a6-aeaf-d86d14f64c7c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T080926Z:bcd3cd63-2578-4ad1-a0d0-cc4101d10c5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws6378?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNjM3OD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws163?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE2Mz9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": true,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_01\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {}\r\n },\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"keys\": {\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\",\r\n \"key\": \"SOME_STORAGE_KEY\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/commitmentPlans/amlcp6381\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"payloadsInBlobStorage\": false\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5901" + "15025" ], "x-ms-client-request-id": [ - "f703eb11-8945-47e7-a2df-043d4ff9476d" + "59e98bb5-229d-443a-9cd9-273afe0ec4a3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws6378\",\r\n \"name\": \"amlws6378\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws163\",\r\n \"name\": \"amlws163\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "6165" + "376" ], "Content-Type": [ "application/json; charset=utf-8" @@ -762,323 +864,246 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:26 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/f86e4f99-30cb-4889-b1c2-0a6111d8c95c?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "169" + ], "x-ms-correlation-request-id": [ - "6b922d94-cdf6-4625-948d-88099cbfe9f8" + "6f640e75-2606-411b-a8c9-cadfd92a484f" ], "x-ms-request-id": [ - "04a5d6d6-80cf-4942-b0fc-bdba2c226251" + "43c12751-4c66-4db9-acf1-2a1385ad4674" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011453Z:6b922d94-cdf6-4625-948d-88099cbfe9f8" + "WESTCENTRALUS:20170309T080927Z:6f640e75-2606-411b-a8c9-cadfd92a484f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:14:52 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzAzODcxNGUxLTI4MmItNDhjZC1iNTNhLWJkMTg2OWZiMjAyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/f86e4f99-30cb-4889-b1c2-0a6111d8c95c?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvZjg2ZTRmOTktMzBjYi00ODg5LWIxYzItMGE2MTExZDhjOTVjP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"name\": \"038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:14:52.7179112Z\",\r\n \"percentComplete\": 0.55555555555555558\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/f86e4f99-30cb-4889-b1c2-0a6111d8c95c\",\r\n \"name\": \"f86e4f99-30cb-4889-b1c2-0a6111d8c95c\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:09:27.4423525Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "353" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "a47517c2-190a-4a18-bf0d-de982c017021" - ], - "x-ms-request-id": [ - "53c95263-79ab-4e66-9a6c-aaafc6583408" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011458Z:a47517c2-190a-4a18-bf0d-de982c017021" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Thu, 09 Mar 2017 08:09:32 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 18 May 2016 01:14:57 GMT" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzAzODcxNGUxLTI4MmItNDhjZC1iNTNhLWJkMTg2OWZiMjAyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"name\": \"038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:14:52.7179112Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "353" ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Vary": [ + "Accept-Encoding" ], - "Pragma": [ - "no-cache" + "x-ms-request-duration": [ + "27" ], "x-ms-correlation-request-id": [ - "0fd7a8fc-6647-4d88-be36-fead0f5e5ca4" + "8007eded-53d1-4dc7-9478-abd2cff8f936" ], "x-ms-request-id": [ - "3bc2badb-36f2-4a65-8668-18626e552d11" + "c3009e96-a797-484b-872f-05be54137954" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "14988" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011503Z:0fd7a8fc-6647-4d88-be36-fead0f5e5ca4" + "WESTCENTRALUS:20170309T080932Z:8007eded-53d1-4dc7-9478-abd2cff8f936" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:02 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzAzODcxNGUxLTI4MmItNDhjZC1iNTNhLWJkMTg2OWZiMjAyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/f86e4f99-30cb-4889-b1c2-0a6111d8c95c?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvZjg2ZTRmOTktMzBjYi00ODg5LWIxYzItMGE2MTExZDhjOTVjP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"name\": \"038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:14:52.7179112Z\",\r\n \"percentComplete\": 0.77777777777777779\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/f86e4f99-30cb-4889-b1c2-0a6111d8c95c\",\r\n \"name\": \"f86e4f99-30cb-4889-b1c2-0a6111d8c95c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:09:27.4423525Z\",\r\n \"endTime\": \"2017-03-09T08:09:34.1551752Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "353" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "7a7ee637-e43a-4405-a5b8-8e7026f5cfe0" - ], - "x-ms-request-id": [ - "0517d07d-1629-4ef7-9209-30d57e122206" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14738" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011508Z:7a7ee637-e43a-4405-a5b8-8e7026f5cfe0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Thu, 09 Mar 2017 08:09:37 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 18 May 2016 01:15:07 GMT" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzAzODcxNGUxLTI4MmItNDhjZC1iNTNhLWJkMTg2OWZiMjAyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"name\": \"038714e1-282b-48cd-b53a-bd1869fb2023\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:14:52.7179112Z\",\r\n \"endTime\": \"2016-05-18T01:15:09.1094579Z\",\r\n \"percentComplete\": 1.0\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "380" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Vary": [ + "Accept-Encoding" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-request-duration": [ + "8" ], "x-ms-correlation-request-id": [ - "03aa5cf5-969e-41ef-b466-c8666c2a8980" + "1f17f90b-0ae4-4942-b0d4-c143040d4ff1" ], "x-ms-request-id": [ - "f36c6467-e903-402f-8ef0-28dc21623726" + "5b87619b-794d-4232-b205-6584882dd28d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14737" + "14987" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011513Z:03aa5cf5-969e-41ef-b466-c8666c2a8980" + "WESTCENTRALUS:20170309T080937Z:1f17f90b-0ae4-4942-b0d4-c143040d4ff1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:12 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws6378?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNjM3OD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws163?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE2Mz9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws6378\",\r\n \"name\": \"amlws6378\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:14:52.8413554Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:09.1947689Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/f87ade0a66074ff1b8e1d618c67a5fcc/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws163\",\r\n \"name\": \"amlws163\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:28.1397481Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:34.213807Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c1ae89aa2f984e5aa828d7015f3c94d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_05\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5915" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:37 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "19" + ], "x-ms-correlation-request-id": [ - "8ed8df48-9ea3-4274-89ae-50a199b954dd" + "33ffe403-4904-40cc-8d7a-2c013a37b447" ], "x-ms-request-id": [ - "bba10882-2587-4d12-9659-45f4ba6bd9a6" + "73ecff82-7427-4b3f-a34a-d22b4cad3d69" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14736" + "14986" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011514Z:8ed8df48-9ea3-4274-89ae-50a199b954dd" + "WESTCENTRALUS:20170309T080937Z:33ffe403-4904-40cc-8d7a-2c013a37b447" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:13 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws5823?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNTgyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws7591?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czc1OTE/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": true,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_01\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {}\r\n },\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"keys\": {\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\",\r\n \"key\": \"SOME_STORAGE_KEY\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/commitmentPlans/amlcp6381\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"payloadsInBlobStorage\": false\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5901" + "15025" ], "x-ms-client-request-id": [ - "2fc23ca9-3e5b-45b5-9ecb-cb9121bc40bb" + "f7d54f51-1e27-48ce-997a-75394e4c2d49" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws5823\",\r\n \"name\": \"amlws5823\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws7591\",\r\n \"name\": \"amlws7591\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "6165" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1086,272 +1111,246 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:37 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c424899-925d-4901-9858-153ebe7da6d0?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7d9eb541-c0b4-48dd-b2c1-99a0abe0d9ba?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "149" + ], "x-ms-correlation-request-id": [ - "266dadaa-f01b-4f9d-baff-97cc7b8621a6" + "2c880618-071a-4994-a2cc-7e1f6b2951b3" ], "x-ms-request-id": [ - "626d0133-9898-4988-9d1c-2765ec834c82" + "b3718cee-4faa-4f55-a995-3212f424b01d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011515Z:266dadaa-f01b-4f9d-baff-97cc7b8621a6" + "WESTCENTRALUS:20170309T080937Z:2c880618-071a-4994-a2cc-7e1f6b2951b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:14 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c424899-925d-4901-9858-153ebe7da6d0?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJjNDI0ODk5LTkyNWQtNDkwMS05ODU4LTE1M2ViZTdkYTZkMD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7d9eb541-c0b4-48dd-b2c1-99a0abe0d9ba?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvN2Q5ZWI1NDEtYzBiNC00OGRkLWIyYzEtOTlhMGFiZTBkOWJhP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c424899-925d-4901-9858-153ebe7da6d0\",\r\n \"name\": \"2c424899-925d-4901-9858-153ebe7da6d0\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:15:18.9153573Z\",\r\n \"percentComplete\": 0.22222222222222221\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7d9eb541-c0b4-48dd-b2c1-99a0abe0d9ba\",\r\n \"name\": \"7d9eb541-c0b4-48dd-b2c1-99a0abe0d9ba\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:09:39.4991927Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "353" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "7bf8f2ff-a205-446a-b68d-8e4da8caac9d" - ], - "x-ms-request-id": [ - "6446809b-0e26-46fe-b795-dadf0caf08b8" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011520Z:7bf8f2ff-a205-446a-b68d-8e4da8caac9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Thu, 09 Mar 2017 08:09:42 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 18 May 2016 01:15:19 GMT" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c424899-925d-4901-9858-153ebe7da6d0?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJjNDI0ODk5LTkyNWQtNDkwMS05ODU4LTE1M2ViZTdkYTZkMD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c424899-925d-4901-9858-153ebe7da6d0\",\r\n \"name\": \"2c424899-925d-4901-9858-153ebe7da6d0\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:15:18.9153573Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "353" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Vary": [ + "Accept-Encoding" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-request-duration": [ + "16" ], "x-ms-correlation-request-id": [ - "b0c2b640-6b02-43db-84ac-d62efe42786e" + "f64302af-a117-4ac6-a470-8d5baf2f1277" ], "x-ms-request-id": [ - "9a5facde-4a28-4181-b8e0-54a3cb032e5c" + "c8332d70-27ab-4747-96fc-4a0385f841ba" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" + "14985" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011525Z:b0c2b640-6b02-43db-84ac-d62efe42786e" + "WESTCENTRALUS:20170309T080942Z:f64302af-a117-4ac6-a470-8d5baf2f1277" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:25 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c424899-925d-4901-9858-153ebe7da6d0?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJjNDI0ODk5LTkyNWQtNDkwMS05ODU4LTE1M2ViZTdkYTZkMD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7d9eb541-c0b4-48dd-b2c1-99a0abe0d9ba?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvN2Q5ZWI1NDEtYzBiNC00OGRkLWIyYzEtOTlhMGFiZTBkOWJhP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c424899-925d-4901-9858-153ebe7da6d0\",\r\n \"name\": \"2c424899-925d-4901-9858-153ebe7da6d0\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:15:18.9153573Z\",\r\n \"endTime\": \"2016-05-18T01:15:26.6409848Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7d9eb541-c0b4-48dd-b2c1-99a0abe0d9ba\",\r\n \"name\": \"7d9eb541-c0b4-48dd-b2c1-99a0abe0d9ba\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:09:39.4991927Z\",\r\n \"endTime\": \"2017-03-09T08:09:45.0114993Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "380" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:47 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], "x-ms-correlation-request-id": [ - "99d6a223-128b-4c23-bd92-ab4a60ecae9c" + "bd19dec7-0ff2-4020-96ed-3df40577886b" ], "x-ms-request-id": [ - "890c0094-fc89-4af8-8302-a6c058875ab8" + "47e0f26e-183e-4926-adac-f30f5a1fc18e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14732" + "14984" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011530Z:99d6a223-128b-4c23-bd92-ab4a60ecae9c" + "WESTCENTRALUS:20170309T080947Z:bd19dec7-0ff2-4020-96ed-3df40577886b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:30 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws5823?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNTgyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws7591?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czc1OTE/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws5823\",\r\n \"name\": \"amlws5823\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:15:15.0624739Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:26.7025838Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/536534b57c2f4edaa708d5e34bcf66b4/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws7591\",\r\n \"name\": \"amlws7591\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:38.5768612Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:45.061854Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6a7d335fb9b9463481090eb96763a2e2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_06\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5915" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:47 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "18" + ], "x-ms-correlation-request-id": [ - "5c01c0b8-b102-4cfb-a1db-bf59dba9fc37" + "7ec11fce-faf5-48d0-8bb1-0e68d8c597c5" ], "x-ms-request-id": [ - "d7528ec3-fb66-47d7-8c7b-a985edd6d86e" + "718b23c8-cd11-4a11-adeb-9b4c68decfe0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14731" + "14983" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011530Z:5c01c0b8-b102-4cfb-a1db-bf59dba9fc37" + "WESTCENTRALUS:20170309T080947Z:7ec11fce-faf5-48d0-8bb1-0e68d8c597c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:30 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8762?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODc2Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg4212?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnNDIxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "37" ], "x-ms-client-request-id": [ - "f6bd3789-0fd3-41f7-95b7-8633bf531007" + "c55d0031-a81d-496b-b305-e4ff7b1d393d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8762\",\r\n \"name\": \"amlrg8762\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg4212\",\r\n \"name\": \"amlrg4212\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1359,59 +1358,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:47 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-request-id": [ - "ff3bf83e-40a6-4812-9431-694f243352e2" + "65b03068-936c-4597-b6e7-bc937d1c1d4a" ], "x-ms-correlation-request-id": [ - "ff3bf83e-40a6-4812-9431-694f243352e2" + "65b03068-936c-4597-b6e7-bc937d1c1d4a" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011531Z:ff3bf83e-40a6-4812-9431-694f243352e2" + "WESTCENTRALUS:20170309T080947Z:65b03068-936c-4597-b6e7-bc937d1c1d4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:31 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8762/providers/Microsoft.MachineLearning/webServices/amlws2047?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIwNDc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg4212/providers/Microsoft.MachineLearning/webServices/amlws1943?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnNDIxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE5NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": true,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_01\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {}\r\n },\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"keys\": {\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\",\r\n \"key\": \"SOME_STORAGE_KEY\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/commitmentPlans/amlcp6381\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"payloadsInBlobStorage\": false\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5901" + "15025" ], "x-ms-client-request-id": [ - "094da156-0755-4c8a-8958-0549fbeadb01" + "e8d5de24-eb95-4fca-8e04-5504860001ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8762/providers/Microsoft.MachineLearning/webServices/amlws2047\",\r\n \"name\": \"amlws2047\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\",\r\n \"key\": \"3LkirrNN7QoB1rKNLNGDuuK9I46W+AoYwKT5/FVNjqdqdqJEt/eB+53aG20ITmpTzpQcJ1h7TTFUnmsWY8+cvw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4366\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg4212/providers/Microsoft.MachineLearning/webServices/amlws1943\",\r\n \"name\": \"amlws1943\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "6166" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1419,323 +1419,361 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:48 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c905927-c994-457c-8e12-1007e28ecc25?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fd3705f9-c3a5-4b56-ad01-039de627aeed?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "172" + ], "x-ms-correlation-request-id": [ - "9ad0ce6b-4630-42f4-9647-b4de2d80a633" + "e0794127-8fac-4922-b033-1cc0efac7e32" ], "x-ms-request-id": [ - "3c38eeb3-4c4a-44c6-aeb4-387d2905805c" + "12a1d62f-19c6-4b02-88c3-e69e5c60dc23" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011533Z:9ad0ce6b-4630-42f4-9647-b4de2d80a633" + "WESTCENTRALUS:20170309T080948Z:e0794127-8fac-4922-b033-1cc0efac7e32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:33 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c905927-c994-457c-8e12-1007e28ecc25?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJjOTA1OTI3LWM5OTQtNDU3Yy04ZTEyLTEwMDdlMjhlY2MyNT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fd3705f9-c3a5-4b56-ad01-039de627aeed?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvZmQzNzA1ZjktYzNhNS00YjU2LWFkMDEtMDM5ZGU2MjdhZWVkP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c905927-c994-457c-8e12-1007e28ecc25\",\r\n \"name\": \"2c905927-c994-457c-8e12-1007e28ecc25\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:15:32.4839717Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fd3705f9-c3a5-4b56-ad01-039de627aeed\",\r\n \"name\": \"fd3705f9-c3a5-4b56-ad01-039de627aeed\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:09:48.4877395Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "353" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:52 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "33" + ], "x-ms-correlation-request-id": [ - "d9b88629-124a-4f9a-b5b5-0e922b71f6ca" + "a9894d8a-f0b3-4985-9308-b875cbc54576" ], "x-ms-request-id": [ - "f9d4c5b9-c0ad-4dce-8915-3bf48bc81ce5" + "a24239f8-b143-468b-8a7e-6df4c04e8bc9" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" + "14982" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011538Z:d9b88629-124a-4f9a-b5b5-0e922b71f6ca" + "WESTCENTRALUS:20170309T080953Z:a9894d8a-f0b3-4985-9308-b875cbc54576" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:38 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c905927-c994-457c-8e12-1007e28ecc25?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJjOTA1OTI3LWM5OTQtNDU3Yy04ZTEyLTEwMDdlMjhlY2MyNT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fd3705f9-c3a5-4b56-ad01-039de627aeed?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvZmQzNzA1ZjktYzNhNS00YjU2LWFkMDEtMDM5ZGU2MjdhZWVkP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2c905927-c994-457c-8e12-1007e28ecc25\",\r\n \"name\": \"2c905927-c994-457c-8e12-1007e28ecc25\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:15:32.4839717Z\",\r\n \"endTime\": \"2016-05-18T01:15:41.2284958Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fd3705f9-c3a5-4b56-ad01-039de627aeed\",\r\n \"name\": \"fd3705f9-c3a5-4b56-ad01-039de627aeed\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:09:48.4877395Z\",\r\n \"endTime\": \"2017-03-09T08:09:56.9765905Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "380" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:58 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "12" + ], "x-ms-correlation-request-id": [ - "c9d28f7c-9322-49fb-8374-072ac1a81dba" + "cde7527c-81ae-4e96-910c-46f3a6f4b6c3" ], "x-ms-request-id": [ - "5df5753d-bbbe-4781-8451-9a18929fad58" + "2784dcb7-e67f-45e8-900e-26576c7d928d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" + "14981" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011543Z:c9d28f7c-9322-49fb-8374-072ac1a81dba" + "WESTCENTRALUS:20170309T080958Z:cde7527c-81ae-4e96-910c-46f3a6f4b6c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:43 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8762/providers/Microsoft.MachineLearning/webServices/amlws2047?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIwNDc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg4212/providers/Microsoft.MachineLearning/webServices/amlws1943?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnNDIxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE5NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8762/providers/Microsoft.MachineLearning/webServices/amlws2047\",\r\n \"name\": \"amlws2047\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:15:32.944991Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:41.3133434Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/499d2f8cf7ae49f0b65a20aa08780929/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg4212/providers/Microsoft.MachineLearning/webServices/amlws1943\",\r\n \"name\": \"amlws1943\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:49.1859262Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:57.0363932Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e12854abfc8e4ff292386f3818de155a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_07\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5915" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:58 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "19" + ], "x-ms-correlation-request-id": [ - "c62b8c25-0f83-457f-bd81-357cec25453f" + "a6d718c3-3e28-4850-8754-abce82d1c9aa" ], "x-ms-request-id": [ - "50b92f42-e994-450a-9338-ead1d9e6f597" + "cefb7a1d-8a44-455a-adfd-4ece036d536c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" + "14980" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011543Z:c62b8c25-0f83-457f-bd81-357cec25453f" + "WESTCENTRALUS:20170309T080958Z:a6d718c3-3e28-4850-8754-abce82d1c9aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:43 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba926d4d-4599-43a0-95e0-84ac334d6585" + "b647fd07-1e90-4f35-829d-a091740d1ad7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws2371\",\r\n \"name\": \"amlws2371\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:14:40.1965104Z\",\r\n \"modifiedOn\": \"2016-05-18T01:14:50.4134101Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/646597da03b94cbc82d6157ec122f123/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws5823\",\r\n \"name\": \"amlws5823\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:15:15.0624739Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:26.7025838Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/536534b57c2f4edaa708d5e34bcf66b4/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws6378\",\r\n \"name\": \"amlws6378\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:14:52.8413554Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:09.1947689Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/f87ade0a66074ff1b8e1d618c67a5fcc/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws163\",\r\n \"name\": \"amlws163\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:28.1397481Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:34.213807Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c1ae89aa2f984e5aa828d7015f3c94d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws4297\",\r\n \"name\": \"amlws4297\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:12.4691516Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:23.6390019Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/17efc65f9f2f4853bd4013a391cadc22/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws7591\",\r\n \"name\": \"amlws7591\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:38.5768612Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:45.061854Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6a7d335fb9b9463481090eb96763a2e2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2815" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:09:58 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "10" + ], "x-ms-correlation-request-id": [ - "1ffd1f62-2b43-4cbf-84d0-cf75fa307245" + "4c838e0d-45ba-4c7d-a7a0-8990534d21c4" ], "x-ms-request-id": [ - "3876e33a-fb1d-4036-af07-ba6c21e81b3f" + "afd02919-47cb-41ca-83f1-de32b3ea67dc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" + "14979" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011544Z:1ffd1f62-2b43-4cbf-84d0-cf75fa307245" + "WESTCENTRALUS:20170309T080958Z:4c838e0d-45ba-4c7d-a7a0-8990534d21c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:43 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/webServices?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/webServices?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c04fa085-5e1e-4ce9-9965-bd14602dfa59" + "b9b2dda5-ee22-4190-be29-c82f51cc044d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8762/providers/Microsoft.MachineLearning/webServices/amlws2047\",\r\n \"name\": \"amlws2047\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:15:32.944991Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:41.3133434Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/499d2f8cf7ae49f0b65a20aa08780929/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws2371\",\r\n \"name\": \"amlws2371\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:14:40.1965104Z\",\r\n \"modifiedOn\": \"2016-05-18T01:14:50.4134101Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/646597da03b94cbc82d6157ec122f123/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws5823\",\r\n \"name\": \"amlws5823\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:15:15.0624739Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:26.7025838Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/536534b57c2f4edaa708d5e34bcf66b4/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws6378\",\r\n \"name\": \"amlws6378\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:14:52.8413554Z\",\r\n \"modifiedOn\": \"2016-05-18T01:15:09.1947689Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/f87ade0a66074ff1b8e1d618c67a5fcc/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor6957\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/ritbhatrp/providers/Microsoft.MachineLearning/webServices/prodwsmay95\",\r\n \"name\": \"prodwsmay95\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-10T03:38:15.6435929Z\",\r\n \"modifiedOn\": \"2016-05-10T03:47:02.5805157Z\",\r\n \"title\": \"TestMlService\",\r\n \"description\": \"Updated web service description.\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/de9cb0a45b2f4b2eade28e1be1344ddc/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/ritbhatrp/providers/Microsoft.MachineLearning/webServices/rpprodwsmay12\",\r\n \"name\": \"rpprodwsmay12\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-05-12T15:03:25.6659097Z\",\r\n \"modifiedOn\": \"2016-05-12T20:44:07.660223Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/26244534bed443c594abfc45a7efc7b7/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/ritbhatrp/providers/Microsoft.MachineLearning/webServices/rpprodwsmay12rev3\",\r\n \"name\": \"rpprodwsmay12rev3\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-12T21:29:37.4829504Z\",\r\n \"modifiedOn\": \"2016-05-12T22:47:31.0986781Z\",\r\n \"title\": \"Compute Sin\",\r\n \"description\": \"Updated web service\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/dd315cf95958462e95485064a55ad947/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"cloudmldemo\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/ritbhatrp/providers/Microsoft.MachineLearning/webServices/rpprodwsmay15\",\r\n \"name\": \"rpprodwsmay15\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-15T17:58:58.562987Z\",\r\n \"modifiedOn\": \"2016-05-15T18:25:07.6501717Z\",\r\n \"title\": \"Compute Sin\",\r\n \"description\": \"This web service computes the sin of 4 numbers.\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/732f172858864715b0b4c6ea75c03c0a/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"rpbestest1\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/8db790dc3067484eb232700ce5981584/providers/Microsoft.MachineLearning/webServices/0de910fbd4e247dca2c1515ee988cdd7\",\r\n \"name\": \"0de910fbd4e247dca2c1515ee988cdd7\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-13T02:24:20.096615Z\",\r\n \"modifiedOn\": \"2016-10-13T02:24:37.1756987Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/501c761aed3448a28f4a17b94b1fcc35/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/4033d2d142f7424480760eee6167e65d/providers/Microsoft.MachineLearning/webServices/4bea5465407f4dd9af591d1d5ddcba09\",\r\n \"name\": \"4bea5465407f4dd9af591d1d5ddcba09\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T16:41:03.2098772Z\",\r\n \"modifiedOn\": \"2016-09-20T16:41:25.1044622Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c34ef9cba58340adb909130cd5b37361/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T16:40:07.7791238Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/a1b2e12b9a3d431898d79dd2607557bb/providers/Microsoft.MachineLearning/webServices/58f306dcdb444320864396cd747309f4\",\r\n \"name\": \"58f306dcdb444320864396cd747309f4\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-13T02:04:06.7067589Z\",\r\n \"modifiedOn\": \"2016-10-13T02:04:19.4228918Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/05f6a56597744238b89a0aec349d7ed3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/dagaldgroup/providers/Microsoft.MachineLearning/webServices/99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassLogReg\",\r\n \"name\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassLogReg\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-17T01:32:47.1553239Z\",\r\n \"modifiedOn\": \"2016-11-17T01:32:59.0403043Z\",\r\n \"title\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassLogReg\",\r\n \"description\": \"Easy ML Training Web Service\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/022e9e0104c047c4adc76ba9c923bc9b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"dagaldautoml\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/dagaldgroup/providers/Microsoft.MachineLearning/webServices/99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassNeuralNetwork\",\r\n \"name\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassNeuralNetwork\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-17T01:32:46.8915126Z\",\r\n \"modifiedOn\": \"2016-11-17T01:33:41.7802355Z\",\r\n \"title\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassNeuralNetwork\",\r\n \"description\": \"Easy ML Training Web Service\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5ea97feeae2d4d4a9836de620591f425/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"dagaldautoml\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/dagaldgroup/providers/Microsoft.MachineLearning/webServices/99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassSVM\",\r\n \"name\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassSVM\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-17T01:32:44.7807487Z\",\r\n \"modifiedOn\": \"2016-11-17T01:33:41.0881762Z\",\r\n \"title\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.17.32.40.401twoClassSVM\",\r\n \"description\": \"Easy ML Training Web Service\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/345697f96864462e98f09390b6ae798d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"dagaldautoml\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/dagaldgroup/providers/Microsoft.MachineLearning/webServices/99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.18.9.58.17\",\r\n \"name\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.18.9.58.17\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-17T02:11:22.9460799Z\",\r\n \"modifiedOn\": \"2016-11-17T02:11:37.6077313Z\",\r\n \"title\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.17.18.9.58.17\",\r\n \"description\": \"Easy ML Predictive Web Service\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f08761b9cb1a4e82bcd2e5bc49f5314c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"dagaldautoml\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/dagaldgroup/providers/Microsoft.MachineLearning/webServices/99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.19.14.41.11.226\",\r\n \"name\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.19.14.41.11.226\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-18T22:41:13.48844Z\",\r\n \"modifiedOn\": \"2016-11-18T22:41:26.1044708Z\",\r\n \"title\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.19.14.41.11.226\",\r\n \"description\": \"Easy ML Predictive Web Service\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c2e7f5eb75b7449abba563550a7f5b44/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"dagaldautoml\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/dagaldgroup/providers/Microsoft.MachineLearning/webServices/99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.19.14.44.7.971\",\r\n \"name\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.19.14.44.7.971\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-18T22:44:08.6381422Z\",\r\n \"modifiedOn\": \"2016-11-18T22:44:25.9501964Z\",\r\n \"title\": \"99DED_4e8fd653852c415185deff8b10215c0a_9a609038ce16466a93f59dd61543943c.2016.11.19.14.44.7.971\",\r\n \"description\": \"Easy ML Predictive Web Service\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/741ee7147abe4e0cb13387c37b97a45a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"dagaldautoml\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/5b5830ad4fa64d848a166a2e9a81dea2/providers/Microsoft.MachineLearning/webServices/9bf45d5e88e04e67accbe95f7be1ecb0\",\r\n \"name\": \"9bf45d5e88e04e67accbe95f7be1ecb0\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-13T02:16:40.4329212Z\",\r\n \"modifiedOn\": \"2016-10-13T02:16:55.2451145Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bef294ec81464328bf400cecc14e2c8d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/36885089d2db46f8ac62f1b188a7f97a/providers/Microsoft.MachineLearning/webServices/aa7a4577a10e43c198bbb2557265a620\",\r\n \"name\": \"aa7a4577a10e43c198bbb2557265a620\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-13T02:42:13.8447075Z\",\r\n \"modifiedOn\": \"2016-10-13T02:42:35.8238681Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/76ddd96f9c0c4aa8a8b7e507578815de/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-10-15T02:40:33.5770681Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/ApplyMathIris.2016.8.12.17.13.41.110\",\r\n \"name\": \"ApplyMathIris.2016.8.12.17.13.41.110\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-12T17:14:06.2027788Z\",\r\n \"modifiedOn\": \"2016-08-12T17:18:01.0683259Z\",\r\n \"title\": \"ApplyMath+Ir\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ae48e5f417e34b9ebc281935f88f81ee/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohupaidst\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/BasicIris\",\r\n \"name\": \"BasicIris\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-02T18:09:38.1884835Z\",\r\n \"modifiedOn\": \"2016-09-09T02:32:00.8010765Z\",\r\n \"title\": \"Basic Iris\",\r\n \"description\": \"This is Basic Iris and Apply Math\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ddf39e1585c64820a8fd6bbd0130f294/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Blank1\",\r\n \"name\": \"Blank1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-06-15T23:47:43.026513Z\",\r\n \"modifiedOn\": \"2016-06-15T23:47:51.9682585Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e0b1a1452e9b437da2a5ef0d884bfe3f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/bohu002\",\r\n \"name\": \"bohu002\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-25T16:31:13.9005486Z\",\r\n \"modifiedOn\": \"2016-05-25T16:31:23.6423984Z\",\r\n \"title\": \"Sample 1\",\r\n \"description\": \"Sample 1 description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8d8c31b29b3644aaaf5ee539385a039c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/Workspaces/bohuws01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/c7e0727c734944feb5884648543adddd/providers/Microsoft.MachineLearning/webServices/c057f9babdeb4460860113e65cb894b3\",\r\n \"name\": \"c057f9babdeb4460860113e65cb894b3\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-13T02:30:04.0384935Z\",\r\n \"modifiedOn\": \"2016-10-13T02:30:11.2758384Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f56ecc9462de4fe6bc858e654946107d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/ClusteringGroupIrisDagaldExp1\",\r\n \"name\": \"ClusteringGroupIrisDagaldExp1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-26T20:48:48.8508665Z\",\r\n \"modifiedOn\": \"2016-06-09T00:05:00.6095791Z\",\r\n \"description\": \"Clustering: Group iris data [Predictive Exp.] - Copy - Copy - Copy\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1563a7fb529944f68b1911d4f27c2bfd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/ClusteringGroupIrisData\",\r\n \"name\": \"ClusteringGroupIrisData\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-05-25T23:09:42.8888466Z\",\r\n \"modifiedOn\": \"2016-05-25T23:09:56.2338167Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/703b6b0276f94f439d0ff2637e96576d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebService13adff2d-6a24-4874-a6f8-8949a8ce8a5b/providers/Microsoft.MachineLearning/webServices/comp-WebService13adff2d-6a24-4874-a6f8-8949a8ce8a5b\",\r\n \"name\": \"comp-WebService13adff2d-6a24-4874-a6f8-8949a8ce8a5b\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T18:36:10.6339349Z\",\r\n \"modifiedOn\": \"2016-09-12T18:36:21.9299583Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8523c5afdd464644b3bd727bf35f5d24/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T18:35:06.5899999Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebService1dfcb5d7-b562-4942-bf53-504684fe6d5e/providers/Microsoft.MachineLearning/webServices/comp-WebService1dfcb5d7-b562-4942-bf53-504684fe6d5e\",\r\n \"name\": \"comp-WebService1dfcb5d7-b562-4942-bf53-504684fe6d5e\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T18:07:39.3137682Z\",\r\n \"modifiedOn\": \"2016-09-12T18:07:58.7757867Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/47a73499edea441aa15a2c28c7633c2c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T18:06:33.9377547Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebService4590b175-d39d-432d-b78a-42157d2be771/providers/Microsoft.MachineLearning/webServices/comp-WebService4590b175-d39d-432d-b78a-42157d2be771\",\r\n \"name\": \"comp-WebService4590b175-d39d-432d-b78a-42157d2be771\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T17:52:10.1966927Z\",\r\n \"modifiedOn\": \"2016-09-12T17:52:20.3018251Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/35e3e23818634538bdb49e7acabd6690/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T17:51:05.2098048Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebService611389c4-615f-4c8a-af37-d5b0d254af39/providers/Microsoft.MachineLearning/webServices/comp-WebService611389c4-615f-4c8a-af37-d5b0d254af39\",\r\n \"name\": \"comp-WebService611389c4-615f-4c8a-af37-d5b0d254af39\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T17:29:49.6616271Z\",\r\n \"modifiedOn\": \"2016-09-12T17:30:02.4451462Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9819ed28adb2483eb24d992f822c3540/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T17:28:45.9017332Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebServiceabb68702-20c5-45d7-8535-2dee6dfedff2/providers/Microsoft.MachineLearning/webServices/comp-WebServiceabb68702-20c5-45d7-8535-2dee6dfedff2\",\r\n \"name\": \"comp-WebServiceabb68702-20c5-45d7-8535-2dee6dfedff2\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T18:30:13.1729136Z\",\r\n \"modifiedOn\": \"2016-09-12T18:30:28.3481771Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e7c3e444ec764074abf459cb98dacb1c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T18:29:12.964001Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebServiceb34d0829-3017-421c-9eba-d7df5be3ecac/providers/Microsoft.MachineLearning/webServices/comp-WebServiceb34d0829-3017-421c-9eba-d7df5be3ecac\",\r\n \"name\": \"comp-WebServiceb34d0829-3017-421c-9eba-d7df5be3ecac\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T16:22:21.660142Z\",\r\n \"modifiedOn\": \"2016-09-12T16:22:38.7471555Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b9805fd27b19425cb507a20b646d8e1e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T16:21:18.2711537Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebServicecfe352b1-8a38-47ee-addb-0cecc553e80d/providers/Microsoft.MachineLearning/webServices/comp-WebServicecfe352b1-8a38-47ee-addb-0cecc553e80d\",\r\n \"name\": \"comp-WebServicecfe352b1-8a38-47ee-addb-0cecc553e80d\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T17:33:27.8961413Z\",\r\n \"modifiedOn\": \"2016-09-12T17:33:42.2709069Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0c3eead09bc84999a6a21774aa50c2f5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T17:32:26.2130173Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/resourceGroupcomp-WebServiceefc2f7f3-ccd0-4109-84f1-304cf746bf79/providers/Microsoft.MachineLearning/webServices/comp-WebServiceefc2f7f3-ccd0-4109-84f1-304cf746bf79\",\r\n \"name\": \"comp-WebServiceefc2f7f3-ccd0-4109-84f1-304cf746bf79\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-12T17:37:14.3249828Z\",\r\n \"modifiedOn\": \"2016-09-12T17:37:27.2691869Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/497a9caa97954e0dac2a5b694890a7cd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-14T17:36:10.557103Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/d2f5c9ba408d43c2932aa7fa960bafc7/providers/Microsoft.MachineLearning/webServices/d8838896444e439d962bfb9267c0356c\",\r\n \"name\": \"d8838896444e439d962bfb9267c0356c\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T16:35:37.2737502Z\",\r\n \"modifiedOn\": \"2016-09-20T16:35:55.9014244Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f48cc5e7e039470fa6379409cfa86a1e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T16:34:41.6847923Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/DagaldExpSampleData1\",\r\n \"name\": \"DagaldExpSampleData1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-06-13T21:11:58.3023516Z\",\r\n \"modifiedOn\": \"2016-06-13T21:34:12.2513068Z\",\r\n \"title\": \"\",\r\n \"description\": \"Clustering: Group iris data [Predictive Exp.]\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/327dddd2255c438f9c65562b440f5acf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/dagaldtest1\",\r\n \"name\": \"dagaldtest1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-06-07T22:20:00.7555929Z\",\r\n \"modifiedOn\": \"2016-06-07T22:20:11.3628485Z\",\r\n \"description\": \"Clustering: Group iris data [Predictive Exp.]\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/00289486e6b5486398acbbfc919ed8fe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_ca81f7a4a2cf4bf9a2f309c892584731/providers/Microsoft.MachineLearning/webServices/E2ETest_02b464c95a2f4660aa00d158250a38d7\",\r\n \"name\": \"E2ETest_02b464c95a2f4660aa00d158250a38d7\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:25:26.0097925Z\",\r\n \"modifiedOn\": \"2016-09-18T23:25:35.8475362Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2d2e97cbc04e4b7d9610274fb1aa2549/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:24:31.2240624Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_ac42b30c8bbf4f2dbb55dbb4cd948818/providers/Microsoft.MachineLearning/webServices/E2ETest_0c89b18efe0c446fb9c7a4fbb6c06812\",\r\n \"name\": \"E2ETest_0c89b18efe0c446fb9c7a4fbb6c06812\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T03:23:47.6096007Z\",\r\n \"modifiedOn\": \"2016-09-19T03:24:07.3632974Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5b1757fa62a64c31ba4f0379a1ef732f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T03:22:52.9706428Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_1580eef9407b4e7096c1208e5bb2d389/providers/Microsoft.MachineLearning/webServices/E2ETest_1ad43abd0e884a2f9c4894b5e8584e96\",\r\n \"name\": \"E2ETest_1ad43abd0e884a2f9c4894b5e8584e96\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:41:55.5301874Z\",\r\n \"modifiedOn\": \"2016-09-18T23:42:07.26711Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/026cb08b5743472f8be95385d2d35f09/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:41:00.7776324Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_88f625e065444bfdae9821a4bdce7975/providers/Microsoft.MachineLearning/webServices/E2ETest_1d66290745f54bb2a9876983c0a0abb4\",\r\n \"name\": \"E2ETest_1d66290745f54bb2a9876983c0a0abb4\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T03:16:06.0171691Z\",\r\n \"modifiedOn\": \"2016-09-15T03:16:19.3119375Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/59e0974b5ce34dfcacebc3a8b2816ee3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T03:15:05.5965615Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_8fe236fd447c4974bc471d0bdc3c037a/providers/Microsoft.MachineLearning/webServices/E2ETest_22df5deb56f6493b939e146d0006e6cc\",\r\n \"name\": \"E2ETest_22df5deb56f6493b939e146d0006e6cc\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T19:28:29.8674104Z\",\r\n \"modifiedOn\": \"2016-09-15T19:28:43.7987559Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0b2367865d11455fa51cb88812f0af3f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T19:27:29.5561126Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_9751fd988960430c8579a2c1fa3b713a/providers/Microsoft.MachineLearning/webServices/E2ETest_2ac71bba808e495eb6a4c4886614f847\",\r\n \"name\": \"E2ETest_2ac71bba808e495eb6a4c4886614f847\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:25:06.9221743Z\",\r\n \"modifiedOn\": \"2016-09-18T23:25:17.0933639Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0ebf2744f61d41ccbb2e23cd20e93af7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:24:11.6077667Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_6bfa0b99e36f45d6ad9e30f9e183c51d/providers/Microsoft.MachineLearning/webServices/E2ETest_2fda53f393854bbfb74ed5b229104e1b\",\r\n \"name\": \"E2ETest_2fda53f393854bbfb74ed5b229104e1b\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:16:18.6198046Z\",\r\n \"modifiedOn\": \"2016-09-18T23:16:30.652075Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/00370ec24e6e465a94def5ff2a1cb433/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:15:23.1181795Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_68bb0546661d43c486f843af3a1979a7/providers/Microsoft.MachineLearning/webServices/E2ETest_49bfd26ed57f4e6a940ed00d7a5a8cd1\",\r\n \"name\": \"E2ETest_49bfd26ed57f4e6a940ed00d7a5a8cd1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:10:02.6529727Z\",\r\n \"modifiedOn\": \"2016-09-18T23:10:12.9497569Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/042f640a540046d9b0889e1395553563/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:09:07.9577267Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_90ce63b2fe4341b1a29489a63ce9b41a/providers/Microsoft.MachineLearning/webServices/E2ETest_4f944b4054e54420820486da234391ae\",\r\n \"name\": \"E2ETest_4f944b4054e54420820486da234391ae\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:25:36.2669797Z\",\r\n \"modifiedOn\": \"2016-09-16T00:25:52.3471896Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c8c7d8177cf54161b10c0f0882fb39dc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T00:24:31.7913354Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_a6f072f11532472fa02b5d1776f8f39b/providers/Microsoft.MachineLearning/webServices/E2ETest_563de939a4094ac888c305d029de934e\",\r\n \"name\": \"E2ETest_563de939a4094ac888c305d029de934e\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T19:30:06.7908368Z\",\r\n \"modifiedOn\": \"2016-09-15T19:30:24.6199332Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a5c0baf52ba8412f9ab149c2d99f33ab/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T19:29:05.1291271Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_37d526ba05124adbb5123c6f853017f4/providers/Microsoft.MachineLearning/webServices/E2ETest_59103a79d5fa4670a44ead01a8f6bbfa\",\r\n \"name\": \"E2ETest_59103a79d5fa4670a44ead01a8f6bbfa\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T00:51:26.1712886Z\",\r\n \"modifiedOn\": \"2016-09-15T00:51:36.7697035Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9327d8385cd342b8964cf2bff154b04f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T00:50:24.4564166Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_0bc56ea1557643b0b8dfa46f3c1df246/providers/Microsoft.MachineLearning/webServices/E2ETest_59418539683a4f49aad61351050e7c8e\",\r\n \"name\": \"E2ETest_59418539683a4f49aad61351050e7c8e\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:44:53.4092866Z\",\r\n \"modifiedOn\": \"2016-09-16T00:45:08.001273Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2167fc6793bf491aa3fb54ef3128ff92/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T00:43:50.6709933Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_aea53bac49b947caa0933710da9a5640/providers/Microsoft.MachineLearning/webServices/E2ETest_5e04f3210e9f4426b3a2c11ec5da3ee5\",\r\n \"name\": \"E2ETest_5e04f3210e9f4426b3a2c11ec5da3ee5\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T22:38:33.9152745Z\",\r\n \"modifiedOn\": \"2016-09-18T22:38:46.9972075Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/96e5cf2c5ae54240935529076a112b2f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T22:37:40.6815547Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_8f5b0ff7c7a345cfbef933ed7438cffd/providers/Microsoft.MachineLearning/webServices/E2ETest_653f61356f584af2b3dedd80a737f964\",\r\n \"name\": \"E2ETest_653f61356f584af2b3dedd80a737f964\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T00:43:32.1515328Z\",\r\n \"modifiedOn\": \"2016-09-15T00:43:50.5750617Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6940c84afb124e759178be246d7d66dc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T00:42:31.5394752Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_12c5c69891814536915ec53abea9ed70/providers/Microsoft.MachineLearning/webServices/E2ETest_66075a1a799b42f2b75edaff77710a7b\",\r\n \"name\": \"E2ETest_66075a1a799b42f2b75edaff77710a7b\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T00:45:38.9430586Z\",\r\n \"modifiedOn\": \"2016-09-19T00:45:52.2798276Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/658b110eabc643bb8e6bdf6d779f2cb0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T00:44:43.8739023Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_bc0d94f9879942aabbfc6dac13dd1df3/providers/Microsoft.MachineLearning/webServices/E2ETest_6795ee23c9cd463ea243accf16b404c5\",\r\n \"name\": \"E2ETest_6795ee23c9cd463ea243accf16b404c5\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T00:29:28.4663453Z\",\r\n \"modifiedOn\": \"2016-09-15T00:29:44.4576052Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/43e931dccae546b790b1f35f1c13882f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T00:28:19.2651137Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_b353d2514c8642ab9e8f47f4811b235b/providers/Microsoft.MachineLearning/webServices/E2ETest_681d0370b0a94c439a5d69446cb688a5\",\r\n \"name\": \"E2ETest_681d0370b0a94c439a5d69446cb688a5\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T02:54:35.7755441Z\",\r\n \"modifiedOn\": \"2016-09-19T02:54:48.1380177Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/35295ccaf17546339878510848fa7e17/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T02:53:42.981477Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_c8d3a4123d554fb79fea5605ff933960/providers/Microsoft.MachineLearning/webServices/E2ETest_6e25d2f556ae48d793923d4286c104a6\",\r\n \"name\": \"E2ETest_6e25d2f556ae48d793923d4286c104a6\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:09:45.7692501Z\",\r\n \"modifiedOn\": \"2016-09-18T23:09:53.7550537Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e147768615a24fc5b64d46dddfc2a620/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:08:49.8402472Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_3ca910b3aac94bf4a5812cb040545625/providers/Microsoft.MachineLearning/webServices/E2ETest_72d541d59f714f1fbe8c9a1f92c4b2f5\",\r\n \"name\": \"E2ETest_72d541d59f714f1fbe8c9a1f92c4b2f5\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T02:40:23.5961844Z\",\r\n \"modifiedOn\": \"2016-09-15T02:40:33.6727767Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/15c78a728da5495e82b2570b319c3b7f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T02:39:20.8261812Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_102770cf85c64d1aaf66805a72c38a9e/providers/Microsoft.MachineLearning/webServices/E2ETest_8f7bc6b84efa4379b75c23eb2687005f\",\r\n \"name\": \"E2ETest_8f7bc6b84efa4379b75c23eb2687005f\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:28:42.0234968Z\",\r\n \"modifiedOn\": \"2016-09-16T00:28:55.0060957Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/403bfaf677464e77ae603324fb5fbfee/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T00:27:41.0442506Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_5c534d2737624867b1da1499335a6d33/providers/Microsoft.MachineLearning/webServices/E2ETest_9522504437704140bedc6fa742eb1f31\",\r\n \"name\": \"E2ETest_9522504437704140bedc6fa742eb1f31\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T00:37:45.0913525Z\",\r\n \"modifiedOn\": \"2016-09-15T00:37:53.8089723Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b03a70b31946417294d4fc7edace4d73/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T00:36:41.3630746Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_f80293c9eaed4cdcab4905b3bdce92d8/providers/Microsoft.MachineLearning/webServices/E2ETest_9881d2ad932f4131bccf68605cce2b8a\",\r\n \"name\": \"E2ETest_9881d2ad932f4131bccf68605cce2b8a\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T00:15:06.6381352Z\",\r\n \"modifiedOn\": \"2016-09-19T00:15:20.9569037Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3a9b4e8805ba4ccb81b94f4d3b167154/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T00:14:12.0837726Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_76dfe7e74001455f9a13c6b732de7715/providers/Microsoft.MachineLearning/webServices/E2ETest_9e90629dcf814d52be7ce2c1932799c9\",\r\n \"name\": \"E2ETest_9e90629dcf814d52be7ce2c1932799c9\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T00:24:21.8212843Z\",\r\n \"modifiedOn\": \"2016-09-15T00:24:37.0660417Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e1b328f5f44d4578bc9d4bebe3071431/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T00:23:07.9148995Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_7e95029249554371b2914de5310bfda6/providers/Microsoft.MachineLearning/webServices/E2ETest_a1c3693a438843e4960dc39b1cd36dfb\",\r\n \"name\": \"E2ETest_a1c3693a438843e4960dc39b1cd36dfb\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:40:54.4417271Z\",\r\n \"modifiedOn\": \"2016-09-18T23:41:07.4809337Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/619bf17771b94338963c2b4d7eceeeef/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:39:59.594098Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_bd79240679804516be3796ba8f357b31/providers/Microsoft.MachineLearning/webServices/E2ETest_c22e53f14f9541f2899693e1e6f0c47a\",\r\n \"name\": \"E2ETest_c22e53f14f9541f2899693e1e6f0c47a\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T02:13:47.8785994Z\",\r\n \"modifiedOn\": \"2016-09-15T02:13:58.607455Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/72012cf68635467da8ffbcc93bf534fa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T02:12:45.8567478Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_05dced965bb34a6388f8a2b1f7903140/providers/Microsoft.MachineLearning/webServices/E2ETest_c3ba96b883f541a38cacc61869be6b7a\",\r\n \"name\": \"E2ETest_c3ba96b883f541a38cacc61869be6b7a\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T15:01:17.6993085Z\",\r\n \"modifiedOn\": \"2016-09-15T15:01:33.8033086Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/467535208d8943d78919e1eb2ca96aad/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T15:00:15.8811014Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_f0523f2e4f7d4ef5aa9309c9eb139f65/providers/Microsoft.MachineLearning/webServices/E2ETest_cddd0b4b497e40acae5c7d9a01580a0d\",\r\n \"name\": \"E2ETest_cddd0b4b497e40acae5c7d9a01580a0d\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T01:05:28.9308962Z\",\r\n \"modifiedOn\": \"2016-09-19T01:05:43.6357528Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4584eb3cef774db995c27adb85e70121/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T01:04:35.3303673Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_fec44c19a9234595ab3e8c0b24d4f7b3/providers/Microsoft.MachineLearning/webServices/E2ETest_ce2fb32e41ec47bcb337e6c51fa53b6e\",\r\n \"name\": \"E2ETest_ce2fb32e41ec47bcb337e6c51fa53b6e\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T00:21:46.4062362Z\",\r\n \"modifiedOn\": \"2016-09-19T00:21:56.4897507Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/42914e4585124ec59ccdb6d42103536b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T00:20:50.249844Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_71d380b075d14878beb5a08bfbb2b638/providers/Microsoft.MachineLearning/webServices/E2ETest_d072185dc5e446adbb524404e52c68be\",\r\n \"name\": \"E2ETest_d072185dc5e446adbb524404e52c68be\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T22:38:56.3169298Z\",\r\n \"modifiedOn\": \"2016-09-18T22:39:04.8873141Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/42cd8e78eb3e453aa87956728f14119f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T22:38:01.0034789Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_b6b47fbb7738457e9d2bff36bda3b9bd/providers/Microsoft.MachineLearning/webServices/E2ETest_d9c282ce2dad457a94bf78ba6c31c184\",\r\n \"name\": \"E2ETest_d9c282ce2dad457a94bf78ba6c31c184\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-18T23:16:54.8064986Z\",\r\n \"modifiedOn\": \"2016-09-18T23:17:07.8030486Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/13a4afef404a4b4ba59bac784082f230/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-20T23:15:59.4322831Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/E2ETest_bfa1d68ff3af426caa46e988c93bb189/providers/Microsoft.MachineLearning/webServices/E2ETest_d9dc5b8ff92e4b05bb1290af36abcb46\",\r\n \"name\": \"E2ETest_d9dc5b8ff92e4b05bb1290af36abcb46\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T14:42:09.1175298Z\",\r\n \"modifiedOn\": \"2016-09-15T14:42:21.3127356Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4b852202dc2d48e08d9e42bbc9dcb787/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-17T14:41:06.3562644Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/ExampleExperiment1\",\r\n \"name\": \"ExampleExperiment1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-06-03T21:29:13.7340516Z\",\r\n \"modifiedOn\": \"2016-06-22T23:54:20.4144503Z\",\r\n \"title\": \"\",\r\n \"description\": \"Sleeping Beauty\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/401ecd3e44c14bb0ba11d0fcefbbd9fa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experiment2\",\r\n \"name\": \"Experiment2\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\",\r\n \"createdOn\": \"2016-05-25T22:20:22.0760509Z\",\r\n \"modifiedOn\": \"2016-05-25T22:51:45.0835601Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3078fd5e157a4994b9e39de58c941c95/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experiment.2016.11.23.22.37.47.650\",\r\n \"name\": \"Experiment.2016.11.23.22.37.47.650\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-23T22:39:43.6242972Z\",\r\n \"modifiedOn\": \"2016-11-23T22:39:56.5816105Z\",\r\n \"title\": \"?Experiment_:.üū.\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c89a38ea6b644a1ca28fbc712b8cc972/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.11.19.0.1.1.653\",\r\n \"name\": \"Experimentcreate.2016.11.19.0.1.1.653\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-19T00:01:11.7742797Z\",\r\n \"modifiedOn\": \"2016-11-19T00:01:28.9646629Z\",\r\n \"title\": \"Experiment created on ‎11‎/‎18‎/‎2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7e9e5280bfd8463285097172d75567fc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/stcob/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.11.2.14.46.59.635\",\r\n \"name\": \"Experimentcreate.2016.11.2.14.46.59.635\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-11-02T14:47:14.7762133Z\",\r\n \"modifiedOn\": \"2016-11-18T20:28:48.2084076Z\",\r\n \"title\": \"Experiment created on 10/5/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9d5ddcbb71d74233976c0f4eb3cee3cc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stcobstorage\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.12.1.18.29.32.851\",\r\n \"name\": \"Experimentcreate.2016.12.1.18.29.32.851\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-12-01T18:29:54.3058603Z\",\r\n \"modifiedOn\": \"2016-12-01T18:30:59.1811573Z\",\r\n \"title\": \"Experiment created on 12/1/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ae7d568887654c01bee88e2e1d7a5778/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.8.18.1.8.19.953\",\r\n \"name\": \"Experimentcreate.2016.8.18.1.8.19.953\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-18T01:08:58.1162649Z\",\r\n \"modifiedOn\": \"2016-08-18T01:10:10.0194862Z\",\r\n \"title\": \"Experiment created on 8/17/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a2c6f956d6764429be8c239afe5244b6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.8.22.23.31.9.14\",\r\n \"name\": \"Experimentcreate.2016.8.22.23.31.9.14\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-22T23:31:19.8579263Z\",\r\n \"modifiedOn\": \"2016-09-02T17:58:42.1277686Z\",\r\n \"title\": \"Basic Iris\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/67cf96a8ef9240c5a6f6d6567f24dfe3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.8.24.22.5.46.344\",\r\n \"name\": \"Experimentcreate.2016.8.24.22.5.46.344\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-24T22:05:53.0233638Z\",\r\n \"modifiedOn\": \"2016-08-24T22:08:48.519267Z\",\r\n \"title\": \"Experiment created on 8/24/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fd88019edd144f9dba897b649f81f480/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/ragarg/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.8.26.19.16.58.310\",\r\n \"name\": \"Experimentcreate.2016.8.26.19.16.58.310\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-26T19:19:46.3785456Z\",\r\n \"modifiedOn\": \"2016-08-30T19:28:32.342162Z\",\r\n \"title\": \"Experiment created on 8/26/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9ebd6df339704b34a4b095902dad95a9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg1\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.8.30.18.37.55.98\",\r\n \"name\": \"Experimentcreate.2016.8.30.18.37.55.98\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-30T18:38:09.504307Z\",\r\n \"modifiedOn\": \"2016-08-30T18:38:22.1834392Z\",\r\n \"title\": \"Experiment created on 8/29/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/976d7d15567644f8b9b7c07b7abfce08/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.9.23.18.59.37.375\",\r\n \"name\": \"Experimentcreate.2016.9.23.18.59.37.375\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-23T18:59:55.7960818Z\",\r\n \"modifiedOn\": \"2016-09-23T19:00:06.9819308Z\",\r\n \"title\": \"Experiment created on 9/23/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ffb085e3c3b74175b7caaf1bedad1128/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.9.23.23.48.26.682\",\r\n \"name\": \"Experimentcreate.2016.9.23.23.48.26.682\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-23T23:48:36.8548918Z\",\r\n \"modifiedOn\": \"2016-09-23T23:48:47.4478694Z\",\r\n \"title\": \"Experiment created on 9/23/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cfafe0f6e2eb48b78d4d78211cca1717/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.9.6.21.48.7.915\",\r\n \"name\": \"Experimentcreate.2016.9.6.21.48.7.915\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-06T21:48:17.7770056Z\",\r\n \"modifiedOn\": \"2016-09-06T21:48:27.2667032Z\",\r\n \"title\": \"Experiment created on 9/6/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a98e6e87378c4dfe873e0e2a48cab512/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.9.6.22.46.22.321\",\r\n \"name\": \"Experimentcreate.2016.9.6.22.46.22.321\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-06T22:46:34.3642649Z\",\r\n \"modifiedOn\": \"2016-09-06T22:46:46.4004856Z\",\r\n \"title\": \"Experiment created on 9/6/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/37a2f8b2b8f947bdad15aeb6f8408b96/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2017.1.23.21.59.6.262\",\r\n \"name\": \"Experimentcreate.2017.1.23.21.59.6.262\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-01-23T21:59:22.7450703Z\",\r\n \"modifiedOn\": \"2017-02-02T18:54:10.8441724Z\",\r\n \"title\": \"Experiment created on 1/23/2017\",\r\n \"description\": \"asdf\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9822f9384d7a4791a2adbeeb88e036a0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2017.1.5.18.12.9.661\",\r\n \"name\": \"Experimentcreate.2017.1.5.18.12.9.661\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-01-05T18:12:30.0882438Z\",\r\n \"modifiedOn\": \"2017-01-05T18:12:40.115591Z\",\r\n \"title\": \"Experiment created on 12/21/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3f648ab949b7493dbfd3b5e2d069056a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/ExperimentDagald20160526\",\r\n \"name\": \"ExperimentDagald20160526\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-26T23:23:53.3927919Z\",\r\n \"modifiedOn\": \"2016-05-26T23:24:02.763472Z\",\r\n \"description\": \"Experiment created on 5/26/2016\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/54704f0f55f249cb9998bf8e1e215aca/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/tjovald0003/providers/Microsoft.MachineLearning/webServices/FreshDemoWorks\",\r\n \"name\": \"FreshDemoWorks\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-12T00:01:56.1670966Z\",\r\n \"modifiedOn\": \"2016-08-12T00:23:23.4783657Z\",\r\n \"description\": \"This web service was updated in a loop\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8fb882d2642f4281b3f016b5b2b22355/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stjovald0003\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"0ffd7f890f5245e8ac1e5c7986868fab\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/tjovald0003/providers/Microsoft.MachineLearning/webServices/FreshDemoWorks2\",\r\n \"name\": \"FreshDemoWorks2\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-12T00:21:55.6831635Z\",\r\n \"modifiedOn\": \"2016-08-12T00:24:01.9817038Z\",\r\n \"description\": \"This web service was updated in a loop\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ef625796b00f4febb7b39273e299f221/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stjovald0003\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"0ffd7f890f5245e8ac1e5c7986868fab\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/RitBhat/providers/Microsoft.MachineLearning/webServices/gatewaytest1\",\r\n \"name\": \"gatewaytest1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-30T00:37:10.9246711Z\",\r\n \"modifiedOn\": \"2016-09-30T00:37:31.4615936Z\",\r\n \"title\": \"Two class average perceptron-0.85 -Accuracy : 76% [Predictive Exp.]\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/85e765fb77444c9eafa0f3141a6a2b5b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"mlritbhat\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/RitBhat/providers/Microsoft.MachineLearning/webServices/gatewaytest2\",\r\n \"name\": \"gatewaytest2\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-30T00:40:12.3429169Z\",\r\n \"modifiedOn\": \"2016-09-30T00:40:25.3980277Z\",\r\n \"title\": \"Two class average perceptron-0.85 -Accuracy : 76% [Predictive Exp.]\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6f7b90f32e414ad59da6a4db6fcc333c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"mlritbhat\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/GroupIrisWebService\",\r\n \"name\": \"GroupIrisWebService\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-06-03T21:15:13.5015036Z\",\r\n \"modifiedOn\": \"2016-06-03T21:15:27.3890877Z\",\r\n \"description\": \"Clustering: Group iris data [Predictive Exp.]\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/21a7289ecf5543a78252b17f33a8e8a3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/IcM23294387.2016.9.20.21.6.53.585\",\r\n \"name\": \"IcM23294387.2016.9.20.21.6.53.585\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T21:07:03.801298Z\",\r\n \"modifiedOn\": \"2016-09-22T21:12:35.277831Z\",\r\n \"title\": \"IcM 23294387\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a7c3f0673dc646939b358dd9a5e80c5e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/IntEnum\",\r\n \"name\": \"IntEnum\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-13T18:17:14.6336685Z\",\r\n \"modifiedOn\": \"2016-10-13T18:17:18.5250466Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ccb81dfd05214bdb961759f2d30dd84c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/IntEnum-1\",\r\n \"name\": \"IntEnum-1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-21T22:21:28.6560589Z\",\r\n \"modifiedOn\": \"2017-01-25T00:02:13.0260134Z\",\r\n \"title\": \"Experiment created on 10/6/2016\",\r\n \"description\": \"egtwqetgasdgf\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/77b78c4e7ab24917bbe0cd1a9eccc974/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/IntEnumWorkingHo.2016.10.14.17.45.21.361\",\r\n \"name\": \"IntEnumWorkingHo.2016.10.14.17.45.21.361\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-14T17:45:35.9634973Z\",\r\n \"modifiedOn\": \"2016-10-14T17:52:01.5150987Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1fb574a8fe6d430db8f63be5727b5ef0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/IntEnumWorkingHo.2016.10.14.17.55.8.146\",\r\n \"name\": \"IntEnumWorkingHo.2016.10.14.17.55.8.146\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-14T17:55:17.5037268Z\",\r\n \"modifiedOn\": \"2016-10-14T18:03:46.257752Z\",\r\n \"title\": \"IntEnum - WorkingHoursPerWeek\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bab399d3061543c7bf28096c635b48f7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/tjovald0003/providers/Microsoft.MachineLearning/webServices/iristest0\",\r\n \"name\": \"iristest0\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-07-21T22:13:21.9119586Z\",\r\n \"modifiedOn\": \"2016-08-12T00:24:23.9800414Z\",\r\n \"title\": \"iristest0\",\r\n \"description\": \"This web service was updated in a loop\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/994faeb607a84452a26f1dd58d689f78/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stjovald0003\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Multiinout.2016.9.30.23.9.37.815\",\r\n \"name\": \"Multiinout.2016.9.30.23.9.37.815\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-30T23:09:47.6377639Z\",\r\n \"modifiedOn\": \"2016-09-30T23:10:06.8237363Z\",\r\n \"title\": \"Multi in/out\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ebd4d3a41cbd499b840d9a43c6ae91c7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/multiinoutglobal.2016.10.25.0.32.19.576\",\r\n \"name\": \"multiinoutglobal.2016.10.25.0.32.19.576\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-25T00:32:29.513082Z\",\r\n \"modifiedOn\": \"2016-10-25T00:38:50.4921823Z\",\r\n \"title\": \"multi in/out global\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/74b004a9d2e24bf28e2b1642b7a71936/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/NameAboutToChangeExp\",\r\n \"name\": \"NameAboutToChangeExp\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-07-05T23:29:12.7801059Z\",\r\n \"modifiedOn\": \"2016-07-25T22:22:12.0003026Z\",\r\n \"title\": \"namechange\",\r\n \"description\": \"Sample 1: Download dataset from UCI: Adult 2 class dataset\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2c02d21786364ee6a61f371d55d2b175/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/NeuralNetwork2hi.2016.7.20.18.20.9.723\",\r\n \"name\": \"NeuralNetwork2hi.2016.7.20.18.20.9.723\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-07-20T18:20:21.4407616Z\",\r\n \"modifiedOn\": \"2016-07-20T18:20:52.5238428Z\",\r\n \"title\": \"Neural Network: 2 hidden layers [Predictive Exp.]\",\r\n \"description\": \"This experiment demonstrates the usage of the 'Multiclass Neural Network' module to train neural network which is defined in Net# language.\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2dd202239c024d5b89eb7b696d66a284/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/KIR-RG/providers/Microsoft.MachineLearning/webServices/NoWebServiceInpu.2016.10.5.0.13.29.7\",\r\n \"name\": \"NoWebServiceInpu.2016.10.5.0.13.29.7\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-05T00:14:13.1250837Z\",\r\n \"modifiedOn\": \"2016-10-05T00:17:50.7078988Z\",\r\n \"title\": \"No Web Service Input\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a52b4ee8099f4a73bf1127a9c821212d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"kirst\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Nullvaluesontest.2016.12.22.21.1.17.742\",\r\n \"name\": \"Nullvaluesontest.2016.12.22.21.1.17.742\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-12-22T21:01:31.1150052Z\",\r\n \"modifiedOn\": \"2016-12-22T21:12:01.8584519Z\",\r\n \"title\": \"Null values on test data\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c428b6935fe74d4c86b957b53ec3268c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/OnlyImportExportInputOutput\",\r\n \"name\": \"OnlyImportExportInputOutput\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-09-15T06:30:51.8492391Z\",\r\n \"modifiedOn\": \"2016-09-15T06:30:57.5834948Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/eccd2fe7099d427b9b8516869c9be87c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/othertest\",\r\n \"name\": \"othertest\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-12-22T22:00:40.5375001Z\",\r\n \"modifiedOn\": \"2016-12-22T22:02:20.2517355Z\",\r\n \"title\": \"Experiment created on 12/22/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6b57e6c72d6e4354b99447ac8db31df2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/randomTest002\",\r\n \"name\": \"randomTest002\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2017-02-23T23:05:59.8904402Z\",\r\n \"modifiedOn\": \"2017-02-23T23:07:53.8210203Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8c4c06ee0a224becba415ce9c678a25b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/recomdendDagaldTest\",\r\n \"name\": \"recomdendDagaldTest\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-06-17T22:41:13.5628682Z\",\r\n \"modifiedOn\": \"2016-06-18T00:22:15.509789Z\",\r\n \"title\": \"\",\r\n \"description\": \"Recommender: Restaurant ratings [Predictive Exp.]\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b7047b9dd05d47df8a69b1536f8496d8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_0f2b77d20b5b459498c5ebb084769851\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_0f2b77d20b5b459498c5ebb084769851\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T23:37:51.5291834Z\",\r\n \"modifiedOn\": \"2016-09-19T23:38:03.1887769Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0ee16c7fed294346900aed59c4875310/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T23:36:55.0093892Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_1b24980a529b424daf77e104eb487f05\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_1b24980a529b424daf77e104eb487f05\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T16:57:34.1202086Z\",\r\n \"modifiedOn\": \"2016-09-16T16:57:45.7041185Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/26c55594b41c40148559036c58f42456/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T16:57:28.6251548Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_385449715f694403868de227c69523da\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_385449715f694403868de227c69523da\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:10:12.4716456Z\",\r\n \"modifiedOn\": \"2016-09-16T20:10:23.2243498Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/40fc7d90fc9e4d4cac4a83ac6ab3cf0a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T20:10:07.3498507Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.bb6a28f8c8b04e2d975a0ba5db51b096/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_40db6a90d9c44b1ba71e795b1a2699ac\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_40db6a90d9c44b1ba71e795b1a2699ac\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T15:47:54.6483259Z\",\r\n \"modifiedOn\": \"2016-09-20T15:48:09.7302502Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8ce8a35a5ea44a5a90f692a5c3587819/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T15:47:00.4786955Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_4afe99dbd1a64953837c85a09294d8b6\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_4afe99dbd1a64953837c85a09294d8b6\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T05:02:12.0847329Z\",\r\n \"modifiedOn\": \"2016-09-19T05:02:29.0036355Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/60832b681963424086914643a3d7707b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T05:02:05.7285298Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_529d3f43bda54faab62ff57bca06495d\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_529d3f43bda54faab62ff57bca06495d\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T14:47:05.7182908Z\",\r\n \"modifiedOn\": \"2016-09-20T14:47:15.6192124Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a2efaaa23ae2446988ce661508b1d689/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T14:46:09.1415794Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_5f83e4fe9a224b81a4071c19d51a21d7\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_5f83e4fe9a224b81a4071c19d51a21d7\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T05:23:18.5623869Z\",\r\n \"modifiedOn\": \"2016-09-19T05:23:29.3188033Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/333a0b6f10dc4d96aed2d3840d0f3df3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T05:23:12.9428163Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_60da1984f9fb4de3b7d53c11a7d3be4a\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_60da1984f9fb4de3b7d53c11a7d3be4a\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:01:43.9811401Z\",\r\n \"modifiedOn\": \"2016-09-16T17:01:54.2766738Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5a0c431c58f24e438b680f09b3545d88/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T17:01:33.4827215Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_62d66524b30d49059c2c3158dea742d3\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_62d66524b30d49059c2c3158dea742d3\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T04:39:33.4446039Z\",\r\n \"modifiedOn\": \"2016-09-19T04:39:49.2087427Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9ceba9738ba14c649c6eeeb73a75b43f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T04:39:28.3851228Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.bb6a28f8c8b04e2d975a0ba5db51b096/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_6335b09392da447ba227efe3b1b77481\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_6335b09392da447ba227efe3b1b77481\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T14:57:49.172975Z\",\r\n \"modifiedOn\": \"2016-09-20T14:58:00.5529673Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a56bb211551f4cd9976f5111fb274306/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T14:56:53.0872171Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_6874b02ebe7f4b1baba8fe5edb7bf2e8\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_6874b02ebe7f4b1baba8fe5edb7bf2e8\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T04:21:48.4286456Z\",\r\n \"modifiedOn\": \"2016-09-19T04:21:57.8183531Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0e3bee07c69d48e7af0c503263183132/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T04:21:43.3638731Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_69048eba5f204b1ebf3096a1a4b93955\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_69048eba5f204b1ebf3096a1a4b93955\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:39:53.6793013Z\",\r\n \"modifiedOn\": \"2016-09-16T20:40:11.5806062Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/795bdd05cc414729ba8aff4a391eaacf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T20:39:51.3561285Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_7028f2680a2b432c8baa88028ae4b9e8\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_7028f2680a2b432c8baa88028ae4b9e8\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:08:26.7902685Z\",\r\n \"modifiedOn\": \"2016-09-16T17:08:38.5332165Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/71d2f7307b6a4b3e9648f2fb26384189/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T17:08:18.4478178Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.bb6a28f8c8b04e2d975a0ba5db51b096/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_71c4426dcc774c49ac3124478be0e3d1\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_71c4426dcc774c49ac3124478be0e3d1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T14:47:36.5305975Z\",\r\n \"modifiedOn\": \"2016-09-20T14:47:46.769941Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fe58f0378fda4285a6809dc07ae00f7a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T14:46:40.4981022Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_749b985a1b22414f8aeacc22fc805ff2\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_749b985a1b22414f8aeacc22fc805ff2\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T20:13:13.4830693Z\",\r\n \"modifiedOn\": \"2016-09-19T20:13:25.8208835Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b3374886a3e84177b6996effcfb89b42/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T20:12:19.9030612Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_7be08906fb6245cc9b1bc5718ab09c8f\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_7be08906fb6245cc9b1bc5718ab09c8f\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T16:43:46.3083566Z\",\r\n \"modifiedOn\": \"2016-09-16T16:43:57.0761682Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ca05d78c846e4b35bd9de4fe76f6f10a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T16:43:42.5794843Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_7cd6fd176a8c4951abd09bc93224d148\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_7cd6fd176a8c4951abd09bc93224d148\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T15:09:47.5613273Z\",\r\n \"modifiedOn\": \"2016-09-19T15:10:02.21411Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/62bd906434f247eda39f916aa70a3f67/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T15:09:45.3248565Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_7eee78519c0b4f8b92258ddb2cd5c00d\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_7eee78519c0b4f8b92258ddb2cd5c00d\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T03:42:33.090952Z\",\r\n \"modifiedOn\": \"2016-09-19T03:42:47.4276094Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9b935e2c31bd4d2bba0bf0cce95cd759/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T03:42:28.1441968Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_90c86e17cb7b4828afc12d71e2e3e211\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_90c86e17cb7b4828afc12d71e2e3e211\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:22:21.6065848Z\",\r\n \"modifiedOn\": \"2016-09-16T17:22:37.3382432Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/dc7348643fe64c918cbeecf756ee80d1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T17:22:15.1897444Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_96a82105b8bb472d873335172de6d699\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_96a82105b8bb472d873335172de6d699\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T23:21:09.1160537Z\",\r\n \"modifiedOn\": \"2016-09-19T23:21:27.6917608Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3e60bcb2e38b48259150f455fcede394/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T23:20:16.4995828Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_9d127497e41548488ac11043d9235803\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_9d127497e41548488ac11043d9235803\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T14:57:26.5060109Z\",\r\n \"modifiedOn\": \"2016-09-20T14:57:36.6363022Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3e741cf9d539421baefb451439a79cd8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T14:56:29.8258548Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.bb6a28f8c8b04e2d975a0ba5db51b096/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_aa28645b7c004d19a38ed7f476faf7c5\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_aa28645b7c004d19a38ed7f476faf7c5\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T00:55:22.607328Z\",\r\n \"modifiedOn\": \"2016-09-20T00:55:34.1985466Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6d24adea52aa4619905ece367d86256d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T00:55:19.7667533Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_b03c44c9926045b0ba9ac4e058958863\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_b03c44c9926045b0ba9ac4e058958863\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T00:19:44.3558877Z\",\r\n \"modifiedOn\": \"2016-09-20T00:19:58.0410603Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6ab62d8f577f417c90dd6cf05c4aa31c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T00:19:39.155606Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_b808a0786eab4b4a84329e327d0a64c8\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_b808a0786eab4b4a84329e327d0a64c8\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T15:02:33.7500385Z\",\r\n \"modifiedOn\": \"2016-09-19T15:02:43.6447163Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d41278cb6d6c4256b91f91ecaf660807/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T15:02:29.7471651Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_ba2ab98169064d4ebf17b30d7209b979\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_ba2ab98169064d4ebf17b30d7209b979\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T03:45:50.4875139Z\",\r\n \"modifiedOn\": \"2016-09-19T03:46:02.2528089Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3ab49ddc498c49f7aa44ca7f36488f3d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T03:45:46.495488Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_bd4749e37f05446997f95a9d19de6794\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_bd4749e37f05446997f95a9d19de6794\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T15:47:13.6132986Z\",\r\n \"modifiedOn\": \"2016-09-20T15:47:36.5057073Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e5b7e7f0c46247998c27da7886a3e260/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T15:46:19.4867142Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_bfe27d74e82a4967b6a4fc6e823a0c87\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_bfe27d74e82a4967b6a4fc6e823a0c87\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:37:06.9786448Z\",\r\n \"modifiedOn\": \"2016-09-16T20:37:21.686127Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6e3c410946cd463e8457d335b8d931f1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T20:37:04.0147639Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_cc4ae5fc980b4133997f249940da244d\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_cc4ae5fc980b4133997f249940da244d\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T03:51:21.777162Z\",\r\n \"modifiedOn\": \"2016-09-19T03:51:32.0782751Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/240b9ea8986f49d8832f07c4a72ac24b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T03:51:16.4140983Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_d88c9e62a7f743c2b0d2b7fabf62a010\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_d88c9e62a7f743c2b0d2b7fabf62a010\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T03:43:59.1629056Z\",\r\n \"modifiedOn\": \"2016-09-19T03:44:09.6820285Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a02e023762e54b128ec3406839b7a2b4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T03:43:56.0758095Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_d94f0730a1cb4f9c8438d5beea5e21fa\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_d94f0730a1cb4f9c8438d5beea5e21fa\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T16:53:19.7555618Z\",\r\n \"modifiedOn\": \"2016-09-19T16:53:31.1059309Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/51b8f373c9504d20b2d204ccc9cc2446/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T16:53:17.5231798Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_d9a99167ce0f4356b7decc5f6715fb24\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_d9a99167ce0f4356b7decc5f6715fb24\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T23:34:38.27031Z\",\r\n \"modifiedOn\": \"2016-09-19T23:34:52.950845Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/75956b31ebb94016864c7342c4db908c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T23:33:43.4277883Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_e0bfe6d9f9bf4371a090bfd97de54170\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_e0bfe6d9f9bf4371a090bfd97de54170\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T22:36:52.4396748Z\",\r\n \"modifiedOn\": \"2016-09-16T22:37:07.4046121Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3ba75346f2674d4cad8b7c2157533d11/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-18T22:36:47.2556973Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_e46c73c8f75b45b5a9326459c71b8d05\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_e46c73c8f75b45b5a9326459c71b8d05\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T14:30:00.7014036Z\",\r\n \"modifiedOn\": \"2016-09-20T14:30:17.3054757Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6104dcfadcca468882774fe2dba5fd2b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T14:29:06.957254Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.bb6a28f8c8b04e2d975a0ba5db51b096/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_edbb2de561da4fa7ba77a93316fab23c\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_edbb2de561da4fa7ba77a93316fab23c\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T14:30:51.0051435Z\",\r\n \"modifiedOn\": \"2016-09-20T14:31:07.5457612Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/82b7ee0284664803a7e5959af15af870/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T14:29:57.3023803Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_eedcd095c7f04640b5f760600a2812c6\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_eedcd095c7f04640b5f760600a2812c6\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-19T14:19:01.7640892Z\",\r\n \"modifiedOn\": \"2016-09-19T14:19:19.6664886Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/81f90412423b40619cda999886a733a9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-21T14:19:00.3450757Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_f4b0e2b78c5e439e96fec98e87aea512\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_f4b0e2b78c5e439e96fec98e87aea512\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T14:11:46.2933611Z\",\r\n \"modifiedOn\": \"2016-09-20T14:11:55.7690136Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e0f8541b28934aa582805daf26717e93/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T14:10:47.9862032Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/169f3925f4294a729d839557c41e23fa.f-id.76f9f3af6afe4c35a6c931fc6f778e6e/providers/Microsoft.MachineLearning/webServices/Resource169f3925f4294a729d839557c41e23faE2ETest_fdbc32f1ebf64ef49f9c223d8b0513a4\",\r\n \"name\": \"Resource169f3925f4294a729d839557c41e23faE2ETest_fdbc32f1ebf64ef49f9c223d8b0513a4\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-20T00:54:57.3467388Z\",\r\n \"modifiedOn\": \"2016-09-20T00:55:07.5458243Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8f449bf41eff4fd9a99721b82943fc9c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"Error\",\r\n \"expiry\": \"2016-09-22T00:54:52.7716866Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupNamefcc61e4f299b4c419ce40a587a62a801/providers/Microsoft.MachineLearning/webServices/resourceName037bc730d85244c7a3c019ba3bae93ea\",\r\n \"name\": \"resourceName037bc730d85244c7a3c019ba3bae93ea\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-25T22:54:07.397643Z\",\r\n \"modifiedOn\": \"2016-08-25T22:54:21.9369689Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0157dccbfb674725a2296e2e2e400fe2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupNamed80bdb9629404f1a8936e3d7f8307077/providers/Microsoft.MachineLearning/webServices/resourceName3e13f62670c944d2b21237e5f8da380b\",\r\n \"name\": \"resourceName3e13f62670c944d2b21237e5f8da380b\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-23T19:59:44.1976605Z\",\r\n \"modifiedOn\": \"2016-08-23T20:00:02.895154Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3b885f4cf0e24647b7bb11445412736b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupNamece83243a89b8461cb5b05b8c6643781c/providers/Microsoft.MachineLearning/webServices/resourceName665cc2daeddf43dcab7833b0bcf263ca\",\r\n \"name\": \"resourceName665cc2daeddf43dcab7833b0bcf263ca\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-30T18:23:22.9549319Z\",\r\n \"modifiedOn\": \"2016-08-30T18:23:41.5226057Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8523beac0cfc420aa7ad742461464c89/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\",\r\n \"expiry\": \"2016-09-01T18:22:25.9922994Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupNamecc83d205d9e14814bcad4ba8e7796b90/providers/Microsoft.MachineLearning/webServices/resourceName6dcb081c85fe4460bef55e53cf63c213\",\r\n \"name\": \"resourceName6dcb081c85fe4460bef55e53cf63c213\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-29T00:54:51.9443302Z\",\r\n \"modifiedOn\": \"2016-08-29T00:55:14.4813716Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c2a78e9e2ab64939b28b3e0aae1a9b5e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupName8784ab435fc14902aa5bf9471fd1826b/providers/Microsoft.MachineLearning/webServices/resourceName8bb1bdd62998481eba1430e6786d4643\",\r\n \"name\": \"resourceName8bb1bdd62998481eba1430e6786d4643\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-26T17:50:13.1521443Z\",\r\n \"modifiedOn\": \"2016-08-26T17:50:23.2641593Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4b755889f95841cfa7ca2f46b2b1bf22/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupName2b80ddc2630d46cd8854d46a85973467/providers/Microsoft.MachineLearning/webServices/resourceName91beb41ff1ae4f38addde847743277d6\",\r\n \"name\": \"resourceName91beb41ff1ae4f38addde847743277d6\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-25T22:45:50.7074316Z\",\r\n \"modifiedOn\": \"2016-08-25T22:46:06.6751137Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/448a30921e524f52a33227a94dc2f045/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupName86f498eedefb450da8cd882692149d3f/providers/Microsoft.MachineLearning/webServices/resourceName961c7c6edcb2463694f9fee099545f39\",\r\n \"name\": \"resourceName961c7c6edcb2463694f9fee099545f39\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-29T00:48:47.2849973Z\",\r\n \"modifiedOn\": \"2016-08-29T00:49:01.8895155Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/85a338c9085f4542ad344d70c85bc3d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupName7679d65b22e743a1beb5f67ad6e54619/providers/Microsoft.MachineLearning/webServices/resourceNamead1f07039416497b993cddf2de2cd8d4\",\r\n \"name\": \"resourceNamead1f07039416497b993cddf2de2cd8d4\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-24T17:24:20.4948285Z\",\r\n \"modifiedOn\": \"2016-08-24T17:24:37.413201Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e637ee7edb904af098808541d4fd5244/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupName37a84a3ecfea42ec8dd647c54da2eaea/providers/Microsoft.MachineLearning/webServices/resourceNamec719de91e75e48798b6fb9909a921778\",\r\n \"name\": \"resourceNamec719de91e75e48798b6fb9909a921778\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-30T23:43:44.5958052Z\",\r\n \"modifiedOn\": \"2016-08-30T23:43:58.7342704Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0bdbaaa6383b47aea015821667eafa05/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\",\r\n \"expiry\": \"2016-09-01T23:42:43.8109961Z\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"ragarg\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"169f3925f4294a729d839557c41e23fa\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/testResourceGroupName331e04dc376843feb444a13a65f397c3/providers/Microsoft.MachineLearning/webServices/resourceNameec689017e8614678afcfdcb1bd1031a4\",\r\n \"name\": \"resourceNameec689017e8614678afcfdcb1bd1031a4\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-29T17:46:08.7672041Z\",\r\n \"modifiedOn\": \"2016-08-29T17:46:22.6243257Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/442ceedbcaf54aa595f0638db0161729/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/RModelTrainScore.2017.2.9.18.50.6.919\",\r\n \"name\": \"RModelTrainScore.2017.2.9.18.50.6.919\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-09T18:50:36.9226071Z\",\r\n \"modifiedOn\": \"2017-02-09T18:55:12.6626047Z\",\r\n \"title\": \"R Model Train & Score [Predictive Exp.]\",\r\n \"description\": \"Demonstration of using the Train R Model functionality to train, score and evaluate a logistic regression model.\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8e250ef374a94eb799c1900064c3e0a1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Sample1Downloadd.2016.6.30.18.53.28.733\",\r\n \"name\": \"Sample1Downloadd.2016.6.30.18.53.28.733\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-06-30T18:54:02.053822Z\",\r\n \"modifiedOn\": \"2016-07-20T18:16:26.3170278Z\",\r\n \"description\": \"Sample 1: Download dataset from UCI: Adult 2 class dataset\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2094b5f840ca4adf8e94c3c41a910744/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/Sample1Prod\",\r\n \"name\": \"Sample1Prod\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-27T23:14:54.7278045Z\",\r\n \"modifiedOn\": \"2016-05-27T23:15:01.2889756Z\",\r\n \"title\": \"Some title\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ab5862dd3cde499fa9fe089b565b1bae/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/Workspaces/bohuws01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Sample5TrainTest.2016.8.12.0.0.29.49\",\r\n \"name\": \"Sample5TrainTest.2016.8.12.0.0.29.49\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-12T00:04:02.8246812Z\",\r\n \"modifiedOn\": \"2016-08-12T00:04:18.8304061Z\",\r\n \"title\": \"Sample 5: Train, Test, Evaluate for Binary Classification: Adult Dataset [Predictive Exp.]\",\r\n \"description\": \"This experiment demonstrates how we can build a binary classification model to predict income levels of adult individuals. The process includes training, testing and evaluating the model on the Adult dataset. \",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9b5f5416e8b5416f8520b630ee208b6a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"mlritbhat\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Sample5TrainTest.2016.8.12.0.0.29.49.2016.8.30.21.53.12.301\",\r\n \"name\": \"Sample5TrainTest.2016.8.12.0.0.29.49.2016.8.30.21.53.12.301\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-30T21:53:43.4535524Z\",\r\n \"modifiedOn\": \"2016-08-30T21:53:59.1230885Z\",\r\n \"title\": \"\",\r\n \"description\": \"This experiment demonstrates how we can build a binary classification model to predict income levels of adult individuals. The process includes training, testing and evaluating the model on the Adult dataset. \",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fbafee959eb4440ca39bd38026d80d88/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"mlritbhat\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/Sample5TrainTest.GlobalParam\",\r\n \"name\": \"Sample5TrainTest.GlobalParam\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-04T00:16:28.2338216Z\",\r\n \"modifiedOn\": \"2016-10-04T00:16:40.1721484Z\",\r\n \"title\": \"Sample 5: Train, Test, Evaluate for Binary Classification: Adult Dataset [Predictive Exp.]\",\r\n \"description\": \"This experiment demonstrates how we can build a binary classification model to predict income levels of adult individuals. The process includes training, testing and evaluating the model on the Adult dataset. \",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e8d37158cf1142cd911a68f2bf535d98/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bestest/providers/Microsoft.MachineLearning/webServices/Sample9Splitpart.2016.7.15.4.54.27.50\",\r\n \"name\": \"Sample9Splitpart.2016.7.15.4.54.27.50\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-07-15T05:20:53.5890145Z\",\r\n \"modifiedOn\": \"2016-07-15T05:26:24.7891556Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/153ec9a95aea4cc2b5a1bd310344305b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/tjovald0003/providers/Microsoft.MachineLearning/webServices/sdktestservicedeployed7\",\r\n \"name\": \"sdktestservicedeployed7\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-10T14:56:26.7284604Z\",\r\n \"modifiedOn\": \"2016-08-12T00:25:23.4874189Z\",\r\n \"description\": \"This web service was updated in a loop\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3f79683c113d4afab535fb875862861f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stjovald0003\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"0ffd7f890f5245e8ac1e5c7986868fab\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/tjovald0003/providers/Microsoft.MachineLearning/webServices/sdktestservicedeployed8\",\r\n \"name\": \"sdktestservicedeployed8\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-10T15:39:47.1805418Z\",\r\n \"modifiedOn\": \"2016-08-11T23:15:24.0911621Z\",\r\n \"description\": \"This web service was updated in a loop\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e44ddaaeeb4c4cfc8e8a26d0047b601c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stjovald0003\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"0ffd7f890f5245e8ac1e5c7986868fab\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/tjovald0003/providers/Microsoft.MachineLearning/webServices/sdktestservicedeployed9\",\r\n \"name\": \"sdktestservicedeployed9\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-10T15:42:16.0725839Z\",\r\n \"modifiedOn\": \"2016-08-11T23:15:56.409721Z\",\r\n \"description\": \"This web service was updated in a loop\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8054b922206f4d1cae378af26cf65399/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stjovald0003\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"0ffd7f890f5245e8ac1e5c7986868fab\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/SimpleExp2.2016.8.22.19.3.4.857\",\r\n \"name\": \"SimpleExp2.2016.8.22.19.3.4.857\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-22T19:03:44.4312615Z\",\r\n \"modifiedOn\": \"2016-09-20T18:26:35.0196181Z\",\r\n \"title\": \"SimpleExp2\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cb1b20dc3192417096e0a092590b88f1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/SleepingBeauty\",\r\n \"name\": \"SleepingBeauty\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-31T19:45:53.916705Z\",\r\n \"modifiedOn\": \"2016-06-22T23:56:18.4864543Z\",\r\n \"title\": \"The Sleeping Beauty\",\r\n \"description\": \"Sleeping Beauty\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d33fab927eee47ff94dcf9ad65356536/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/SleepingBeauty.2016.7.22.21.51.33.241\",\r\n \"name\": \"SleepingBeauty.2016.7.22.21.51.33.241\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-07-22T21:51:51.449068Z\",\r\n \"modifiedOn\": \"2016-07-25T22:21:16.1377169Z\",\r\n \"title\": \"Sleeping Beauty2\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/690ef858af8f413d9feec14b4bd080ee/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/test111\",\r\n \"name\": \"test111\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-12T19:03:36.6455282Z\",\r\n \"modifiedOn\": \"2016-08-12T19:33:36.6168972Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0553be9e9b7b42a09177308016318854/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/test1112\",\r\n \"name\": \"test1112\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-08-12T19:34:27.0386711Z\",\r\n \"modifiedOn\": \"2016-08-12T19:35:26.9310907Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b9dac790f24c4d00969642bd1342e56d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/test1113\",\r\n \"name\": \"test1113\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-12T19:40:04.8459748Z\",\r\n \"modifiedOn\": \"2016-08-12T19:40:25.9088726Z\",\r\n \"title\": \"TempExpt2_withCM\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c230bc34d94d4b91af74a726391a0376/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"corpwsstorage\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/test222\",\r\n \"name\": \"test222\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-12T21:51:36.309924Z\",\r\n \"modifiedOn\": \"2016-08-12T21:56:31.3888537Z\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fa977a4b432745ae902e57b936d92ee4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"corpwsstorage\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"3a4a8c0191ee462fa185189f3ecd1799\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/TestILearnerWMetadata\",\r\n \"name\": \"TestILearnerWMetadata\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-10T20:29:00.5358158Z\",\r\n \"modifiedOn\": \"2017-02-10T20:29:22.1012598Z\",\r\n \"title\": \"Test ILEARNER with METADATA\",\r\n \"description\": \"Test iLearner with metadata\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5a37f6c6757848d1bd5a636d9a69ed76/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/TestILearnerWMetadata1\",\r\n \"name\": \"TestILearnerWMetadata1\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-10T20:30:56.5129874Z\",\r\n \"modifiedOn\": \"2017-02-10T21:07:06.8731971Z\",\r\n \"title\": \"Test ILEARNER with METADATA\",\r\n \"description\": \"Test iLearner with metadata\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7583e68a0e5f4aaca3d89ea5d8d308f6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/Default-MachineLearning-SouthCentralUS/providers/Microsoft.MachineLearning/webServices/testmultioutweirdnames\",\r\n \"name\": \"testmultioutweirdnames\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-03T20:51:32.0495614Z\",\r\n \"modifiedOn\": \"2016-10-03T20:51:47.9980461Z\",\r\n \"title\": \"Experiment created on 10/3/2016\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/99e916c9e05e4328b27537ae2233c346/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"armdagaldtest\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/stcob/providers/Microsoft.MachineLearning/webServices/testNew.2017.2.15.0.27.36.763\",\r\n \"name\": \"testNew.2017.2.15.0.27.36.763\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-15T00:28:03.6185052Z\",\r\n \"modifiedOn\": \"2017-02-15T00:28:22.9246684Z\",\r\n \"title\": \"testNew\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d8c7b418a4024b7ab10cdbece72b422c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"stcobstorage\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0000\",\r\n \"name\": \"testWS-0000\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:16:17.2362144Z\",\r\n \"modifiedOn\": \"2016-09-15T23:16:34.4607021Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/49ad68e427074b4bba875f41435b30df/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0001\",\r\n \"name\": \"testWS-0001\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:16:41.2019869Z\",\r\n \"modifiedOn\": \"2016-09-15T23:16:57.3286844Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e13c11631b1c4e8bbd2b573db421a014/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0002\",\r\n \"name\": \"testWS-0002\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:17:05.2087048Z\",\r\n \"modifiedOn\": \"2016-09-15T23:17:19.7191901Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/05a6cec9f1144a5e9d93d7e56defa236/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0003\",\r\n \"name\": \"testWS-0003\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:17:21.2447194Z\",\r\n \"modifiedOn\": \"2016-09-15T23:17:34.2245024Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5d06e965ba934cecaf682e3f84e37584/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0004\",\r\n \"name\": \"testWS-0004\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:17:40.0795567Z\",\r\n \"modifiedOn\": \"2016-09-15T23:17:54.5267223Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/39cf37447b2b4e41836282858cc5e053/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0005\",\r\n \"name\": \"testWS-0005\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:17:58.7568754Z\",\r\n \"modifiedOn\": \"2016-09-15T23:18:07.3461543Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/146a3ef38e654aa08b404ba5732a447a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0006\",\r\n \"name\": \"testWS-0006\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:18:12.0039556Z\",\r\n \"modifiedOn\": \"2016-09-15T23:18:27.8524036Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a98ef044ae224fc0b234e44184698252/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0007\",\r\n \"name\": \"testWS-0007\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:18:32.5845835Z\",\r\n \"modifiedOn\": \"2016-09-15T23:18:48.2279273Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b87ecb06ae14482dba712204c371b13e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0008\",\r\n \"name\": \"testWS-0008\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:18:53.2042737Z\",\r\n \"modifiedOn\": \"2016-09-15T23:19:03.5325051Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2584dcccf93f409688b8e9b8dd84e2dc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0009\",\r\n \"name\": \"testWS-0009\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:19:09.371409Z\",\r\n \"modifiedOn\": \"2016-09-15T23:19:22.8422327Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fd88973414b24482a2c3acb7c50926dd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0010\",\r\n \"name\": \"testWS-0010\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:19:30.0452429Z\",\r\n \"modifiedOn\": \"2016-09-15T23:19:37.0047654Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/321a71646b1348a4bb3db40e58e94039/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0011\",\r\n \"name\": \"testWS-0011\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:19:42.203444Z\",\r\n \"modifiedOn\": \"2016-09-15T23:19:55.8129406Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/69fb983874db43cd9ccfc4299dc4a8fe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0012\",\r\n \"name\": \"testWS-0012\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:20:04.5151706Z\",\r\n \"modifiedOn\": \"2016-09-15T23:20:20.1847293Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c565f212d5034244b5378f47ce38c3a7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0013\",\r\n \"name\": \"testWS-0013\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:20:26.4909971Z\",\r\n \"modifiedOn\": \"2016-09-15T23:20:38.4779882Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bb5ba4691f254fa3b3cd8d9e63679314/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0014\",\r\n \"name\": \"testWS-0014\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:20:43.7093571Z\",\r\n \"modifiedOn\": \"2016-09-15T23:20:57.9496058Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fc9491df3085448683987763277dc8a5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0015\",\r\n \"name\": \"testWS-0015\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:21:00.1144451Z\",\r\n \"modifiedOn\": \"2016-09-15T23:21:15.8954356Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1e623e45c050489794c9cfb408f327b5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0016\",\r\n \"name\": \"testWS-0016\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:21:16.6294212Z\",\r\n \"modifiedOn\": \"2016-09-15T23:21:29.1133876Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d61b424e1ced4593a84c3ad1cc0cea8b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0017\",\r\n \"name\": \"testWS-0017\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:21:35.5405506Z\",\r\n \"modifiedOn\": \"2016-09-15T23:21:47.9801164Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a4cbb0136ec34563a7aaebc63d29abb5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0018\",\r\n \"name\": \"testWS-0018\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:21:54.2009297Z\",\r\n \"modifiedOn\": \"2016-09-15T23:22:07.617505Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3d2248e85bb649e4bbdb651f3e79a79b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0019\",\r\n \"name\": \"testWS-0019\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:22:09.284205Z\",\r\n \"modifiedOn\": \"2016-09-15T23:22:19.0323631Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a908459301ca47daaf4593393ec8adc8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0020\",\r\n \"name\": \"testWS-0020\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:22:21.3489504Z\",\r\n \"modifiedOn\": \"2016-09-15T23:22:35.043549Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/52399a4488864e65b78faf7f0cdf118e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0021\",\r\n \"name\": \"testWS-0021\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:22:40.3457225Z\",\r\n \"modifiedOn\": \"2016-09-15T23:22:56.4714689Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/dd139dd25410402fba0177699a65f5e8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0022\",\r\n \"name\": \"testWS-0022\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:23:01.6224561Z\",\r\n \"modifiedOn\": \"2016-09-15T23:23:14.9567095Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f98f7b958c3d4bf380f9e0d9aa8ee879/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0023\",\r\n \"name\": \"testWS-0023\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:23:21.9809681Z\",\r\n \"modifiedOn\": \"2016-09-15T23:23:37.8885925Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d6efdf66805c444a914dbc0873611add/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0024\",\r\n \"name\": \"testWS-0024\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:23:42.3218544Z\",\r\n \"modifiedOn\": \"2016-09-15T23:23:53.8199788Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/27922477e2b543c98cb15fe058a9cbd5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0025\",\r\n \"name\": \"testWS-0025\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:23:56.2279561Z\",\r\n \"modifiedOn\": \"2016-09-15T23:24:07.5046207Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d001d63985564ace9ffdd1ee77af2fba/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0026\",\r\n \"name\": \"testWS-0026\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:24:15.9158283Z\",\r\n \"modifiedOn\": \"2016-09-15T23:24:26.2621346Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/69629ec3d3164fe49ac9654a00c2fdc3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0027\",\r\n \"name\": \"testWS-0027\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:24:31.1129696Z\",\r\n \"modifiedOn\": \"2016-09-15T23:24:45.1615226Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c45bdf85cd6f4265ad3dbe00aac81335/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0028\",\r\n \"name\": \"testWS-0028\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:24:49.6059194Z\",\r\n \"modifiedOn\": \"2016-09-15T23:24:59.5425805Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/716741c2baa94b8fb8d779e2bfae6b78/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0029\",\r\n \"name\": \"testWS-0029\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:25:01.8728728Z\",\r\n \"modifiedOn\": \"2016-09-15T23:25:21.713294Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e25e0e16b2394c05922e67c55616f548/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0030\",\r\n \"name\": \"testWS-0030\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:25:23.3165722Z\",\r\n \"modifiedOn\": \"2016-09-15T23:25:39.1795786Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/20bcba1d4d344e6780f3c16881d8bf73/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0031\",\r\n \"name\": \"testWS-0031\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:25:47.1778728Z\",\r\n \"modifiedOn\": \"2016-09-15T23:26:04.8883798Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ad82f12a379945dbb5faea433a7e9569/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0032\",\r\n \"name\": \"testWS-0032\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:26:08.2637721Z\",\r\n \"modifiedOn\": \"2016-09-15T23:26:19.8871644Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c07dd410cd944df78562da7abf0c67e7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0033\",\r\n \"name\": \"testWS-0033\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:26:24.8210829Z\",\r\n \"modifiedOn\": \"2016-09-15T23:26:37.5318703Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1b39db7fa36c47ab84af0ff0454e2d68/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0034\",\r\n \"name\": \"testWS-0034\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:26:44.7007417Z\",\r\n \"modifiedOn\": \"2016-09-15T23:26:54.4099136Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6820c6c574ac41e5a0033e9348f866c8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0035\",\r\n \"name\": \"testWS-0035\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:27:01.9644309Z\",\r\n \"modifiedOn\": \"2016-09-15T23:27:16.8869163Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2c8ce17c03694d7089662804208758b6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0036\",\r\n \"name\": \"testWS-0036\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:27:19.0348847Z\",\r\n \"modifiedOn\": \"2016-09-15T23:27:31.6744118Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2e3c4d29f0154725bdc41ade4dfa8e3e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0037\",\r\n \"name\": \"testWS-0037\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:27:33.4364667Z\",\r\n \"modifiedOn\": \"2016-09-15T23:27:49.4687762Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ef018a7bc82c43cb8cbb8c482948e47c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0038\",\r\n \"name\": \"testWS-0038\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:27:53.6323251Z\",\r\n \"modifiedOn\": \"2016-09-15T23:28:01.9548523Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c6faea1559774e84b04d0f3a5bc8ccec/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0039\",\r\n \"name\": \"testWS-0039\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:28:03.0510084Z\",\r\n \"modifiedOn\": \"2016-09-15T23:28:16.9923657Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2f3b2906c2a8463681f13795104c8cc2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0040\",\r\n \"name\": \"testWS-0040\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:28:23.3588013Z\",\r\n \"modifiedOn\": \"2016-09-15T23:28:39.1992171Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/05ea55aef41547fbba34517846596adc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0041\",\r\n \"name\": \"testWS-0041\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:28:45.486516Z\",\r\n \"modifiedOn\": \"2016-09-15T23:28:55.4426448Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6390b37595e943c2be4017807bf0b405/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0042\",\r\n \"name\": \"testWS-0042\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:29:00.0729598Z\",\r\n \"modifiedOn\": \"2016-09-15T23:29:13.487124Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/95cf5ae7c98b423ebe03c7937fd84e49/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0043\",\r\n \"name\": \"testWS-0043\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:29:19.7621778Z\",\r\n \"modifiedOn\": \"2016-09-15T23:29:30.0834129Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8145f41a119a45d7ac9e98b302eaa641/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0044\",\r\n \"name\": \"testWS-0044\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:29:38.606588Z\",\r\n \"modifiedOn\": \"2016-09-15T23:29:52.9728889Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a7172b898dd94f03886c3fdeabe09d36/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0045\",\r\n \"name\": \"testWS-0045\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:29:58.9926108Z\",\r\n \"modifiedOn\": \"2016-09-15T23:30:13.671907Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/68039aeeda1b4e03ad16567664f5076f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0046\",\r\n \"name\": \"testWS-0046\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:30:15.3485571Z\",\r\n \"modifiedOn\": \"2016-09-15T23:30:37.5938286Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cc3c7d2943eb435a86a51ce068fdf5dc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0047\",\r\n \"name\": \"testWS-0047\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:30:40.4262738Z\",\r\n \"modifiedOn\": \"2016-09-15T23:30:57.8978417Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1f3cd233621742dda90e5b02923449f8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0048\",\r\n \"name\": \"testWS-0048\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:31:01.7475598Z\",\r\n \"modifiedOn\": \"2016-09-15T23:31:17.3860996Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/04fdc25d87184ee59a154d4b5bdfeca8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0049\",\r\n \"name\": \"testWS-0049\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:31:20.213744Z\",\r\n \"modifiedOn\": \"2016-09-15T23:31:36.0306818Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5dad52eeb5d144419cf0d2c73c5350a4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0050\",\r\n \"name\": \"testWS-0050\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:31:43.1265532Z\",\r\n \"modifiedOn\": \"2016-09-15T23:32:04.8961063Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ca19f30d2ffc4d8eac69cd442810d185/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0051\",\r\n \"name\": \"testWS-0051\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:32:09.6196949Z\",\r\n \"modifiedOn\": \"2016-09-15T23:32:24.7610934Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5c950b312edb4cd4a6fbbfc7e27948cf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0052\",\r\n \"name\": \"testWS-0052\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:32:25.8509309Z\",\r\n \"modifiedOn\": \"2016-09-15T23:32:47.7527813Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/452b5888b34c4d028b4d84b8b2eae5aa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0053\",\r\n \"name\": \"testWS-0053\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:32:48.7012211Z\",\r\n \"modifiedOn\": \"2016-09-15T23:33:00.6209605Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d730a50409fd4613ac37a1a66495cf8b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0054\",\r\n \"name\": \"testWS-0054\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:33:00.8345725Z\",\r\n \"modifiedOn\": \"2016-09-15T23:33:15.4728056Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/70501d8690564345b2977d59f6603baa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0055\",\r\n \"name\": \"testWS-0055\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:33:19.9278679Z\",\r\n \"modifiedOn\": \"2016-09-15T23:33:34.6938011Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ee4a75e63d444bc9a293359ceb7aaebd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0056\",\r\n \"name\": \"testWS-0056\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:33:37.599137Z\",\r\n \"modifiedOn\": \"2016-09-15T23:33:50.6758198Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d4ab633885e5419abeb8f5c8d8a64e8a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0057\",\r\n \"name\": \"testWS-0057\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:33:53.8384529Z\",\r\n \"modifiedOn\": \"2016-09-15T23:34:08.1656086Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b08f96405ac34170b1d5dbe1d7dafd83/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0058\",\r\n \"name\": \"testWS-0058\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:34:13.5233725Z\",\r\n \"modifiedOn\": \"2016-09-15T23:34:24.560882Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f3f83a3a9e5941068383f7cedfc3b706/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0059\",\r\n \"name\": \"testWS-0059\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:34:30.9238916Z\",\r\n \"modifiedOn\": \"2016-09-15T23:34:40.1412193Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c50e9b77f82645ed94711002920c24db/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0060\",\r\n \"name\": \"testWS-0060\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:34:43.1650333Z\",\r\n \"modifiedOn\": \"2016-09-15T23:34:52.6746807Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e9f9e2cf36a0420bb3b5d88f02d76805/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0061\",\r\n \"name\": \"testWS-0061\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:34:54.7382841Z\",\r\n \"modifiedOn\": \"2016-09-15T23:35:10.0876123Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3453108db62940e8b3799a2ff8c3ccba/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0062\",\r\n \"name\": \"testWS-0062\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:35:15.162873Z\",\r\n \"modifiedOn\": \"2016-09-15T23:35:31.0006174Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/44e728c4146f4f3c98b170f0340b0178/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0063\",\r\n \"name\": \"testWS-0063\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:35:35.6706809Z\",\r\n \"modifiedOn\": \"2016-09-15T23:35:53.0869616Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f89bbcb99c114331a1f7078f1b85f19b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0064\",\r\n \"name\": \"testWS-0064\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:36:00.9916642Z\",\r\n \"modifiedOn\": \"2016-09-15T23:36:17.0592383Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/474f715f133648db84c1fa4da78c2090/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0065\",\r\n \"name\": \"testWS-0065\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:36:23.1554022Z\",\r\n \"modifiedOn\": \"2016-09-15T23:36:33.3435757Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ffa50b0a1c3f4f5c9315bdf5114b7dc6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0066\",\r\n \"name\": \"testWS-0066\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:36:36.5550113Z\",\r\n \"modifiedOn\": \"2016-09-15T23:36:47.8267998Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/053a7e3be8354f0bb28a163269937cfb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0067\",\r\n \"name\": \"testWS-0067\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:36:51.7725127Z\",\r\n \"modifiedOn\": \"2016-09-15T23:37:14.7266465Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1f573fbb92b8428398fb7febba67d280/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0068\",\r\n \"name\": \"testWS-0068\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:37:23.465709Z\",\r\n \"modifiedOn\": \"2016-09-15T23:37:39.3167796Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/06a10b43d3144c2b86bd8a99930cb7b2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0069\",\r\n \"name\": \"testWS-0069\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:37:48.8400381Z\",\r\n \"modifiedOn\": \"2016-09-15T23:37:56.365417Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f49f9854c4434dbd9ee5dac67f76cd33/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0070\",\r\n \"name\": \"testWS-0070\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:38:03.201482Z\",\r\n \"modifiedOn\": \"2016-09-15T23:38:11.461935Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9dc5f68347884b289908416f7e00969e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0071\",\r\n \"name\": \"testWS-0071\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:38:12.1993498Z\",\r\n \"modifiedOn\": \"2016-09-15T23:38:29.3557707Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/057c5b2f402841f1b1ce1b9ec2f4017b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0072\",\r\n \"name\": \"testWS-0072\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:38:34.0658494Z\",\r\n \"modifiedOn\": \"2016-09-15T23:38:45.9847318Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/875df7e57caa4799a2949f1c653dd56b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0073\",\r\n \"name\": \"testWS-0073\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:38:50.8342357Z\",\r\n \"modifiedOn\": \"2016-09-15T23:39:01.6181093Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/10d2e500fcfd4f0a854e2dcb78a08e80/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0074\",\r\n \"name\": \"testWS-0074\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:39:08.7732173Z\",\r\n \"modifiedOn\": \"2016-09-15T23:39:23.1371022Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0c9eda3619d148c981723910abad3889/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0075\",\r\n \"name\": \"testWS-0075\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:39:27.9900928Z\",\r\n \"modifiedOn\": \"2016-09-15T23:39:41.6596063Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/749d66ea3f5e414fa685b82d68dce181/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0076\",\r\n \"name\": \"testWS-0076\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:39:46.0743066Z\",\r\n \"modifiedOn\": \"2016-09-15T23:39:57.3333175Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e2547299f9a04e5bb9fe5abcd5c5dbef/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0077\",\r\n \"name\": \"testWS-0077\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:40:04.2280798Z\",\r\n \"modifiedOn\": \"2016-09-15T23:40:20.9453654Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/eb1224e9522941adb9d2361853c3c2ac/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0078\",\r\n \"name\": \"testWS-0078\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:40:25.0723686Z\",\r\n \"modifiedOn\": \"2016-09-15T23:40:49.0846394Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/024ada970b714d5b8ff179fa9915a39b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0079\",\r\n \"name\": \"testWS-0079\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:40:55.3520721Z\",\r\n \"modifiedOn\": \"2016-09-15T23:41:08.3023985Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/45e92b83301b40ddbdb83e739af0c471/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0080\",\r\n \"name\": \"testWS-0080\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:41:16.2006395Z\",\r\n \"modifiedOn\": \"2016-09-15T23:41:25.8221611Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5653b7dae5264206ba4aa83c65b19a62/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0081\",\r\n \"name\": \"testWS-0081\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:41:33.5016664Z\",\r\n \"modifiedOn\": \"2016-09-15T23:41:40.8911902Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/47a5730fa8484c5f9812948740b4dfcb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0082\",\r\n \"name\": \"testWS-0082\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:41:43.4426905Z\",\r\n \"modifiedOn\": \"2016-09-15T23:41:54.0296941Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2ae3756c13c840f3ac8a0bb133dad9a0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0083\",\r\n \"name\": \"testWS-0083\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:41:59.607446Z\",\r\n \"modifiedOn\": \"2016-09-15T23:42:11.0541179Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7a123d23f9df4b0da74276ad353587f2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0084\",\r\n \"name\": \"testWS-0084\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:42:18.5823853Z\",\r\n \"modifiedOn\": \"2016-09-15T23:42:33.7517083Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7ac1e5c5f02844518104abc5088ca153/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0085\",\r\n \"name\": \"testWS-0085\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:42:41.5432051Z\",\r\n \"modifiedOn\": \"2016-09-15T23:42:54.027546Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8d41b0b856aa468698674bc3ac54af8f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0086\",\r\n \"name\": \"testWS-0086\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:42:59.05448Z\",\r\n \"modifiedOn\": \"2016-09-15T23:43:08.2469683Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8e00f7f228014c378495aa846f8a26ee/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0087\",\r\n \"name\": \"testWS-0087\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:43:14.1846879Z\",\r\n \"modifiedOn\": \"2016-09-15T23:43:27.7758313Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f3ad2485183242568f0fca88d369ae36/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0088\",\r\n \"name\": \"testWS-0088\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:43:33.7122397Z\",\r\n \"modifiedOn\": \"2016-09-15T23:43:48.9001383Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f6f4d87c3fb747da97287f784104e148/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0089\",\r\n \"name\": \"testWS-0089\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:43:54.2090498Z\",\r\n \"modifiedOn\": \"2016-09-15T23:44:08.4948142Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d96a3f75d1544b3f9779822414e6974a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0090\",\r\n \"name\": \"testWS-0090\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:44:16.2991248Z\",\r\n \"modifiedOn\": \"2016-09-15T23:44:35.8468257Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1fac0f2d135d472181c6e24eadf43bd0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0091\",\r\n \"name\": \"testWS-0091\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:44:36.8752724Z\",\r\n \"modifiedOn\": \"2016-09-15T23:44:47.8618115Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/957a73fefbd84e729405a55d3b10312d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0092\",\r\n \"name\": \"testWS-0092\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:44:50.6434259Z\",\r\n \"modifiedOn\": \"2016-09-15T23:45:07.5942252Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d60da8ad5dba4a3c995cfc14459db659/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0093\",\r\n \"name\": \"testWS-0093\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:45:15.1009427Z\",\r\n \"modifiedOn\": \"2016-09-15T23:45:33.018014Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/00651a1eae644d99b7183f73ca7ee7b7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0094\",\r\n \"name\": \"testWS-0094\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:45:38.0121545Z\",\r\n \"modifiedOn\": \"2016-09-15T23:45:45.9385Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c7540d1c7ff84f189bc623bd6f91210b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0095\",\r\n \"name\": \"testWS-0095\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:45:50.2384521Z\",\r\n \"modifiedOn\": \"2016-09-15T23:46:05.9963624Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0c6a8ea91e15413ab5bbcaa9aa7f3850/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0096\",\r\n \"name\": \"testWS-0096\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:46:12.3013945Z\",\r\n \"modifiedOn\": \"2016-09-15T23:46:23.5963688Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/eee3109bf97148ea87fc579118fb5ecd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0097\",\r\n \"name\": \"testWS-0097\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:46:29.615231Z\",\r\n \"modifiedOn\": \"2016-09-15T23:46:43.3936691Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0276a5ad54554b7096986b54b232acfa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0098\",\r\n \"name\": \"testWS-0098\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:46:47.6857883Z\",\r\n \"modifiedOn\": \"2016-09-15T23:46:59.9854873Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c47e21a72e574b918586266326b5b77d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0099\",\r\n \"name\": \"testWS-0099\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:47:04.8208904Z\",\r\n \"modifiedOn\": \"2016-09-15T23:47:14.9670684Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f8c46fcef4e142519f44796334483107/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0100\",\r\n \"name\": \"testWS-0100\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:47:20.7030329Z\",\r\n \"modifiedOn\": \"2016-09-15T23:47:35.4254375Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6c6e79ffea3b4f05b3a92309f9cba8ab/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0101\",\r\n \"name\": \"testWS-0101\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:47:38.2925401Z\",\r\n \"modifiedOn\": \"2016-09-15T23:47:50.3380772Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b66846d44aaf47d683d7a2de2bf2c6f9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0102\",\r\n \"name\": \"testWS-0102\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:47:55.2525126Z\",\r\n \"modifiedOn\": \"2016-09-15T23:48:06.0008352Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/915ba30ed6be4e3aacfe1af351da8626/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0103\",\r\n \"name\": \"testWS-0103\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:48:22.3607512Z\",\r\n \"modifiedOn\": \"2016-09-15T23:48:35.8922746Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f4f2312fa1bf458c85e460b3ae2a6c47/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0104\",\r\n \"name\": \"testWS-0104\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:48:42.8445846Z\",\r\n \"modifiedOn\": \"2016-09-15T23:48:51.7084682Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8667f3a85d1a4b43a42baabf2501ddff/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0105\",\r\n \"name\": \"testWS-0105\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:48:58.1467257Z\",\r\n \"modifiedOn\": \"2016-09-15T23:49:09.7137621Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e6ddde3b7fc64b9482e467093cad2908/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0106\",\r\n \"name\": \"testWS-0106\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:49:15.9013059Z\",\r\n \"modifiedOn\": \"2016-09-15T23:49:30.196671Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/72a89c1c78114701a0885fa29e2ef11d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0107\",\r\n \"name\": \"testWS-0107\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:49:33.2709533Z\",\r\n \"modifiedOn\": \"2016-09-15T23:49:48.1520038Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ec16638470214cbb8eb843dfcf96ef3b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0108\",\r\n \"name\": \"testWS-0108\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:49:52.7790903Z\",\r\n \"modifiedOn\": \"2016-09-15T23:50:05.6561716Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9117530c617b4456a4e8d96443d3c3c9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0109\",\r\n \"name\": \"testWS-0109\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:50:09.7363302Z\",\r\n \"modifiedOn\": \"2016-09-15T23:50:19.7968248Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2e26c3ec2f88414c83402feee3a80097/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0110\",\r\n \"name\": \"testWS-0110\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:50:26.0275686Z\",\r\n \"modifiedOn\": \"2016-09-15T23:50:37.1055916Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7a6744383c284a2b885687723bb67736/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0111\",\r\n \"name\": \"testWS-0111\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:50:41.8237654Z\",\r\n \"modifiedOn\": \"2016-09-15T23:50:55.4102817Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/149409931a7b49378ebde0b108904a8c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0112\",\r\n \"name\": \"testWS-0112\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:51:00.9686663Z\",\r\n \"modifiedOn\": \"2016-09-15T23:51:12.2806499Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7bc9f1ad0bae4f45ac4fca7d3eb898a7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0113\",\r\n \"name\": \"testWS-0113\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:51:32.606178Z\",\r\n \"modifiedOn\": \"2016-09-15T23:51:44.2341247Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/70ad2765937a4350ae461ec0043e1db0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0114\",\r\n \"name\": \"testWS-0114\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:51:45.6547444Z\",\r\n \"modifiedOn\": \"2016-09-15T23:52:01.4462126Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/51367a2222fd42808b8d56c57b1c68e6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0115\",\r\n \"name\": \"testWS-0115\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:52:10.6809419Z\",\r\n \"modifiedOn\": \"2016-09-15T23:52:21.84603Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ea856f554b3640bd84578401cec5764e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0116\",\r\n \"name\": \"testWS-0116\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:52:28.5318985Z\",\r\n \"modifiedOn\": \"2016-09-15T23:52:36.3117698Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/07acd02fca814b5388dfcbdc51a3ef5c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0117\",\r\n \"name\": \"testWS-0117\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:52:37.2546031Z\",\r\n \"modifiedOn\": \"2016-09-15T23:52:52.1277227Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/020763832a7846febf413f670278c431/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0118\",\r\n \"name\": \"testWS-0118\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:52:55.5047222Z\",\r\n \"modifiedOn\": \"2016-09-15T23:53:10.1035284Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5cc0147d9df04f79b3a2aa3357280a10/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0119\",\r\n \"name\": \"testWS-0119\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:53:14.0763576Z\",\r\n \"modifiedOn\": \"2016-09-15T23:53:22.0746661Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d01ae50e28f44fa9b56ef6d9297e2278/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0120\",\r\n \"name\": \"testWS-0120\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:53:24.8410585Z\",\r\n \"modifiedOn\": \"2016-09-15T23:53:37.5585403Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1f0630664ff14b428cf2146c9be901f5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0121\",\r\n \"name\": \"testWS-0121\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:53:45.2098336Z\",\r\n \"modifiedOn\": \"2016-09-15T23:53:57.0400311Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/abd125a80df84fe2899a8552403d33fa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0122\",\r\n \"name\": \"testWS-0122\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:54:13.4532963Z\",\r\n \"modifiedOn\": \"2016-09-15T23:54:26.9042257Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/51a4c2c23d714959acad18d6a51b4477/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0123\",\r\n \"name\": \"testWS-0123\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:54:29.1016718Z\",\r\n \"modifiedOn\": \"2016-09-15T23:54:39.7401533Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d7c97452043045df8c5d95158b465883/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0124\",\r\n \"name\": \"testWS-0124\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:54:43.0379924Z\",\r\n \"modifiedOn\": \"2016-09-15T23:54:57.4181156Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d4c3df6278f14d84a494cf2eff82d529/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0125\",\r\n \"name\": \"testWS-0125\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:54:58.8336312Z\",\r\n \"modifiedOn\": \"2016-09-15T23:55:09.6262422Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/98a33cd5b0864058941c3d877a4599c7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0126\",\r\n \"name\": \"testWS-0126\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:55:12.8054128Z\",\r\n \"modifiedOn\": \"2016-09-15T23:55:26.0554324Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/782bc3f409b14d4d8f0c7b324ce411e9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0127\",\r\n \"name\": \"testWS-0127\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:55:31.4587902Z\",\r\n \"modifiedOn\": \"2016-09-15T23:55:46.8210673Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/572434b1b4f2409b9159c6c95fb7655f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0128\",\r\n \"name\": \"testWS-0128\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:55:53.0068823Z\",\r\n \"modifiedOn\": \"2016-09-15T23:56:04.8735488Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c55c94d50b684aa5924f446a6a414479/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0129\",\r\n \"name\": \"testWS-0129\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:56:14.8255906Z\",\r\n \"modifiedOn\": \"2016-09-15T23:56:23.2429389Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/42aab5980aac40d68ff632de02cb5f67/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0130\",\r\n \"name\": \"testWS-0130\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:56:25.0954521Z\",\r\n \"modifiedOn\": \"2016-09-15T23:56:38.0904185Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4c9d2a62af754b0b8fd5d232b3b82474/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0131\",\r\n \"name\": \"testWS-0131\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:56:42.802249Z\",\r\n \"modifiedOn\": \"2016-09-15T23:56:55.9905186Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/985921591b90477092162227ac5388cc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0132\",\r\n \"name\": \"testWS-0132\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:57:01.1773175Z\",\r\n \"modifiedOn\": \"2016-09-15T23:57:15.3891153Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/11c1c23cf8504c43b098bcddab848625/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0133\",\r\n \"name\": \"testWS-0133\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:57:18.0665763Z\",\r\n \"modifiedOn\": \"2016-09-15T23:57:27.1142588Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/42d227f7591f4bfe82221fb8203fd044/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0134\",\r\n \"name\": \"testWS-0134\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:57:28.8628478Z\",\r\n \"modifiedOn\": \"2016-09-15T23:57:37.7938155Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0686838b5a2e4ad2b081025743cd3a72/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0135\",\r\n \"name\": \"testWS-0135\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:57:40.8777785Z\",\r\n \"modifiedOn\": \"2016-09-15T23:57:50.9678497Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2c25120909734bb5952482042fadbd1e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0136\",\r\n \"name\": \"testWS-0136\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:57:54.5175826Z\",\r\n \"modifiedOn\": \"2016-09-15T23:58:02.8981284Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ab1a7a3114a14b0e91880f03fbd72750/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0137\",\r\n \"name\": \"testWS-0137\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:58:06.4975842Z\",\r\n \"modifiedOn\": \"2016-09-15T23:58:18.4938809Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9533087cc02b4097ae85757bd2a1fd4d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0138\",\r\n \"name\": \"testWS-0138\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:58:25.0574496Z\",\r\n \"modifiedOn\": \"2016-09-15T23:58:33.894585Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/48e7e6dc39f242efb7b54e7f848a7062/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0139\",\r\n \"name\": \"testWS-0139\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:58:41.816857Z\",\r\n \"modifiedOn\": \"2016-09-15T23:58:58.3896039Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b6ae5d67828b4c0f8ddb686ff80652dc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0140\",\r\n \"name\": \"testWS-0140\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:59:04.1693397Z\",\r\n \"modifiedOn\": \"2016-09-15T23:59:12.6300399Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b02eca5734774a35a3fe635923545da8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0141\",\r\n \"name\": \"testWS-0141\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:59:17.8620254Z\",\r\n \"modifiedOn\": \"2016-09-15T23:59:25.0377903Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9fe8b580c9a74a33af8bcda63a85b396/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0142\",\r\n \"name\": \"testWS-0142\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:59:30.4738469Z\",\r\n \"modifiedOn\": \"2016-09-15T23:59:42.0888616Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4f5af0c978e949199d17bc85440fbb59/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0143\",\r\n \"name\": \"testWS-0143\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-15T23:59:45.5530529Z\",\r\n \"modifiedOn\": \"2016-09-16T00:00:13.6357081Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/377892e968234eb69a21d9c0e0090539/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0144\",\r\n \"name\": \"testWS-0144\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:00:19.0389207Z\",\r\n \"modifiedOn\": \"2016-09-16T00:00:34.8094871Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e87f021ccb90426284d0760135f95078/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0145\",\r\n \"name\": \"testWS-0145\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:00:36.6548696Z\",\r\n \"modifiedOn\": \"2016-09-16T00:00:48.2766804Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/04085f862b384efaa96ab02a6e54e411/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0146\",\r\n \"name\": \"testWS-0146\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:00:50.9666328Z\",\r\n \"modifiedOn\": \"2016-09-16T00:01:01.9568851Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fd516904bd6b4083a41f55e1e34dedeb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0147\",\r\n \"name\": \"testWS-0147\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:01:11.7873294Z\",\r\n \"modifiedOn\": \"2016-09-16T00:01:21.227995Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bcd91f9fe6754297b83e981e65eab3b8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0148\",\r\n \"name\": \"testWS-0148\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:01:30.1110485Z\",\r\n \"modifiedOn\": \"2016-09-16T00:01:40.6937811Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4c49e52517ac453586a9ccf87e0a1dbe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0149\",\r\n \"name\": \"testWS-0149\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:01:47.5096897Z\",\r\n \"modifiedOn\": \"2016-09-16T00:01:58.6100218Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/64f51fa0d7314cef95ce1067bff2d4b0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0150\",\r\n \"name\": \"testWS-0150\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:02:04.1982369Z\",\r\n \"modifiedOn\": \"2016-09-16T00:02:13.6254057Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ec5614407f4b4563a7080b2e80e5e132/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0151\",\r\n \"name\": \"testWS-0151\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:02:17.6604646Z\",\r\n \"modifiedOn\": \"2016-09-16T00:02:30.7728274Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e89ff32d0c374691873be71611938ed8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0152\",\r\n \"name\": \"testWS-0152\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:02:35.6939859Z\",\r\n \"modifiedOn\": \"2016-09-16T00:02:47.5641754Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d74aa0dbff524f3ea132e4b63759e343/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0153\",\r\n \"name\": \"testWS-0153\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:02:49.7228569Z\",\r\n \"modifiedOn\": \"2016-09-16T00:03:00.7267842Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b7c8eeabcd9b4de3bd641e97673c1ac6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0154\",\r\n \"name\": \"testWS-0154\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:03:04.9391232Z\",\r\n \"modifiedOn\": \"2016-09-16T00:03:12.2837641Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3152f7dba2824ed494d57ee76988e2d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0155\",\r\n \"name\": \"testWS-0155\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:03:15.733548Z\",\r\n \"modifiedOn\": \"2016-09-16T00:03:26.8080739Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2468ef626f2b40a594c156b996248821/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0156\",\r\n \"name\": \"testWS-0156\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:03:34.5803928Z\",\r\n \"modifiedOn\": \"2016-09-16T00:03:49.3226649Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/84b75465368048e9b8f5f5cd06fd18df/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0157\",\r\n \"name\": \"testWS-0157\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:03:53.2894624Z\",\r\n \"modifiedOn\": \"2016-09-16T00:04:06.388279Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0b6835fafbe84d37914491fce02f4c8b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0158\",\r\n \"name\": \"testWS-0158\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:04:10.043742Z\",\r\n \"modifiedOn\": \"2016-09-16T00:04:23.314993Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e683b48f93284630a3c683a83c45fda7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0159\",\r\n \"name\": \"testWS-0159\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:04:28.5265005Z\",\r\n \"modifiedOn\": \"2016-09-16T00:04:39.3052694Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a2539246ab4f4b9882996870aed70e69/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0160\",\r\n \"name\": \"testWS-0160\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:04:44.7636479Z\",\r\n \"modifiedOn\": \"2016-09-16T00:05:09.657504Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f22eadc85ee241109d8656690d757e6e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0161\",\r\n \"name\": \"testWS-0161\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:05:15.0511257Z\",\r\n \"modifiedOn\": \"2016-09-16T00:05:27.683093Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f0f7445154a248748f56867657e98aa5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0162\",\r\n \"name\": \"testWS-0162\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:05:35.820218Z\",\r\n \"modifiedOn\": \"2016-09-16T00:05:51.5514973Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/af84053d13c0453092870156e84679a9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0163\",\r\n \"name\": \"testWS-0163\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:05:55.6698868Z\",\r\n \"modifiedOn\": \"2016-09-16T00:06:08.615872Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/aba2e770c8564bde83b5db36b617657c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0164\",\r\n \"name\": \"testWS-0164\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:06:16.5600072Z\",\r\n \"modifiedOn\": \"2016-09-16T00:06:27.2758335Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8aff6465e3994dd68aa33bbc69dbce76/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0165\",\r\n \"name\": \"testWS-0165\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:06:28.3088596Z\",\r\n \"modifiedOn\": \"2016-09-16T00:06:39.9607648Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/98621f8291bc48e3aed8a4006e5b23e1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0166\",\r\n \"name\": \"testWS-0166\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:06:44.1693425Z\",\r\n \"modifiedOn\": \"2016-09-16T00:06:55.211114Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a0c9a3290eaf4326a762302dd27afe5d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0167\",\r\n \"name\": \"testWS-0167\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:06:58.8245543Z\",\r\n \"modifiedOn\": \"2016-09-16T00:07:14.5285266Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a31e2fcc6fc24fdbbf9927cbf1e3215c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0168\",\r\n \"name\": \"testWS-0168\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:07:19.5839759Z\",\r\n \"modifiedOn\": \"2016-09-16T00:07:34.1845473Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/350c493e77d349a6bc202fa31909b355/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0169\",\r\n \"name\": \"testWS-0169\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:07:40.4106585Z\",\r\n \"modifiedOn\": \"2016-09-16T00:07:48.356784Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5754fa0851bb46f6800eb31528deb382/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0170\",\r\n \"name\": \"testWS-0170\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:07:52.5231121Z\",\r\n \"modifiedOn\": \"2016-09-16T00:08:00.8348945Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/021c8b8db6834404882dcbc114c3b2dd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0171\",\r\n \"name\": \"testWS-0171\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:08:12.3753096Z\",\r\n \"modifiedOn\": \"2016-09-16T00:08:27.6697844Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/66981b45a7614c448ef9a54876b0e976/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0172\",\r\n \"name\": \"testWS-0172\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:08:33.6602153Z\",\r\n \"modifiedOn\": \"2016-09-16T00:08:45.2597436Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4b701bf3b47f460a8976e25d2c05a2aa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0173\",\r\n \"name\": \"testWS-0173\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:08:47.3980421Z\",\r\n \"modifiedOn\": \"2016-09-16T00:09:02.9146643Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7fe63ad915474d45bbd73ef8fdff87b3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0174\",\r\n \"name\": \"testWS-0174\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:09:08.4111962Z\",\r\n \"modifiedOn\": \"2016-09-16T00:09:18.8124485Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6a09e1ce0be14493a6eeb246816dcda2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0175\",\r\n \"name\": \"testWS-0175\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:09:25.0400108Z\",\r\n \"modifiedOn\": \"2016-09-16T00:09:32.8068035Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d589b93d37324ef78f0a66ca90f8b37f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0176\",\r\n \"name\": \"testWS-0176\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:09:36.2896796Z\",\r\n \"modifiedOn\": \"2016-09-16T00:09:52.9324778Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7acb0613764b40c28f4d01f3a863ed07/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0177\",\r\n \"name\": \"testWS-0177\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:10:00.2396308Z\",\r\n \"modifiedOn\": \"2016-09-16T00:10:08.5901775Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2d530c9ba321439da167e81bb563991a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0178\",\r\n \"name\": \"testWS-0178\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:10:11.2275178Z\",\r\n \"modifiedOn\": \"2016-09-16T00:10:22.8130929Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fdf6d83bd7bd4771bd731c35ec93ba0b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0179\",\r\n \"name\": \"testWS-0179\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:10:30.918289Z\",\r\n \"modifiedOn\": \"2016-09-16T00:10:47.557459Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c085eca954d340399f5d88a81b3b846d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0180\",\r\n \"name\": \"testWS-0180\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:10:52.7987991Z\",\r\n \"modifiedOn\": \"2016-09-16T00:11:02.0205688Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/208398c6f05442759b63ebc5a0bc042a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0181\",\r\n \"name\": \"testWS-0181\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:11:05.1375861Z\",\r\n \"modifiedOn\": \"2016-09-16T00:11:16.1135609Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7c138ac7e5364073ab165513f7fc837c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0182\",\r\n \"name\": \"testWS-0182\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:11:23.2367207Z\",\r\n \"modifiedOn\": \"2016-09-16T00:11:39.5349009Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/dddac5200d4e414e83480864f9a9aef8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0183\",\r\n \"name\": \"testWS-0183\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:11:46.7891313Z\",\r\n \"modifiedOn\": \"2016-09-16T00:11:55.653046Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fba009856d544b09810bf2fb9f038ee5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0184\",\r\n \"name\": \"testWS-0184\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:12:03.2744701Z\",\r\n \"modifiedOn\": \"2016-09-16T00:12:15.1758111Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6b41297043474fee8377342b36010afe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0185\",\r\n \"name\": \"testWS-0185\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:12:21.4897613Z\",\r\n \"modifiedOn\": \"2016-09-16T00:12:31.3321286Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8ba4473b2e8b429aa822987f8eb7bcdc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0186\",\r\n \"name\": \"testWS-0186\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:12:38.0297716Z\",\r\n \"modifiedOn\": \"2016-09-16T00:12:54.8913067Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1428a29530414257b22daa5402b22a38/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0187\",\r\n \"name\": \"testWS-0187\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:13:01.5504187Z\",\r\n \"modifiedOn\": \"2016-09-16T00:13:21.6036123Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/12537509ed634f74969e2aa3a7af4b1a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0188\",\r\n \"name\": \"testWS-0188\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:13:22.9729107Z\",\r\n \"modifiedOn\": \"2016-09-16T00:13:35.0704879Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0b0c33430bf3461bacf31da40c85e12c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0189\",\r\n \"name\": \"testWS-0189\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:13:39.5615481Z\",\r\n \"modifiedOn\": \"2016-09-16T00:13:56.0570973Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7eea66dda92b4374a83051e882787487/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0190\",\r\n \"name\": \"testWS-0190\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:14:03.8967016Z\",\r\n \"modifiedOn\": \"2016-09-16T00:14:16.4244083Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/09102be98c3f4a98a059e659964875fa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0191\",\r\n \"name\": \"testWS-0191\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:14:18.2960394Z\",\r\n \"modifiedOn\": \"2016-09-16T00:14:32.7998155Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/68ad71eb2de14cc298bf17eee1824781/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0192\",\r\n \"name\": \"testWS-0192\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:14:39.4232508Z\",\r\n \"modifiedOn\": \"2016-09-16T00:14:47.5878905Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ece322dbbcd741298024436408a1dca2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0193\",\r\n \"name\": \"testWS-0193\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:14:49.4812214Z\",\r\n \"modifiedOn\": \"2016-09-16T00:15:07.4665816Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5700d22685114f059cd178ac95b29017/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0194\",\r\n \"name\": \"testWS-0194\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:15:14.4789439Z\",\r\n \"modifiedOn\": \"2016-09-16T00:15:25.0001419Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/92a746491c404136a82cbd82f7119a72/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0195\",\r\n \"name\": \"testWS-0195\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:15:32.8057078Z\",\r\n \"modifiedOn\": \"2016-09-16T00:15:41.2453992Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cbe25579d99e4f64b48f2c862e9a3cc9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0196\",\r\n \"name\": \"testWS-0196\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:15:41.3390932Z\",\r\n \"modifiedOn\": \"2016-09-16T00:15:56.9527219Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/220fa9307f4f49629632b291442315a5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0197\",\r\n \"name\": \"testWS-0197\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:15:59.1118211Z\",\r\n \"modifiedOn\": \"2016-09-16T00:16:11.1391508Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/91b909bdf99942459144319aa7b03f36/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0198\",\r\n \"name\": \"testWS-0198\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:16:12.8493535Z\",\r\n \"modifiedOn\": \"2016-09-16T00:16:24.9864207Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d55130b1a6cb4a5a806d98c4c0c30f09/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0199\",\r\n \"name\": \"testWS-0199\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T00:16:25.6726603Z\",\r\n \"modifiedOn\": \"2016-09-16T00:16:41.1017599Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2207df9aadd449abb3e7481fac63bd12/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0200\",\r\n \"name\": \"testWS-0200\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:51:38.0484078Z\",\r\n \"modifiedOn\": \"2016-09-16T05:51:50.2778499Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cc2b3f3720fc4c9ea7a47e602ed3707c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0201\",\r\n \"name\": \"testWS-0201\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:51:53.6727252Z\",\r\n \"modifiedOn\": \"2016-09-16T05:52:11.0524366Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c358ac99367048bcbf1fb52ab67ecb53/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0202\",\r\n \"name\": \"testWS-0202\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:52:11.7841448Z\",\r\n \"modifiedOn\": \"2016-09-16T05:52:24.4086821Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/00a3c7acbb2d4f07bc21b8bf483d71c5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0203\",\r\n \"name\": \"testWS-0203\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:52:27.6241926Z\",\r\n \"modifiedOn\": \"2016-09-16T05:52:39.2791731Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b108982e198d48828cd016589c4698cc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0204\",\r\n \"name\": \"testWS-0204\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:52:43.6322447Z\",\r\n \"modifiedOn\": \"2016-09-16T05:52:58.0247349Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6d2030ca4fd748d080b2378e3d01d340/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0205\",\r\n \"name\": \"testWS-0205\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:53:03.9381167Z\",\r\n \"modifiedOn\": \"2016-09-16T05:53:19.6824714Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/60107eadb18b49b581d6e6843defefc0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0206\",\r\n \"name\": \"testWS-0206\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:53:25.6405979Z\",\r\n \"modifiedOn\": \"2016-09-16T05:53:39.8562424Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f53b6ac1477a4981a665471fc4d27008/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0207\",\r\n \"name\": \"testWS-0207\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:53:45.0909651Z\",\r\n \"modifiedOn\": \"2016-09-16T05:53:58.0884728Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/068553f6165a45b8acc9e8cc7eb67401/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0208\",\r\n \"name\": \"testWS-0208\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:53:59.9175447Z\",\r\n \"modifiedOn\": \"2016-09-16T05:54:13.4874854Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3d425fb1df354c238ae2bc76d204f741/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0209\",\r\n \"name\": \"testWS-0209\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:54:20.1892723Z\",\r\n \"modifiedOn\": \"2016-09-16T05:54:32.2148096Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/98a547e8d37547189af12406ed481f67/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0210\",\r\n \"name\": \"testWS-0210\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:54:37.5144277Z\",\r\n \"modifiedOn\": \"2016-09-16T05:54:50.4632021Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b2a1ac9eb6fb4b0d8d86dbebfd15d738/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0211\",\r\n \"name\": \"testWS-0211\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:54:54.9615086Z\",\r\n \"modifiedOn\": \"2016-09-16T05:55:09.3362026Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1a09f7e7759741ac96fcc60f3ba59ea9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0212\",\r\n \"name\": \"testWS-0212\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:55:12.9312489Z\",\r\n \"modifiedOn\": \"2016-09-16T05:55:26.390959Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3137ac78a89b47d59d1b002cf35656e2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0213\",\r\n \"name\": \"testWS-0213\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:55:32.0700469Z\",\r\n \"modifiedOn\": \"2016-09-16T05:55:51.164628Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3e330bb5e9f6407387f5a9036843007e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0214\",\r\n \"name\": \"testWS-0214\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:55:54.7107847Z\",\r\n \"modifiedOn\": \"2016-09-16T05:56:09.127636Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/de9310ba80c14278bdb50b6eaa29cb86/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0215\",\r\n \"name\": \"testWS-0215\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:56:12.8914577Z\",\r\n \"modifiedOn\": \"2016-09-16T05:56:23.5634419Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/03c115d87b4e44bf9da7f402bdabe3b7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0216\",\r\n \"name\": \"testWS-0216\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:56:31.0933038Z\",\r\n \"modifiedOn\": \"2016-09-16T05:56:44.0800224Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9785d2e90c1f418fb905fe742f32f858/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0217\",\r\n \"name\": \"testWS-0217\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:56:47.4244772Z\",\r\n \"modifiedOn\": \"2016-09-16T05:57:01.3321223Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5981e20772f34a1bbff159a3a3d938f4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0218\",\r\n \"name\": \"testWS-0218\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:57:05.0529209Z\",\r\n \"modifiedOn\": \"2016-09-16T05:57:18.2877832Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/17fea952c97e46339897bf75e06c32c0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0219\",\r\n \"name\": \"testWS-0219\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:57:24.4557326Z\",\r\n \"modifiedOn\": \"2016-09-16T05:57:33.145721Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9315a1b0ad24415fae644b19ba3aad0e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0220\",\r\n \"name\": \"testWS-0220\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:57:35.7938536Z\",\r\n \"modifiedOn\": \"2016-09-16T05:57:52.643419Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/095bc8fd324b48d8b7ef46cfc5c7e2cb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0221\",\r\n \"name\": \"testWS-0221\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:57:59.6850532Z\",\r\n \"modifiedOn\": \"2016-09-16T05:58:10.1321084Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/71c9641c254140c4addb02482f3c926d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0222\",\r\n \"name\": \"testWS-0222\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:58:14.5211463Z\",\r\n \"modifiedOn\": \"2016-09-16T05:58:28.6840694Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/163a6b314e9c4e2286a9443a6d52a0b5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0223\",\r\n \"name\": \"testWS-0223\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:58:35.8572683Z\",\r\n \"modifiedOn\": \"2016-09-16T05:58:53.5058212Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c75dbcce0a5c476099a7a24f7c351cbd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0224\",\r\n \"name\": \"testWS-0224\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:58:59.1660378Z\",\r\n \"modifiedOn\": \"2016-09-16T05:59:09.8521312Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/64ff589e5f224a1b9cadb5a9e1b5bb3a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0225\",\r\n \"name\": \"testWS-0225\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:59:13.2690961Z\",\r\n \"modifiedOn\": \"2016-09-16T05:59:27.085568Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d65c551ba02948a38f2f78af586cd674/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0226\",\r\n \"name\": \"testWS-0226\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:59:30.7669776Z\",\r\n \"modifiedOn\": \"2016-09-16T05:59:43.9543256Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e8d8f7ef8ad5447ab5d838401be7d468/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0227\",\r\n \"name\": \"testWS-0227\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T05:59:49.3125441Z\",\r\n \"modifiedOn\": \"2016-09-16T06:00:06.6627305Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e104f0448b10482fa96348dcb2951f7c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0228\",\r\n \"name\": \"testWS-0228\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:00:17.3264061Z\",\r\n \"modifiedOn\": \"2016-09-16T06:00:36.7339269Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/af336317322c435d8b58ca1fbff9c36e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0229\",\r\n \"name\": \"testWS-0229\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:00:39.3807297Z\",\r\n \"modifiedOn\": \"2016-09-16T06:00:51.6367344Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/57c9d9c63ae7490192bc9edf623a44ac/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0230\",\r\n \"name\": \"testWS-0230\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:00:57.8807006Z\",\r\n \"modifiedOn\": \"2016-09-16T06:01:12.0750267Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/beae12599f2844f194c800a17fc4f2a0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0231\",\r\n \"name\": \"testWS-0231\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:01:15.6743811Z\",\r\n \"modifiedOn\": \"2016-09-16T06:01:26.4516153Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6d8c12750bab4270b0e0e1b1866aa4cd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0232\",\r\n \"name\": \"testWS-0232\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:01:34.2508929Z\",\r\n \"modifiedOn\": \"2016-09-16T06:01:47.4527881Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d0f3d44861544c388c31fa1b354513f8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0233\",\r\n \"name\": \"testWS-0233\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:01:52.0160275Z\",\r\n \"modifiedOn\": \"2016-09-16T06:02:02.6905045Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6777ab5b6af2448399fd008104393161/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0234\",\r\n \"name\": \"testWS-0234\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:02:09.1128273Z\",\r\n \"modifiedOn\": \"2016-09-16T06:02:16.9307728Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f5999954f430462ebc57c069bb382d0d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0235\",\r\n \"name\": \"testWS-0235\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:02:21.2281419Z\",\r\n \"modifiedOn\": \"2016-09-16T06:02:38.2760978Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e53ece82c55c4207a89b853338c20319/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0236\",\r\n \"name\": \"testWS-0236\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:02:41.197668Z\",\r\n \"modifiedOn\": \"2016-09-16T06:02:53.4766659Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f48b41d825dc43d2b4c47fc06f7399fd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0237\",\r\n \"name\": \"testWS-0237\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:02:55.8135003Z\",\r\n \"modifiedOn\": \"2016-09-16T06:03:08.3935002Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/95f10f4fc76d4cc1a55027653345b7b3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0238\",\r\n \"name\": \"testWS-0238\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:03:12.3371608Z\",\r\n \"modifiedOn\": \"2016-09-16T06:03:24.2699387Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bf6f502a309c4024bff5b8594b17f4a1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0239\",\r\n \"name\": \"testWS-0239\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:03:26.821403Z\",\r\n \"modifiedOn\": \"2016-09-16T06:03:36.8232887Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/290d22f2e4574682bd37a2c8d7b51082/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0240\",\r\n \"name\": \"testWS-0240\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:03:42.2057611Z\",\r\n \"modifiedOn\": \"2016-09-16T06:03:57.4405207Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b6f18e2313da46c193256ceb3495a3ff/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0241\",\r\n \"name\": \"testWS-0241\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:04:02.0968135Z\",\r\n \"modifiedOn\": \"2016-09-16T06:04:12.0006756Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/919ee04e857545a09dc140ffac10d579/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0242\",\r\n \"name\": \"testWS-0242\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:04:19.4254228Z\",\r\n \"modifiedOn\": \"2016-09-16T06:04:30.3314708Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4ef09c320be94977b49ca735edc65dc3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0243\",\r\n \"name\": \"testWS-0243\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:04:36.8801012Z\",\r\n \"modifiedOn\": \"2016-09-16T06:04:50.5544841Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/29874670ca184c9683f4343147544c32/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0244\",\r\n \"name\": \"testWS-0244\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:04:54.586557Z\",\r\n \"modifiedOn\": \"2016-09-16T06:05:04.9025116Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ddb96b94d57e4213895ea862111ddc3b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0245\",\r\n \"name\": \"testWS-0245\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:05:11.9350403Z\",\r\n \"modifiedOn\": \"2016-09-16T06:05:23.6371172Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f48eb9b8ebac4a18b2b9029c94abd717/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0246\",\r\n \"name\": \"testWS-0246\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:05:28.7515923Z\",\r\n \"modifiedOn\": \"2016-09-16T06:05:41.9543087Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f8328ad4d3fd4aee9d3e17297a97fd9a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0247\",\r\n \"name\": \"testWS-0247\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:05:46.1966517Z\",\r\n \"modifiedOn\": \"2016-09-16T06:05:56.9095064Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d4161bec5b3d4af08ddf08ccc018e0f4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0248\",\r\n \"name\": \"testWS-0248\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:05:57.0337246Z\",\r\n \"modifiedOn\": \"2016-09-16T06:06:13.1932677Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3c5d708cd1204797879351ea11b9c8b7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0249\",\r\n \"name\": \"testWS-0249\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:06:17.1666056Z\",\r\n \"modifiedOn\": \"2016-09-16T06:06:31.5650686Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b5e11730f0fe4a5180464e6ce03bcdf8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0250\",\r\n \"name\": \"testWS-0250\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:06:35.2404234Z\",\r\n \"modifiedOn\": \"2016-09-16T06:06:44.3183057Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/70da47d027d04b9486ee32735e36d48f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0251\",\r\n \"name\": \"testWS-0251\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:06:47.1797079Z\",\r\n \"modifiedOn\": \"2016-09-16T06:06:58.4692883Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bf0c361c7ed04fe9a837fb89f8fef99c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0252\",\r\n \"name\": \"testWS-0252\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:07:04.1884751Z\",\r\n \"modifiedOn\": \"2016-09-16T06:07:20.0139379Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ac56202d4eed40dd93cd0fc267fa6964/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0253\",\r\n \"name\": \"testWS-0253\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:07:28.0988666Z\",\r\n \"modifiedOn\": \"2016-09-16T06:07:40.8511577Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0844c77ef07748b4a6c2c917727731b6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0254\",\r\n \"name\": \"testWS-0254\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:07:44.808001Z\",\r\n \"modifiedOn\": \"2016-09-16T06:07:55.7231337Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/adb36df8c3414f7095a33316a5b3989c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0255\",\r\n \"name\": \"testWS-0255\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:07:55.8173223Z\",\r\n \"modifiedOn\": \"2016-09-16T06:08:14.3777499Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4a1fb345395448f5ab1f7d81604c427b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0256\",\r\n \"name\": \"testWS-0256\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:08:19.964004Z\",\r\n \"modifiedOn\": \"2016-09-16T06:08:29.9962165Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b039cdf31fc744e2ab97b415e5d762bd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0257\",\r\n \"name\": \"testWS-0257\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:08:30.688409Z\",\r\n \"modifiedOn\": \"2016-09-16T06:08:44.8756581Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/232903ed41c841058548c02963c552d6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0258\",\r\n \"name\": \"testWS-0258\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:08:50.7115849Z\",\r\n \"modifiedOn\": \"2016-09-16T06:09:03.5523722Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/425746e84bae4ced810d85347683b4be/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0259\",\r\n \"name\": \"testWS-0259\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:09:10.3345308Z\",\r\n \"modifiedOn\": \"2016-09-16T06:09:18.1294395Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8b4f32e48327489b83dd9d64f5ecfd57/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0260\",\r\n \"name\": \"testWS-0260\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:09:20.6427063Z\",\r\n \"modifiedOn\": \"2016-09-16T06:09:32.3459304Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/909b3a3a5d054a0fb0f48da88db9cfc8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0261\",\r\n \"name\": \"testWS-0261\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:09:33.2733337Z\",\r\n \"modifiedOn\": \"2016-09-16T06:09:50.1268606Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/52ec15f7d93d4f71b9f5f62f3306c9b1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0262\",\r\n \"name\": \"testWS-0262\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:09:51.9845175Z\",\r\n \"modifiedOn\": \"2016-09-16T06:10:05.7706234Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1649a12868094eda979e66ff74d9ceb3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0263\",\r\n \"name\": \"testWS-0263\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:10:13.5803267Z\",\r\n \"modifiedOn\": \"2016-09-16T06:10:37.9152501Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7d0c2cb99d214ca49c92719a6910613c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0264\",\r\n \"name\": \"testWS-0264\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:10:38.9841361Z\",\r\n \"modifiedOn\": \"2016-09-16T06:10:52.8158246Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b9aedd5fe14a4125810a406960e53f29/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0265\",\r\n \"name\": \"testWS-0265\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:10:57.1776635Z\",\r\n \"modifiedOn\": \"2016-09-16T06:11:22.0001251Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fced477bef714b6ead772c8d40e27747/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0266\",\r\n \"name\": \"testWS-0266\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:11:29.4853527Z\",\r\n \"modifiedOn\": \"2016-09-16T06:11:45.0250815Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/401da824e5b14059b3e0722c60a4e0a6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0267\",\r\n \"name\": \"testWS-0267\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:11:51.0181026Z\",\r\n \"modifiedOn\": \"2016-09-16T06:12:12.1747155Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/27a4b3cdb176425d9b378c3611459701/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0268\",\r\n \"name\": \"testWS-0268\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:12:12.7267492Z\",\r\n \"modifiedOn\": \"2016-09-16T06:12:32.6155732Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/29c2d19a0d4a4644bcf50b49c2264816/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0269\",\r\n \"name\": \"testWS-0269\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:12:39.2597406Z\",\r\n \"modifiedOn\": \"2016-09-16T06:12:54.0448508Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3844e8fa05eb447aba980002a9adb7cc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0270\",\r\n \"name\": \"testWS-0270\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:13:01.5230388Z\",\r\n \"modifiedOn\": \"2016-09-16T06:13:09.7128174Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ed66fd98db974fd88847008092f69ff8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0271\",\r\n \"name\": \"testWS-0271\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:13:12.2791227Z\",\r\n \"modifiedOn\": \"2016-09-16T06:13:26.7825201Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/889f6abc06bc4e71a1bd6e06b02abe95/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0272\",\r\n \"name\": \"testWS-0272\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:13:30.2200009Z\",\r\n \"modifiedOn\": \"2016-09-16T06:15:09.8047975Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c9f43eeab142417c986f72eaba73f2c8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0273\",\r\n \"name\": \"testWS-0273\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:15:11.2290976Z\",\r\n \"modifiedOn\": \"2016-09-16T06:15:29.52947Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0c4e2854b1ce4ee1b008074386fa58ce/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0274\",\r\n \"name\": \"testWS-0274\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:15:37.5292223Z\",\r\n \"modifiedOn\": \"2016-09-16T06:16:04.5319161Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fa6995a3559844bdbb8488df9671741c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0275\",\r\n \"name\": \"testWS-0275\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:16:11.09256Z\",\r\n \"modifiedOn\": \"2016-09-16T06:16:28.9643431Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fa8db469c05b4218a1ba9941156578fd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0276\",\r\n \"name\": \"testWS-0276\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:16:34.2447951Z\",\r\n \"modifiedOn\": \"2016-09-16T06:16:41.8753668Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/42067f6e791646919f331c22a3197e15/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0277\",\r\n \"name\": \"testWS-0277\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:16:45.746397Z\",\r\n \"modifiedOn\": \"2016-09-16T06:17:30.0623037Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/de1a6a7d531f4ec78574a2a7dbad4425/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0278\",\r\n \"name\": \"testWS-0278\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:17:32.5638788Z\",\r\n \"modifiedOn\": \"2016-09-16T06:18:04.1096958Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8d92750e421d48e6b657b81bbb169de5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0279\",\r\n \"name\": \"testWS-0279\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:18:08.763119Z\",\r\n \"modifiedOn\": \"2016-09-16T06:18:19.4861397Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1187dc46e0234282b2f3510f0c649a7e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0280\",\r\n \"name\": \"testWS-0280\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:18:26.0694816Z\",\r\n \"modifiedOn\": \"2016-09-16T06:18:42.0300106Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6b39544ab20644d990a40346a65f9d30/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0281\",\r\n \"name\": \"testWS-0281\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:18:47.8647675Z\",\r\n \"modifiedOn\": \"2016-09-16T06:19:01.0631401Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f53205990b754673b237480d6809eb68/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0282\",\r\n \"name\": \"testWS-0282\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:19:05.1998342Z\",\r\n \"modifiedOn\": \"2016-09-16T06:19:13.6736789Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8caead0e8dfe4dce9b0c08f7ce050879/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0283\",\r\n \"name\": \"testWS-0283\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:19:17.5989702Z\",\r\n \"modifiedOn\": \"2016-09-16T06:19:40.1631881Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1196824d40fd4272b07d1ada616acea4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0284\",\r\n \"name\": \"testWS-0284\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:19:46.6608085Z\",\r\n \"modifiedOn\": \"2016-09-16T06:20:22.032161Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9d4a5d683d5342c38e1fd16a9771c680/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0285\",\r\n \"name\": \"testWS-0285\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:20:26.0277713Z\",\r\n \"modifiedOn\": \"2016-09-16T06:20:41.3024431Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f6e0e35bf3cc4514ac9054c48d2823e2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0286\",\r\n \"name\": \"testWS-0286\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:20:49.1920458Z\",\r\n \"modifiedOn\": \"2016-09-16T06:21:59.0527539Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/77e3fa72d9b74c999d39041bf28335e1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0287\",\r\n \"name\": \"testWS-0287\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:22:04.5132125Z\",\r\n \"modifiedOn\": \"2016-09-16T06:22:18.54217Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7f497c2c22474dec8cd74c72d3d098ed/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0288\",\r\n \"name\": \"testWS-0288\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:22:21.7754291Z\",\r\n \"modifiedOn\": \"2016-09-16T06:22:33.7046639Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/079c3206eb0142f19a3edd4a0aeebedf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0289\",\r\n \"name\": \"testWS-0289\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:22:39.4625674Z\",\r\n \"modifiedOn\": \"2016-09-16T06:22:54.5412038Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7ac40003612f47f486e093e34ba8130a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0290\",\r\n \"name\": \"testWS-0290\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:22:58.0249814Z\",\r\n \"modifiedOn\": \"2016-09-16T06:23:08.0530039Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3f44bd181c58430598936c516ca7d84c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0291\",\r\n \"name\": \"testWS-0291\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:23:15.3067871Z\",\r\n \"modifiedOn\": \"2016-09-16T06:23:26.0642643Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e51786ea80c54f3faf48cf73026d48b7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0292\",\r\n \"name\": \"testWS-0292\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:23:33.2998456Z\",\r\n \"modifiedOn\": \"2016-09-16T06:23:42.2994334Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/602f48ad4c574874a4b90e0375775be2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0293\",\r\n \"name\": \"testWS-0293\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:23:42.8603657Z\",\r\n \"modifiedOn\": \"2016-09-16T06:23:57.2353817Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/724b7097ea71493694b93deada32008a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0294\",\r\n \"name\": \"testWS-0294\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:24:00.2940931Z\",\r\n \"modifiedOn\": \"2016-09-16T06:24:20.0101347Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/64fe11dd0a4f4c079a238671c5e5342b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0295\",\r\n \"name\": \"testWS-0295\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:24:25.6497846Z\",\r\n \"modifiedOn\": \"2016-09-16T06:24:39.9641963Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/41ec4bf570dc4a919c2205b78116cf15/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0296\",\r\n \"name\": \"testWS-0296\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:24:41.3676464Z\",\r\n \"modifiedOn\": \"2016-09-16T06:24:59.4024065Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b023f0bba60b4da28a6b6856d03afb2f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0297\",\r\n \"name\": \"testWS-0297\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:25:03.7789556Z\",\r\n \"modifiedOn\": \"2016-09-16T06:25:15.2391307Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/59010d1826d14970b1d5231e54bdbba8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0298\",\r\n \"name\": \"testWS-0298\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:25:22.3482383Z\",\r\n \"modifiedOn\": \"2016-09-16T06:25:40.2697038Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/acc5525f509c4023b3b36dea67410af1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0299\",\r\n \"name\": \"testWS-0299\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T06:25:42.3893498Z\",\r\n \"modifiedOn\": \"2016-09-16T06:26:01.0967746Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4a7291921d5c473e890a0b16088adf3a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0300\",\r\n \"name\": \"testWS-0300\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:47:05.1614272Z\",\r\n \"modifiedOn\": \"2016-09-16T17:47:17.0936086Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/926044ac8fa840edb34ab9320361dd18/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0301\",\r\n \"name\": \"testWS-0301\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:47:18.4793913Z\",\r\n \"modifiedOn\": \"2016-09-16T17:47:33.5389926Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e6f6427adcbe4ca6a808ed9b32007fb4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0302\",\r\n \"name\": \"testWS-0302\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:47:38.3366013Z\",\r\n \"modifiedOn\": \"2016-09-16T17:47:56.1581338Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/25eebd48f596462c9bf71c4910a2a752/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0303\",\r\n \"name\": \"testWS-0303\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:48:03.2768119Z\",\r\n \"modifiedOn\": \"2016-09-16T17:48:13.1157562Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8eec45a7f47441ab9ca45ed1246f7eb2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0304\",\r\n \"name\": \"testWS-0304\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:48:23.2488248Z\",\r\n \"modifiedOn\": \"2016-09-16T17:48:32.9217193Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0735b58a0ca8489398d977c91164a341/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0305\",\r\n \"name\": \"testWS-0305\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:48:37.7445851Z\",\r\n \"modifiedOn\": \"2016-09-16T17:48:52.9786909Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ce8c679409f64100a5b8201c5f6bc33f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0306\",\r\n \"name\": \"testWS-0306\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:48:58.12541Z\",\r\n \"modifiedOn\": \"2016-09-16T17:49:09.566242Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ddb77f9cf25c422aa312b7261e0d4ec7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0307\",\r\n \"name\": \"testWS-0307\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:49:13.67932Z\",\r\n \"modifiedOn\": \"2016-09-16T17:49:25.8926515Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d8cb9863fd3545fb9e6984449e1fe389/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0308\",\r\n \"name\": \"testWS-0308\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:49:27.0692695Z\",\r\n \"modifiedOn\": \"2016-09-16T17:49:46.9555417Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/57560277e1ed44e9997dd561b76c8497/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0309\",\r\n \"name\": \"testWS-0309\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:49:50.3339283Z\",\r\n \"modifiedOn\": \"2016-09-16T17:50:03.906442Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2474ccaab2714088b2f4d042bd5b6b05/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0310\",\r\n \"name\": \"testWS-0310\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:50:09.030704Z\",\r\n \"modifiedOn\": \"2016-09-16T17:50:25.2441446Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/de297a8324dc4cf3bace6b56f41b6829/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0311\",\r\n \"name\": \"testWS-0311\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:50:30.8605423Z\",\r\n \"modifiedOn\": \"2016-09-16T17:50:44.3010055Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0ed9143ac5044c72871c3b13719fc052/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0312\",\r\n \"name\": \"testWS-0312\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:50:52.9206137Z\",\r\n \"modifiedOn\": \"2016-09-16T17:51:07.9827015Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f3c953f841284a13b70e64fb92455fae/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0313\",\r\n \"name\": \"testWS-0313\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:51:09.7229722Z\",\r\n \"modifiedOn\": \"2016-09-16T17:51:22.5449033Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9f7a3ace279f408babac5e453820a363/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0314\",\r\n \"name\": \"testWS-0314\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:51:28.2767079Z\",\r\n \"modifiedOn\": \"2016-09-16T17:51:39.7483895Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/926fca4646104b81a25fdb1891aa4359/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0315\",\r\n \"name\": \"testWS-0315\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:51:42.6989694Z\",\r\n \"modifiedOn\": \"2016-09-16T17:51:55.4359244Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/20dbf0d8ca35448b8fd1795af3847704/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0316\",\r\n \"name\": \"testWS-0316\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:51:57.998296Z\",\r\n \"modifiedOn\": \"2016-09-16T17:52:14.6148432Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3191a1acec804b9e96aa90e4517fe941/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0317\",\r\n \"name\": \"testWS-0317\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:52:19.0789491Z\",\r\n \"modifiedOn\": \"2016-09-16T17:52:28.3960796Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/18545d9fdd85402ea06882d55a1ac8ee/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0318\",\r\n \"name\": \"testWS-0318\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:52:35.8409001Z\",\r\n \"modifiedOn\": \"2016-09-16T17:52:49.1899961Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b20dc3dce774425cab7c632026725e29/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0319\",\r\n \"name\": \"testWS-0319\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:52:52.3553681Z\",\r\n \"modifiedOn\": \"2016-09-16T17:53:08.5906033Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cc703697dcd94941b18935f68a9178d4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0320\",\r\n \"name\": \"testWS-0320\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:53:12.7622441Z\",\r\n \"modifiedOn\": \"2016-09-16T17:53:24.7278794Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a0c2619296e446b6a90715e1943efe53/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0321\",\r\n \"name\": \"testWS-0321\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:53:29.9208123Z\",\r\n \"modifiedOn\": \"2016-09-16T17:53:46.4539936Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b4657da9460b47139c2d4d4b12da8770/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0322\",\r\n \"name\": \"testWS-0322\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:53:50.9104896Z\",\r\n \"modifiedOn\": \"2016-09-16T17:54:02.7561208Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b5275db7b644400d8e378d1e8ec29984/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0323\",\r\n \"name\": \"testWS-0323\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:54:03.9136757Z\",\r\n \"modifiedOn\": \"2016-09-16T17:54:22.8753361Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8c7ef887bc7a4fa68c119a106345a2bd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0324\",\r\n \"name\": \"testWS-0324\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:54:28.1414627Z\",\r\n \"modifiedOn\": \"2016-09-16T17:54:39.6512895Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3a394d6b576043b8b009858295966a2e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0325\",\r\n \"name\": \"testWS-0325\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:54:46.140861Z\",\r\n \"modifiedOn\": \"2016-09-16T17:54:56.8590042Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/69fa127137fa4e3fa9da65c90c351722/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0326\",\r\n \"name\": \"testWS-0326\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:55:02.0263801Z\",\r\n \"modifiedOn\": \"2016-09-16T17:55:17.4056773Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c551499e302b4541b379fe08e05a8e54/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0327\",\r\n \"name\": \"testWS-0327\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:55:21.5271489Z\",\r\n \"modifiedOn\": \"2016-09-16T17:55:34.024405Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/296026183360470a84864800ad9ae09d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0328\",\r\n \"name\": \"testWS-0328\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:55:40.1444549Z\",\r\n \"modifiedOn\": \"2016-09-16T17:55:50.2593585Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/653f6e83ff30459b87e01bf1810be183/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0329\",\r\n \"name\": \"testWS-0329\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:55:56.9769355Z\",\r\n \"modifiedOn\": \"2016-09-16T17:56:18.4936627Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a66ecf0c9c7c431199d162a6486289d7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0330\",\r\n \"name\": \"testWS-0330\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:56:24.1500247Z\",\r\n \"modifiedOn\": \"2016-09-16T17:56:32.7992714Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/22fb8e4a3f594d7c84457365789a5d25/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0331\",\r\n \"name\": \"testWS-0331\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:56:33.1572254Z\",\r\n \"modifiedOn\": \"2016-09-16T17:56:46.7917491Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c5753914058f4214b3c8e3da740d863a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0332\",\r\n \"name\": \"testWS-0332\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:56:52.5649095Z\",\r\n \"modifiedOn\": \"2016-09-16T17:57:08.7642692Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0ed273cd7c1c45c0b268fb52941ce974/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0333\",\r\n \"name\": \"testWS-0333\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:57:15.9327204Z\",\r\n \"modifiedOn\": \"2016-09-16T17:57:28.8333227Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/379274958e8649d094f86a9927751f28/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0334\",\r\n \"name\": \"testWS-0334\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:57:34.1699644Z\",\r\n \"modifiedOn\": \"2016-09-16T17:57:52.3153524Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/aa2701f24ace4cf98e0012f48870ad4d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0335\",\r\n \"name\": \"testWS-0335\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:57:56.0674245Z\",\r\n \"modifiedOn\": \"2016-09-16T17:58:17.8637329Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b1401aeb647b49fb98a939ef586a27ae/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0336\",\r\n \"name\": \"testWS-0336\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:58:19.2357796Z\",\r\n \"modifiedOn\": \"2016-09-16T17:58:30.5358004Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/902e9afc78e1447e95b3a1e531f17a59/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0337\",\r\n \"name\": \"testWS-0337\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:58:34.2384439Z\",\r\n \"modifiedOn\": \"2016-09-16T17:58:44.847345Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/744e8b328de34dfc885e58089d3fd66e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0338\",\r\n \"name\": \"testWS-0338\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:58:53.3594254Z\",\r\n \"modifiedOn\": \"2016-09-16T17:59:04.0505226Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6a3c8cd7b4394080b53df4ef820f80cb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0339\",\r\n \"name\": \"testWS-0339\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:59:09.9397204Z\",\r\n \"modifiedOn\": \"2016-09-16T17:59:20.3069814Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fb848af26a6946c992dae8a769cf6f11/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0340\",\r\n \"name\": \"testWS-0340\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:59:24.7327141Z\",\r\n \"modifiedOn\": \"2016-09-16T17:59:34.4183518Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fe9d04139992430c8a179ead402005b2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0341\",\r\n \"name\": \"testWS-0341\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:59:39.1786617Z\",\r\n \"modifiedOn\": \"2016-09-16T17:59:55.3367728Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e81304633f3f4bf89994bd3dadbae348/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0342\",\r\n \"name\": \"testWS-0342\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T17:59:57.6626964Z\",\r\n \"modifiedOn\": \"2016-09-16T18:00:09.5681072Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/15ff001f09d54f888d01e8bbd3908e05/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0343\",\r\n \"name\": \"testWS-0343\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:00:12.5943428Z\",\r\n \"modifiedOn\": \"2016-09-16T18:00:24.3336209Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4ef2f59134ea44d78e14c0368dba2690/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0344\",\r\n \"name\": \"testWS-0344\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:00:28.4358146Z\",\r\n \"modifiedOn\": \"2016-09-16T18:00:49.1171581Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6ffad35bdded4d72892a979c7accf2f5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0345\",\r\n \"name\": \"testWS-0345\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:00:53.6574411Z\",\r\n \"modifiedOn\": \"2016-09-16T18:01:01.8470157Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1dae52f6faf44648bf7e6dece36ddd3f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0346\",\r\n \"name\": \"testWS-0346\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:01:05.5269368Z\",\r\n \"modifiedOn\": \"2016-09-16T18:01:18.2200789Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ba3a481a7a354da9b1fac644abf5ed18/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0347\",\r\n \"name\": \"testWS-0347\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:01:23.8761817Z\",\r\n \"modifiedOn\": \"2016-09-16T18:01:56.1994096Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/71bb7ad133bb4cc98968e6582ca8b642/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0348\",\r\n \"name\": \"testWS-0348\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:02:02.9089625Z\",\r\n \"modifiedOn\": \"2016-09-16T18:02:13.3142277Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fa3c7ad255d047859ed77e5123bdd124/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0349\",\r\n \"name\": \"testWS-0349\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:02:20.3389488Z\",\r\n \"modifiedOn\": \"2016-09-16T18:02:34.3148168Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/30259ff0753a44ab915e3f96766e783c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0350\",\r\n \"name\": \"testWS-0350\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:02:37.5145586Z\",\r\n \"modifiedOn\": \"2016-09-16T18:02:47.0988036Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3750d42ffd7947549ed14e1a7f861934/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0351\",\r\n \"name\": \"testWS-0351\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:02:49.7628055Z\",\r\n \"modifiedOn\": \"2016-09-16T18:03:09.1085048Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/14373f469c354370872218806f667622/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0352\",\r\n \"name\": \"testWS-0352\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:03:11.2594728Z\",\r\n \"modifiedOn\": \"2016-09-16T18:03:25.5437811Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b1f804bfcbfe45b8bf8472e8cb657ea0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0353\",\r\n \"name\": \"testWS-0353\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:03:30.8021197Z\",\r\n \"modifiedOn\": \"2016-09-16T18:03:41.593391Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a90369e96fc24a6a984f9a082a5532fb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0354\",\r\n \"name\": \"testWS-0354\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:03:48.0417192Z\",\r\n \"modifiedOn\": \"2016-09-16T18:03:59.5020785Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/df31259f570b4ae49dd4def0c50b8cd8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0355\",\r\n \"name\": \"testWS-0355\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:04:03.4038823Z\",\r\n \"modifiedOn\": \"2016-09-16T18:04:21.439618Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9d476096ecd14d33abd736d627d8e4aa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0356\",\r\n \"name\": \"testWS-0356\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:04:30.8085781Z\",\r\n \"modifiedOn\": \"2016-09-16T18:04:40.7723184Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c2d4f4a86e164febafe73b01fc44391c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0357\",\r\n \"name\": \"testWS-0357\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:04:47.6142288Z\",\r\n \"modifiedOn\": \"2016-09-16T18:05:02.2080642Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4d574e80f2bf438f9d39495ba8ca0773/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0358\",\r\n \"name\": \"testWS-0358\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:05:06.3324347Z\",\r\n \"modifiedOn\": \"2016-09-16T18:05:18.2370516Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/aff79281e2a94c1fb54716f9b56c79fa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0359\",\r\n \"name\": \"testWS-0359\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:05:22.9843317Z\",\r\n \"modifiedOn\": \"2016-09-16T18:05:38.8568301Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3efaf4baa5ee44249e0652350b7eb777/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0360\",\r\n \"name\": \"testWS-0360\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:05:44.6314331Z\",\r\n \"modifiedOn\": \"2016-09-16T18:05:58.9689726Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2d34fe4a49404be986ffcd2710a14384/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0361\",\r\n \"name\": \"testWS-0361\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:06:01.8578933Z\",\r\n \"modifiedOn\": \"2016-09-16T18:06:13.4848504Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/178376964ba24e4494e680f6681f916b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0362\",\r\n \"name\": \"testWS-0362\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:06:21.8166835Z\",\r\n \"modifiedOn\": \"2016-09-16T18:06:29.2892989Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a9c423306ce64d5786355b3bd00a089c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0363\",\r\n \"name\": \"testWS-0363\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:06:33.9703985Z\",\r\n \"modifiedOn\": \"2016-09-16T18:06:45.3090177Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/410636ce675e45b1a949791cfeaad6fb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0364\",\r\n \"name\": \"testWS-0364\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:06:49.5074009Z\",\r\n \"modifiedOn\": \"2016-09-16T18:07:03.6612462Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a44813a52c8043a68c6244c88ab05ce4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0365\",\r\n \"name\": \"testWS-0365\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:07:08.2106135Z\",\r\n \"modifiedOn\": \"2016-09-16T18:07:20.1163346Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bbe3911d3add4b84aaccc892ede20725/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0366\",\r\n \"name\": \"testWS-0366\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:07:23.4861237Z\",\r\n \"modifiedOn\": \"2016-09-16T18:07:39.0867151Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c1e1ef23d016412e9c4e9d5f516b5382/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0367\",\r\n \"name\": \"testWS-0367\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:07:43.7893336Z\",\r\n \"modifiedOn\": \"2016-09-16T18:07:54.0449512Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/adacd60ce21e42d2a660ad9866497633/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0368\",\r\n \"name\": \"testWS-0368\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:08:02.1571881Z\",\r\n \"modifiedOn\": \"2016-09-16T18:08:10.6311302Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9c1b96562ed349869dcf802c681952fa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0369\",\r\n \"name\": \"testWS-0369\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:08:12.9084575Z\",\r\n \"modifiedOn\": \"2016-09-16T18:08:25.5431408Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9232d37783844552a063414fe2b8eece/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0370\",\r\n \"name\": \"testWS-0370\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:08:32.0200169Z\",\r\n \"modifiedOn\": \"2016-09-16T18:08:41.3183737Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/06de06b64b8748eb8109fdfe53b78c21/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0371\",\r\n \"name\": \"testWS-0371\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:08:47.8503275Z\",\r\n \"modifiedOn\": \"2016-09-16T18:09:00.430354Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/137b5683aa3d4570ad5510919a87fc3d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0372\",\r\n \"name\": \"testWS-0372\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:09:03.2998685Z\",\r\n \"modifiedOn\": \"2016-09-16T18:09:18.6010708Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ecf5ad36c07348b4a09bf7b8c906c82f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0373\",\r\n \"name\": \"testWS-0373\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:09:20.5333711Z\",\r\n \"modifiedOn\": \"2016-09-16T18:09:42.6650058Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/968bb0ce0a714e4f9f3daa836b2b7322/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0374\",\r\n \"name\": \"testWS-0374\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:09:47.2334029Z\",\r\n \"modifiedOn\": \"2016-09-16T18:09:59.6973231Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7969e8c0a0f44fb7a87aed05e8d624d9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0375\",\r\n \"name\": \"testWS-0375\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:10:02.7636194Z\",\r\n \"modifiedOn\": \"2016-09-16T18:10:12.9766051Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6349d3ebb6e64f20ac8e7f44e1b17a07/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0376\",\r\n \"name\": \"testWS-0376\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:10:17.1837649Z\",\r\n \"modifiedOn\": \"2016-09-16T18:10:27.2596096Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6b567eb65a18479d86e2bb9de24c98a0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0377\",\r\n \"name\": \"testWS-0377\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:10:33.0517188Z\",\r\n \"modifiedOn\": \"2016-09-16T18:10:48.5893486Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/aaf2c48e19df4d3fa7e3c4ea1978631d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0378\",\r\n \"name\": \"testWS-0378\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:10:55.490229Z\",\r\n \"modifiedOn\": \"2016-09-16T18:11:14.1546252Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2b4e7b5a6a11462994addb95fdf8a9e2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0379\",\r\n \"name\": \"testWS-0379\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:11:15.9855904Z\",\r\n \"modifiedOn\": \"2016-09-16T18:11:34.9023553Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4239a448617f4dc3bf570caa8ad89c7f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0380\",\r\n \"name\": \"testWS-0380\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:11:41.3890298Z\",\r\n \"modifiedOn\": \"2016-09-16T18:11:52.3950732Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8c1dbf281d9141b0906d2eafdefc6ed0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0381\",\r\n \"name\": \"testWS-0381\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:11:56.0190575Z\",\r\n \"modifiedOn\": \"2016-09-16T18:12:11.4717666Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/245133afe3a343e295ad679e6e90eacd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0382\",\r\n \"name\": \"testWS-0382\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:12:16.0537253Z\",\r\n \"modifiedOn\": \"2016-09-16T18:12:25.7748239Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f07ea9b8f6214f7b9c8bfd8cc11d63ce/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0383\",\r\n \"name\": \"testWS-0383\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:12:33.6093725Z\",\r\n \"modifiedOn\": \"2016-09-16T18:12:43.5786089Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/49d59e0dee8447f3b792d7189af67d22/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0384\",\r\n \"name\": \"testWS-0384\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:12:47.9786994Z\",\r\n \"modifiedOn\": \"2016-09-16T18:13:00.1328002Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b57bbbf783974a879863b8e567f06e8e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0385\",\r\n \"name\": \"testWS-0385\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:13:04.4095481Z\",\r\n \"modifiedOn\": \"2016-09-16T18:13:15.8610445Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/053992177029496ea9c41c5ef4d3c00e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0386\",\r\n \"name\": \"testWS-0386\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:13:21.9537262Z\",\r\n \"modifiedOn\": \"2016-09-16T18:13:31.9808477Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f510b64b41134e7084f8ada0699e325d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0387\",\r\n \"name\": \"testWS-0387\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:13:39.3562178Z\",\r\n \"modifiedOn\": \"2016-09-16T18:13:51.96271Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/edbe845c8e83405085dcddf6909f6564/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0388\",\r\n \"name\": \"testWS-0388\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:13:54.0148369Z\",\r\n \"modifiedOn\": \"2016-09-16T18:14:06.7647371Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9060515cb0ae4b0bb7a7a22b9f92913f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0389\",\r\n \"name\": \"testWS-0389\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:14:13.5310062Z\",\r\n \"modifiedOn\": \"2016-09-16T18:14:30.6662782Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/88cf139f31d2410e98fd1910e2ea058e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0390\",\r\n \"name\": \"testWS-0390\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:14:37.7782656Z\",\r\n \"modifiedOn\": \"2016-09-16T18:14:49.2712338Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1befb5cf6e0c4af1a40a4040912cab5b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0391\",\r\n \"name\": \"testWS-0391\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:14:54.2369421Z\",\r\n \"modifiedOn\": \"2016-09-16T18:15:02.6684266Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6443d556e5674336a6bde0e7f3ca597e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0392\",\r\n \"name\": \"testWS-0392\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:15:07.4531212Z\",\r\n \"modifiedOn\": \"2016-09-16T18:15:20.9707593Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fe087281e5ad412fbaa5aab63031b37d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0393\",\r\n \"name\": \"testWS-0393\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:15:24.2865955Z\",\r\n \"modifiedOn\": \"2016-09-16T18:15:37.1237277Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3fd4b83c0f7b43228a3dfd54d7ca3c2e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0394\",\r\n \"name\": \"testWS-0394\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:15:42.2547016Z\",\r\n \"modifiedOn\": \"2016-09-16T18:15:55.8743062Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/14cf13e6fe314acab8ddc64cc53f3bc3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0395\",\r\n \"name\": \"testWS-0395\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:16:01.9570167Z\",\r\n \"modifiedOn\": \"2016-09-16T18:16:17.3771043Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/562522754c9b448080db1b75b18b97a0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0396\",\r\n \"name\": \"testWS-0396\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:16:24.2831541Z\",\r\n \"modifiedOn\": \"2016-09-16T18:16:35.6058325Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/89c1ce55b02e4c939440e2151437e2d6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0397\",\r\n \"name\": \"testWS-0397\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:16:42.4134206Z\",\r\n \"modifiedOn\": \"2016-09-16T18:17:00.1267727Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/70dfa92031d94b0eb67a97550841f2cf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0398\",\r\n \"name\": \"testWS-0398\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:17:02.9323899Z\",\r\n \"modifiedOn\": \"2016-09-16T18:17:15.2976312Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0d62a24f96b842b8b1360d6019eacc6a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0399\",\r\n \"name\": \"testWS-0399\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:17:19.0720761Z\",\r\n \"modifiedOn\": \"2016-09-16T18:17:41.0584093Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/467ca7fa76854286adc90d610f0a87d7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0400\",\r\n \"name\": \"testWS-0400\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:17:42.3150314Z\",\r\n \"modifiedOn\": \"2016-09-16T18:17:58.3806439Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/83e112c9b6764de8994627f0e24e5001/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0401\",\r\n \"name\": \"testWS-0401\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:18:03.1777946Z\",\r\n \"modifiedOn\": \"2016-09-16T18:18:18.2374229Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ae6449766a7c4ef3bdd0b389a7fbb1cb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0402\",\r\n \"name\": \"testWS-0402\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:18:20.6729108Z\",\r\n \"modifiedOn\": \"2016-09-16T18:18:31.4959466Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c2d7e3fb4b9a42cdb2d56a46571b4bf5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0403\",\r\n \"name\": \"testWS-0403\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:18:37.9331249Z\",\r\n \"modifiedOn\": \"2016-09-16T18:18:48.552064Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4f866effa6fe408ca7c5891e2b8f2947/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0404\",\r\n \"name\": \"testWS-0404\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:18:54.9674255Z\",\r\n \"modifiedOn\": \"2016-09-16T18:19:07.0474248Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3334debd698a472aa332d018c5d498b1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0405\",\r\n \"name\": \"testWS-0405\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:19:11.3644524Z\",\r\n \"modifiedOn\": \"2016-09-16T18:19:24.0859331Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bf916ded8cda4b15a330631d6aa5cb9f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0406\",\r\n \"name\": \"testWS-0406\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:19:29.6923037Z\",\r\n \"modifiedOn\": \"2016-09-16T18:19:48.1953795Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/12025aa7a1a241b3ba94c6c14b907333/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0407\",\r\n \"name\": \"testWS-0407\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:19:53.0089815Z\",\r\n \"modifiedOn\": \"2016-09-16T18:20:11.3881738Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f477088851884abaad73c99816871800/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0408\",\r\n \"name\": \"testWS-0408\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:20:15.5825444Z\",\r\n \"modifiedOn\": \"2016-09-16T18:20:38.7705108Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/892ae3bb09154504aea0c2a4abdef963/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0409\",\r\n \"name\": \"testWS-0409\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:20:45.975789Z\",\r\n \"modifiedOn\": \"2016-09-16T18:20:57.2152702Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/617afa7b69d34ff7bb6bfcfb35eca532/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0410\",\r\n \"name\": \"testWS-0410\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:21:03.9882802Z\",\r\n \"modifiedOn\": \"2016-09-16T18:21:17.4095123Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fcb3d8edfad94a0092daf64b9f4be40a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0411\",\r\n \"name\": \"testWS-0411\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:21:21.1302941Z\",\r\n \"modifiedOn\": \"2016-09-16T18:21:34.1184909Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/31081fd7d3c147388c1625504dc595c0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0412\",\r\n \"name\": \"testWS-0412\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:21:39.3688327Z\",\r\n \"modifiedOn\": \"2016-09-16T18:21:51.3559338Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/215a0bd610cd4569a58261a3de350101/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0413\",\r\n \"name\": \"testWS-0413\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:21:57.9960794Z\",\r\n \"modifiedOn\": \"2016-09-16T18:22:09.8487352Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c76f5b91edca4c42b6de794d873e7601/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0414\",\r\n \"name\": \"testWS-0414\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:22:13.2368119Z\",\r\n \"modifiedOn\": \"2016-09-16T18:22:26.0916883Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c3cb5c1a440f46dea3116e318a163e47/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0415\",\r\n \"name\": \"testWS-0415\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:22:25.4229079Z\",\r\n \"modifiedOn\": \"2016-09-16T18:22:50.4195703Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/79a86f7016ef4f6fb95bee1b0900f13e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0416\",\r\n \"name\": \"testWS-0416\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:22:54.9292192Z\",\r\n \"modifiedOn\": \"2016-09-16T18:23:06.1906339Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0b9a19a3f37e489a974247b0904a80ec/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0417\",\r\n \"name\": \"testWS-0417\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:23:10.3170729Z\",\r\n \"modifiedOn\": \"2016-09-16T18:23:26.593026Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/57d54501e6674879b2730e868d5db4f0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0418\",\r\n \"name\": \"testWS-0418\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:23:30.5877144Z\",\r\n \"modifiedOn\": \"2016-09-16T18:23:42.7844488Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0597e4a602304b58ab906e823e8fb162/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0419\",\r\n \"name\": \"testWS-0419\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:23:50.4707806Z\",\r\n \"modifiedOn\": \"2016-09-16T18:24:00.978618Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e3ec84520bc44b0d9b748a947f62133d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0420\",\r\n \"name\": \"testWS-0420\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:24:07.8980171Z\",\r\n \"modifiedOn\": \"2016-09-16T18:24:15.8023126Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a85b7cf9130941e9935650d14e925b8d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0421\",\r\n \"name\": \"testWS-0421\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:24:22.713201Z\",\r\n \"modifiedOn\": \"2016-09-16T18:24:36.9553585Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/287f864836c74c29aad55e7fe37e412a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0422\",\r\n \"name\": \"testWS-0422\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:24:37.2074442Z\",\r\n \"modifiedOn\": \"2016-09-16T18:24:49.0911911Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f8fadd22cbb7443d91d09ac8f3ed721c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0423\",\r\n \"name\": \"testWS-0423\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:24:52.2412292Z\",\r\n \"modifiedOn\": \"2016-09-16T18:25:01.3451299Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ada6cfbff4ff4c20930bbdecc416b509/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0424\",\r\n \"name\": \"testWS-0424\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:25:07.3134543Z\",\r\n \"modifiedOn\": \"2016-09-16T18:25:20.6315235Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fdc5449c3bd34214a6968aa90302431c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0425\",\r\n \"name\": \"testWS-0425\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:25:23.1105261Z\",\r\n \"modifiedOn\": \"2016-09-16T18:25:32.9224479Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f9c1d4eeca184527a06fa2f3f786e608/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0426\",\r\n \"name\": \"testWS-0426\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:25:36.201992Z\",\r\n \"modifiedOn\": \"2016-09-16T18:25:45.0352504Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e5b94bfb51fe4d7fa620e93cb15ff37d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0427\",\r\n \"name\": \"testWS-0427\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:25:48.7357983Z\",\r\n \"modifiedOn\": \"2016-09-16T18:26:04.4495764Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/be7f2992ccf348d2af4e91410e51a783/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0428\",\r\n \"name\": \"testWS-0428\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:26:12.156176Z\",\r\n \"modifiedOn\": \"2016-09-16T18:26:24.4269076Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d7cae7efce334beeae35ff0214223526/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0429\",\r\n \"name\": \"testWS-0429\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:26:29.3410144Z\",\r\n \"modifiedOn\": \"2016-09-16T18:26:39.7547702Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6c044fae10f0408f8c78f52a57844853/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0430\",\r\n \"name\": \"testWS-0430\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:26:40.5839748Z\",\r\n \"modifiedOn\": \"2016-09-16T18:26:55.7118692Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6d717be1865d4c4cbddcd3a2072cefde/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0431\",\r\n \"name\": \"testWS-0431\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:27:01.4700993Z\",\r\n \"modifiedOn\": \"2016-09-16T18:27:09.3789352Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/553a06218f4e42a5a9b9193f179ebd9a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0432\",\r\n \"name\": \"testWS-0432\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:27:14.8619072Z\",\r\n \"modifiedOn\": \"2016-09-16T18:27:22.8227357Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f5ac3b5351e549368dfc02806dfbbf0d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0433\",\r\n \"name\": \"testWS-0433\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:27:23.9445709Z\",\r\n \"modifiedOn\": \"2016-09-16T18:27:35.5930581Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a96897b6f89942978e830b2c98664d51/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0434\",\r\n \"name\": \"testWS-0434\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:27:36.7118479Z\",\r\n \"modifiedOn\": \"2016-09-16T18:27:48.4383214Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f5a14916541f43a1bbb99ac5f29981fe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0435\",\r\n \"name\": \"testWS-0435\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:27:51.574122Z\",\r\n \"modifiedOn\": \"2016-09-16T18:28:08.7223971Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fd50b2f92a964e07965840d33f84588f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0436\",\r\n \"name\": \"testWS-0436\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:28:15.5199031Z\",\r\n \"modifiedOn\": \"2016-09-16T18:28:22.0252322Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d342f2086f1f46bab1d1157789bd8aff/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0437\",\r\n \"name\": \"testWS-0437\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:28:26.2264119Z\",\r\n \"modifiedOn\": \"2016-09-16T18:28:41.1178826Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/709e48afb00d4309ac2b5dbbc1d90d1b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0438\",\r\n \"name\": \"testWS-0438\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:28:44.0185947Z\",\r\n \"modifiedOn\": \"2016-09-16T18:28:58.0973225Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f65028cd9a8740f1987dfe7c3b2dfdb1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0439\",\r\n \"name\": \"testWS-0439\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:29:02.8187803Z\",\r\n \"modifiedOn\": \"2016-09-16T18:29:16.6077526Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2a356217e57f49dda908fc44757e7610/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0440\",\r\n \"name\": \"testWS-0440\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:29:17.6548913Z\",\r\n \"modifiedOn\": \"2016-09-16T18:29:31.4602783Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6068f8eb931247019ad6277b1d837cb4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0441\",\r\n \"name\": \"testWS-0441\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:29:35.8567673Z\",\r\n \"modifiedOn\": \"2016-09-16T18:29:50.5861409Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3549845e7070427fa8fa9243d9f69a6a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0442\",\r\n \"name\": \"testWS-0442\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:29:56.181992Z\",\r\n \"modifiedOn\": \"2016-09-16T18:30:14.7852667Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e35e7fe75a8c4fd68ef13c55358fbbbb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0443\",\r\n \"name\": \"testWS-0443\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:30:18.5919031Z\",\r\n \"modifiedOn\": \"2016-09-16T18:30:28.7151977Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/44b71eeca1f14be388d34e6018ec23b5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0444\",\r\n \"name\": \"testWS-0444\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:30:36.2149795Z\",\r\n \"modifiedOn\": \"2016-09-16T18:30:51.6020683Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/86b997ebad0244be966e8ad9e0c05696/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0445\",\r\n \"name\": \"testWS-0445\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:30:58.9390389Z\",\r\n \"modifiedOn\": \"2016-09-16T18:31:10.1214416Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8135d3952eda44dab134dcf78d5ae9fb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0446\",\r\n \"name\": \"testWS-0446\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:31:16.2895291Z\",\r\n \"modifiedOn\": \"2016-09-16T18:31:24.8533398Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/30f67c71d5bc41caa13d97f0cd5a8302/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0447\",\r\n \"name\": \"testWS-0447\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:31:26.707206Z\",\r\n \"modifiedOn\": \"2016-09-16T18:31:42.1999579Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a9e5b979bdba4973bdc7240cedecf7ae/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0448\",\r\n \"name\": \"testWS-0448\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:31:44.5525907Z\",\r\n \"modifiedOn\": \"2016-09-16T18:31:57.9694684Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/da4d9c77d5fa4c6f8e776b576c6b94eb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0449\",\r\n \"name\": \"testWS-0449\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:32:05.7545185Z\",\r\n \"modifiedOn\": \"2016-09-16T18:32:22.1774218Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/55a4cf27138c45e2a65a3ea1c7f0aae2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0450\",\r\n \"name\": \"testWS-0450\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:32:26.5617626Z\",\r\n \"modifiedOn\": \"2016-09-16T18:32:44.3808007Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2ecf10a9a09c4fc094cc5367db5dd6db/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0451\",\r\n \"name\": \"testWS-0451\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:32:48.8798791Z\",\r\n \"modifiedOn\": \"2016-09-16T18:33:02.143758Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/05802887390c4621bf3d68ca62bd8814/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0452\",\r\n \"name\": \"testWS-0452\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:33:06.8423885Z\",\r\n \"modifiedOn\": \"2016-09-16T18:33:22.3199221Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/eb0f4557685a4330b36524922df00416/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0453\",\r\n \"name\": \"testWS-0453\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:33:30.7504749Z\",\r\n \"modifiedOn\": \"2016-09-16T18:33:40.2198448Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/46e4697615f2420e9851a981bbaa53f4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0454\",\r\n \"name\": \"testWS-0454\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:33:47.3535477Z\",\r\n \"modifiedOn\": \"2016-09-16T18:34:02.7075123Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/eacbda5f5a9b45f4988cf77248a58500/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0455\",\r\n \"name\": \"testWS-0455\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:34:09.228195Z\",\r\n \"modifiedOn\": \"2016-09-16T18:34:21.801546Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e9c91953034943d5a98145422d4ec2bc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0456\",\r\n \"name\": \"testWS-0456\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:34:28.4673343Z\",\r\n \"modifiedOn\": \"2016-09-16T18:34:39.6741142Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ecee7d01de3042e3ab54661919fc0e5f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0457\",\r\n \"name\": \"testWS-0457\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:34:42.2758335Z\",\r\n \"modifiedOn\": \"2016-09-16T18:34:55.7565354Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d483d634900342b38e4f83eb6d4155f2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0458\",\r\n \"name\": \"testWS-0458\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:35:03.2937401Z\",\r\n \"modifiedOn\": \"2016-09-16T18:35:13.3197505Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/272fced9678d4ac0b3a59e8d2b223980/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0459\",\r\n \"name\": \"testWS-0459\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:35:20.7362093Z\",\r\n \"modifiedOn\": \"2016-09-16T18:35:31.6481522Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bb2e662c04b3453f97643354464dcbbf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0460\",\r\n \"name\": \"testWS-0460\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:35:38.761761Z\",\r\n \"modifiedOn\": \"2016-09-16T18:35:56.7299856Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3843f85913c147a0a53b7bbe9d21fa83/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0461\",\r\n \"name\": \"testWS-0461\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:36:01.313768Z\",\r\n \"modifiedOn\": \"2016-09-16T18:36:17.3768194Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ec6e86e924574983a52315cb5153486f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0462\",\r\n \"name\": \"testWS-0462\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:36:18.4358255Z\",\r\n \"modifiedOn\": \"2016-09-16T18:36:29.0964367Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ea8cd4da8aed46e6be1e5436affc8430/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0463\",\r\n \"name\": \"testWS-0463\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:36:34.7560729Z\",\r\n \"modifiedOn\": \"2016-09-16T18:36:43.8299789Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9062d121148f4a8a8b54cd366d4a1f42/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0464\",\r\n \"name\": \"testWS-0464\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:36:46.9194141Z\",\r\n \"modifiedOn\": \"2016-09-16T18:36:57.070266Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/857acdacebf84c528e54bbb9d80f026d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0465\",\r\n \"name\": \"testWS-0465\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:37:04.5819155Z\",\r\n \"modifiedOn\": \"2016-09-16T18:37:14.6967325Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/19b6cc171ce6489eb00e30461b4cdfcc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0466\",\r\n \"name\": \"testWS-0466\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:37:20.588034Z\",\r\n \"modifiedOn\": \"2016-09-16T18:37:33.5045653Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5c30543990d344ca978fbb6a35bb59bf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0467\",\r\n \"name\": \"testWS-0467\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:37:40.0759119Z\",\r\n \"modifiedOn\": \"2016-09-16T18:37:52.0445879Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bd76a74fc30748ca869a292b5924451e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0468\",\r\n \"name\": \"testWS-0468\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:37:55.7628441Z\",\r\n \"modifiedOn\": \"2016-09-16T18:38:14.344405Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2773e491c7494fc3a5b5763ce9704fba/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0469\",\r\n \"name\": \"testWS-0469\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:38:16.9426805Z\",\r\n \"modifiedOn\": \"2016-09-16T18:38:39.2888882Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/374f4db93e0348c8bec19f3195491e30/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0470\",\r\n \"name\": \"testWS-0470\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:38:40.2345189Z\",\r\n \"modifiedOn\": \"2016-09-16T18:38:54.5915664Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c2e010aa33d94b01a532406379fee1d8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0471\",\r\n \"name\": \"testWS-0471\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:39:01.486642Z\",\r\n \"modifiedOn\": \"2016-09-16T18:39:12.1334752Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/29c5f84f863c481bbdc99626c0b96147/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0472\",\r\n \"name\": \"testWS-0472\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:39:17.9725115Z\",\r\n \"modifiedOn\": \"2016-09-16T18:39:32.5838153Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2cd47704a5534422bd36b024fd029c58/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0473\",\r\n \"name\": \"testWS-0473\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:39:32.5082768Z\",\r\n \"modifiedOn\": \"2016-09-16T18:39:51.5877401Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b034b1cd83694463800f34839939a088/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0474\",\r\n \"name\": \"testWS-0474\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:39:57.9273648Z\",\r\n \"modifiedOn\": \"2016-09-16T18:40:07.9508397Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d886a5c2dac94b20abc65bf92913ca93/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0475\",\r\n \"name\": \"testWS-0475\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:40:16.0335375Z\",\r\n \"modifiedOn\": \"2016-09-16T18:40:29.209134Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2a892a979a374bb880779a035258971a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0476\",\r\n \"name\": \"testWS-0476\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:40:32.9241965Z\",\r\n \"modifiedOn\": \"2016-09-16T18:40:44.6591306Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f68a0446ce5d48d081e72d0dbb059a06/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0477\",\r\n \"name\": \"testWS-0477\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:40:48.1371893Z\",\r\n \"modifiedOn\": \"2016-09-16T18:41:02.6116957Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/dfc0b2e028c94f7dba331120668a79c8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0478\",\r\n \"name\": \"testWS-0478\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:41:08.7455851Z\",\r\n \"modifiedOn\": \"2016-09-16T18:41:21.3367613Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/82b9e0079d964cba84e62132df4ca705/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0479\",\r\n \"name\": \"testWS-0479\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:41:26.1456457Z\",\r\n \"modifiedOn\": \"2016-09-16T18:41:36.8966833Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cc7fc7ae01a2416e8610db0461985117/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0480\",\r\n \"name\": \"testWS-0480\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:41:44.5294479Z\",\r\n \"modifiedOn\": \"2016-09-16T18:41:53.2813913Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/91b9e3eb94ba462590e6c7d9933cb158/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0481\",\r\n \"name\": \"testWS-0481\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:42:01.3493934Z\",\r\n \"modifiedOn\": \"2016-09-16T18:42:15.6388925Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1ac9b28211c9449dab0375052138c7ad/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0482\",\r\n \"name\": \"testWS-0482\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:42:23.2017941Z\",\r\n \"modifiedOn\": \"2016-09-16T18:42:31.8148379Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e29c255eaf6a4095a2e0e2d99c6d051a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0483\",\r\n \"name\": \"testWS-0483\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:42:34.6926217Z\",\r\n \"modifiedOn\": \"2016-09-16T18:42:44.3370778Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/42ce4dcb1b0d4dada76171fc21ffcae0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0484\",\r\n \"name\": \"testWS-0484\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:42:45.4725237Z\",\r\n \"modifiedOn\": \"2016-09-16T18:43:02.1100643Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7ec5c9518df140c5bae1b9522701091f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0485\",\r\n \"name\": \"testWS-0485\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:43:03.449538Z\",\r\n \"modifiedOn\": \"2016-09-16T18:43:19.3841675Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7c5a3d1a2f004cac82196a069cb6b2ef/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0486\",\r\n \"name\": \"testWS-0486\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:43:23.9252397Z\",\r\n \"modifiedOn\": \"2016-09-16T18:43:34.3453787Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5181ff3597d34cbd8a25e92ff3115cc9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0487\",\r\n \"name\": \"testWS-0487\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:43:37.3241659Z\",\r\n \"modifiedOn\": \"2016-09-16T18:43:47.4838021Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8943dd9eb55a4ff7af6063b806fdc579/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0488\",\r\n \"name\": \"testWS-0488\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:43:55.144462Z\",\r\n \"modifiedOn\": \"2016-09-16T18:44:07.060454Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/33f807ca6a12483d85098a4b96f58870/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0489\",\r\n \"name\": \"testWS-0489\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:44:12.1425082Z\",\r\n \"modifiedOn\": \"2016-09-16T18:44:29.2587324Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/05115b9782b94d7c8f3841b773484a77/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0490\",\r\n \"name\": \"testWS-0490\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:44:30.7612474Z\",\r\n \"modifiedOn\": \"2016-09-16T18:44:47.0312612Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d5adeded748f4b3f84ea570d9e1021ba/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0491\",\r\n \"name\": \"testWS-0491\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:44:51.4401081Z\",\r\n \"modifiedOn\": \"2016-09-16T18:45:02.132006Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3aee0e0a501741d686c80c6410c63d11/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0492\",\r\n \"name\": \"testWS-0492\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:45:11.2091553Z\",\r\n \"modifiedOn\": \"2016-09-16T18:45:28.0201538Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a582f0a351594da0a169f2ac277756c3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0493\",\r\n \"name\": \"testWS-0493\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:45:30.043826Z\",\r\n \"modifiedOn\": \"2016-09-16T18:45:44.0008728Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a11337f2b9a7461d8abbe1a899492074/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0494\",\r\n \"name\": \"testWS-0494\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:45:49.542032Z\",\r\n \"modifiedOn\": \"2016-09-16T18:46:03.8474538Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/20ab6fc4bfd34208a96d11a6ebf07de7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0495\",\r\n \"name\": \"testWS-0495\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:46:06.5009637Z\",\r\n \"modifiedOn\": \"2016-09-16T18:46:18.237812Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4a29165c30a546e4b6f80ecff6bac3f2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0496\",\r\n \"name\": \"testWS-0496\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:46:23.3119763Z\",\r\n \"modifiedOn\": \"2016-09-16T18:46:32.1328804Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/85d77a94faf8477796445a82052d81c4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0497\",\r\n \"name\": \"testWS-0497\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:46:41.5375161Z\",\r\n \"modifiedOn\": \"2016-09-16T18:46:52.563932Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cffb7441e2344bfc93da5e06eb5a4e0d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0498\",\r\n \"name\": \"testWS-0498\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:46:55.6525216Z\",\r\n \"modifiedOn\": \"2016-09-16T18:47:08.4548255Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7d863f5309274db5b27d2347d3324f1b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0499\",\r\n \"name\": \"testWS-0499\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:47:16.0313815Z\",\r\n \"modifiedOn\": \"2016-09-16T18:47:29.0579908Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a8585c349cc34447910e92dd0ced8a0e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0500\",\r\n \"name\": \"testWS-0500\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:47:31.4317225Z\",\r\n \"modifiedOn\": \"2016-09-16T18:47:42.2089936Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a1c81168a2c4422399875d685240674e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0501\",\r\n \"name\": \"testWS-0501\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:47:46.9628583Z\",\r\n \"modifiedOn\": \"2016-09-16T18:47:59.3623135Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/597f158dfc464eb198adb86aa43c5dde/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0502\",\r\n \"name\": \"testWS-0502\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:48:02.0832737Z\",\r\n \"modifiedOn\": \"2016-09-16T18:48:19.6321833Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/16d4ee07dd924a84a59e4b018c5e1243/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0503\",\r\n \"name\": \"testWS-0503\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:48:24.3255674Z\",\r\n \"modifiedOn\": \"2016-09-16T18:48:34.8207976Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4ca094215bbb4236af005f63617b9afb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0504\",\r\n \"name\": \"testWS-0504\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:48:38.6495672Z\",\r\n \"modifiedOn\": \"2016-09-16T18:48:54.0128199Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/df0c6c8fecec4a758d2b3e51d1e4e64b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0505\",\r\n \"name\": \"testWS-0505\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:48:56.1047242Z\",\r\n \"modifiedOn\": \"2016-09-16T18:49:15.4465769Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/055218f9c0f344b688d451d548857857/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0506\",\r\n \"name\": \"testWS-0506\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:49:18.5280314Z\",\r\n \"modifiedOn\": \"2016-09-16T18:49:31.2206979Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b2d6d62676d5439aac171df29b983bb5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0507\",\r\n \"name\": \"testWS-0507\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:49:35.8930561Z\",\r\n \"modifiedOn\": \"2016-09-16T18:49:53.843259Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9531eb50cfb643c6a72aadd83a92a070/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0508\",\r\n \"name\": \"testWS-0508\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:49:58.1079643Z\",\r\n \"modifiedOn\": \"2016-09-16T18:50:14.4757122Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3a2bfa095e544398ae69a0dc17fcf628/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0509\",\r\n \"name\": \"testWS-0509\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:50:19.4183964Z\",\r\n \"modifiedOn\": \"2016-09-16T18:50:27.7402022Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4931a70e74ea4113972fdc03eb710f0b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0510\",\r\n \"name\": \"testWS-0510\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:50:31.7136007Z\",\r\n \"modifiedOn\": \"2016-09-16T18:50:50.5135907Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/186b35da38f24a9f977e16821ee12fcd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0511\",\r\n \"name\": \"testWS-0511\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:50:55.27704Z\",\r\n \"modifiedOn\": \"2016-09-16T18:51:10.1818621Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ba70e951ca064a7cbffe5a6c08ce0922/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0512\",\r\n \"name\": \"testWS-0512\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:51:15.8160445Z\",\r\n \"modifiedOn\": \"2016-09-16T18:51:26.1959964Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cbf26ea18a2f428c883f243ed68c60a8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0513\",\r\n \"name\": \"testWS-0513\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:51:34.4119819Z\",\r\n \"modifiedOn\": \"2016-09-16T18:51:44.6961822Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f9d6f20f28c44eefa0ecbaeef7ef8eb9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0514\",\r\n \"name\": \"testWS-0514\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:52:03.1773633Z\",\r\n \"modifiedOn\": \"2016-09-16T18:52:14.3864506Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/77af5f49e94e423c8dc3b5bd50009bd0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0515\",\r\n \"name\": \"testWS-0515\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:52:21.4444543Z\",\r\n \"modifiedOn\": \"2016-09-16T18:52:32.7533285Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f5b34550864a4d6f859651de309ac0b0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0516\",\r\n \"name\": \"testWS-0516\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:52:37.9436109Z\",\r\n \"modifiedOn\": \"2016-09-16T18:52:47.3142365Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/868bb53cd47b4939a2769b96d980a609/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0517\",\r\n \"name\": \"testWS-0517\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:52:52.5237917Z\",\r\n \"modifiedOn\": \"2016-09-16T18:53:03.0515019Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/802ceb9219c24a3b8cb8ebb7a1986f40/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0518\",\r\n \"name\": \"testWS-0518\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:53:12.1779225Z\",\r\n \"modifiedOn\": \"2016-09-16T18:53:24.7477986Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5f7ccde72b4f433799be33b6f7f054c8/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0519\",\r\n \"name\": \"testWS-0519\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:53:28.3267466Z\",\r\n \"modifiedOn\": \"2016-09-16T18:53:38.2081706Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b2ffd11facbf449ab7421826e509f217/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0520\",\r\n \"name\": \"testWS-0520\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:53:38.6234628Z\",\r\n \"modifiedOn\": \"2016-09-16T18:54:00.3022841Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6df71cba85cb41eb9d980b88277ca083/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0521\",\r\n \"name\": \"testWS-0521\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:54:03.9818615Z\",\r\n \"modifiedOn\": \"2016-09-16T18:54:18.8298269Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/66884fb2542d4da1811e2ca63362974b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0522\",\r\n \"name\": \"testWS-0522\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:54:28.0708169Z\",\r\n \"modifiedOn\": \"2016-09-16T18:54:43.9161Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/670c090184f34365a49435a048f46f0a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0523\",\r\n \"name\": \"testWS-0523\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:54:46.8825457Z\",\r\n \"modifiedOn\": \"2016-09-16T18:55:03.2932646Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ace19a0c34c0490889ca8bfa1e6f2c4f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0524\",\r\n \"name\": \"testWS-0524\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:55:04.9680719Z\",\r\n \"modifiedOn\": \"2016-09-16T18:55:16.4907364Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f0d8c93e7eaa49599ab5e029a309f0a4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0525\",\r\n \"name\": \"testWS-0525\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:55:20.6911297Z\",\r\n \"modifiedOn\": \"2016-09-16T18:55:33.640174Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/862972a9fe2e4f3f8ba5923e971ab158/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0526\",\r\n \"name\": \"testWS-0526\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:55:38.1129807Z\",\r\n \"modifiedOn\": \"2016-09-16T18:55:56.3483568Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f21ede3e374d446ab839ea0a6bc4e3c1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0527\",\r\n \"name\": \"testWS-0527\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:55:59.4279061Z\",\r\n \"modifiedOn\": \"2016-09-16T18:56:11.4303773Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4efe4e3ca397488394b7a71006b7c229/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0528\",\r\n \"name\": \"testWS-0528\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:56:18.9153009Z\",\r\n \"modifiedOn\": \"2016-09-16T18:56:35.8578466Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f0132eac7d754f6bb83fc34d61e0ad2d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0529\",\r\n \"name\": \"testWS-0529\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:56:42.4525377Z\",\r\n \"modifiedOn\": \"2016-09-16T18:56:52.8053847Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0a53f8f782a04b479a138051c3275f28/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0530\",\r\n \"name\": \"testWS-0530\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:56:59.937493Z\",\r\n \"modifiedOn\": \"2016-09-16T18:57:12.4435565Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9a9325fbf0bd4c5a87e241963a902915/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0531\",\r\n \"name\": \"testWS-0531\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:57:18.1778595Z\",\r\n \"modifiedOn\": \"2016-09-16T18:57:27.4186087Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c1ffad15f4ee4e648fc76fa29280037c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0532\",\r\n \"name\": \"testWS-0532\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:57:35.5316204Z\",\r\n \"modifiedOn\": \"2016-09-16T18:57:49.6961082Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/61f67f3735134988a8566e4f4f86299e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0533\",\r\n \"name\": \"testWS-0533\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:57:51.8505928Z\",\r\n \"modifiedOn\": \"2016-09-16T18:58:09.6678213Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8cd30846d2e445d184a7b26d39fdc96d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0534\",\r\n \"name\": \"testWS-0534\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:58:11.9830544Z\",\r\n \"modifiedOn\": \"2016-09-16T18:58:26.0666652Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9cd7ac5bc52e468d9d55651eddc2409f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0535\",\r\n \"name\": \"testWS-0535\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:58:32.0416535Z\",\r\n \"modifiedOn\": \"2016-09-16T18:58:42.269102Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f332d7429c1b46b7a1199a6973d619cf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0536\",\r\n \"name\": \"testWS-0536\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:58:46.0666016Z\",\r\n \"modifiedOn\": \"2016-09-16T18:58:57.1079202Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/89cac2ddcab64d6891845bd0efebf571/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0537\",\r\n \"name\": \"testWS-0537\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:59:00.0746579Z\",\r\n \"modifiedOn\": \"2016-09-16T18:59:10.4362037Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1717023273ee4835a55b3f6d80fcd6e1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0538\",\r\n \"name\": \"testWS-0538\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:59:18.2948825Z\",\r\n \"modifiedOn\": \"2016-09-16T18:59:30.1376162Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cdbfc7d5e72a47c08b50ac406eaabd6a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0539\",\r\n \"name\": \"testWS-0539\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:59:37.504063Z\",\r\n \"modifiedOn\": \"2016-09-16T18:59:51.6694291Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b1158d02e3da423caaa06944dcf2045e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0540\",\r\n \"name\": \"testWS-0540\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T18:59:56.5241125Z\",\r\n \"modifiedOn\": \"2016-09-16T19:00:06.9306748Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0c154b2f64734be59ddf0479e3aadab5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0541\",\r\n \"name\": \"testWS-0541\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:00:10.7617182Z\",\r\n \"modifiedOn\": \"2016-09-16T19:00:23.8543088Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fb8c644219894bfa9299895b60c3321a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0542\",\r\n \"name\": \"testWS-0542\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:00:30.2085101Z\",\r\n \"modifiedOn\": \"2016-09-16T19:00:41.1394837Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5893b9128a134d9789861ac7bd2e99f1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0543\",\r\n \"name\": \"testWS-0543\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:00:48.9945615Z\",\r\n \"modifiedOn\": \"2016-09-16T19:00:58.1750351Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/df1c05edc3d1450caaf3a62f3ceb5a92/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0544\",\r\n \"name\": \"testWS-0544\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:01:06.0649036Z\",\r\n \"modifiedOn\": \"2016-09-16T19:01:15.1411855Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f322c30d074b4d13b88b0669d9d30242/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0545\",\r\n \"name\": \"testWS-0545\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:01:19.8074325Z\",\r\n \"modifiedOn\": \"2016-09-16T19:01:36.1274233Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/df9514de406c467581593ff06b18f114/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0546\",\r\n \"name\": \"testWS-0546\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:01:40.5659654Z\",\r\n \"modifiedOn\": \"2016-09-16T19:01:55.2075666Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/527670a1561c46658a6ae8390b1b4e74/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0547\",\r\n \"name\": \"testWS-0547\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:01:58.5152613Z\",\r\n \"modifiedOn\": \"2016-09-16T19:02:12.6578952Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bd6b47c7cd514312af2a6ac857e6b5f2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0548\",\r\n \"name\": \"testWS-0548\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:02:19.4527832Z\",\r\n \"modifiedOn\": \"2016-09-16T19:02:33.3214337Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2c88d9cb54644d9a9efab51c0f5c32ed/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0549\",\r\n \"name\": \"testWS-0549\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:02:41.3441228Z\",\r\n \"modifiedOn\": \"2016-09-16T19:02:53.9413458Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/56881ab1d7774438b6a357a8f8d00840/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0550\",\r\n \"name\": \"testWS-0550\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:02:59.6494127Z\",\r\n \"modifiedOn\": \"2016-09-16T19:03:18.0511158Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5886e725538847db81474238168535cf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0551\",\r\n \"name\": \"testWS-0551\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:03:21.3361154Z\",\r\n \"modifiedOn\": \"2016-09-16T19:03:31.5009499Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/92d5d7c308bc43b999fd508a7b1d499d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0552\",\r\n \"name\": \"testWS-0552\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:03:38.5001935Z\",\r\n \"modifiedOn\": \"2016-09-16T19:03:55.8780689Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a9c1fd2158b34b65834e7f8565b72037/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0553\",\r\n \"name\": \"testWS-0553\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:03:59.0646727Z\",\r\n \"modifiedOn\": \"2016-09-16T19:04:13.655223Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/db29a19c311d435dabaa1429b5608314/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0554\",\r\n \"name\": \"testWS-0554\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:04:19.5149044Z\",\r\n \"modifiedOn\": \"2016-09-16T19:04:31.2740627Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/358e2126b0a04bcc918330bee73e8c60/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0555\",\r\n \"name\": \"testWS-0555\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:04:37.1377941Z\",\r\n \"modifiedOn\": \"2016-09-16T19:04:52.0293755Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d5a76566210548a88ac5852f0791e504/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0556\",\r\n \"name\": \"testWS-0556\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:04:59.5632028Z\",\r\n \"modifiedOn\": \"2016-09-16T19:05:11.4875719Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a1cea76770b6433690a1357aac798a5e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0557\",\r\n \"name\": \"testWS-0557\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:05:17.3769245Z\",\r\n \"modifiedOn\": \"2016-09-16T19:05:27.1678745Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bbfbb2bb84724ed19eeb31b3111db0e5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0558\",\r\n \"name\": \"testWS-0558\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:05:31.1009768Z\",\r\n \"modifiedOn\": \"2016-09-16T19:05:46.9853455Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/184257aaebba4465bb98c6e5eaff62a6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0559\",\r\n \"name\": \"testWS-0559\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:05:53.5628616Z\",\r\n \"modifiedOn\": \"2016-09-16T19:06:09.2652156Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1d8db74c96844dceb8a9da723f01b478/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0560\",\r\n \"name\": \"testWS-0560\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:06:13.4459247Z\",\r\n \"modifiedOn\": \"2016-09-16T19:06:25.4462282Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b227c24bef3240d2ae2dddea9fd73217/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0561\",\r\n \"name\": \"testWS-0561\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:06:34.6687561Z\",\r\n \"modifiedOn\": \"2016-09-16T19:06:42.6497549Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e740ef2cf5d040378a23ccfd8b5f5f88/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0562\",\r\n \"name\": \"testWS-0562\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:06:43.2087528Z\",\r\n \"modifiedOn\": \"2016-09-16T19:06:57.3889606Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c03cbe17711241d694dfcd99c5f5e523/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0563\",\r\n \"name\": \"testWS-0563\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:07:03.3295427Z\",\r\n \"modifiedOn\": \"2016-09-16T19:07:20.1544525Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cc1d2860222f4ab0b02034625284c315/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0564\",\r\n \"name\": \"testWS-0564\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:07:27.0957457Z\",\r\n \"modifiedOn\": \"2016-09-16T19:07:37.0435148Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ebb8a1581b68400fbc12012b7926c1fe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0565\",\r\n \"name\": \"testWS-0565\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:07:40.9319197Z\",\r\n \"modifiedOn\": \"2016-09-16T19:07:57.2777813Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/893941aa3fa5460796b05fcea58a6d0b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0566\",\r\n \"name\": \"testWS-0566\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:08:02.0313386Z\",\r\n \"modifiedOn\": \"2016-09-16T19:08:14.6604957Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/230869b453794855b8ace78c05e850fa/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0567\",\r\n \"name\": \"testWS-0567\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:08:17.9904407Z\",\r\n \"modifiedOn\": \"2016-09-16T19:08:32.1246261Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/58520132d6934dee88ad17755a2a2547/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0568\",\r\n \"name\": \"testWS-0568\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:08:36.410882Z\",\r\n \"modifiedOn\": \"2016-09-16T19:08:48.5100342Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ef824cd51dcc47ab8130c1df0162bdf6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0569\",\r\n \"name\": \"testWS-0569\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:08:54.0413493Z\",\r\n \"modifiedOn\": \"2016-09-16T19:09:03.922398Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/94494fcddb8c4a688bd2f226c0782a02/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0570\",\r\n \"name\": \"testWS-0570\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:09:11.443616Z\",\r\n \"modifiedOn\": \"2016-09-16T19:09:22.0440551Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/abf327ba659d45978022335aba1de9c2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0571\",\r\n \"name\": \"testWS-0571\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:09:30.3510519Z\",\r\n \"modifiedOn\": \"2016-09-16T19:09:43.1098776Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6970a296cbe7434b9f0d5682c31c6821/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0572\",\r\n \"name\": \"testWS-0572\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:09:46.7933493Z\",\r\n \"modifiedOn\": \"2016-09-16T19:10:00.1114832Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/76201b8dc224466797b5506b260363f1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0573\",\r\n \"name\": \"testWS-0573\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:10:02.1664654Z\",\r\n \"modifiedOn\": \"2016-09-16T19:10:21.380976Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/25d3f49a0c784c808481e80c1ceb333d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0574\",\r\n \"name\": \"testWS-0574\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:10:24.7602917Z\",\r\n \"modifiedOn\": \"2016-09-16T19:10:38.3587237Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1b9a6b0a6d564d5f81afb5c68dd69d30/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0575\",\r\n \"name\": \"testWS-0575\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:10:42.4734863Z\",\r\n \"modifiedOn\": \"2016-09-16T19:11:00.8288637Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a4272537e095489698cc833a3c75dc96/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0576\",\r\n \"name\": \"testWS-0576\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:11:05.4586537Z\",\r\n \"modifiedOn\": \"2016-09-16T19:11:16.4491663Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c84ad9465601480db7cb145c55aed623/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0577\",\r\n \"name\": \"testWS-0577\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:11:17.3260391Z\",\r\n \"modifiedOn\": \"2016-09-16T19:11:34.1964195Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/350fef5638094622948be4d14114ed37/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0578\",\r\n \"name\": \"testWS-0578\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:11:35.028193Z\",\r\n \"modifiedOn\": \"2016-09-16T19:11:47.9168562Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f1bc2e2d965e4ec4af085b6f2cf9f440/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0579\",\r\n \"name\": \"testWS-0579\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:11:56.1569727Z\",\r\n \"modifiedOn\": \"2016-09-16T19:12:04.4722421Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d112337658524c1fb24bf9e975e3720f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0580\",\r\n \"name\": \"testWS-0580\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:12:13.2696757Z\",\r\n \"modifiedOn\": \"2016-09-16T19:12:22.6318726Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/20b2334f1ab5462dbc785b0bf9e32da4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0581\",\r\n \"name\": \"testWS-0581\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:12:26.6042367Z\",\r\n \"modifiedOn\": \"2016-09-16T19:12:49.0661863Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e9959abdffa349a787b846c6a22b880a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0582\",\r\n \"name\": \"testWS-0582\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:12:53.2054482Z\",\r\n \"modifiedOn\": \"2016-09-16T19:13:12.8381611Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9f462c5ae8d64a02a5bee6e6e15c791b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0583\",\r\n \"name\": \"testWS-0583\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:13:20.2803653Z\",\r\n \"modifiedOn\": \"2016-09-16T19:13:34.0203382Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4a6fef5c515f4d91b4a252351068a61e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0584\",\r\n \"name\": \"testWS-0584\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:13:39.1088486Z\",\r\n \"modifiedOn\": \"2016-09-16T19:13:47.5275707Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e07ffce15daa4aa38391ceab922a564e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0585\",\r\n \"name\": \"testWS-0585\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:13:47.7067661Z\",\r\n \"modifiedOn\": \"2016-09-16T19:14:07.3464426Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4e335575ad33458d94d49103dc8ff112/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0586\",\r\n \"name\": \"testWS-0586\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:14:13.4638043Z\",\r\n \"modifiedOn\": \"2016-09-16T19:14:24.1956852Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/edcf74f68f69432a9012713654c3b863/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0587\",\r\n \"name\": \"testWS-0587\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:14:26.8643592Z\",\r\n \"modifiedOn\": \"2016-09-16T19:14:38.1967831Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a43ad066facf401ab4b1835cf886dd25/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0588\",\r\n \"name\": \"testWS-0588\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:14:41.637329Z\",\r\n \"modifiedOn\": \"2016-09-16T19:14:55.4168763Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ca1b31ae7d67418fa1f64794d5482df3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0589\",\r\n \"name\": \"testWS-0589\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:14:56.6561546Z\",\r\n \"modifiedOn\": \"2016-09-16T19:15:15.9238759Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/52f4c6350ddc47e3aff60c99c9b903bb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0590\",\r\n \"name\": \"testWS-0590\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:15:19.7248027Z\",\r\n \"modifiedOn\": \"2016-09-16T19:15:35.0899237Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/65298c90dfac4bb9bd5ad2c7887b1473/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0591\",\r\n \"name\": \"testWS-0591\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:15:39.990306Z\",\r\n \"modifiedOn\": \"2016-09-16T19:15:50.8870969Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ddf946ec52a54419a84dfaae1b01228e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0592\",\r\n \"name\": \"testWS-0592\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:15:57.489511Z\",\r\n \"modifiedOn\": \"2016-09-16T19:16:11.02543Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ccb906840f4c4401b3ea0739d2172320/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0593\",\r\n \"name\": \"testWS-0593\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:16:14.371921Z\",\r\n \"modifiedOn\": \"2016-09-16T19:16:27.914681Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e567e7ee8acd4e8b87c020be7ea4660f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0594\",\r\n \"name\": \"testWS-0594\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:16:33.853886Z\",\r\n \"modifiedOn\": \"2016-09-16T19:16:48.8491865Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e4221b90f5e642c2979a6247aad10712/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0595\",\r\n \"name\": \"testWS-0595\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:16:55.1731512Z\",\r\n \"modifiedOn\": \"2016-09-16T19:17:09.8694112Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/15ba1edd93c841268c8d974ea5fdf47d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0596\",\r\n \"name\": \"testWS-0596\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:17:13.2332037Z\",\r\n \"modifiedOn\": \"2016-09-16T19:17:25.8323186Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7bae949a7cc54f6fbd3a96158ea03904/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0597\",\r\n \"name\": \"testWS-0597\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:17:31.7538834Z\",\r\n \"modifiedOn\": \"2016-09-16T19:17:43.342934Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ca092d96a6ea4a8f928f18e9a9642b45/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0598\",\r\n \"name\": \"testWS-0598\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:17:50.0190059Z\",\r\n \"modifiedOn\": \"2016-09-16T19:18:07.5007877Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/17fe19d611c54b5b99cc46a0d30409e9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0599\",\r\n \"name\": \"testWS-0599\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:18:09.666959Z\",\r\n \"modifiedOn\": \"2016-09-16T19:18:22.2859803Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6e9f444a15d2447ab82a487ae1d327d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0600\",\r\n \"name\": \"testWS-0600\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:18:30.8324489Z\",\r\n \"modifiedOn\": \"2016-09-16T19:18:50.4257357Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2900950efabb4073b737672fbf172d99/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0601\",\r\n \"name\": \"testWS-0601\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:18:53.3956921Z\",\r\n \"modifiedOn\": \"2016-09-16T19:19:06.7355596Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ad76e24a2cf54acca4a7128ff2e77a35/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0602\",\r\n \"name\": \"testWS-0602\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:19:13.0353783Z\",\r\n \"modifiedOn\": \"2016-09-16T19:19:26.354631Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e3d8db1fbdeb44578d120f76236d7e1f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0603\",\r\n \"name\": \"testWS-0603\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:19:26.9113231Z\",\r\n \"modifiedOn\": \"2016-09-16T19:19:40.5923882Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0fdab12329d24e25ab282c31cc33af19/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0604\",\r\n \"name\": \"testWS-0604\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:19:46.8886653Z\",\r\n \"modifiedOn\": \"2016-09-16T19:19:59.0142709Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2bcc5d5f743e48ca9c9b796cbbf95530/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0605\",\r\n \"name\": \"testWS-0605\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:20:04.7595066Z\",\r\n \"modifiedOn\": \"2016-09-16T19:20:13.1849369Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/29e03b7782214ee2b0ff541e8f11c206/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0606\",\r\n \"name\": \"testWS-0606\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:20:16.3293954Z\",\r\n \"modifiedOn\": \"2016-09-16T19:20:29.8830197Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/81311538a56d40b6ae230e8e315609c3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0607\",\r\n \"name\": \"testWS-0607\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:20:34.5292483Z\",\r\n \"modifiedOn\": \"2016-09-16T19:20:54.8581462Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3baf879ee4934f6587a9bf7c4008a228/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0608\",\r\n \"name\": \"testWS-0608\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:20:57.2138551Z\",\r\n \"modifiedOn\": \"2016-09-16T19:21:12.4830921Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/32dce0991d754c6c996a19766cadd710/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0609\",\r\n \"name\": \"testWS-0609\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:21:15.7426397Z\",\r\n \"modifiedOn\": \"2016-09-16T19:21:30.6975961Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9de209d135f74ec59c80f0f323451674/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0610\",\r\n \"name\": \"testWS-0610\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:21:34.9818573Z\",\r\n \"modifiedOn\": \"2016-09-16T19:21:54.3631048Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ca205e0923c4409a9fe5f205e2c3c352/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0611\",\r\n \"name\": \"testWS-0611\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:22:10.4157558Z\",\r\n \"modifiedOn\": \"2016-09-16T19:22:19.3832445Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/971b6109968c43a0ad1a92be6091d222/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0612\",\r\n \"name\": \"testWS-0612\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:22:27.2550708Z\",\r\n \"modifiedOn\": \"2016-09-16T19:22:40.5495029Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e0a59ba09488447da06b6ca5ed56028d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0613\",\r\n \"name\": \"testWS-0613\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:22:45.7785488Z\",\r\n \"modifiedOn\": \"2016-09-16T19:22:55.4684535Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7633861ae73f4e4fa54619d29b19029c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0614\",\r\n \"name\": \"testWS-0614\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:23:00.2946976Z\",\r\n \"modifiedOn\": \"2016-09-16T19:23:11.4088317Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/84ff66072d524c5bae0da03e9cb04d47/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0615\",\r\n \"name\": \"testWS-0615\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:23:12.3976426Z\",\r\n \"modifiedOn\": \"2016-09-16T19:23:28.0257672Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/df55d7524d2e4f5597954fdf31d392f3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0616\",\r\n \"name\": \"testWS-0616\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:23:32.5341953Z\",\r\n \"modifiedOn\": \"2016-09-16T19:23:45.9462318Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fe5e2079171b4106bb7943fd0559f8d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0617\",\r\n \"name\": \"testWS-0617\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:23:51.2324024Z\",\r\n \"modifiedOn\": \"2016-09-16T19:24:02.6037734Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/af1028237bc547faae20817c9cb18697/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0618\",\r\n \"name\": \"testWS-0618\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:24:08.1468076Z\",\r\n \"modifiedOn\": \"2016-09-16T19:24:17.5900071Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/08204567467d4a9986757cde30435d19/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0619\",\r\n \"name\": \"testWS-0619\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:24:18.2090691Z\",\r\n \"modifiedOn\": \"2016-09-16T19:24:30.9472932Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8143f199316e44bca68dcd6447820669/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0620\",\r\n \"name\": \"testWS-0620\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:24:34.2894192Z\",\r\n \"modifiedOn\": \"2016-09-16T19:24:46.1249714Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5126e91081904cd5a6042b2df895d9a0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0621\",\r\n \"name\": \"testWS-0621\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:24:48.2335392Z\",\r\n \"modifiedOn\": \"2016-09-16T19:25:06.2257877Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/88bc5b1d20d5493084e8c8ce3827fc1c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0622\",\r\n \"name\": \"testWS-0622\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:25:14.4469989Z\",\r\n \"modifiedOn\": \"2016-09-16T19:25:26.5138689Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0e8188354b8d4288affca803413f2188/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0623\",\r\n \"name\": \"testWS-0623\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:25:33.139507Z\",\r\n \"modifiedOn\": \"2016-09-16T19:25:46.4135417Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e71a163aae764167890e3b3a2df24df0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0624\",\r\n \"name\": \"testWS-0624\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:25:48.459165Z\",\r\n \"modifiedOn\": \"2016-09-16T19:26:09.3929475Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4b413093a54148a891a70943e751499a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0625\",\r\n \"name\": \"testWS-0625\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:26:15.3100241Z\",\r\n \"modifiedOn\": \"2016-09-16T19:26:32.6978023Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/91aaff81b9e14dec82580a2d5322b5ac/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0626\",\r\n \"name\": \"testWS-0626\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:26:35.49125Z\",\r\n \"modifiedOn\": \"2016-09-16T19:26:48.4355207Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f2098d91ce7e4960b58820ac519defb0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0627\",\r\n \"name\": \"testWS-0627\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:26:55.8627435Z\",\r\n \"modifiedOn\": \"2016-09-16T19:27:06.423062Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d0fbb7a343e04329a8be01f91cd5a7e0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0628\",\r\n \"name\": \"testWS-0628\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:27:12.6468041Z\",\r\n \"modifiedOn\": \"2016-09-16T19:27:25.7403056Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ec2c7f6027e34c77a16a0f3fc6236e99/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0629\",\r\n \"name\": \"testWS-0629\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:27:30.8661488Z\",\r\n \"modifiedOn\": \"2016-09-16T19:27:40.5746774Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fa3fc2c8a0fe4a359488ac291ba14d8a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0630\",\r\n \"name\": \"testWS-0630\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:27:45.9135221Z\",\r\n \"modifiedOn\": \"2016-09-16T19:27:55.7704519Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b2b51b84b46448adba88d19fce822521/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0631\",\r\n \"name\": \"testWS-0631\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:28:04.4337745Z\",\r\n \"modifiedOn\": \"2016-09-16T19:28:19.5221029Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2eb663e4ddb946dc8d152adb17743e30/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0632\",\r\n \"name\": \"testWS-0632\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:28:25.8223527Z\",\r\n \"modifiedOn\": \"2016-09-16T19:28:50.6441848Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2420516cc1594fdbb86af2f6b348d139/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0633\",\r\n \"name\": \"testWS-0633\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:28:56.3884433Z\",\r\n \"modifiedOn\": \"2016-09-16T19:29:08.7038346Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f0d1bb55188c487180ba0b90d7d2423a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0634\",\r\n \"name\": \"testWS-0634\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:29:16.7903498Z\",\r\n \"modifiedOn\": \"2016-09-16T19:29:27.4942171Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/59f37f90806f49f2b3362154290ea9df/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0635\",\r\n \"name\": \"testWS-0635\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:29:32.3487419Z\",\r\n \"modifiedOn\": \"2016-09-16T19:29:51.5572483Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7a122f1d67554986b4138728ac9f9e0d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0636\",\r\n \"name\": \"testWS-0636\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:29:57.7109496Z\",\r\n \"modifiedOn\": \"2016-09-16T19:30:10.2685754Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1138f569a1d84e52a8f08b9567541fe2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0637\",\r\n \"name\": \"testWS-0637\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:30:18.3009539Z\",\r\n \"modifiedOn\": \"2016-09-16T19:30:34.2864496Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/18524ec07b554fdb990c47a6bd7ce3db/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0638\",\r\n \"name\": \"testWS-0638\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:30:39.1935458Z\",\r\n \"modifiedOn\": \"2016-09-16T19:30:56.8140862Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6d238de1534c4577ae599d741f587908/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0639\",\r\n \"name\": \"testWS-0639\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:30:59.3338298Z\",\r\n \"modifiedOn\": \"2016-09-16T19:31:18.0992019Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8873981a6d2c43fd9df098c1b490328b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0640\",\r\n \"name\": \"testWS-0640\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:31:22.1681793Z\",\r\n \"modifiedOn\": \"2016-09-16T19:31:37.4710137Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/dbee9274e4534bc3990f5bfad7a3253c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0641\",\r\n \"name\": \"testWS-0641\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:31:40.2652832Z\",\r\n \"modifiedOn\": \"2016-09-16T19:31:54.2659365Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ececd4dfd7eb4981a3f47847029ac52a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0642\",\r\n \"name\": \"testWS-0642\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:31:59.946871Z\",\r\n \"modifiedOn\": \"2016-09-16T19:32:14.0804855Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3bdce10ff4c9436695f9c57255027cbb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0643\",\r\n \"name\": \"testWS-0643\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:32:19.9762325Z\",\r\n \"modifiedOn\": \"2016-09-16T19:32:35.2307691Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/946ab5d496ef4c9a9741e32b8e54fa88/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0644\",\r\n \"name\": \"testWS-0644\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:32:42.1040707Z\",\r\n \"modifiedOn\": \"2016-09-16T19:32:54.0236447Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d84c56a235ea44c68fb686a9401ff654/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0645\",\r\n \"name\": \"testWS-0645\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:33:00.0624593Z\",\r\n \"modifiedOn\": \"2016-09-16T19:33:12.1428292Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2fba8275e0cd4cb6a29bcc5738fa1a8d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0646\",\r\n \"name\": \"testWS-0646\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:33:18.500494Z\",\r\n \"modifiedOn\": \"2016-09-16T19:33:33.7045555Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/516bb4620a30485da99965d6ca112fbe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0647\",\r\n \"name\": \"testWS-0647\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:33:39.8043953Z\",\r\n \"modifiedOn\": \"2016-09-16T19:33:51.6056384Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c4a741fc9c3c4e58ab7db6aa6784eae5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0648\",\r\n \"name\": \"testWS-0648\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:33:52.2130148Z\",\r\n \"modifiedOn\": \"2016-09-16T19:34:06.7237409Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/29fccf39d9f34690a83b78df7416d882/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0649\",\r\n \"name\": \"testWS-0649\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:34:12.1083895Z\",\r\n \"modifiedOn\": \"2016-09-16T19:34:27.5228319Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6b98da2c963c473dbc2ff7efa09377a5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0650\",\r\n \"name\": \"testWS-0650\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:34:26.7301385Z\",\r\n \"modifiedOn\": \"2016-09-16T19:34:45.0436808Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f0df9f9696e043af894b9f706a088c11/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0651\",\r\n \"name\": \"testWS-0651\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:34:53.9047352Z\",\r\n \"modifiedOn\": \"2016-09-16T19:35:05.6403883Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ef2ee2fd0cdf45b196eb1886dbaf63ef/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0652\",\r\n \"name\": \"testWS-0652\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:35:07.7886991Z\",\r\n \"modifiedOn\": \"2016-09-16T19:35:28.9615371Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a3ee34eae9234990832ee410435f4316/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0653\",\r\n \"name\": \"testWS-0653\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:35:33.079019Z\",\r\n \"modifiedOn\": \"2016-09-16T19:35:50.8765405Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7d6254188d44463391b3f36516ec39cd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0654\",\r\n \"name\": \"testWS-0654\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:35:55.9124149Z\",\r\n \"modifiedOn\": \"2016-09-16T19:36:08.345286Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/60ec87e1074d48c1bf6d7a51c75f8786/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0655\",\r\n \"name\": \"testWS-0655\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:36:12.9202912Z\",\r\n \"modifiedOn\": \"2016-09-16T19:36:26.5337812Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4a0cf53257964e9faa61b6fb5a0dc25d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0656\",\r\n \"name\": \"testWS-0656\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:36:28.143484Z\",\r\n \"modifiedOn\": \"2016-09-16T19:36:43.0032563Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/42c9e3c79388494685bc1b292265cbfb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0657\",\r\n \"name\": \"testWS-0657\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:36:48.6695836Z\",\r\n \"modifiedOn\": \"2016-09-16T19:37:00.2433645Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/de1f84fc2c784975a3188a6d81e3a4d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0658\",\r\n \"name\": \"testWS-0658\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:37:09.1773337Z\",\r\n \"modifiedOn\": \"2016-09-16T19:37:23.0639171Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c0d1292bd9494e2db5795cb5a90d4f5f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0659\",\r\n \"name\": \"testWS-0659\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:37:27.7261045Z\",\r\n \"modifiedOn\": \"2016-09-16T19:37:38.9799713Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/802ce58ad1074bb085283d099de08757/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0660\",\r\n \"name\": \"testWS-0660\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:37:45.9342471Z\",\r\n \"modifiedOn\": \"2016-09-16T19:37:57.0519689Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8dc10289b0694bcf84d8133d26d839a9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0661\",\r\n \"name\": \"testWS-0661\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:38:03.264416Z\",\r\n \"modifiedOn\": \"2016-09-16T19:38:19.8209415Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b528fccd5bf04a94a853e8def937344c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0662\",\r\n \"name\": \"testWS-0662\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:38:26.9050714Z\",\r\n \"modifiedOn\": \"2016-09-16T19:38:42.2383242Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/93a0069fe4f2463f81a770fdedf0fec9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0663\",\r\n \"name\": \"testWS-0663\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:38:44.9464324Z\",\r\n \"modifiedOn\": \"2016-09-16T19:38:59.5375793Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1259f830d3a346d6b5cb0048b8ac31db/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0664\",\r\n \"name\": \"testWS-0664\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:39:00.7621759Z\",\r\n \"modifiedOn\": \"2016-09-16T19:39:11.9360765Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a45e3973131244e7b45bf1e86a1ad5cb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0665\",\r\n \"name\": \"testWS-0665\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:39:13.3436212Z\",\r\n \"modifiedOn\": \"2016-09-16T19:39:29.8071359Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5fe1a405428e43feb89af93cd0c4391e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0666\",\r\n \"name\": \"testWS-0666\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:39:33.2163263Z\",\r\n \"modifiedOn\": \"2016-09-16T19:39:52.7966371Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7c779962bb3f40edac782f164e0bd882/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0667\",\r\n \"name\": \"testWS-0667\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:39:56.6004237Z\",\r\n \"modifiedOn\": \"2016-09-16T19:40:05.9148191Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3ccd22185f9d4ed2b765b4527032b04b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0668\",\r\n \"name\": \"testWS-0668\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:40:09.0113878Z\",\r\n \"modifiedOn\": \"2016-09-16T19:40:21.6197051Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/af8ea0a121f14843a23b0086b4e76e4d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0669\",\r\n \"name\": \"testWS-0669\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:40:23.8226835Z\",\r\n \"modifiedOn\": \"2016-09-16T19:40:42.5717789Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/009c60a640034e62b0c319b6e371d419/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0670\",\r\n \"name\": \"testWS-0670\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:40:50.38709Z\",\r\n \"modifiedOn\": \"2016-09-16T19:41:04.1529317Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/729c45c64c5f4304a4a9b35264ad34ca/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0671\",\r\n \"name\": \"testWS-0671\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:41:08.6750684Z\",\r\n \"modifiedOn\": \"2016-09-16T19:41:24.2942051Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9bf31c39027e4ea59de2131903e93835/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0672\",\r\n \"name\": \"testWS-0672\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:41:30.0937483Z\",\r\n \"modifiedOn\": \"2016-09-16T19:41:40.7370375Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6dd2ae13aebf4ae8b26eef7a44cc07fe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0673\",\r\n \"name\": \"testWS-0673\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:41:48.4270534Z\",\r\n \"modifiedOn\": \"2016-09-16T19:42:00.2156619Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0d18051d042a4b4f8b18a92547e018eb/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0674\",\r\n \"name\": \"testWS-0674\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:42:06.543628Z\",\r\n \"modifiedOn\": \"2016-09-16T19:42:18.4503528Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d1b929bdc5204b51bd72c2f9fa603bc0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0675\",\r\n \"name\": \"testWS-0675\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:42:25.1570345Z\",\r\n \"modifiedOn\": \"2016-09-16T19:42:36.2991462Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4b6b76e3afc34e5e93213a34a12f43af/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0676\",\r\n \"name\": \"testWS-0676\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:42:43.7883118Z\",\r\n \"modifiedOn\": \"2016-09-16T19:42:53.6076639Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d98fe1e58c30496cad2be7381533a6cc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0677\",\r\n \"name\": \"testWS-0677\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:42:56.5144265Z\",\r\n \"modifiedOn\": \"2016-09-16T19:43:10.9274446Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/60607aa2b2ef4c638fd468c2c3f854c7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0678\",\r\n \"name\": \"testWS-0678\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:43:16.0201731Z\",\r\n \"modifiedOn\": \"2016-09-16T19:43:27.2700917Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/10050f9149ba4ba6a9bdf280851fb987/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0679\",\r\n \"name\": \"testWS-0679\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:43:35.3188483Z\",\r\n \"modifiedOn\": \"2016-09-16T19:43:54.5878824Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/638e42df2b014c848f8c80d6ccc97b74/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0680\",\r\n \"name\": \"testWS-0680\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:44:00.4162963Z\",\r\n \"modifiedOn\": \"2016-09-16T19:44:08.890007Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d56aa3912c7545a1b20ce12ca6bb1406/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0681\",\r\n \"name\": \"testWS-0681\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:44:13.6385047Z\",\r\n \"modifiedOn\": \"2016-09-16T19:44:27.958141Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a008cff5dbd245189256ac2c7f6218ed/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0682\",\r\n \"name\": \"testWS-0682\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:44:35.2818542Z\",\r\n \"modifiedOn\": \"2016-09-16T19:44:46.1480939Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f09f08143c5f4b749f74e2dc9bca2ce9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0683\",\r\n \"name\": \"testWS-0683\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:44:53.1506105Z\",\r\n \"modifiedOn\": \"2016-09-16T19:45:06.7722536Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/df8de57a59a543f6b397369b0295ca5b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0684\",\r\n \"name\": \"testWS-0684\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:45:10.9440721Z\",\r\n \"modifiedOn\": \"2016-09-16T19:45:24.1005443Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a0df88eea8aa44a5b6f2aa1f4969e566/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0685\",\r\n \"name\": \"testWS-0685\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:45:29.3123716Z\",\r\n \"modifiedOn\": \"2016-09-16T19:45:42.6956499Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bcaaaf211ec645c989b479e680d7dbf1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0686\",\r\n \"name\": \"testWS-0686\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:45:48.6907835Z\",\r\n \"modifiedOn\": \"2016-09-16T19:46:04.2973153Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/921964b5a4bc4cb79bf4cf6d313b65be/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0687\",\r\n \"name\": \"testWS-0687\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:46:10.092897Z\",\r\n \"modifiedOn\": \"2016-09-16T19:46:20.4869397Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/334e432f8e5a420bb760d864ddebbfb5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0688\",\r\n \"name\": \"testWS-0688\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:46:27.6805963Z\",\r\n \"modifiedOn\": \"2016-09-16T19:46:39.9926061Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/efb00f6810ae4d9b875e4ec55ec6459e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0689\",\r\n \"name\": \"testWS-0689\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:46:44.3692814Z\",\r\n \"modifiedOn\": \"2016-09-16T19:46:55.2349556Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9cde652d98e3498aa7e24e0479c962e1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0690\",\r\n \"name\": \"testWS-0690\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:47:09.771835Z\",\r\n \"modifiedOn\": \"2016-09-16T19:47:26.1998432Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1ff44b1ad65c484da33badec1113fcff/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0691\",\r\n \"name\": \"testWS-0691\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:47:32.8977154Z\",\r\n \"modifiedOn\": \"2016-09-16T19:47:47.0431779Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8918f3b0e62845cf86a1e667e945b617/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0692\",\r\n \"name\": \"testWS-0692\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:47:49.9769701Z\",\r\n \"modifiedOn\": \"2016-09-16T19:47:59.5921341Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1a187ff729654c22b6ea7cc0881a9bed/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0693\",\r\n \"name\": \"testWS-0693\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:48:02.4150941Z\",\r\n \"modifiedOn\": \"2016-09-16T19:48:16.6314747Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4ebf16a53346440db761c7311082271e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0694\",\r\n \"name\": \"testWS-0694\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:48:19.6922062Z\",\r\n \"modifiedOn\": \"2016-09-16T19:48:29.627904Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a8f53c21decd43d2a611b79a49c281f0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0695\",\r\n \"name\": \"testWS-0695\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:48:33.185728Z\",\r\n \"modifiedOn\": \"2016-09-16T19:48:45.006154Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cdc88e76d79d47549020e17f3fd3995e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0696\",\r\n \"name\": \"testWS-0696\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:48:58.2516039Z\",\r\n \"modifiedOn\": \"2016-09-16T19:49:17.1533657Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/58a54cdb284c4167b6c259ca8bd9aa33/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0697\",\r\n \"name\": \"testWS-0697\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:49:21.4643078Z\",\r\n \"modifiedOn\": \"2016-09-16T19:49:31.0923565Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5fee41b3f26a4b21b1196f6570dc3fa0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0698\",\r\n \"name\": \"testWS-0698\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:49:33.6757934Z\",\r\n \"modifiedOn\": \"2016-09-16T19:49:42.4784182Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3e788f69dea34170b7e1d8088fbb44d7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0699\",\r\n \"name\": \"testWS-0699\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:49:45.9609089Z\",\r\n \"modifiedOn\": \"2016-09-16T19:49:57.0238837Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e1de56baa7b24722b0ba9562f223ef1d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0700\",\r\n \"name\": \"testWS-0700\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:50:09.7416594Z\",\r\n \"modifiedOn\": \"2016-09-16T19:50:22.6232975Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3318926223d149c98c47e1c9698b6d75/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0701\",\r\n \"name\": \"testWS-0701\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:50:26.6143335Z\",\r\n \"modifiedOn\": \"2016-09-16T19:50:38.0194462Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6ec24de7e54f4eab975cfd52ca1f1fa2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0702\",\r\n \"name\": \"testWS-0702\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:50:44.8106423Z\",\r\n \"modifiedOn\": \"2016-09-16T19:50:58.3899236Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c6e11727dd7d4f41ac95cf22851d8def/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0703\",\r\n \"name\": \"testWS-0703\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:51:02.8458836Z\",\r\n \"modifiedOn\": \"2016-09-16T19:51:18.2597111Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ba0e10d5bd8146159e26074d752440b6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0704\",\r\n \"name\": \"testWS-0704\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:51:20.6170785Z\",\r\n \"modifiedOn\": \"2016-09-16T19:51:31.5896945Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9a1290ea45814bb09cb2ca64fb182896/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0705\",\r\n \"name\": \"testWS-0705\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:51:37.62084Z\",\r\n \"modifiedOn\": \"2016-09-16T19:51:51.5755187Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5b58f90926884daba5168963101111e7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0706\",\r\n \"name\": \"testWS-0706\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:51:57.3202676Z\",\r\n \"modifiedOn\": \"2016-09-16T19:52:10.7917989Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/daec82d56d804d93ae77ea95635c6320/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0707\",\r\n \"name\": \"testWS-0707\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:52:14.9557114Z\",\r\n \"modifiedOn\": \"2016-09-16T19:52:25.6946748Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6b13171f49814bdea6f206448c07a4a6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0708\",\r\n \"name\": \"testWS-0708\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:52:30.6555944Z\",\r\n \"modifiedOn\": \"2016-09-16T19:52:49.7755899Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/24932a95f9af4ec6b9c76d767d2b6558/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0709\",\r\n \"name\": \"testWS-0709\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:52:54.7616623Z\",\r\n \"modifiedOn\": \"2016-09-16T19:53:05.1778118Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4c950d2491814917ae8a00824714d567/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0710\",\r\n \"name\": \"testWS-0710\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:53:06.9366412Z\",\r\n \"modifiedOn\": \"2016-09-16T19:53:17.7785808Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bf6602b33a2a447088059dd2e414b1cd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0711\",\r\n \"name\": \"testWS-0711\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:53:25.8192641Z\",\r\n \"modifiedOn\": \"2016-09-16T19:53:35.7673762Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7139a7a244ea4de28935e6402b48e18c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0712\",\r\n \"name\": \"testWS-0712\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:53:43.523854Z\",\r\n \"modifiedOn\": \"2016-09-16T19:53:55.0200009Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4c1728e582ae4420abe8b52b42ba3354/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0713\",\r\n \"name\": \"testWS-0713\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:54:01.7651428Z\",\r\n \"modifiedOn\": \"2016-09-16T19:54:11.2610319Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/82219c30ec0e4f2fae9665e1cb206367/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0714\",\r\n \"name\": \"testWS-0714\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:54:16.1509329Z\",\r\n \"modifiedOn\": \"2016-09-16T19:54:28.1689649Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5d2b71b3abba407ea413057f8d28d227/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0715\",\r\n \"name\": \"testWS-0715\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:54:32.767524Z\",\r\n \"modifiedOn\": \"2016-09-16T19:54:45.6234716Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9684c0607fa64890b1b1a54317f0c3cd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0716\",\r\n \"name\": \"testWS-0716\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:54:52.7493Z\",\r\n \"modifiedOn\": \"2016-09-16T19:55:06.7378218Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6708d2da6ff943f9ad965a4619a5c5cd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0717\",\r\n \"name\": \"testWS-0717\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:55:08.9372023Z\",\r\n \"modifiedOn\": \"2016-09-16T19:55:19.2261677Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/933a0f5ea2024157b27af470e2948e33/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0718\",\r\n \"name\": \"testWS-0718\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:55:22.2977009Z\",\r\n \"modifiedOn\": \"2016-09-16T19:55:32.4183032Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/956b84732229434e8f203c5afcda68a7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0719\",\r\n \"name\": \"testWS-0719\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:55:39.8823683Z\",\r\n \"modifiedOn\": \"2016-09-16T19:55:52.5226442Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5793d209f2da4d77bf6dc6d2afac413e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0720\",\r\n \"name\": \"testWS-0720\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:55:56.532187Z\",\r\n \"modifiedOn\": \"2016-09-16T19:56:14.1269312Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e2bddc3767ea44e49284dce44cf88673/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0721\",\r\n \"name\": \"testWS-0721\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:56:20.3951181Z\",\r\n \"modifiedOn\": \"2016-09-16T19:56:31.0180872Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5660a29ef5904fabb317d63ab1c1229d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0722\",\r\n \"name\": \"testWS-0722\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:56:39.2867566Z\",\r\n \"modifiedOn\": \"2016-09-16T19:56:48.1483714Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5cccd3dd25af40f8a18b4779dd85ec29/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0723\",\r\n \"name\": \"testWS-0723\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:56:54.6090965Z\",\r\n \"modifiedOn\": \"2016-09-16T19:57:10.2594293Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/582e75fef3184a1d97878f46c0cf9376/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0724\",\r\n \"name\": \"testWS-0724\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:57:13.8904723Z\",\r\n \"modifiedOn\": \"2016-09-16T19:57:26.7818458Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/364b10acc3ca4e63a495944273b4a915/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0725\",\r\n \"name\": \"testWS-0725\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:57:32.2604152Z\",\r\n \"modifiedOn\": \"2016-09-16T19:57:42.9207016Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/01d338ecdd1d453ea4ce5aa6701e8200/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0726\",\r\n \"name\": \"testWS-0726\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:57:48.5425002Z\",\r\n \"modifiedOn\": \"2016-09-16T19:58:07.7103526Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6454a43b824248ddbfa4279befac3afe/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0727\",\r\n \"name\": \"testWS-0727\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:58:11.1985832Z\",\r\n \"modifiedOn\": \"2016-09-16T19:58:22.9086923Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c3314109fb1a48ef986aaf620a097c63/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0728\",\r\n \"name\": \"testWS-0728\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:58:30.3413606Z\",\r\n \"modifiedOn\": \"2016-09-16T19:58:46.4216103Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c6a50ebaf406493ca0d0b30af2cae671/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0729\",\r\n \"name\": \"testWS-0729\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:58:52.8514069Z\",\r\n \"modifiedOn\": \"2016-09-16T19:59:10.3153331Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ecfca68a0ed641618311bb8650a2b1dc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0730\",\r\n \"name\": \"testWS-0730\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:59:17.3686851Z\",\r\n \"modifiedOn\": \"2016-09-16T19:59:26.9667121Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/90a45440f72945beaefec5ba2760ec0d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0731\",\r\n \"name\": \"testWS-0731\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:59:35.8050239Z\",\r\n \"modifiedOn\": \"2016-09-16T19:59:45.5155343Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/cbf0ab0321464a1db0b4f905e3c866d9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0732\",\r\n \"name\": \"testWS-0732\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T19:59:52.9310751Z\",\r\n \"modifiedOn\": \"2016-09-16T20:00:03.3519395Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/85dda729c37c417eb5919621e1a1def1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0733\",\r\n \"name\": \"testWS-0733\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:00:10.6992564Z\",\r\n \"modifiedOn\": \"2016-09-16T20:00:20.68138Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/06e67bb254474f5d8f03d39e9d8de610/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0734\",\r\n \"name\": \"testWS-0734\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:00:27.6605564Z\",\r\n \"modifiedOn\": \"2016-09-16T20:00:42.9548545Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2c8be06dc6f646bc956a4fb74965ed72/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0735\",\r\n \"name\": \"testWS-0735\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:00:47.6957562Z\",\r\n \"modifiedOn\": \"2016-09-16T20:01:12.382531Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e52f05e048604b71971534e829f0b7dd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0736\",\r\n \"name\": \"testWS-0736\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:01:34.1627517Z\",\r\n \"modifiedOn\": \"2016-09-16T20:01:49.0239465Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/08b8ae12957b466e9f60e899f1085c6c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0737\",\r\n \"name\": \"testWS-0737\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:01:55.48878Z\",\r\n \"modifiedOn\": \"2016-09-16T20:02:10.0091515Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1635ea2511eb4542ab38b06c01e58723/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0738\",\r\n \"name\": \"testWS-0738\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:02:12.306504Z\",\r\n \"modifiedOn\": \"2016-09-16T20:02:30.555081Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6b7abe8f7cb746d3ab57db3edc6cee90/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0739\",\r\n \"name\": \"testWS-0739\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:02:36.2041745Z\",\r\n \"modifiedOn\": \"2016-09-16T20:02:46.3668557Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/68f5ad8244cd452a80d8cea5e4db82ef/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0740\",\r\n \"name\": \"testWS-0740\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:02:54.6105342Z\",\r\n \"modifiedOn\": \"2016-09-16T20:03:03.6520614Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fd36c2b30ef5413581155e1dcba24fbc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0741\",\r\n \"name\": \"testWS-0741\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:03:06.6840984Z\",\r\n \"modifiedOn\": \"2016-09-16T20:03:14.3899401Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b09e8d0e055e4f31b9e15d77de193a8a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0742\",\r\n \"name\": \"testWS-0742\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:03:21.1477848Z\",\r\n \"modifiedOn\": \"2016-09-16T20:03:30.4997802Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/66e04637bac341aa9d1f936295e5abdd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0743\",\r\n \"name\": \"testWS-0743\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:03:37.5544909Z\",\r\n \"modifiedOn\": \"2016-09-16T20:03:51.571749Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6cb34055696e4bde84dd42121dee8182/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0744\",\r\n \"name\": \"testWS-0744\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:03:56.3826613Z\",\r\n \"modifiedOn\": \"2016-09-16T20:04:06.1555481Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/302b465179304cc8b9a95d044ea99f64/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0745\",\r\n \"name\": \"testWS-0745\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:04:12.3684145Z\",\r\n \"modifiedOn\": \"2016-09-16T20:04:26.4330817Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d1eeaed5c8bc4176ad7483341b84b1d0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0746\",\r\n \"name\": \"testWS-0746\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:04:30.0689373Z\",\r\n \"modifiedOn\": \"2016-09-16T20:04:42.1873679Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/58a24a2e2754421582d3039c2e47c4f2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0747\",\r\n \"name\": \"testWS-0747\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:04:50.7115457Z\",\r\n \"modifiedOn\": \"2016-09-16T20:05:03.4125025Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0dfb864e58bb4ce1bf9f7d0f69bdf790/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0748\",\r\n \"name\": \"testWS-0748\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:05:08.1836238Z\",\r\n \"modifiedOn\": \"2016-09-16T20:05:17.9506137Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1a569949ef0a4e7ba1e76b375b391c56/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0749\",\r\n \"name\": \"testWS-0749\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:05:26.4092848Z\",\r\n \"modifiedOn\": \"2016-09-16T20:05:41.0498594Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8a698547ec684451890d28d81d007a99/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0750\",\r\n \"name\": \"testWS-0750\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:05:48.1336111Z\",\r\n \"modifiedOn\": \"2016-09-16T20:05:58.1199049Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6efa2085cc8042d6a008911b700179ba/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0751\",\r\n \"name\": \"testWS-0751\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:06:07.3075123Z\",\r\n \"modifiedOn\": \"2016-09-16T20:06:26.2887017Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b161923dbf064eaf9c3ced9439e3f12f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0752\",\r\n \"name\": \"testWS-0752\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:06:38.8524462Z\",\r\n \"modifiedOn\": \"2016-09-16T20:06:49.0025074Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/88598b4eed014af086ad63815b16d0ce/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0753\",\r\n \"name\": \"testWS-0753\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:06:53.3529746Z\",\r\n \"modifiedOn\": \"2016-09-16T20:07:01.2688426Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4ee59cfef6f04c0baf9b686c2b3a1c93/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0754\",\r\n \"name\": \"testWS-0754\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:07:04.7548577Z\",\r\n \"modifiedOn\": \"2016-09-16T20:07:17.0051616Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/522a2c9dbb5e4ceba1b852834ba2e5ce/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0755\",\r\n \"name\": \"testWS-0755\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:07:28.5286916Z\",\r\n \"modifiedOn\": \"2016-09-16T20:07:41.483296Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f4bad40a7fe74cfebcc8bab6cc3dd03b/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0756\",\r\n \"name\": \"testWS-0756\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:07:46.5759349Z\",\r\n \"modifiedOn\": \"2016-09-16T20:07:59.5030972Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5f0d2df8340a45cd8d31eecbd06197dc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0757\",\r\n \"name\": \"testWS-0757\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:08:03.5501617Z\",\r\n \"modifiedOn\": \"2016-09-16T20:08:15.1236369Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/02af58ea7c8f4d0099ed7e991a8c5ee2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0758\",\r\n \"name\": \"testWS-0758\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:08:21.1882612Z\",\r\n \"modifiedOn\": \"2016-09-16T20:08:36.3744605Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/18578794aa0747b0abdc42333474b502/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0759\",\r\n \"name\": \"testWS-0759\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:08:40.6764961Z\",\r\n \"modifiedOn\": \"2016-09-16T20:08:54.5195737Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/985eb0a7af3e4ed795c67677df30a86a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0760\",\r\n \"name\": \"testWS-0760\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:08:58.8941467Z\",\r\n \"modifiedOn\": \"2016-09-16T20:09:09.8937363Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/41851039f45c479ba8dfeff38689fc27/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0761\",\r\n \"name\": \"testWS-0761\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:09:16.1379562Z\",\r\n \"modifiedOn\": \"2016-09-16T20:09:29.7808689Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fe80fef9018241579c10aa3cd387ae98/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0762\",\r\n \"name\": \"testWS-0762\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:09:35.7661949Z\",\r\n \"modifiedOn\": \"2016-09-16T20:09:45.3113811Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/da33962165d94ff08c6124b1ec900551/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0763\",\r\n \"name\": \"testWS-0763\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:09:53.3243973Z\",\r\n \"modifiedOn\": \"2016-09-16T20:10:05.6299345Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8791f6f001d3476e88db6e29027b32af/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0764\",\r\n \"name\": \"testWS-0764\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:10:09.9479584Z\",\r\n \"modifiedOn\": \"2016-09-16T20:10:28.6797596Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/67b7ad6755484d9a9db98fcd2551d9c7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0765\",\r\n \"name\": \"testWS-0765\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:10:31.1757082Z\",\r\n \"modifiedOn\": \"2016-09-16T20:10:46.4671558Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7353d5b920b747a2a85145e219189798/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0766\",\r\n \"name\": \"testWS-0766\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:10:50.1604302Z\",\r\n \"modifiedOn\": \"2016-09-16T20:11:02.2743657Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a28301b7eac04f4188e12740131974dd/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0767\",\r\n \"name\": \"testWS-0767\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:11:07.6202113Z\",\r\n \"modifiedOn\": \"2016-09-16T20:11:21.722331Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/56a1134c514b4398b35e0d2c123adebc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0768\",\r\n \"name\": \"testWS-0768\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:11:23.2848441Z\",\r\n \"modifiedOn\": \"2016-09-16T20:11:43.1811693Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/1d378583cb284145a6919c95d22bd60a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0769\",\r\n \"name\": \"testWS-0769\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:11:47.1437253Z\",\r\n \"modifiedOn\": \"2016-09-16T20:11:56.7292773Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ce1da5e187e34dd5aa7566bf213da649/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0770\",\r\n \"name\": \"testWS-0770\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:11:59.5021883Z\",\r\n \"modifiedOn\": \"2016-09-16T20:12:10.058733Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a302f33d8bb74043afae6db5258a44e4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0771\",\r\n \"name\": \"testWS-0771\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:12:18.3185001Z\",\r\n \"modifiedOn\": \"2016-09-16T20:12:31.5340796Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/58a98b774784472d9c0bb3b234359730/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0772\",\r\n \"name\": \"testWS-0772\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:12:36.6119014Z\",\r\n \"modifiedOn\": \"2016-09-16T20:12:50.0488633Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/03b31e38f2544c6abf0833a1934e7acf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0773\",\r\n \"name\": \"testWS-0773\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:12:52.9272518Z\",\r\n \"modifiedOn\": \"2016-09-16T20:13:04.4051791Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/db84dc95116e416ba7ba267cf5dd3096/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0774\",\r\n \"name\": \"testWS-0774\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:13:11.9069978Z\",\r\n \"modifiedOn\": \"2016-09-16T20:13:21.9903538Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7041668a045042059c2a42d671c64b8f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0775\",\r\n \"name\": \"testWS-0775\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:13:26.104524Z\",\r\n \"modifiedOn\": \"2016-09-16T20:13:36.3006055Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/12098f1ed74b43c4ba95ceb6a226fc6a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0776\",\r\n \"name\": \"testWS-0776\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:13:42.3234519Z\",\r\n \"modifiedOn\": \"2016-09-16T20:13:59.4725464Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/918660ea83ce459a9a610293e3762251/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0777\",\r\n \"name\": \"testWS-0777\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:14:05.6167039Z\",\r\n \"modifiedOn\": \"2016-09-16T20:14:16.5678039Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2df453495b5542b6a932656310b40a3d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0778\",\r\n \"name\": \"testWS-0778\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:14:22.2648338Z\",\r\n \"modifiedOn\": \"2016-09-16T20:14:35.0457056Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2227f48fac694ee0a6ed070a2d12ffaf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0779\",\r\n \"name\": \"testWS-0779\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:14:40.8217882Z\",\r\n \"modifiedOn\": \"2016-09-16T20:14:52.9626584Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/18bee67e12b446f4adbcee69b03f2c59/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0780\",\r\n \"name\": \"testWS-0780\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:14:59.828093Z\",\r\n \"modifiedOn\": \"2016-09-16T20:15:11.2715271Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9c8e4a4c6eba4a8186c2da64747f753a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0781\",\r\n \"name\": \"testWS-0781\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:15:17.4741803Z\",\r\n \"modifiedOn\": \"2016-09-16T20:15:29.7529209Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d6731bc31e2548dab2b6993ef9ab8a47/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0782\",\r\n \"name\": \"testWS-0782\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:15:35.5649917Z\",\r\n \"modifiedOn\": \"2016-09-16T20:15:48.3914316Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0d810e90110f44929a7080bf03c3d61d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0783\",\r\n \"name\": \"testWS-0783\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:15:55.4645892Z\",\r\n \"modifiedOn\": \"2016-09-16T20:16:08.4285963Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3b79c7a281f34f848d9409090245aef9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0784\",\r\n \"name\": \"testWS-0784\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:16:10.5972205Z\",\r\n \"modifiedOn\": \"2016-09-16T20:16:30.1152705Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/33426d37ac2e4210aa91b9cf16bd5852/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0785\",\r\n \"name\": \"testWS-0785\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:16:33.2366972Z\",\r\n \"modifiedOn\": \"2016-09-16T20:16:46.8333289Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c177c6f8a7514834965a8deac45f97c3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0786\",\r\n \"name\": \"testWS-0786\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:16:51.96544Z\",\r\n \"modifiedOn\": \"2016-09-16T20:17:01.2448813Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/81f82b3c2c8346a58f4d7ca77132e6f9/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0787\",\r\n \"name\": \"testWS-0787\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:17:03.1805547Z\",\r\n \"modifiedOn\": \"2016-09-16T20:17:15.890652Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2a2b03446219413b93861fe8eff43142/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0788\",\r\n \"name\": \"testWS-0788\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:17:23.0541131Z\",\r\n \"modifiedOn\": \"2016-09-16T20:17:36.2129078Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/77eb1943596c4a6aac0f1a62a0570976/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0789\",\r\n \"name\": \"testWS-0789\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:17:38.9388032Z\",\r\n \"modifiedOn\": \"2016-09-16T20:17:52.0222023Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/494cb59286764d7bad93ee590722787c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0790\",\r\n \"name\": \"testWS-0790\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:17:57.0268198Z\",\r\n \"modifiedOn\": \"2016-09-16T20:18:09.0631413Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f50023949ffc4bffa909806ec366c4d1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0791\",\r\n \"name\": \"testWS-0791\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:18:14.6701503Z\",\r\n \"modifiedOn\": \"2016-09-16T20:18:26.405682Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fb915f2264b34519aaffdd9c463c5620/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0792\",\r\n \"name\": \"testWS-0792\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:18:32.8831598Z\",\r\n \"modifiedOn\": \"2016-09-16T20:18:48.3549855Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/04c0168c96fd4bb694426e34de654864/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0793\",\r\n \"name\": \"testWS-0793\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:18:55.2075593Z\",\r\n \"modifiedOn\": \"2016-09-16T20:19:05.9088251Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/90b0867da6fe402c8424d5983748c31d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0794\",\r\n \"name\": \"testWS-0794\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:19:10.475535Z\",\r\n \"modifiedOn\": \"2016-09-16T20:19:26.3513587Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/8880198ff4d44170bfe53d5bc35d323a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0795\",\r\n \"name\": \"testWS-0795\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:19:32.6188731Z\",\r\n \"modifiedOn\": \"2016-09-16T20:19:46.0604437Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ced484921fce48098c116fec25186f72/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0796\",\r\n \"name\": \"testWS-0796\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:19:50.0395552Z\",\r\n \"modifiedOn\": \"2016-09-16T20:19:59.3522862Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ccc36fbfacff4546a71d75cc8caba94f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0797\",\r\n \"name\": \"testWS-0797\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:20:03.6836471Z\",\r\n \"modifiedOn\": \"2016-09-16T20:20:11.5912192Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fc0a112ec0d64784a50cf0e26c3a6fc3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0798\",\r\n \"name\": \"testWS-0798\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:20:16.585597Z\",\r\n \"modifiedOn\": \"2016-09-16T20:20:24.4564526Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9d9108df62a34075aa6e1c26ce96e27f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG/providers/Microsoft.MachineLearning/webServices/testWS-0799\",\r\n \"name\": \"testWS-0799\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:20:28.0160971Z\",\r\n \"modifiedOn\": \"2016-09-16T20:20:45.8634806Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/356f1ab67d2244feab1756c143f8ec79/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0800\",\r\n \"name\": \"testWS-0800\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:45:18.1296246Z\",\r\n \"modifiedOn\": \"2016-09-16T20:45:30.2417955Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/01990c90f4534b7d8922cad772f71d8d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0801\",\r\n \"name\": \"testWS-0801\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:45:36.8956862Z\",\r\n \"modifiedOn\": \"2016-09-16T20:45:49.4662359Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/043365c1c9c8449f90cbacc906ef3fde/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0802\",\r\n \"name\": \"testWS-0802\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:45:53.7324909Z\",\r\n \"modifiedOn\": \"2016-09-16T20:46:05.7477858Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/45e6c84784604a5f98070a6f1559e7b7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0803\",\r\n \"name\": \"testWS-0803\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:46:11.8379575Z\",\r\n \"modifiedOn\": \"2016-09-16T20:46:20.7149849Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ddc182ecefe941a992426d1317056447/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0804\",\r\n \"name\": \"testWS-0804\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:46:23.2750295Z\",\r\n \"modifiedOn\": \"2016-09-16T20:46:36.1795971Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2f4b6f17bdca4772a7ec417ca0031530/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0805\",\r\n \"name\": \"testWS-0805\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:46:40.9271097Z\",\r\n \"modifiedOn\": \"2016-09-16T20:46:53.8687519Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/60cd85962dbc44f5a0748d24acd75ca0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0806\",\r\n \"name\": \"testWS-0806\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:46:57.8225639Z\",\r\n \"modifiedOn\": \"2016-09-16T20:47:12.3888834Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/10cf52abeeac49cdb3c6c25b24843224/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0807\",\r\n \"name\": \"testWS-0807\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:47:15.081276Z\",\r\n \"modifiedOn\": \"2016-09-16T20:47:30.3056505Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/2e0d30d9c48b4914a049c1261c3dce73/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0808\",\r\n \"name\": \"testWS-0808\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:47:34.3498484Z\",\r\n \"modifiedOn\": \"2016-09-16T20:47:47.3037175Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/dfca0a7a0aa245d28579be8325bd45f0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0809\",\r\n \"name\": \"testWS-0809\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:48:04.831843Z\",\r\n \"modifiedOn\": \"2016-09-16T20:48:24.2393791Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/3b85f1e13e824d23bb79804a794bc709/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0810\",\r\n \"name\": \"testWS-0810\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:48:29.1909089Z\",\r\n \"modifiedOn\": \"2016-09-16T20:48:39.6543653Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6531d4e662004de599347ee8dd4184ec/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0811\",\r\n \"name\": \"testWS-0811\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:48:42.1821687Z\",\r\n \"modifiedOn\": \"2016-09-16T20:49:02.9018191Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/81280c64d5ce4d979a33909df0cedcdf/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0812\",\r\n \"name\": \"testWS-0812\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:49:07.1814147Z\",\r\n \"modifiedOn\": \"2016-09-16T20:49:26.1176397Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4594749d465d41458bbaaaf92e9500d4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0813\",\r\n \"name\": \"testWS-0813\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:49:30.1688196Z\",\r\n \"modifiedOn\": \"2016-09-16T20:49:41.9130297Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d39eb00ec5a447eab74b3b62ed59e733/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0814\",\r\n \"name\": \"testWS-0814\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:49:49.3356276Z\",\r\n \"modifiedOn\": \"2016-09-16T20:49:57.0256656Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/241d314da84344fca2619019c2aa3905/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0815\",\r\n \"name\": \"testWS-0815\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:50:01.6408488Z\",\r\n \"modifiedOn\": \"2016-09-16T20:50:11.4157779Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d8e4264f36bf40f6b116179fc64eb90a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0816\",\r\n \"name\": \"testWS-0816\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:50:18.0811515Z\",\r\n \"modifiedOn\": \"2016-09-16T20:50:29.0454499Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/174a53fd5cab464baa3c5c7e4118e2d0/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0817\",\r\n \"name\": \"testWS-0817\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:50:34.3733581Z\",\r\n \"modifiedOn\": \"2016-09-16T20:50:50.4766835Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/94babeed873542de9f668bf65ba01e57/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0818\",\r\n \"name\": \"testWS-0818\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:50:53.2274538Z\",\r\n \"modifiedOn\": \"2016-09-16T20:51:06.0473493Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b2a97f86ba654b4099ba52dd0ceb8a8a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0819\",\r\n \"name\": \"testWS-0819\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:51:10.1737287Z\",\r\n \"modifiedOn\": \"2016-09-16T20:51:26.9148638Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a75b344a41f7425f885358e132a9662d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0820\",\r\n \"name\": \"testWS-0820\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:51:31.0190469Z\",\r\n \"modifiedOn\": \"2016-09-16T20:51:43.1100163Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9b9fab32519a45baaeece12f83da95bc/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0821\",\r\n \"name\": \"testWS-0821\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:51:46.7761826Z\",\r\n \"modifiedOn\": \"2016-09-16T20:51:59.3318795Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e7c421ff6681484bb28f743bf875809f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0822\",\r\n \"name\": \"testWS-0822\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:52:02.8923114Z\",\r\n \"modifiedOn\": \"2016-09-16T20:52:13.3208262Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/75197398693a4fbd9dbb9f0cb598f64e/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0823\",\r\n \"name\": \"testWS-0823\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:52:18.0898548Z\",\r\n \"modifiedOn\": \"2016-09-16T20:52:34.6645926Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/77756a6dc7b9437cbbf823a2b0a52cf6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0824\",\r\n \"name\": \"testWS-0824\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:52:40.1283007Z\",\r\n \"modifiedOn\": \"2016-09-16T20:52:51.5975602Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fe214fbafca1462da0ac8c553c242ff6/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0825\",\r\n \"name\": \"testWS-0825\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:52:57.5884069Z\",\r\n \"modifiedOn\": \"2016-09-16T20:53:08.1633376Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4960e9849ab44889b94eda40afdbc6f2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0826\",\r\n \"name\": \"testWS-0826\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:53:16.0777695Z\",\r\n \"modifiedOn\": \"2016-09-16T20:53:32.4606423Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4770c324bd634ef28f35fe0e74923e14/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0827\",\r\n \"name\": \"testWS-0827\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:53:40.0623183Z\",\r\n \"modifiedOn\": \"2016-09-16T20:53:54.4288196Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7f2eacc0c34f4d9886ab0b9766c4e25f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0828\",\r\n \"name\": \"testWS-0828\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:54:01.3463031Z\",\r\n \"modifiedOn\": \"2016-09-16T20:54:08.5837236Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9b359b7833d74f9eb634d64adfc6235d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0829\",\r\n \"name\": \"testWS-0829\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:54:12.2342485Z\",\r\n \"modifiedOn\": \"2016-09-16T20:54:26.5307279Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/29282cfdebab4bd087f4962c6366b8f4/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0830\",\r\n \"name\": \"testWS-0830\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:54:31.5470651Z\",\r\n \"modifiedOn\": \"2016-09-16T20:54:40.7870899Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/a315cfcdba1b4d21aaf50411e7378b98/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0831\",\r\n \"name\": \"testWS-0831\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:54:57.5470899Z\",\r\n \"modifiedOn\": \"2016-09-16T20:55:14.9641102Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/ec0d9d0e8f2d43bfa4f4ee6a6a7c2c55/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuPSTestRG2/providers/Microsoft.MachineLearning/webServices/testWS-0832\",\r\n \"name\": \"testWS-0832\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-09-16T20:55:20.1301392Z\",\r\n \"modifiedOn\": \"2016-09-16T20:55:34.6607522Z\",\r\n \"title\": \"Sample Web Service\",\r\n \"description\": \"Sample description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/5f2bd958cf5f4d5e8817372c2e9c7ee7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohurp\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"92bd3b5eb7ea405e899008a3f59df6b7\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRGWeu/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.10.14.23.42.34.884\",\r\n \"name\": \"Experimentcreate.2016.10.14.23.42.34.884\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-14T23:43:30.0892956Z\",\r\n \"modifiedOn\": \"2016-10-14T23:47:18.9609199Z\",\r\n \"swaggerLocation\": \"https://europewest.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e7275e5d9c67477a9526ba1abc6b2775/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRGWeu/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.10.14.23.49.49.737\",\r\n \"name\": \"Experimentcreate.2016.10.14.23.49.49.737\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Europe\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2016-10-14T23:50:22.2455974Z\",\r\n \"modifiedOn\": \"2016-10-14T23:52:47.8271155Z\",\r\n \"swaggerLocation\": \"https://europewest.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/dec68722539445ae97fb0778a1239e08/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRGWeu/providers/Microsoft.MachineLearning/webServices/Experimentcreate.2016.8.26.18.16.33.505\",\r\n \"name\": \"Experimentcreate.2016.8.26.18.16.33.505\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-08-26T18:16:40.9887328Z\",\r\n \"modifiedOn\": \"2016-09-27T21:16:51.8626197Z\",\r\n \"title\": \"Multiple Web Service Inputs\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://europewest.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/fcccf166a3ae43a4b6404bd19da0983d/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorageweu\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRGWeu/providers/Microsoft.MachineLearning/webServices/IntEnumWEU\",\r\n \"name\": \"IntEnumWEU\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-13T18:23:57.1091295Z\",\r\n \"modifiedOn\": \"2016-10-21T18:34:18.071001Z\",\r\n \"title\": \"IntEnum - WorkingHoursPerWeek\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://europewest.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/7c453e0431d144f3aaabb00e2e1b6e90/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorageweu\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRGWeu/providers/Microsoft.MachineLearning/webServices/IntEnumWorkingHo.2016.10.21.21.22.22.11\",\r\n \"name\": \"IntEnumWorkingHo.2016.10.21.21.22.22.11\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-10-21T21:22:40.6044069Z\",\r\n \"modifiedOn\": \"2016-10-21T21:41:01.5058513Z\",\r\n \"title\": \"IntEnum - WorkingHoursPerWeek\",\r\n \"description\": \"\",\r\n \"swaggerLocation\": \"https://europewest.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c02f5422d385401d8858edfff3bf421c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorageweu\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract010\",\r\n \"name\": \"NewContract010\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2017-03-08T23:23:09.6553651Z\",\r\n \"modifiedOn\": \"2017-03-08T23:25:42.8178978Z\",\r\n \"swaggerLocation\": \"https://europewest.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c9f9e382755c4bda874e1ac9ba61aee7/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws163\",\r\n \"name\": \"amlws163\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:28.1397481Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:34.213807Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/c1ae89aa2f984e5aa828d7015f3c94d3/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg4212/providers/Microsoft.MachineLearning/webServices/amlws1943\",\r\n \"name\": \"amlws1943\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:49.1859262Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:57.0363932Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/e12854abfc8e4ff292386f3818de155a/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws4297\",\r\n \"name\": \"amlws4297\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:12.4691516Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:23.6390019Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/17efc65f9f2f4853bd4013a391cadc22/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws7591\",\r\n \"name\": \"amlws7591\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:09:38.5768612Z\",\r\n \"modifiedOn\": \"2017-03-09T08:09:45.061854Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/6a7d335fb9b9463481090eb96763a2e2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7289\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract001\",\r\n \"name\": \"NewContract001\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Failed\",\r\n \"createdOn\": \"2017-02-17T00:24:24.1552313Z\",\r\n \"modifiedOn\": \"2017-02-17T00:24:32.2669181Z\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/4b053a7f94174f0faa5f13cd3e8c94c2/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"storageAccount\": {},\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract002\",\r\n \"name\": \"NewContract002\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-17T00:33:03.8512904Z\",\r\n \"modifiedOn\": \"2017-02-17T00:42:34.4582508Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d0f845f243b447f78d8451b4505bc649/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRgUswc/providers/Microsoft.MachineLearning/Workspaces/bohuuswc01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract003\",\r\n \"name\": \"NewContract003\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-17T00:44:25.564549Z\",\r\n \"modifiedOn\": \"2017-02-17T00:44:33.7117254Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/059dc03e452a472db5b8a3400efd4894/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRgUswc/providers/Microsoft.MachineLearning/Workspaces/bohuuswc01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract004\",\r\n \"name\": \"NewContract004\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-17T01:25:06.672626Z\",\r\n \"modifiedOn\": \"2017-02-17T01:25:16.1216135Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bb7ea53385fb4d70b1eff1d547bd2329/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRgUswc/providers/Microsoft.MachineLearning/Workspaces/bohuuswc01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract005\",\r\n \"name\": \"NewContract005\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-17T01:31:51.6836659Z\",\r\n \"modifiedOn\": \"2017-02-17T01:32:05.8025273Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/9b5f3c5d01684f69ae647c79aa38bff1/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRgUswc/providers/Microsoft.MachineLearning/Workspaces/bohuuswc01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract006\",\r\n \"name\": \"NewContract006\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-23T22:57:33.8759581Z\",\r\n \"modifiedOn\": \"2017-03-01T01:41:04.8984214Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/b69d6075f78f45f49c51f9dd508a477c/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRgUswc/providers/Microsoft.MachineLearning/Workspaces/bohuuswc01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract007\",\r\n \"name\": \"NewContract007\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-03T06:32:40.1485483Z\",\r\n \"modifiedOn\": \"2017-03-08T08:32:37.8239871Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/59a6b4c61163423b85f92673f7c992e5/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract008\",\r\n \"name\": \"NewContract008\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-03T06:38:03.7089926Z\",\r\n \"modifiedOn\": \"2017-03-03T22:08:04.2090374Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/26f19e1ec25d473ca8b29bc57b815849/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract009\",\r\n \"name\": \"NewContract009\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-03T23:18:55.0112257Z\",\r\n \"modifiedOn\": \"2017-03-03T23:19:07.0777919Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/69b6eca21adc470eafd66911325e8795/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/NewContract011\",\r\n \"name\": \"NewContract011\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-08T23:24:41.5358803Z\",\r\n \"modifiedOn\": \"2017-03-08T23:24:50.2216176Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/866eb6693c3a4a339b554b5c8e4b3e02/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/SameName001\",\r\n \"name\": \"SameName001\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-24T22:53:03.6686046Z\",\r\n \"modifiedOn\": \"2017-02-24T22:53:17.4667932Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/0e5a5f6c7a6749f7a8ac0fb37dd7b966/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRgUswc/providers/Microsoft.MachineLearning/Workspaces/bohuuswc01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRG01/providers/Microsoft.MachineLearning/webServices/test1a\",\r\n \"name\": \"test1a\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-02-16T01:16:41.155513Z\",\r\n \"modifiedOn\": \"2017-02-16T01:33:49.6664929Z\",\r\n \"title\": \"Some title\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/317f183b66d344a892e6cabade18aa12/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"bohustorage02\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/bohuRgUswc/providers/Microsoft.MachineLearning/Workspaces/bohuuswc01\"\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exposeSampleData\": false\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/webServices?api-version=2017-01-01&%24skiptoken=Dc3dboIwAAXgdyHZ7pDCQIaJWbaFOojgRn9w3hWoUoFCaNWp8d1Hcm5OcnK%2buyH5n14L2ShjcTfQhuCvzzDF2fuaIGNh1FoPamFZF650yaUeWXtSs45JduDd1Gfsdhr5rOw7S50KVY5i0KKXyqps53Vvu8AMXD43Xdv3zFef%2bWbguUVQOX5V2HNrGPuzqPiorESUY6%2f6vZ4lrKyF5GvORinkYZILxMezKLl6Y4Mwz9N8EpYOsH0T2FOenxxXNRPcN1wu%2bTXe7LY1ICt4rVYtYHlwQg71omMvEhS6EYUEY5rSsNGRuAjcUbeC8bkCuuUomkfHsE5vvzVpMshJAPNtvcnC0MYNpUnjhRlON3RV3gjNjinxCGnSb0qhh48f6AfYJO92eUKAg1vKUBuHxQ2iAsYriiHKIZ0XLy2a%2fgDeDukaxYHxePwD\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "7319" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:00 GMT" + ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "b6acfe20-5054-4cff-a4dd-ffeb6e901805" + "Transfer-Encoding": [ + "chunked" ], - "x-ms-request-id": [ - "de950655-9590-43b1-a42a-df1e08813afd" + "Vary": [ + "Accept-Encoding" + ], + "x-ms-original-request-ids": [ + "7e756a56-8071-4eac-9acf-54321ca611db", + "e2f81fdc-f62b-4300-ae4b-d8ae8eae36db", + "430ecc7f-39d3-481e-9233-5df7201c581c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" + "14978" + ], + "x-ms-request-id": [ + "73b946e2-3478-458d-9bb8-c7e89d0df747" + ], + "x-ms-correlation-request-id": [ + "73b946e2-3478-458d-9bb8-c7e89d0df747" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011544Z:b6acfe20-5054-4cff-a4dd-ffeb6e901805" + "WESTCENTRALUS:20170309T081001Z:73b946e2-3478-458d-9bb8-c7e89d0df747" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:43 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws2371?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzMjM3MT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws4297?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czQyOTc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce1fb5de-1b7d-4ad1-a290-af0f05c38756" + "0257594e-87dd-4f3d-aca6-47346d0c8b23" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, "ResponseBody": "", @@ -1746,110 +1784,121 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:01 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/044d8cfd-35bd-4229-b4e6-dd97be34b476?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/50e50bb6-6bb8-4b68-ae54-eb861c041e72?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/044d8cfd-35bd-4229-b4e6-dd97be34b476?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "139" + ], "x-ms-correlation-request-id": [ - "c16e6c18-1fd1-410a-9878-b7d98c2211f1" + "c452e956-a628-4d64-b83d-293ed0040123" ], "x-ms-request-id": [ - "814e1e31-5e1a-4899-b7b0-2f624f7c34c5" + "3258b335-3726-4894-b618-c9782b0a37be" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1189" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011546Z:c16e6c18-1fd1-410a-9878-b7d98c2211f1" + "WESTCENTRALUS:20170309T081001Z:c452e956-a628-4d64-b83d-293ed0040123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:45 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/50e50bb6-6bb8-4b68-ae54-eb861c041e72?api-version=2016-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/50e50bb6-6bb8-4b68-ae54-eb861c041e72?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzUwZTUwYmI2LTZiYjgtNGI2OC1hZTU0LWViODYxYzA0MWU3Mj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/044d8cfd-35bd-4229-b4e6-dd97be34b476?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMDQ0ZDhjZmQtMzViZC00MjI5LWI0ZTYtZGQ5N2JlMzRiNDc2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/50e50bb6-6bb8-4b68-ae54-eb861c041e72\",\r\n \"name\": \"50e50bb6-6bb8-4b68-ae54-eb861c041e72\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:15:45.7370634Z\",\r\n \"endTime\": \"2016-05-18T01:15:47.0031925Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/044d8cfd-35bd-4229-b4e6-dd97be34b476\",\r\n \"name\": \"044d8cfd-35bd-4229-b4e6-dd97be34b476\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:10:05.0896763Z\",\r\n \"endTime\": \"2017-03-09T08:10:06.7283153Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "380" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:06 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "16" + ], "x-ms-correlation-request-id": [ - "7f861a18-cabc-4db1-90da-808b4ba4296d" + "2b6cce35-5e8c-419f-ac79-43ef151e84d0" ], "x-ms-request-id": [ - "8f05ae09-cf26-4c0a-b69a-ff3a27f51300" + "4d965162-0af4-4438-9c63-19d7e88e5582" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14725" + "14977" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011551Z:7f861a18-cabc-4db1-90da-808b4ba4296d" + "WESTCENTRALUS:20170309T081006Z:2b6cce35-5e8c-419f-ac79-43ef151e84d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:50 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws6378?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNjM3OD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws163?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE2Mz9hcGktdmVyc2lvbj0yMDE3LTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91ef7be5-13f3-4c30-9970-bf932627e055" + "f728288b-c43d-4d6b-8925-c451d7db2346" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, "ResponseBody": "", @@ -1860,110 +1909,121 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:06 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/1516f0ad-c817-4824-9c76-d13d989935a8?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/43a573c7-757a-4d1c-b600-d4c519b78bb1?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/1516f0ad-c817-4824-9c76-d13d989935a8?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "119" + ], "x-ms-correlation-request-id": [ - "1a467736-f94a-4ab0-97f7-8b91605feb32" + "ce54aa59-6846-413d-a6f2-76180b4544f9" ], "x-ms-request-id": [ - "1ef24e2e-72cd-4ed5-86a2-4ff732fe0442" + "55855cd5-16b8-4819-8ec3-e413d60170ac" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1188" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011552Z:1a467736-f94a-4ab0-97f7-8b91605feb32" + "WESTCENTRALUS:20170309T081007Z:ce54aa59-6846-413d-a6f2-76180b4544f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:52 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/43a573c7-757a-4d1c-b600-d4c519b78bb1?api-version=2016-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/43a573c7-757a-4d1c-b600-d4c519b78bb1?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzQzYTU3M2M3LTc1N2EtNGQxYy1iNjAwLWQ0YzUxOWI3OGJiMT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/1516f0ad-c817-4824-9c76-d13d989935a8?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMTUxNmYwYWQtYzgxNy00ODI0LTljNzYtZDEzZDk4OTkzNWE4P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/43a573c7-757a-4d1c-b600-d4c519b78bb1\",\r\n \"name\": \"43a573c7-757a-4d1c-b600-d4c519b78bb1\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:15:52.4564183Z\",\r\n \"endTime\": \"2016-05-18T01:15:54.331431Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/1516f0ad-c817-4824-9c76-d13d989935a8\",\r\n \"name\": \"1516f0ad-c817-4824-9c76-d13d989935a8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:10:08.6123464Z\",\r\n \"endTime\": \"2017-03-09T08:10:09.3044576Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "379" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:12 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "8" + ], "x-ms-correlation-request-id": [ - "b116dccd-3e0b-4795-a2ad-0c2ce5b89d75" + "288a79dc-71c7-4e59-958d-58a5ba4f913b" ], "x-ms-request-id": [ - "72d89ea1-57c9-4422-bcf6-82496ad29dda" + "29f030b7-9de1-46d6-b55d-c29a432286cd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14723" + "14976" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011557Z:b116dccd-3e0b-4795-a2ad-0c2ce5b89d75" + "WESTCENTRALUS:20170309T081012Z:288a79dc-71c7-4e59-958d-58a5ba4f913b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:57 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.MachineLearning/webServices/amlws5823?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL3dlYlNlcnZpY2VzL2FtbHdzNTgyMz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.MachineLearning/webServices/amlws7591?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czc1OTE/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d64d51fa-9c6d-4cbe-bbe7-b06830f5eca1" + "f7aba5d7-98ec-421a-a7c6-c222fa4bf63a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, "ResponseBody": "", @@ -1974,110 +2034,121 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:12 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/7919b995-911b-492c-9159-1c284d48af01?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cbdd0584-b51c-45bd-b1f6-5578b80f297a?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7919b995-911b-492c-9159-1c284d48af01?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "118" + ], "x-ms-correlation-request-id": [ - "3b1cc8f6-4af0-43f0-992b-e268992751ca" + "4c976f8f-addd-462e-8eae-21f29f545d4c" ], "x-ms-request-id": [ - "b86a4899-fd9b-46ca-b4ac-0e3ea5c3f583" + "2b257052-6d01-4589-b59c-678d81fd86ce" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011558Z:3b1cc8f6-4af0-43f0-992b-e268992751ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:15:58 GMT" + "1187" ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/cbdd0584-b51c-45bd-b1f6-5578b80f297a?api-version=2016-05-01-preview" + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T081012Z:4c976f8f-addd-462e-8eae-21f29f545d4c" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cbdd0584-b51c-45bd-b1f6-5578b80f297a?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2NiZGQwNTg0LWI1MWMtNDViZC1iMWY2LTU1NzhiODBmMjk3YT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7919b995-911b-492c-9159-1c284d48af01?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzkxOWI5OTUtOTExYi00OTJjLTkxNTktMWMyODRkNDhhZjAxP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cbdd0584-b51c-45bd-b1f6-5578b80f297a\",\r\n \"name\": \"cbdd0584-b51c-45bd-b1f6-5578b80f297a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:16:01.5404754Z\",\r\n \"endTime\": \"2016-05-18T01:16:02.6000354Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/7919b995-911b-492c-9159-1c284d48af01\",\r\n \"name\": \"7919b995-911b-492c-9159-1c284d48af01\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:10:16.7734343Z\",\r\n \"endTime\": \"2017-03-09T08:10:17.4146461Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "380" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:17 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], "x-ms-correlation-request-id": [ - "ac41461f-efd1-44ce-9350-ac16c3565e00" + "52ff5a3c-ca65-4337-8c74-a14e5fead560" ], "x-ms-request-id": [ - "fbd89338-28d1-4d8c-b7f6-531f7ada86d9" + "dd0f99bf-a798-4af7-ba4c-cd4299a6ccb3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" + "14975" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011603Z:ac41461f-efd1-44ce-9350-ac16c3565e00" + "WESTCENTRALUS:20170309T081017Z:52ff5a3c-ca65-4337-8c74-a14e5fead560" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:16:03 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8762/providers/Microsoft.MachineLearning/webServices/amlws2047?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODc2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIwNDc/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg4212/providers/Microsoft.MachineLearning/webServices/amlws1943?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnNDIxMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE5NDM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e088cb8-f4ef-40a4-a9fa-3a5f6d8d4fe3" + "4659c8cf-2172-4595-8149-6912dae0c1c5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, "ResponseBody": "", @@ -2088,161 +2159,121 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:17 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/8d1d349b-2db6-41e8-9ba6-2ba3ca32520a?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/da81c8be-4ba4-43e1-870f-1296b5bb7b2b?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/8d1d349b-2db6-41e8-9ba6-2ba3ca32520a?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "117" + ], "x-ms-correlation-request-id": [ - "04e7b2ea-07a6-48f4-85a7-e5925f99815d" + "104b036f-e821-41db-9a7e-fbca9974edeb" ], "x-ms-request-id": [ - "ed39913f-588b-49a2-a463-d4f3bd787ae7" + "f6f173a7-0572-4986-af34-1006743ef107" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1186" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011604Z:04e7b2ea-07a6-48f4-85a7-e5925f99815d" + "WESTCENTRALUS:20170309T081017Z:104b036f-e821-41db-9a7e-fbca9974edeb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:16:03 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/da81c8be-4ba4-43e1-870f-1296b5bb7b2b?api-version=2016-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/da81c8be-4ba4-43e1-870f-1296b5bb7b2b?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2RhODFjOGJlLTRiYTQtNDNlMS04NzBmLTEyOTZiNWJiN2IyYj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/8d1d349b-2db6-41e8-9ba6-2ba3ca32520a?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvOGQxZDM0OWItMmRiNi00MWU4LTliYTYtMmJhM2NhMzI1MjBhP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/da81c8be-4ba4-43e1-870f-1296b5bb7b2b\",\r\n \"name\": \"da81c8be-4ba4-43e1-870f-1296b5bb7b2b\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:16:07.3312829Z\",\r\n \"percentComplete\": 0.6\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/8d1d349b-2db6-41e8-9ba6-2ba3ca32520a\",\r\n \"name\": \"8d1d349b-2db6-41e8-9ba6-2ba3ca32520a\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:10:17.1657781Z\",\r\n \"endTime\": \"2017-03-09T08:10:17.7777798Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "337" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "f487fb6d-b6da-4bed-9723-38b355b41782" - ], - "x-ms-request-id": [ - "c2300bd8-c29c-450f-8fa6-28a5bd5b038d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011609Z:f487fb6d-b6da-4bed-9723-38b355b41782" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Thu, 09 Mar 2017 08:10:22 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 18 May 2016 01:16:08 GMT" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/da81c8be-4ba4-43e1-870f-1296b5bb7b2b?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2RhODFjOGJlLTRiYTQtNDNlMS04NzBmLTEyOTZiNWJiN2IyYj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/da81c8be-4ba4-43e1-870f-1296b5bb7b2b\",\r\n \"name\": \"da81c8be-4ba4-43e1-870f-1296b5bb7b2b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:16:07.3312829Z\",\r\n \"endTime\": \"2016-05-18T01:16:09.7823758Z\",\r\n \"percentComplete\": 1.0\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "380" - ], - "Content-Type": [ - "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Vary": [ + "Accept-Encoding" ], - "Pragma": [ - "no-cache" + "x-ms-request-duration": [ + "8" ], "x-ms-correlation-request-id": [ - "77a0681f-71e3-4e3c-a424-431ee0d40dd7" + "8398a7a6-cc73-4ad6-9b63-4500da88ec9f" ], "x-ms-request-id": [ - "cb2ee66b-1c99-47e6-b242-99a9af565f78" + "7166861f-1076-4cd3-b0d9-af0f0abc5637" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" + "14974" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011614Z:77a0681f-71e3-4e3c-a424-431ee0d40dd7" + "WESTCENTRALUS:20170309T081022Z:8398a7a6-cc73-4ad6-9b63-4500da88ec9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:16:14 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8762?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODc2Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg4212?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnNDIxMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ae609fc-5ee6-4be5-aad9-c3ba10554a02" + "e311b8e8-018c-48a3-86d8-7ff7f7188333" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2253,47 +2284,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:22 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzQyMTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1196" ], "x-ms-request-id": [ - "8b8976a8-4d3c-4b6f-a192-5f96872c9d9c" + "7d292b9e-45dc-41a2-95fb-bfe18b998faf" ], "x-ms-correlation-request-id": [ - "8b8976a8-4d3c-4b6f-a192-5f96872c9d9c" + "7d292b9e-45dc-41a2-95fb-bfe18b998faf" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011615Z:8b8976a8-4d3c-4b6f-a192-5f96872c9d9c" + "WESTCENTRALUS:20170309T081022Z:7d292b9e-45dc-41a2-95fb-bfe18b998faf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:16:14 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3NjItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3NjItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6ZzNOakl0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzQyMTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6UXlNVEl0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2304,47 +2336,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:10:52 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzQyMTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" + "14995" ], "x-ms-request-id": [ - "cae2fa90-4a4b-4046-8c44-192058ecfdd9" + "bb52eb9a-bef8-4642-ac72-f4c3cd7bfcb1" ], "x-ms-correlation-request-id": [ - "cae2fa90-4a4b-4046-8c44-192058ecfdd9" + "bb52eb9a-bef8-4642-ac72-f4c3cd7bfcb1" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011645Z:cae2fa90-4a4b-4046-8c44-192058ecfdd9" + "WESTCENTRALUS:20170309T081052Z:bb52eb9a-bef8-4642-ac72-f4c3cd7bfcb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:16:45 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3NjItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3NjItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6ZzNOakl0VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzQyMTItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6UXlNVEl0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2355,47 +2388,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:11:22 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14994" ], "x-ms-request-id": [ - "ffef396e-225a-480c-8c59-c75d4e0cfe19" + "d3ffcf5b-fb82-4266-a5df-c46e50d59947" ], "x-ms-correlation-request-id": [ - "ffef396e-225a-480c-8c59-c75d4e0cfe19" + "d3ffcf5b-fb82-4266-a5df-c46e50d59947" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011715Z:ffef396e-225a-480c-8c59-c75d4e0cfe19" + "WESTCENTRALUS:20170309T081122Z:d3ffcf5b-fb82-4266-a5df-c46e50d59947" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:17:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353/providers/Microsoft.MachineLearning//commitmentPlans/amlcp4366?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nLy9jb21taXRtZW50UGxhbnMvYW1sY3A0MzY2P2FwaS12ZXJzaW9uPTIwMTYtMDUtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093/providers/Microsoft.MachineLearning//commitmentPlans/amlcp6381?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNjM4MT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "443171de-ce4a-4ec5-acce-15d89eb06315" + "f1090896-560f-4154-9228-de835cf5b12c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2406,50 +2440,51 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "230a8d73-f7e3-41d2-a876-18bf4c7b6c9c" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "Date": [ + "Thu, 09 Mar 2017 08:11:24 GMT" ], - "x-ms-correlation-request-id": [ - "9b1033ca-11d5-4dcb-884d-e4373986788a" + "Pragma": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011718Z:9b1033ca-11d5-4dcb-884d-e4373986788a" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "d98b1248-d384-4f1f-89fa-658ce3d0d864" ], - "Date": [ - "Wed, 18 May 2016 01:17:17 GMT" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-correlation-request-id": [ + "9e9c9929-4796-44ae-98e2-df960dd3c6ad" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T081124Z:9e9c9929-4796-44ae-98e2-df960dd3c6ad" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353/providers/Microsoft.Resources/deployments/deplamlcp4366?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2RlcGxhbWxjcDQzNjY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093/providers/Microsoft.Resources/deployments/deplamlcp6381?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A2MzgxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b57d555a-4ffa-4931-8ec5-67ea51524c92" + "f5ceb866-9387-454b-a386-9fb992c3d601" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2460,47 +2495,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:11:24 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczMDkzLURFUExBTUxDUDYzODEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1194" ], "x-ms-request-id": [ - "7afbf4d4-9969-46e6-b327-e5b97f860515" + "636c219c-206c-4aca-97da-a22d4c6a9541" ], "x-ms-correlation-request-id": [ - "7afbf4d4-9969-46e6-b327-e5b97f860515" + "636c219c-206c-4aca-97da-a22d4c6a9541" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011718Z:7afbf4d4-9969-46e6-b327-e5b97f860515" + "WESTCENTRALUS:20170309T081124Z:636c219c-206c-4aca-97da-a22d4c6a9541" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:17:18 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczNTMtREVQTEFNTENQNDM2Ni0iLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczNTMtREVQTEFNTENQNDM2Ni0iLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3pOVE10UkVWUVRFRk5URU5RTkRNMk5pMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczMDkzLURFUExBTUxDUDYzODEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3pNRGt6TFVSRlVFeEJUVXhEVURZek9ERXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2511,47 +2547,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:11:54 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczMDkzLURFUExBTUxDUDYzODEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" + "14993" ], "x-ms-request-id": [ - "6d76a912-09ae-4d5c-b122-6afb2a6ae2fc" + "acd7feee-9d51-4e22-aff8-ff6634ba170b" ], "x-ms-correlation-request-id": [ - "6d76a912-09ae-4d5c-b122-6afb2a6ae2fc" + "acd7feee-9d51-4e22-aff8-ff6634ba170b" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011749Z:6d76a912-09ae-4d5c-b122-6afb2a6ae2fc" + "WESTCENTRALUS:20170309T081154Z:acd7feee-9d51-4e22-aff8-ff6634ba170b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:17:48 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczNTMtREVQTEFNTENQNDM2Ni0iLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczNTMtREVQTEFNTENQNDM2Ni0iLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3pOVE10UkVWUVRFRk5URU5RTkRNMk5pMGlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkczMDkzLURFUExBTUxDUDYzODEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3pNRGt6TFVSRlVFeEJUVXhEVURZek9ERXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2559,47 +2596,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:12:23 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" + "14992" ], "x-ms-request-id": [ - "5b7cc863-540d-47bb-9284-7fe14d94c844" + "fed9a51e-8237-467d-9b87-2e352186dc31" ], "x-ms-correlation-request-id": [ - "5b7cc863-540d-47bb-9284-7fe14d94c844" + "fed9a51e-8237-467d-9b87-2e352186dc31" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011819Z:5b7cc863-540d-47bb-9284-7fe14d94c844" + "WESTCENTRALUS:20170309T081224Z:fed9a51e-8237-467d-9b87-2e352186dc31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:18:18 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg353/providers/Microsoft.Storage/storageAccounts/amlstor6957?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnMzUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYW1sc3RvcjY5NTc/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg3093/providers/Microsoft.Storage/storageAccounts/amlstor7289?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMzA5My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I3Mjg5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b14d1bd-e60c-41c2-afb8-23af9a42dea7" + "95cddf22-b841-4d58-8e90-7301b7879dac" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, "ResponseBody": "", @@ -2610,51 +2648,52 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "16bea48d-5858-4c1d-8f3e-d3e727b8d817" + "Date": [ + "Thu, 09 Mar 2017 08:12:25 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "b210a795-85f0-480e-ad1c-67a23675f532" + ], "x-ms-correlation-request-id": [ - "16bea48d-5858-4c1d-8f3e-d3e727b8d817" + "b210a795-85f0-480e-ad1c-67a23675f532" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160518T011821Z:16bea48d-5858-4c1d-8f3e-d3e727b8d817" + "WESTCENTRALUS:20170309T081225Z:b210a795-85f0-480e-ad1c-67a23675f532" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:18:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg353?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnMzUzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg3093?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMzA5Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "804c61ac-7fb6-448a-923d-c599c8748e2c" + "b9cc4765-8067-4d6e-8b60-2e9dfc4df10d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2665,47 +2704,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:12:25 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzMwOTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1193" ], "x-ms-request-id": [ - "94c4eaa4-c35d-42a7-8520-ef1cdeb10568" + "8e4f3e4d-9f71-4f41-885d-abd597bb43c6" ], "x-ms-correlation-request-id": [ - "94c4eaa4-c35d-42a7-8520-ef1cdeb10568" + "8e4f3e4d-9f71-4f41-885d-abd597bb43c6" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011821Z:94c4eaa4-c35d-42a7-8520-ef1cdeb10568" + "WESTCENTRALUS:20170309T081225Z:8e4f3e4d-9f71-4f41-885d-abd597bb43c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:18:21 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzM1My1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzM1My1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6TTFNeTFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzMwOTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6TXdPVE10VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2716,47 +2756,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:12:55 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzMwOTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" + "14991" ], "x-ms-request-id": [ - "57a2ae40-f52f-48d2-b449-fea91b00f699" + "1719d7b6-14c3-4b3e-a374-22703b049fe8" ], "x-ms-correlation-request-id": [ - "57a2ae40-f52f-48d2-b449-fea91b00f699" + "1719d7b6-14c3-4b3e-a374-22703b049fe8" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011851Z:57a2ae40-f52f-48d2-b449-fea91b00f699" + "WESTCENTRALUS:20170309T081255Z:1719d7b6-14c3-4b3e-a374-22703b049fe8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:18:51 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzM1My1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzM1My1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6TTFNeTFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzMwOTMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6TXdPVE10VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -2767,29 +2808,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:13:25 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14711" + "14990" ], "x-ms-request-id": [ - "014ecfc9-74ea-45a6-a00a-c82ed120a8fd" + "256aefc1-c5d2-44d5-bd7e-d7cfb3a00387" ], "x-ms-correlation-request-id": [ - "014ecfc9-74ea-45a6-a00a-c82ed120a8fd" + "256aefc1-c5d2-44d5-bd7e-d7cfb3a00387" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011921Z:014ecfc9-74ea-45a6-a00a-c82ed120a8fd" + "WESTCENTRALUS:20170309T081325Z:256aefc1-c5d2-44d5-bd7e-d7cfb3a00387" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:19:21 GMT" ] }, "StatusCode": 200 @@ -2797,19 +2838,19 @@ ], "Names": { "RunAMLWebServiceTestScenario": [ - "amlws2371", - "amlrg353", - "amlcp4366", - "amlstor6957" + "amlws4297", + "amlrg3093", + "amlcp6381", + "amlstor7289" ], "CreateAndListWebServices": [ - "amlws6378", - "amlws5823", - "amlrg8762", - "amlws2047" + "amlws163", + "amlws7591", + "amlrg4212", + "amlws1943" ] }, "Variables": { - "SubscriptionId": "80c77c76-74ba-4c8c-8229-4c3b2957990c" + "SubscriptionId": "d128f140-94e6-4175-87a7-954b9d27db16" } } \ No newline at end of file diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndPostOnGraphWebService.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndPostOnGraphWebService.json new file mode 100644 index 000000000000..fddbdcc22678 --- /dev/null +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndPostOnGraphWebService.json @@ -0,0 +1,1640 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ], + "x-ms-client-request-id": [ + "d369856b-33b3-40b1-9611-eec7671f87ff" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794\",\r\n \"name\": \"amlrg8794\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:17:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "a3ab5180-41a7-4586-93e0-5722b9e46309" + ], + "x-ms-correlation-request-id": [ + "a3ab5180-41a7-4586-93e0-5722b9e46309" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191758Z:a3ab5180-41a7-4586-93e0-5722b9e46309" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.Storage/storageAccounts/amlstor8001?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I4MDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "97" + ], + "x-ms-client-request-id": [ + "fadf18b8-c1c1-4992-98a2-2e8a1ccc770f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:18:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/977c2781-9a41-4776-bbe9-74cd037a7ada?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "1f4a4984-2d1d-480f-a236-359f72ba1b0e" + ], + "x-ms-correlation-request-id": [ + "1f4a4984-2d1d-480f-a236-359f72ba1b0e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191801Z:1f4a4984-2d1d-480f-a236-359f72ba1b0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/977c2781-9a41-4776-bbe9-74cd037a7ada?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzk3N2MyNzgxLTlhNDEtNDc3Ni1iYmU5LTc0Y2QwMzdhN2FkYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:18:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "bfa5f702-a257-4378-8dec-5b82ce4075e1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "bfa5f702-a257-4378-8dec-5b82ce4075e1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191832Z:bfa5f702-a257-4378-8dec-5b82ce4075e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.Storage/storageAccounts/amlstor8001/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I4MDAxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f445a62-4b0b-48f9-a425-3d218d74406f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"WEB_SERVICE_KEY_SAMPLE1\",\r\n \"key2\": \"WEB_SERVICE_KEY_SAMPLE2\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:18:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "aa51fcf8-2dc1-4b93-b56b-d99647275292" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "aa51fcf8-2dc1-4b93-b56b-d99647275292" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191832Z:aa51fcf8-2dc1-4b93-b56b-d99647275292" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f51f603-1754-4c27-a61a-6739c6ae5ac3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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, 09 Mar 2017 19:18:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-request-id": [ + "d286e379-0d4f-41e7-ae02-e764342c013d" + ], + "x-ms-correlation-request-id": [ + "d286e379-0d4f-41e7-ae02-e764342c013d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191832Z:d286e379-0d4f-41e7-ae02-e764342c013d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794/providers/Microsoft.Resources/deployments/deplamlcp9732?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A5NzMyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"string\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"[parameters('apiVersion')]\",\r\n \"name\": \"[parameters('planName')]\",\r\n \"type\": \"Microsoft.MachineLearning/CommitmentPlans\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('planSkuName')]\",\r\n \"tier\": \"[parameters('planSkuTier')]\",\r\n \"capacity\": \"1\"\r\n },\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"planName\": {\r\n \"value\": \"amlcp9732\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1258" + ], + "x-ms-client-request-id": [ + "f73d0a2f-7b96-4a2c-93df-87ffb915f75b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.Resources/deployments/deplamlcp9732\",\r\n \"name\": \"deplamlcp9732\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp9732\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2017-03-09T19:18:33.4317037Z\",\r\n \"duration\": \"PT0.0864308S\",\r\n \"correlationId\": \"cb6937bd-cfec-460e-85ee-382954067385\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "769" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:18:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794/providers/Microsoft.Resources/deployments/deplamlcp9732/operationStatuses/08587125197721323360?api-version=2015-11-01" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "cb6937bd-cfec-460e-85ee-382954067385" + ], + "x-ms-correlation-request-id": [ + "cb6937bd-cfec-460e-85ee-382954067385" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191833Z:cb6937bd-cfec-460e-85ee-382954067385" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794/providers/Microsoft.Resources/deployments/deplamlcp9732/operationStatuses/08587125197721323360?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A5NzMyL29wZXJhdGlvblN0YXR1c2VzLzA4NTg3MTI1MTk3NzIxMzIzMzYwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-request-id": [ + "c3559885-de7b-42d6-943c-45ee49cdd602" + ], + "x-ms-correlation-request-id": [ + "c3559885-de7b-42d6-943c-45ee49cdd602" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191903Z:c3559885-de7b-42d6-943c-45ee49cdd602" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794/providers/Microsoft.Resources/deployments/deplamlcp9732?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A5NzMyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.Resources/deployments/deplamlcp9732\",\r\n \"name\": \"deplamlcp9732\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp9732\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2017-03-09T19:18:40.5528834Z\",\r\n \"duration\": \"PT7.2076105S\",\r\n \"correlationId\": \"cb6937bd-cfec-460e-85ee-382954067385\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp9732\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "076d21fe-785f-47af-a15f-91fab4e05ac1" + ], + "x-ms-correlation-request-id": [ + "076d21fe-785f-47af-a15f-91fab4e05ac1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191903Z:076d21fe-785f-47af-a15f-91fab4e05ac1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794/providers/Microsoft.MachineLearning//commitmentPlans/amlcp9732?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwOTczMj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "577a9bb2-ac32-495b-b924-d91b9dd7560b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"etag\": \"0000111c-0000-0000-0000-58c1aa920000\",\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/commitmentPlans/amlcp9732\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"amlcp9732\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2017-03-09T19:18:38.1542709Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 25.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"29187de1-b4a1-4503-a6f6-078271b3fc9d\",\r\n \"overageMeter\": \"842f92f7-a46b-4522-ac62-8134271dc591\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 100000.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"303743b6-4cd0-44df-8ec2-a93c8f14943b\",\r\n \"overageMeter\": \"c906e161-98b8-41b1-81e2-b59e0b263740\"\r\n }\r\n },\r\n \"maxAssociationLimit\": 10000,\r\n \"maxCapacityLimit\": 10,\r\n \"minCapacityLimit\": 1,\r\n \"planMeter\": \"4a5a4b83-6216-47c5-b3db-fe430fa6e2c3\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ac32f80f-6580-4a4c-8bf7-013be884f7a2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-correlation-request-id": [ + "3c9964be-4b1f-4f6b-bc65-15a2317292ee" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191909Z:3c9964be-4b1f-4f6b-bc65-15a2317292ee" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE3NDk/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_01\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {}\r\n },\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"keys\": {\r\n \"primary\": \"PREDEFINED_PRIMARY_KEY\",\r\n \"secondary\": \"PREDEFINED_SECONDARY_KEY\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor8001\",\r\n \"key\": \"WEB_SERVICE_KEY_SAMPLE1\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/commitmentPlans/amlcp9732\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"payloadsInBlobStorage\": false\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "15025" + ], + "x-ms-client-request-id": [ + "d2ab3df8-28b7-4e7b-845f-49c4a906dcf5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749\",\r\n \"name\": \"amlws1749\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "378" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:13 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/41f5422c-9999-4a02-b045-31b5bde5c3f5?api-version=2017-01-01" + ], + "Azure-AsyncOperationPercentComplete": [ + "0" + ], + "x-ms-request-duration": [ + "498" + ], + "x-ms-correlation-request-id": [ + "67149cfe-b612-4fd9-bb20-2774f51fb65d" + ], + "x-ms-request-id": [ + "a7811f79-11a1-4cb7-ac95-2f75b0f5023c" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191913Z:67149cfe-b612-4fd9-bb20-2774f51fb65d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/41f5422c-9999-4a02-b045-31b5bde5c3f5?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDFmNTQyMmMtOTk5OS00YTAyLWIwNDUtMzFiNWJkZTVjM2Y1P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/41f5422c-9999-4a02-b045-31b5bde5c3f5\",\r\n \"name\": \"41f5422c-9999-4a02-b045-31b5bde5c3f5\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T19:19:17.1377955Z\",\r\n \"percentComplete\": 0.4\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "114" + ], + "x-ms-correlation-request-id": [ + "da4d70e7-6456-4e3b-898a-969aebc389e8" + ], + "x-ms-request-id": [ + "8604b203-920b-4fb2-bd5e-be51c6dd8996" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191918Z:da4d70e7-6456-4e3b-898a-969aebc389e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/41f5422c-9999-4a02-b045-31b5bde5c3f5?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNDFmNTQyMmMtOTk5OS00YTAyLWIwNDUtMzFiNWJkZTVjM2Y1P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/41f5422c-9999-4a02-b045-31b5bde5c3f5\",\r\n \"name\": \"41f5422c-9999-4a02-b045-31b5bde5c3f5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T19:19:17.1377955Z\",\r\n \"endTime\": \"2017-03-09T19:19:24.0474233Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], + "x-ms-correlation-request-id": [ + "7bc2585a-8321-4f89-8cea-8af18bc0630b" + ], + "x-ms-request-id": [ + "b307809a-b3ce-41b5-a291-e0d3ed760b1b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14989" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191923Z:7bc2585a-8321-4f89-8cea-8af18bc0630b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE3NDk/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749\",\r\n \"name\": \"amlws1749\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T19:19:13.8261911Z\",\r\n \"modifiedOn\": \"2017-03-09T19:19:24.1034646Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d4abba1d5c5942648cf395067998cf3f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor8001\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_03\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT1\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\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, 09 Mar 2017 19:19:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "18" + ], + "x-ms-correlation-request-id": [ + "565e98be-c764-40b8-adf1-05b11390e066" + ], + "x-ms-request-id": [ + "02371110-a8f9-48c3-a99f-840a2162f27e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191923Z:565e98be-c764-40b8-adf1-05b11390e066" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749?region=southcentralus&api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE3NDk/cmVnaW9uPXNvdXRoY2VudHJhbHVzJmFwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a36f44b2-a2bf-433b-aeb9-b80188d4b381" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The specified resource was not found.\",\r\n \"details\": [\r\n {\r\n \"code\": \"PerRegionPayloadNotFound\",\r\n \"message\": \"Web Service Definition for region southcentralus was not found. Please use the same URL making a POST call and wait for it succeeded, then try GET again.\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "369" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:19:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-duration": [ + "20" + ], + "x-ms-correlation-request-id": [ + "07ad9f25-9e68-4d4b-8d00-f4328bfecddc" + ], + "x-ms-request-id": [ + "a550c36e-f722-413d-8b4f-5f8190388306" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T191924Z:07ad9f25-9e68-4d4b-8d00-f4328bfecddc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749?region=southcentralus&api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE3NDk/cmVnaW9uPXNvdXRoY2VudHJhbHVzJmFwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58e81a97-ae9d-4454-9a82-a3a8f6a1677d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749\",\r\n \"name\": \"amlws1749\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T19:19:13.8261911Z\",\r\n \"modifiedOn\": \"2017-03-09T19:22:06.3239842Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/d4abba1d5c5942648cf395067998cf3f/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor8001\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_08\",\r\n \"certificateThumbprint\": \"ONE_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\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, 09 Mar 2017 19:22:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "71" + ], + "x-ms-correlation-request-id": [ + "bdcb7c67-02b7-405d-af85-53ba14e34cf7" + ], + "x-ms-request-id": [ + "76b87e1d-4d3d-4db0-945b-23ef6e31c2c0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192208Z:bdcb7c67-02b7-405d-af85-53ba14e34cf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749/CreateRegionalBlob?region=southcentralus&api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE3NDkvQ3JlYXRlUmVnaW9uYWxCbG9iP3JlZ2lvbj1zb3V0aGNlbnRyYWx1cyZhcGktdmVyc2lvbj0yMDE3LTAxLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70103e13-306a-4f46-8efc-e9ee9a25a85b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"amlws1749\",\r\n \"name\": \"amlws1749\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "238" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/c707b31e-5ceb-402a-ac06-a35111301a56?api-version=2017-01-01" + ], + "Azure-AsyncOperationPercentComplete": [ + "0" + ], + "x-ms-request-duration": [ + "181" + ], + "x-ms-correlation-request-id": [ + "33ea132b-3949-4e6d-8d39-e62ccd259485" + ], + "x-ms-request-id": [ + "a4801b25-ffa3-46f4-aa55-ea0e55b001f6" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192203Z:33ea132b-3949-4e6d-8d39-e62ccd259485" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/c707b31e-5ceb-402a-ac06-a35111301a56?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYzcwN2IzMWUtNWNlYi00MDJhLWFjMDYtYTM1MTExMzAxYTU2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/c707b31e-5ceb-402a-ac06-a35111301a56\",\r\n \"name\": \"c707b31e-5ceb-402a-ac06-a35111301a56\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T19:22:05.9099971Z\",\r\n \"endTime\": \"2017-03-09T19:22:06.2727586Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "45" + ], + "x-ms-correlation-request-id": [ + "38948d0b-cea5-4d10-a521-a7d18b6ae1c8" + ], + "x-ms-request-id": [ + "c340be15-95aa-4d49-8c24-62dd7df1b7ea" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192208Z:38948d0b-cea5-4d10-a521-a7d18b6ae1c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.MachineLearning/webServices/amlws1749?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czE3NDk/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0163542e-f356-417f-aa11-3e3b4641fb31" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/84a1e5d5-9bf7-48a4-93a1-72af0f38a63d?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/84a1e5d5-9bf7-48a4-93a1-72af0f38a63d?api-version=2017-01-01" + ], + "Azure-AsyncOperationPercentComplete": [ + "0" + ], + "x-ms-request-duration": [ + "110" + ], + "x-ms-correlation-request-id": [ + "2371ec62-1281-41fd-aa17-9e2244f06208" + ], + "x-ms-request-id": [ + "8a7704b8-b29e-42a9-8b16-92c9175e9881" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192210Z:2371ec62-1281-41fd-aa17-9e2244f06208" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/84a1e5d5-9bf7-48a4-93a1-72af0f38a63d?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODRhMWU1ZDUtOWJmNy00OGE0LTkzYTEtNzJhZjBmMzhhNjNkP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/84a1e5d5-9bf7-48a4-93a1-72af0f38a63d\",\r\n \"name\": \"84a1e5d5-9bf7-48a4-93a1-72af0f38a63d\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T19:22:15.6853912Z\",\r\n \"percentComplete\": 0.0\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "14" + ], + "x-ms-correlation-request-id": [ + "e5c1b3db-0190-49e3-85da-54495499da1e" + ], + "x-ms-request-id": [ + "d024deaf-2ffc-4ae0-8d53-40e27ceacfef" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192215Z:e5c1b3db-0190-49e3-85da-54495499da1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/84a1e5d5-9bf7-48a4-93a1-72af0f38a63d?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvODRhMWU1ZDUtOWJmNy00OGE0LTkzYTEtNzJhZjBmMzhhNjNkP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/84a1e5d5-9bf7-48a4-93a1-72af0f38a63d\",\r\n \"name\": \"84a1e5d5-9bf7-48a4-93a1-72af0f38a63d\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T19:22:15.6853912Z\",\r\n \"endTime\": \"2017-03-09T19:22:16.3728907Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], + "x-ms-correlation-request-id": [ + "1ef92f70-d040-48b4-92bc-094f878e8af8" + ], + "x-ms-request-id": [ + "097a1446-c7fb-4aa0-bcc7-01e51e6ed9dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192220Z:1ef92f70-d040-48b4-92bc-094f878e8af8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794/providers/Microsoft.MachineLearning//commitmentPlans/amlcp9732?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwOTczMj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "210b46c9-fed9-456d-9811-b63ce2c55914" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1cc2d2b7-3a00-4480-8658-4308281c0a49" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "9acd1615-8542-476b-87b8-769f7ad67585" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192221Z:9acd1615-8542-476b-87b8-769f7ad67585" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794/providers/Microsoft.Resources/deployments/deplamlcp9732?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A5NzMyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fa3f877-c079-4bbe-a65c-f2ecea3fb57b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4Nzk0LURFUExBTUxDUDk3MzItIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "9c4dfb3e-99c1-447a-9ff3-20d037e50c1c" + ], + "x-ms-correlation-request-id": [ + "9c4dfb3e-99c1-447a-9ff3-20d037e50c1c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192221Z:9c4dfb3e-99c1-447a-9ff3-20d037e50c1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4Nzk0LURFUExBTUxDUDk3MzItIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzROemswTFVSRlVFeEJUVXhEVURrM016SXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:22:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4Nzk0LURFUExBTUxDUDk3MzItIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "7a3349f9-e6db-4c68-899a-886e8341c5d2" + ], + "x-ms-correlation-request-id": [ + "7a3349f9-e6db-4c68-899a-886e8341c5d2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192251Z:7a3349f9-e6db-4c68-899a-886e8341c5d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4Nzk0LURFUExBTUxDUDk3MzItIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzROemswTFVSRlVFeEJUVXhEVURrM016SXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:23:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "25117941-6c92-4c92-9dd5-096db1d62881" + ], + "x-ms-correlation-request-id": [ + "25117941-6c92-4c92-9dd5-096db1d62881" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192321Z:25117941-6c92-4c92-9dd5-096db1d62881" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg8794/providers/Microsoft.Storage/storageAccounts/amlstor8001?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnODc5NC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I4MDAxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff3bda84-9e16-4191-be41-8e8b9f6adebe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:23:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a49ae87c-7add-427f-957a-6e394ea372a9" + ], + "x-ms-correlation-request-id": [ + "a49ae87c-7add-427f-957a-6e394ea372a9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192322Z:a49ae87c-7add-427f-957a-6e394ea372a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg8794?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnODc5ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "992a0664-e0ec-4c75-8eea-2ac5b2998e0c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:23:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3OTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "b52e7c95-2458-483a-8d10-a709aeddeb3b" + ], + "x-ms-correlation-request-id": [ + "b52e7c95-2458-483a-8d10-a709aeddeb3b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192322Z:b52e7c95-2458-483a-8d10-a709aeddeb3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3OTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6ZzNPVFF0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:23:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3OTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "c9810d4d-4f22-4ab9-885c-d33579cfb294" + ], + "x-ms-correlation-request-id": [ + "c9810d4d-4f22-4ab9-885c-d33579cfb294" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192352Z:c9810d4d-4f22-4ab9-885c-d33579cfb294" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg3OTQtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6ZzNPVFF0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:24:23 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14983" + ], + "x-ms-request-id": [ + "1d735bb3-2412-471a-b6d6-563af02167f6" + ], + "x-ms-correlation-request-id": [ + "1d735bb3-2412-471a-b6d6-563af02167f6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T192423Z:1d735bb3-2412-471a-b6d6-563af02167f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunAMLWebServiceTestScenario": [ + "amlws1749", + "amlrg8794", + "amlcp9732", + "amlstor8001" + ] + }, + "Variables": { + "SubscriptionId": "d128f140-94e6-4175-87a7-954b9d27db16" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndUpdateOnGraphWebService.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndUpdateOnGraphWebService.json index abcec262ac27..7462d047da1d 100644 --- a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndUpdateOnGraphWebService.json +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateAndUpdateOnGraphWebService.json @@ -1,31 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "37" ], "x-ms-client-request-id": [ - "1cf39a1a-3201-4aaf-8c7a-051a1e0c5f1b" + "12694c4a-20ad-4f11-ba90-fc9448c42d93" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113\",\r\n \"name\": \"amlrg5113\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262\",\r\n \"name\": \"amlrg9262\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,53 +34,54 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:16:57 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-request-id": [ - "c5651fbd-1971-4a67-9809-4a5c3577a3b1" + "55a523e3-4c59-4c9b-a7d7-5d33dace6216" ], "x-ms-correlation-request-id": [ - "c5651fbd-1971-4a67-9809-4a5c3577a3b1" + "55a523e3-4c59-4c9b-a7d7-5d33dace6216" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010910Z:c5651fbd-1971-4a67-9809-4a5c3577a3b1" + "WESTCENTRALUS:20170309T081657Z:55a523e3-4c59-4c9b-a7d7-5d33dace6216" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:09:10 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.Storage/storageAccounts/amlstor2599?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyNTk5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.Storage/storageAccounts/amlstor4957?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I0OTU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "97" ], "x-ms-client-request-id": [ - "0ab4b466-3ea8-4e77-986d-2a20a7055f25" + "2f007c17-76a1-4b50-9bd8-ebcf0ade11bf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, "ResponseBody": "", @@ -90,233 +92,243 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "25" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "c030f810-5cbf-4ede-aa6e-6afe7dbe9455" + "Date": [ + "Thu, 09 Mar 2017 08:17:00 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.Storage/operations/d1e6db2b-7a36-4a24-9cc7-29eb28f9405e?monitor=true&api-version=2015-06-15" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/21d999cd-f76a-4d5c-b11f-a9b938e90127?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "6424b4ee-f042-4e67-b1b3-9da6aec46c71" + ], "x-ms-correlation-request-id": [ - "c030f810-5cbf-4ede-aa6e-6afe7dbe9455" + "6424b4ee-f042-4e67-b1b3-9da6aec46c71" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010917Z:c030f810-5cbf-4ede-aa6e-6afe7dbe9455" + "WESTCENTRALUS:20170309T081700Z:6424b4ee-f042-4e67-b1b3-9da6aec46c71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:09:17 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.Storage/operations/d1e6db2b-7a36-4a24-9cc7-29eb28f9405e?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2QxZTZkYjJiLTdhMzYtNGEyNC05Y2M3LTI5ZWIyOGY5NDA1ZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/21d999cd-f76a-4d5c-b11f-a9b938e90127?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzIxZDk5OWNkLWY3NmEtNGQ1Yy1iMTFmLWE5YjkzOGU5MDEyNz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "75" - ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "d2055d4c-0606-4017-bc8c-b0237e77c7fa" + "Date": [ + "Thu, 09 Mar 2017 08:17:29 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "96633736-0bf5-48bd-8983-dad9b46dbaf6" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14740" + "14999" ], "x-ms-correlation-request-id": [ - "d2055d4c-0606-4017-bc8c-b0237e77c7fa" + "96633736-0bf5-48bd-8983-dad9b46dbaf6" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010947Z:d2055d4c-0606-4017-bc8c-b0237e77c7fa" + "WESTCENTRALUS:20170309T081730Z:96633736-0bf5-48bd-8983-dad9b46dbaf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:09:46 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.Storage/storageAccounts/amlstor2599/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyNTk5L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.Storage/storageAccounts/amlstor4957/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I0OTU3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06c3c16f-52d7-4f6e-a9e6-81259e101d77" + "f2616767-d230-46e6-a0bc-06d05dbb912c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"key1\": \"HABTB/Hi6yGi3Rn6oclzC2KPXS5SVLokIrBpVrSK90PfW6rndB5zGThfO7+T4b+CLkeuM7K0T6fhkOEfxOgjtw==\",\r\n \"key2\": \"Q/Z7KU5wwIwrQyFPkFHWvSOiqj3e/PZT3yxEUXLKyRjsHBo9YRmMZBbdbJMftvpcU4Wu4RnvCWMXqNP8txEHtA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"WEB_SERVICE_KEY_SAMPLE5\",\r\n \"key2\": \"WEB_SERVICE_KEY_SAMPLE6\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "198" - ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "a7c7c5ee-36a1-43dd-a95a-b2d94fde2be7" + "Date": [ + "Thu, 09 Mar 2017 08:17:30 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "46d93a03-70fd-4778-8ebf-51a88ad69c18" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "a7c7c5ee-36a1-43dd-a95a-b2d94fde2be7" + "46d93a03-70fd-4778-8ebf-51a88ad69c18" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010947Z:a7c7c5ee-36a1-43dd-a95a-b2d94fde2be7" + "WESTCENTRALUS:20170309T081730Z:46d93a03-70fd-4778-8ebf-51a88ad69c18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:09:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08d0c767-1476-4771-9938-9bf28f3ba413" + "d67bc465-91ba-45b9-9815-7ce42af74bc2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1186" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:17:30 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "14989" ], "x-ms-request-id": [ - "c386046e-a9a9-48c5-ae7b-543e83ae0ad6" + "b9401302-ce50-4d87-943f-459ad010c40e" ], "x-ms-correlation-request-id": [ - "c386046e-a9a9-48c5-ae7b-543e83ae0ad6" + "b9401302-ce50-4d87-943f-459ad010c40e" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010947Z:c386046e-a9a9-48c5-ae7b-543e83ae0ad6" + "WESTCENTRALUS:20170309T081730Z:b9401302-ce50-4d87-943f-459ad010c40e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:09:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113/providers/Microsoft.Resources/deployments/deplamlcp7543?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3NTQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262/providers/Microsoft.Resources/deployments/deplamlcp7964?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3OTY0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"string\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"[parameters('apiVersion')]\",\r\n \"name\": \"[parameters('planName')]\",\r\n \"type\": \"Microsoft.MachineLearning/CommitmentPlans\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('planSkuName')]\",\r\n \"tier\": \"[parameters('planSkuTier')]\",\r\n \"capacity\": \"1\"\r\n },\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"planName\": {\r\n \"value\": \"amlcp7543\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"string\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"[parameters('apiVersion')]\",\r\n \"name\": \"[parameters('planName')]\",\r\n \"type\": \"Microsoft.MachineLearning/CommitmentPlans\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('planSkuName')]\",\r\n \"tier\": \"[parameters('planSkuTier')]\",\r\n \"capacity\": \"1\"\r\n },\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"planName\": {\r\n \"value\": \"amlcp7964\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1274" + "1258" ], "x-ms-client-request-id": [ - "27325c49-b001-4507-9db4-21fef16363f7" + "3635eb39-97f7-4b0b-a868-4e7fdd1c3c7f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.Resources/deployments/deplamlcp7543\",\r\n \"name\": \"deplamlcp7543\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp7543\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-05-18T01:09:48.8231591Z\",\r\n \"duration\": \"PT0.4409819S\",\r\n \"correlationId\": \"438d78ed-b089-421b-88e4-25f4039dd67e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.Resources/deployments/deplamlcp7964\",\r\n \"name\": \"deplamlcp7964\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp7964\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2017-03-09T08:17:31.4918581Z\",\r\n \"duration\": \"PT0.0909596S\",\r\n \"correlationId\": \"f182ff74-4ce0-4cf7-97c5-7cdd835d6e43\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "749" + "769" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,215 +336,222 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:17:31 GMT" + ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113/providers/Microsoft.Resources/deployments/deplamlcp7543/operationStatuses/08587380730970954894?api-version=2015-11-01" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262/providers/Microsoft.Resources/deployments/deplamlcp7964/operationStatuses/08587125594340767056?api-version=2015-11-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-request-id": [ - "438d78ed-b089-421b-88e4-25f4039dd67e" + "f182ff74-4ce0-4cf7-97c5-7cdd835d6e43" ], "x-ms-correlation-request-id": [ - "438d78ed-b089-421b-88e4-25f4039dd67e" + "f182ff74-4ce0-4cf7-97c5-7cdd835d6e43" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010948Z:438d78ed-b089-421b-88e4-25f4039dd67e" + "WESTCENTRALUS:20170309T081731Z:f182ff74-4ce0-4cf7-97c5-7cdd835d6e43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:09:48 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113/providers/Microsoft.Resources/deployments/deplamlcp7543/operationStatuses/08587380730970954894?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3NTQzL29wZXJhdGlvblN0YXR1c2VzLzA4NTg3MzgwNzMwOTcwOTU0ODk0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262/providers/Microsoft.Resources/deployments/deplamlcp7964/operationStatuses/08587125594340767056?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3OTY0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg3MTI1NTk0MzQwNzY3MDU2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "22" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:01 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" + "14988" ], "x-ms-request-id": [ - "b7631b2c-ec40-492f-9011-9fa0fbe6d8af" + "2333d241-6bca-41e6-868b-f5c0d94309d9" ], "x-ms-correlation-request-id": [ - "b7631b2c-ec40-492f-9011-9fa0fbe6d8af" + "2333d241-6bca-41e6-868b-f5c0d94309d9" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011019Z:b7631b2c-ec40-492f-9011-9fa0fbe6d8af" + "WESTCENTRALUS:20170309T081801Z:2333d241-6bca-41e6-868b-f5c0d94309d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113/providers/Microsoft.Resources/deployments/deplamlcp7543?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3NTQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262/providers/Microsoft.Resources/deployments/deplamlcp7964?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3OTY0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.Resources/deployments/deplamlcp7543\",\r\n \"name\": \"deplamlcp7543\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp7543\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-05-18T01:09:57.3332231Z\",\r\n \"duration\": \"PT8.9510459S\",\r\n \"correlationId\": \"438d78ed-b089-421b-88e4-25f4039dd67e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp7543\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.Resources/deployments/deplamlcp7964\",\r\n \"name\": \"deplamlcp7964\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp7964\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2017-03-09T08:17:34.4307538Z\",\r\n \"duration\": \"PT3.0298553S\",\r\n \"correlationId\": \"f182ff74-4ce0-4cf7-97c5-7cdd835d6e43\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp7964\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "831" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:01 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14733" + "14987" ], "x-ms-request-id": [ - "eaffd360-b44b-441c-9eb3-03e87c5cf74f" + "871fa54e-33a2-4e94-b75c-c410013b6f51" ], "x-ms-correlation-request-id": [ - "eaffd360-b44b-441c-9eb3-03e87c5cf74f" + "871fa54e-33a2-4e94-b75c-c410013b6f51" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011019Z:eaffd360-b44b-441c-9eb3-03e87c5cf74f" + "WESTCENTRALUS:20170309T081801Z:871fa54e-33a2-4e94-b75c-c410013b6f51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113/providers/Microsoft.MachineLearning//commitmentPlans/amlcp7543?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNzU0Mz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262/providers/Microsoft.MachineLearning//commitmentPlans/amlcp7964?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNzk2ND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88236fe6-3b88-4b37-a789-8ef96497d118" + "333a300a-4b50-4a97-a583-6abd8dc40673" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"etag\": \"00000301-0000-0000-0000-573bc0e10000\",\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/commitmentPlans/amlcp7543\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"amlcp7543\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2016-05-18T01:09:54.1482768Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 100.0,\r\n \"amount\": 100.0,\r\n \"includedQuantityMeter\": \"93284d87-d24e-448a-9d4c-c5df44b3bb52\",\r\n \"overageMeter\": \"60c709a8-0783-47cd-a4f8-662814c46aa0\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 10000.0,\r\n \"amount\": 10000.0,\r\n \"includedQuantityMeter\": \"a22f9766-117b-4865-8389-631cb8f852b1\",\r\n \"overageMeter\": \"d9f14fca-2680-44a1-83ca-511364fe3201\"\r\n }\r\n },\r\n \"planMeter\": \"2d38cd70-6831-4e50-acc4-4c72d6ef57c1\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false,\r\n \"maxAssociationLimit\": 10000\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"PLAN_SKU_NAME\",\r\n \"tier\": \"PLAN_SKU_TIER\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", + "ResponseBody": "{\r\n \"etag\": \"0000c003-0000-0000-0000-58c10f9d0000\",\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/commitmentPlans/amlcp7964\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"amlcp7964\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2017-03-09T08:17:33.0955601Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 25.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"29187de1-b4a1-4503-a6f6-078271b3fc9d\",\r\n \"overageMeter\": \"842f92f7-a46b-4522-ac62-8134271dc591\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 100000.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"303743b6-4cd0-44df-8ec2-a93c8f14943b\",\r\n \"overageMeter\": \"c906e161-98b8-41b1-81e2-b59e0b263740\"\r\n }\r\n },\r\n \"maxAssociationLimit\": 10000,\r\n \"maxCapacityLimit\": 10,\r\n \"minCapacityLimit\": 1,\r\n \"planMeter\": \"4a5a4b83-6216-47c5-b3db-fe430fa6e2c3\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1020" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "6df86082-7f50-4b09-919b-3c3eb63cd47e" + "Date": [ + "Thu, 09 Mar 2017 08:18:01 GMT" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14732" + "Pragma": [ + "no-cache" ], - "x-ms-correlation-request-id": [ - "84cfb23c-f88c-49e8-8803-032b2c5da92c" + "Transfer-Encoding": [ + "chunked" ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011020Z:84cfb23c-f88c-49e8-8803-032b2c5da92c" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "4792dd21-04bc-4a69-bed3-d4347e003e31" ], - "Date": [ - "Wed, 18 May 2016 01:10:20 GMT" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-correlation-request-id": [ + "fc2a20f6-c388-4184-81c1-3c31e4356859" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T081802Z:fc2a20f6-c388-4184-81c1-3c31e4356859" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIzNzU/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU3Mjc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": true,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2599\",\r\n \"key\": \"HABTB/Hi6yGi3Rn6oclzC2KPXS5SVLokIrBpVrSK90PfW6rndB5zGThfO7+T4b+CLkeuM7K0T6fhkOEfxOgjtw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/commitmentPlans/amlcp7543\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_01\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {}\r\n },\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"keys\": {\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor4957\",\r\n \"key\": \"WEB_SERVICE_KEY_SAMPLE5\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/commitmentPlans/amlcp7964\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"payloadsInBlobStorage\": false\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5902" + "15025" ], "x-ms-client-request-id": [ - "73e380d6-30c9-433f-b968-c76173f47921" + "97894ce0-8925-458c-9a3c-373d6b4860fd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375\",\r\n \"name\": \"amlws2375\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2599\",\r\n \"key\": \"HABTB/Hi6yGi3Rn6oclzC2KPXS5SVLokIrBpVrSK90PfW6rndB5zGThfO7+T4b+CLkeuM7K0T6fhkOEfxOgjtw==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/commitmentPlans/amlcp7543\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727\",\r\n \"name\": \"amlws5727\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "6167" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -540,249 +559,280 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:03 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/98686d7a-4d17-4d8c-9415-09bc11e96528?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/718899e4-6ca7-4f47-922a-238b7fb55f42?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "358" + ], "x-ms-correlation-request-id": [ - "7cf58d3b-55ff-432f-8a18-574583d174da" + "9042848c-96c3-4118-af47-e23417b81177" ], "x-ms-request-id": [ - "f8d80a4e-6228-4795-bb07-100bc7c748cc" + "e6aae1f2-f906-4405-9346-a423979a591c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1189" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011026Z:7cf58d3b-55ff-432f-8a18-574583d174da" + "WESTCENTRALUS:20170309T081804Z:9042848c-96c3-4118-af47-e23417b81177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:25 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/98686d7a-4d17-4d8c-9415-09bc11e96528?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzk4Njg2ZDdhLTRkMTctNGQ4Yy05NDE1LTA5YmMxMWU5NjUyOD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/718899e4-6ca7-4f47-922a-238b7fb55f42?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzE4ODk5ZTQtNmNhNy00ZjQ3LTkyMmEtMjM4YjdmYjU1ZjQyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/98686d7a-4d17-4d8c-9415-09bc11e96528\",\r\n \"name\": \"98686d7a-4d17-4d8c-9415-09bc11e96528\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:10:27.3419993Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/718899e4-6ca7-4f47-922a-238b7fb55f42\",\r\n \"name\": \"718899e4-6ca7-4f47-922a-238b7fb55f42\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:18:06.2562398Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "353" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:08 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "118" + ], "x-ms-correlation-request-id": [ - "ec290833-a639-470b-87b0-98b47affc182" + "ad388f86-fb6f-473f-ab4b-cc2954bc65b4" ], "x-ms-request-id": [ - "2222b4a0-1129-4ac2-800a-b0f1fd420231" + "2c2995d4-c5a5-4154-8a14-785a64579fbc" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14749" + "14979" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011032Z:ec290833-a639-470b-87b0-98b47affc182" + "WESTCENTRALUS:20170309T081809Z:ad388f86-fb6f-473f-ab4b-cc2954bc65b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:31 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/98686d7a-4d17-4d8c-9415-09bc11e96528?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzk4Njg2ZDdhLTRkMTctNGQ4Yy05NDE1LTA5YmMxMWU5NjUyOD9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/718899e4-6ca7-4f47-922a-238b7fb55f42?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNzE4ODk5ZTQtNmNhNy00ZjQ3LTkyMmEtMjM4YjdmYjU1ZjQyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/98686d7a-4d17-4d8c-9415-09bc11e96528\",\r\n \"name\": \"98686d7a-4d17-4d8c-9415-09bc11e96528\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:10:27.3419993Z\",\r\n \"endTime\": \"2016-05-18T01:10:35.401118Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/718899e4-6ca7-4f47-922a-238b7fb55f42\",\r\n \"name\": \"718899e4-6ca7-4f47-922a-238b7fb55f42\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:18:06.2562398Z\",\r\n \"endTime\": \"2017-03-09T08:18:11.9882792Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "379" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:14 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], "x-ms-correlation-request-id": [ - "d7f8ce91-1b2f-45b7-ae4b-2762b1ad2bc7" + "d97feea0-23e8-483d-a186-8e888a5f265c" ], "x-ms-request-id": [ - "2384a69f-3308-4c5f-8306-ee7aa0b64805" + "855c0784-502d-401a-a461-d465c61a504f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14748" + "14978" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011037Z:d7f8ce91-1b2f-45b7-ae4b-2762b1ad2bc7" + "WESTCENTRALUS:20170309T081814Z:d97feea0-23e8-483d-a186-8e888a5f265c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:36 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIzNzU/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU3Mjc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375\",\r\n \"name\": \"amlws2375\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:10:26.0017247Z\",\r\n \"modifiedOn\": \"2016-05-18T01:10:35.4878116Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/1776e41b77b341c893ad3b219155dcad/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2599\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727\",\r\n \"name\": \"amlws5727\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:18:04.3386647Z\",\r\n \"modifiedOn\": \"2017-03-09T08:18:12.034037Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f8a3472a9f7c43a9b4fe3b1f76d00527/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor4957\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_09\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5916" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:14 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "19" + ], "x-ms-correlation-request-id": [ - "f7badd9c-14bf-4499-b3ae-c3ece6d46fd2" + "9b86d830-2341-401b-a063-402315651889" ], "x-ms-request-id": [ - "f587435c-ee29-4e39-bf22-5f2e3fa726d5" + "4f1eccf2-58b2-456c-8ba1-8aa1c32d3ca4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14747" + "14977" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011037Z:f7badd9c-14bf-4499-b3ae-c3ece6d46fd2" + "WESTCENTRALUS:20170309T081814Z:9b86d830-2341-401b-a063-402315651889" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:36 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIzNzU/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU3Mjc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375\",\r\n \"name\": \"amlws2375\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:10:26.0017247Z\",\r\n \"modifiedOn\": \"2016-05-18T01:10:52.8940233Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"description was updated!\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/1776e41b77b341c893ad3b219155dcad/swagger.json\",\r\n \"readOnly\": false,\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2599\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727\",\r\n \"name\": \"amlws5727\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:18:04.3386647Z\",\r\n \"modifiedOn\": \"2017-03-09T08:18:22.7693368Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"description was updated!\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/f8a3472a9f7c43a9b4fe3b1f76d00527/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor4957\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_10\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5960" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:24 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "17" + ], "x-ms-correlation-request-id": [ - "d2f52166-7260-4e01-9257-96c413412e41" + "c3a226e1-15fb-4bf8-8f87-e02a40becbba" ], "x-ms-request-id": [ - "82afedc7-6cee-4c7c-918a-f2e9c7bfaa17" + "dcd09d21-7b56-40a7-85c1-0b4385b2623f" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14742" + "14974" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011054Z:d2f52166-7260-4e01-9257-96c413412e41" + "WESTCENTRALUS:20170309T081824Z:c3a226e1-15fb-4bf8-8f87-e02a40becbba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:53 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIzNzU/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU3Mjc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"description\": \"description was updated!\",\r\n \"keys\": {\r\n \"primary\": \"f6ae3d003c63457ab4c5997effb5e4dc\"\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"All\"\r\n }\r\n }\r\n}", "RequestHeaders": { @@ -793,286 +843,264 @@ "232" ], "x-ms-client-request-id": [ - "e8d79434-7aaf-4389-9a15-22733b7d308e" + "65eee8f8-0a40-418d-936c-26178fff694f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375\",\r\n \"name\": \"amlws2375\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"createdOn\": \"2016-05-18T01:10:26.0017247Z\",\r\n \"modifiedOn\": \"2016-05-18T01:10:37.8539234Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/1776e41b77b341c893ad3b219155dcad/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2599\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727\",\r\n \"name\": \"amlws5727\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5919" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:14 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2a8bdbca-8d38-4d01-8329-ebecd612c237?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b3501e89-2b0c-4011-b32c-074442003e72?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "217" + ], "x-ms-correlation-request-id": [ - "24ce5ee0-c913-42dd-8b02-82c79b2fdd96" + "4287b6d5-6045-438d-b856-f11198d9451a" ], "x-ms-request-id": [ - "7e0a26b4-c1d7-4911-84ae-351a7c24aef9" + "c54ebdf2-14cf-4531-b09c-d56fa1667993" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1188" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011038Z:24ce5ee0-c913-42dd-8b02-82c79b2fdd96" + "WESTCENTRALUS:20170309T081814Z:4287b6d5-6045-438d-b856-f11198d9451a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:37 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2a8bdbca-8d38-4d01-8329-ebecd612c237?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJhOGJkYmNhLThkMzgtNGQwMS04MzI5LWViZWNkNjEyYzIzNz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b3501e89-2b0c-4011-b32c-074442003e72?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYjM1MDFlODktMmIwYy00MDExLWIzMmMtMDc0NDQyMDAzZTcyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2a8bdbca-8d38-4d01-8329-ebecd612c237\",\r\n \"name\": \"2a8bdbca-8d38-4d01-8329-ebecd612c237\",\r\n \"status\": \"Provisioning\",\r\n \"percentComplete\": 0.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b3501e89-2b0c-4011-b32c-074442003e72\",\r\n \"name\": \"b3501e89-2b0c-4011-b32c-074442003e72\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:18:16.2202466Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "289" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "1626c08e-958d-457c-a87e-8a979bf0c57f" - ], - "x-ms-request-id": [ - "ec563ccc-300b-4961-960d-7931cba8a352" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14745" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011043Z:1626c08e-958d-457c-a87e-8a979bf0c57f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Thu, 09 Mar 2017 08:18:19 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 18 May 2016 01:10:43 GMT" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2a8bdbca-8d38-4d01-8329-ebecd612c237?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJhOGJkYmNhLThkMzgtNGQwMS04MzI5LWViZWNkNjEyYzIzNz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2a8bdbca-8d38-4d01-8329-ebecd612c237\",\r\n \"name\": \"2a8bdbca-8d38-4d01-8329-ebecd612c237\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:10:43.3424541Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "353" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Vary": [ + "Accept-Encoding" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-request-duration": [ + "26" ], "x-ms-correlation-request-id": [ - "4c9b936c-63a9-4611-bba2-2b923d40f2de" + "0e9146e7-fb1a-43f6-b910-69f66720a148" ], "x-ms-request-id": [ - "01700bc6-a434-41c5-9717-120bcad71f72" + "f0a576de-65be-4069-8275-6e4e24f4900d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14976" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011048Z:4c9b936c-63a9-4611-bba2-2b923d40f2de" + "WESTCENTRALUS:20170309T081819Z:0e9146e7-fb1a-43f6-b910-69f66720a148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:48 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2a8bdbca-8d38-4d01-8329-ebecd612c237?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzJhOGJkYmNhLThkMzgtNGQwMS04MzI5LWViZWNkNjEyYzIzNz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b3501e89-2b0c-4011-b32c-074442003e72?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvYjM1MDFlODktMmIwYy00MDExLWIzMmMtMDc0NDQyMDAzZTcyP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/2a8bdbca-8d38-4d01-8329-ebecd612c237\",\r\n \"name\": \"2a8bdbca-8d38-4d01-8329-ebecd612c237\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:10:43.3424541Z\",\r\n \"endTime\": \"2016-05-18T01:10:52.8129758Z\",\r\n \"percentComplete\": 0.88888888888888884\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/b3501e89-2b0c-4011-b32c-074442003e72\",\r\n \"name\": \"b3501e89-2b0c-4011-b32c-074442003e72\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:18:16.2202466Z\",\r\n \"endTime\": \"2017-03-09T08:18:22.7232103Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "396" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:24 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "8" + ], "x-ms-correlation-request-id": [ - "026481c2-f782-462e-89ad-07c76f6d5485" + "05ca9703-50e9-4d59-9d06-d1c171a9c24d" ], "x-ms-request-id": [ - "01f7f032-ee50-4e93-b5f6-8bad6cc1fb98" + "de4a6d36-65b7-4a7f-8aa3-f80dfc9600e3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" + "14975" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011053Z:026481c2-f782-462e-89ad-07c76f6d5485" + "WESTCENTRALUS:20170309T081824Z:05ca9703-50e9-4d59-9d06-d1c171a9c24d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:53 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375/listKeys?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIzNzUvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727/listKeys?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU3MjcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1843048f-29e9-4742-bfb3-080b118a7ff3" + "48c2506e-ae5d-462e-a150-56ccf49db240" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"primary\": \"f6ae3d003c63457ab4c5997effb5e4dc\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n}", + "ResponseBody": "{\r\n \"primary\": \"f6ae3d003c63457ab4c5997effb5e4dc\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "161" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:24 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "8" + ], "x-ms-correlation-request-id": [ - "861d58c5-2f8b-433e-8fe2-1b2c67530085" + "ca95ed16-e3b1-4747-a9b1-cc4f5c61abb0" ], "x-ms-request-id": [ - "2d29af27-4141-426f-855a-f609aa672b48" + "9cc86611-5c77-4950-a3d0-c154404924e3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" + "14973" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011054Z:861d58c5-2f8b-433e-8fe2-1b2c67530085" + "WESTCENTRALUS:20170309T081824Z:ca95ed16-e3b1-4747-a9b1-cc4f5c61abb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:53 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.MachineLearning/webServices/amlws2375?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czIzNzU/YXBpLXZlcnNpb249MjAxNi0wNS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.MachineLearning/webServices/amlws5727?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU3Mjc/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b38cfca-79bf-4e17-b0f7-b2ce64970863" + "ef92557a-87c6-42db-8a8e-fb1c481f8d00" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, "ResponseBody": "", @@ -1083,161 +1111,121 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:24 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/fe067c51-a967-4a2e-976f-adbcfa0e0024?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cb16b4a8-0018-4107-a7f7-a329b925deb2?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fe067c51-a967-4a2e-976f-adbcfa0e0024?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "144" + ], "x-ms-correlation-request-id": [ - "295e8cbc-92ec-4285-9eff-dc3dcf380be3" + "7df93f75-32d3-425a-b898-7e4a07d4b548" ], "x-ms-request-id": [ - "d009206f-0282-454e-a081-e7d055f19a7e" + "a7d722e0-1a90-451c-bd05-39a07b5854fc" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1187" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011055Z:295e8cbc-92ec-4285-9eff-dc3dcf380be3" + "WESTCENTRALUS:20170309T081825Z:7df93f75-32d3-425a-b898-7e4a07d4b548" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:10:54 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/cb16b4a8-0018-4107-a7f7-a329b925deb2?api-version=2016-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cb16b4a8-0018-4107-a7f7-a329b925deb2?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2NiMTZiNGE4LTAwMTgtNDEwNy1hN2Y3LWEzMjliOTI1ZGViMj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fe067c51-a967-4a2e-976f-adbcfa0e0024?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvZmUwNjdjNTEtYTk2Ny00YTJlLTk3NmYtYWRiY2ZhMGUwMDI0P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cb16b4a8-0018-4107-a7f7-a329b925deb2\",\r\n \"name\": \"cb16b4a8-0018-4107-a7f7-a329b925deb2\",\r\n \"status\": \"Provisioning\",\r\n \"percentComplete\": 0.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/fe067c51-a967-4a2e-976f-adbcfa0e0024\",\r\n \"name\": \"fe067c51-a967-4a2e-976f-adbcfa0e0024\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:18:26.7485732Z\",\r\n \"endTime\": \"2017-03-09T08:18:27.5931488Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "289" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "219afc74-ab58-421c-b5ca-33f480b7aed7" - ], - "x-ms-request-id": [ - "e151cab5-a87c-4925-b961-e534a99acf2d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14740" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011100Z:219afc74-ab58-421c-b5ca-33f480b7aed7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Thu, 09 Mar 2017 08:18:29 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 18 May 2016 01:10:59 GMT" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cb16b4a8-0018-4107-a7f7-a329b925deb2?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2NiMTZiNGE4LTAwMTgtNDEwNy1hN2Y3LWEzMjliOTI1ZGViMj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/cb16b4a8-0018-4107-a7f7-a329b925deb2\",\r\n \"name\": \"cb16b4a8-0018-4107-a7f7-a329b925deb2\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:11:00.5087087Z\",\r\n \"endTime\": \"2016-05-18T01:11:02.0442336Z\",\r\n \"percentComplete\": 1.0\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "380" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Vary": [ + "Accept-Encoding" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-request-duration": [ + "10" ], "x-ms-correlation-request-id": [ - "171299de-7b57-40dd-aa8d-73454ee093c8" + "568a7a08-dd18-4eea-b3c3-5781ac8f52d6" ], "x-ms-request-id": [ - "eb53568d-4340-4b69-9ec1-acad6d991305" + "22d8de33-eaaa-4641-ae15-641c82b0641d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "14972" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011105Z:171299de-7b57-40dd-aa8d-73454ee093c8" + "WESTCENTRALUS:20170309T081830Z:568a7a08-dd18-4eea-b3c3-5781ac8f52d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:11:04 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113/providers/Microsoft.MachineLearning//commitmentPlans/amlcp7543?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNzU0Mz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262/providers/Microsoft.MachineLearning//commitmentPlans/amlcp7964?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNzk2ND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b30e625a-9c00-4fb9-a145-5032f6c39259" + "20ca7ef6-b78d-4482-b2cc-2fb5efc65b2a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1248,50 +1236,51 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "6ccca8e1-4882-4a18-aab7-5da157eb7baf" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "Date": [ + "Thu, 09 Mar 2017 08:18:31 GMT" ], - "x-ms-correlation-request-id": [ - "ead890c4-dbf4-48c2-b5c2-166d3f282512" + "Pragma": [ + "no-cache" ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T011106Z:ead890c4-dbf4-48c2-b5c2-166d3f282512" + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "de49d31d-aade-47d2-b94d-f3cd0ea59e28" ], - "Date": [ - "Wed, 18 May 2016 01:11:06 GMT" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-correlation-request-id": [ + "e59e9f92-6c08-4fd9-a915-db5c9aa544e6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T081831Z:e59e9f92-6c08-4fd9-a915-db5c9aa544e6" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113/providers/Microsoft.Resources/deployments/deplamlcp7543?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3NTQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262/providers/Microsoft.Resources/deployments/deplamlcp7964?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A3OTY0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5edc00bd-008e-450a-9484-bc6d618c5a26" + "26ec6f59-053a-41ba-b80e-e635b10a51fc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1302,47 +1291,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:18:31 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc5MjYyLURFUExBTUxDUDc5NjQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1189" ], "x-ms-request-id": [ - "8355c228-a288-4627-b9f0-5982cd7186bb" + "d989aefc-8c19-433b-8e2f-3e6440829e22" ], "x-ms-correlation-request-id": [ - "8355c228-a288-4627-b9f0-5982cd7186bb" + "d989aefc-8c19-433b-8e2f-3e6440829e22" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011107Z:8355c228-a288-4627-b9f0-5982cd7186bb" + "WESTCENTRALUS:20170309T081831Z:d989aefc-8c19-433b-8e2f-3e6440829e22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:11:07 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc1MTEzLURFUExBTUxDUDc1NDMtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc1MTEzLURFUExBTUxDUDc1NDMtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzFNVEV6TFVSRlVFeEJUVXhEVURjMU5ETXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc5MjYyLURFUExBTUxDUDc5NjQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzVNall5TFVSRlVFeEJUVXhEVURjNU5qUXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1353,47 +1343,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:19:01 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc5MjYyLURFUExBTUxDUDc5NjQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" + "14985" ], "x-ms-request-id": [ - "82532839-3e29-4109-b031-2c82136c61cb" + "8b027a1b-287b-4b6f-8f7d-718f877a5082" ], "x-ms-correlation-request-id": [ - "82532839-3e29-4109-b031-2c82136c61cb" + "8b027a1b-287b-4b6f-8f7d-718f877a5082" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011137Z:82532839-3e29-4109-b031-2c82136c61cb" + "WESTCENTRALUS:20170309T081901Z:8b027a1b-287b-4b6f-8f7d-718f877a5082" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:11:36 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc1MTEzLURFUExBTUxDUDc1NDMtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc1MTEzLURFUExBTUxDUDc1NDMtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzFNVEV6TFVSRlVFeEJUVXhEVURjMU5ETXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc5MjYyLURFUExBTUxDUDc5NjQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzVNall5TFVSRlVFeEJUVXhEVURjNU5qUXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1401,47 +1392,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:19:31 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14984" ], "x-ms-request-id": [ - "11862f5f-dca9-46ca-83cb-377f9c7156b5" + "41f98c6a-208d-459e-9e7e-9d618095e8f5" ], "x-ms-correlation-request-id": [ - "11862f5f-dca9-46ca-83cb-377f9c7156b5" + "41f98c6a-208d-459e-9e7e-9d618095e8f5" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011207Z:11862f5f-dca9-46ca-83cb-377f9c7156b5" + "WESTCENTRALUS:20170309T081931Z:41f98c6a-208d-459e-9e7e-9d618095e8f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:12:07 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg5113/providers/Microsoft.Storage/storageAccounts/amlstor2599?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnNTExMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyNTk5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg9262/providers/Microsoft.Storage/storageAccounts/amlstor4957?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnOTI2Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I0OTU3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "979821a1-87b7-4142-a388-cc5f0733558a" + "1c3a4683-6c5e-4117-aaa6-476e0d5e884f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, "ResponseBody": "", @@ -1452,51 +1444,52 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "a9271d08-0976-470b-8ccf-9ec43eedc226" + "Date": [ + "Thu, 09 Mar 2017 08:19:32 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "22d37073-94de-4cc6-9864-1d1651e4d78e" + ], "x-ms-correlation-request-id": [ - "a9271d08-0976-470b-8ccf-9ec43eedc226" + "22d37073-94de-4cc6-9864-1d1651e4d78e" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011209Z:a9271d08-0976-470b-8ccf-9ec43eedc226" + "WESTCENTRALUS:20170309T081932Z:22d37073-94de-4cc6-9864-1d1651e4d78e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:12:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg5113?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnNTExMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg9262?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnOTI2Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94779bc8-7289-48f4-880f-f7c060620fd7" + "d8e17097-a80f-4709-8c5b-ff3f68b607f8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1507,47 +1500,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:19:32 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzkyNjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1188" ], "x-ms-request-id": [ - "4b3ed842-c4db-4fa4-8014-3c48b000912e" + "86256629-0bd2-4a98-8b89-46d89cb71cf6" ], "x-ms-correlation-request-id": [ - "4b3ed842-c4db-4fa4-8014-3c48b000912e" + "86256629-0bd2-4a98-8b89-46d89cb71cf6" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011209Z:4b3ed842-c4db-4fa4-8014-3c48b000912e" + "WESTCENTRALUS:20170309T081932Z:86256629-0bd2-4a98-8b89-46d89cb71cf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:12:09 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzUxMTMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzUxMTMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6VXhNVE10VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzkyNjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6a3lOakl0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1558,47 +1552,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:20:02 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzkyNjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" + "14983" ], "x-ms-request-id": [ - "b852a940-9a16-4280-afee-28336e0239f6" + "38e80307-0bdc-45d4-90c8-0a8311ffc47f" ], "x-ms-correlation-request-id": [ - "b852a940-9a16-4280-afee-28336e0239f6" + "38e80307-0bdc-45d4-90c8-0a8311ffc47f" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011239Z:b852a940-9a16-4280-afee-28336e0239f6" + "WESTCENTRALUS:20170309T082002Z:38e80307-0bdc-45d4-90c8-0a8311ffc47f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:12:39 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzUxMTMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzUxMTMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6VXhNVE10VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzkyNjItV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6a3lOakl0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1609,29 +1604,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:20:32 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14982" ], "x-ms-request-id": [ - "62cc1eec-b5cb-478a-a6da-1a590479eede" + "e9190910-b93a-4d1a-a957-c9608f4f1d84" ], "x-ms-correlation-request-id": [ - "62cc1eec-b5cb-478a-a6da-1a590479eede" + "e9190910-b93a-4d1a-a957-c9608f4f1d84" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T011310Z:62cc1eec-b5cb-478a-a6da-1a590479eede" + "WESTCENTRALUS:20170309T082032Z:e9190910-b93a-4d1a-a957-c9608f4f1d84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:13:09 GMT" ] }, "StatusCode": 200 @@ -1639,13 +1634,13 @@ ], "Names": { "RunAMLWebServiceTestScenario": [ - "amlws2375", - "amlrg5113", - "amlcp7543", - "amlstor2599" + "amlws5727", + "amlrg9262", + "amlcp7964", + "amlstor4957" ] }, "Variables": { - "SubscriptionId": "80c77c76-74ba-4c8c-8229-4c3b2957990c" + "SubscriptionId": "d128f140-94e6-4175-87a7-954b9d27db16" } } \ No newline at end of file diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebService.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebService.json index 35707960a115..7e375c28daf4 100644 --- a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebService.json +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebService.json @@ -1,31 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "37" ], "x-ms-client-request-id": [ - "f2022bb6-63f6-48b3-993b-9e98f4a65611" + "5cccc3e5-11b1-4767-8d51-dac4fc2bc049" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423\",\r\n \"name\": \"amlrg8423\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543\",\r\n \"name\": \"amlrg2543\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "179" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,6 +34,12 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:13:29 GMT" + ], "Pragma": [ "no-cache" ], @@ -40,46 +47,41 @@ "1199" ], "x-ms-request-id": [ - "9502dafa-9c03-4585-a303-e9e1e9fbdf82" + "c1c01eed-697e-465d-bafc-b8a93b73bccf" ], "x-ms-correlation-request-id": [ - "9502dafa-9c03-4585-a303-e9e1e9fbdf82" + "c1c01eed-697e-465d-bafc-b8a93b73bccf" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010439Z:9502dafa-9c03-4585-a303-e9e1e9fbdf82" + "WESTCENTRALUS:20170309T081329Z:c1c01eed-697e-465d-bafc-b8a93b73bccf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:04:38 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.Storage/storageAccounts/amlstor2208?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyMjA4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.Storage/storageAccounts/amlstor7775?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I3Nzc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "97" ], "x-ms-client-request-id": [ - "fc7c1e48-2ea3-4d86-9cb1-807fb2826466" + "b25fe229-85bb-4778-9790-03a7d97fb223" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, "ResponseBody": "", @@ -90,233 +92,243 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "Retry-After": [ - "25" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "d82c9cfc-4b91-442f-bb1b-73779ccb8874" + "Date": [ + "Thu, 09 Mar 2017 08:13:32 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.Storage/operations/a938e937-5af6-4383-b9c7-db1c110c12c1?monitor=true&api-version=2015-06-15" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/db6caaa5-3054-4443-b619-6de3e7c62bd8?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "579c4fbc-8949-4f44-b816-c5a9bb6a9898" + ], "x-ms-correlation-request-id": [ - "d82c9cfc-4b91-442f-bb1b-73779ccb8874" + "579c4fbc-8949-4f44-b816-c5a9bb6a9898" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010448Z:d82c9cfc-4b91-442f-bb1b-73779ccb8874" + "WESTCENTRALUS:20170309T081332Z:579c4fbc-8949-4f44-b816-c5a9bb6a9898" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:04:48 GMT" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.Storage/operations/a938e937-5af6-4383-b9c7-db1c110c12c1?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2E5MzhlOTM3LTVhZjYtNDM4My1iOWM3LWRiMWMxMTBjMTJjMT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/db6caaa5-3054-4443-b619-6de3e7c62bd8?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zL2RiNmNhYWE1LTMwNTQtNDQ0My1iNjE5LTZkZTNlN2M2MmJkOD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "75" - ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "4f56d13a-783d-4cff-91f6-7ad27381886f" + "Date": [ + "Thu, 09 Mar 2017 08:14:02 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "1604e339-da8a-40b0-b48a-b69848d47e0b" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" + "14999" ], "x-ms-correlation-request-id": [ - "4f56d13a-783d-4cff-91f6-7ad27381886f" + "1604e339-da8a-40b0-b48a-b69848d47e0b" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010518Z:4f56d13a-783d-4cff-91f6-7ad27381886f" + "WESTCENTRALUS:20170309T081403Z:1604e339-da8a-40b0-b48a-b69848d47e0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:05:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.Storage/storageAccounts/amlstor2208/listKeys?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyMjA4L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.Storage/storageAccounts/amlstor7775/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I3Nzc1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "590417c4-7e63-4094-989c-b1c5a68cad7a" + "a42ef7b3-c002-4cf8-90ad-b4f99c4185ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"key1\": \"I/kyaczBH73Rap3dIurn8yYDWKjqobL4nOqoDVsFMl3FMxPctrfJnV8rF8XEHOForFMRiY3qnRgoOZkKEGIe/Q==\",\r\n \"key2\": \"a6hvQMrmZlxuY/mka0xtGfvRsO4AGu3smRis+LeT+4bCEXy3W3wL4JaKHBb2iLXWGpu/yk0Mi7WFEOAmbL5Jsw==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"WEB_SERVICE_KEY_SAMPLE3\",\r\n \"key2\": \"WEB_SERVICE_KEY_SAMPLE4\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "198" - ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "d8c20519-eef6-43e8-9a70-2dc723a54952" + "Date": [ + "Thu, 09 Mar 2017 08:14:02 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "e9a16683-af39-4447-96a0-23cca7d98d31" + ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "d8c20519-eef6-43e8-9a70-2dc723a54952" + "e9a16683-af39-4447-96a0-23cca7d98d31" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010519Z:d8c20519-eef6-43e8-9a70-2dc723a54952" + "WESTCENTRALUS:20170309T081403Z:e9a16683-af39-4447-96a0-23cca7d98d31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:05:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2629d433-6386-4cae-bfe8-b30da3a1d58d" + "b48c6e34-9583-4bd4-93a7-84fc701a8f1a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1186" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:03 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14747" + "14999" ], "x-ms-request-id": [ - "b4dc824f-44e1-4c77-9e22-c62e5c18de3a" + "e0cf7d2c-109c-4559-917a-e4ad60bac38e" ], "x-ms-correlation-request-id": [ - "b4dc824f-44e1-4c77-9e22-c62e5c18de3a" + "e0cf7d2c-109c-4559-917a-e4ad60bac38e" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010519Z:b4dc824f-44e1-4c77-9e22-c62e5c18de3a" + "WESTCENTRALUS:20170309T081403Z:e0cf7d2c-109c-4559-917a-e4ad60bac38e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:05:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423/providers/Microsoft.Resources/deployments/deplamlcp4465?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A0NDY1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543/providers/Microsoft.Resources/deployments/deplamlcp3131?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AzMTMxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"string\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"[parameters('apiVersion')]\",\r\n \"name\": \"[parameters('planName')]\",\r\n \"type\": \"Microsoft.MachineLearning/CommitmentPlans\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('planSkuName')]\",\r\n \"tier\": \"[parameters('planSkuTier')]\",\r\n \"capacity\": \"1\"\r\n },\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"planName\": {\r\n \"value\": \"amlcp4465\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"string\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"[parameters('apiVersion')]\",\r\n \"name\": \"[parameters('planName')]\",\r\n \"type\": \"Microsoft.MachineLearning/CommitmentPlans\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('planSkuName')]\",\r\n \"tier\": \"[parameters('planSkuTier')]\",\r\n \"capacity\": \"1\"\r\n },\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"planName\": {\r\n \"value\": \"amlcp3131\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1274" + "1258" ], "x-ms-client-request-id": [ - "855108c0-8a9c-481e-a3e6-5cd1404cadf1" + "9ce2e86f-871f-4d50-b840-b0afbeb9036c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.Resources/deployments/deplamlcp4465\",\r\n \"name\": \"deplamlcp4465\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp4465\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-05-18T01:05:20.2779609Z\",\r\n \"duration\": \"PT0.5624221S\",\r\n \"correlationId\": \"ab5862cd-2b2c-4c08-9343-54fe0577bb6f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.Resources/deployments/deplamlcp3131\",\r\n \"name\": \"deplamlcp3131\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp3131\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2017-03-09T08:14:04.4826439Z\",\r\n \"duration\": \"PT0.1759356S\",\r\n \"correlationId\": \"f21ea7ca-1a1d-47f3-9d9b-cd9d272c2a31\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "749" + "769" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,203 +336,210 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:03 GMT" + ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423/providers/Microsoft.Resources/deployments/deplamlcp4465/operationStatuses/08587380733657621209?api-version=2015-11-01" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543/providers/Microsoft.Resources/deployments/deplamlcp3131/operationStatuses/08587125596411708951?api-version=2015-11-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "ab5862cd-2b2c-4c08-9343-54fe0577bb6f" + "f21ea7ca-1a1d-47f3-9d9b-cd9d272c2a31" ], "x-ms-correlation-request-id": [ - "ab5862cd-2b2c-4c08-9343-54fe0577bb6f" + "f21ea7ca-1a1d-47f3-9d9b-cd9d272c2a31" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010520Z:ab5862cd-2b2c-4c08-9343-54fe0577bb6f" + "WESTCENTRALUS:20170309T081404Z:f21ea7ca-1a1d-47f3-9d9b-cd9d272c2a31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:05:20 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423/providers/Microsoft.Resources/deployments/deplamlcp4465/operationStatuses/08587380733657621209?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A0NDY1L29wZXJhdGlvblN0YXR1c2VzLzA4NTg3MzgwNzMzNjU3NjIxMjA5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543/providers/Microsoft.Resources/deployments/deplamlcp3131/operationStatuses/08587125596411708951?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AzMTMxL29wZXJhdGlvblN0YXR1c2VzLzA4NTg3MTI1NTk2NDExNzA4OTUxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "22" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:34 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" + "14998" ], "x-ms-request-id": [ - "ece37e21-bc2b-4f39-bbe1-508d5ecf9a2c" + "8274a351-37f1-4c31-a154-b45f875585ce" ], "x-ms-correlation-request-id": [ - "ece37e21-bc2b-4f39-bbe1-508d5ecf9a2c" + "8274a351-37f1-4c31-a154-b45f875585ce" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010550Z:ece37e21-bc2b-4f39-bbe1-508d5ecf9a2c" + "WESTCENTRALUS:20170309T081434Z:8274a351-37f1-4c31-a154-b45f875585ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:05:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423/providers/Microsoft.Resources/deployments/deplamlcp4465?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A0NDY1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543/providers/Microsoft.Resources/deployments/deplamlcp3131?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AzMTMxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.Resources/deployments/deplamlcp4465\",\r\n \"name\": \"deplamlcp4465\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp4465\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_NAME\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"PLAN_SKU_TIER\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-05-18T01:05:24.4754848Z\",\r\n \"duration\": \"PT4.759946S\",\r\n \"correlationId\": \"ab5862cd-2b2c-4c08-9343-54fe0577bb6f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp4465\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.Resources/deployments/deplamlcp3131\",\r\n \"name\": \"deplamlcp3131\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp3131\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2017-03-09T08:14:17.4464412Z\",\r\n \"duration\": \"PT13.1397329S\",\r\n \"correlationId\": \"f21ea7ca-1a1d-47f3-9d9b-cd9d272c2a31\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp3131\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "830" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:34 GMT" + ], "Pragma": [ "no-cache" ], + "Vary": [ + "Accept-Encoding" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14742" + "14997" ], "x-ms-request-id": [ - "80345f44-5eff-4a87-a37d-b1831f275e8d" + "efcf49a7-2ba8-4ef9-b6ee-ffebe0c42e59" ], "x-ms-correlation-request-id": [ - "80345f44-5eff-4a87-a37d-b1831f275e8d" + "efcf49a7-2ba8-4ef9-b6ee-ffebe0c42e59" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010550Z:80345f44-5eff-4a87-a37d-b1831f275e8d" + "WESTCENTRALUS:20170309T081434Z:efcf49a7-2ba8-4ef9-b6ee-ffebe0c42e59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:05:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423/providers/Microsoft.MachineLearning//commitmentPlans/amlcp4465?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNDQ2NT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543/providers/Microsoft.MachineLearning//commitmentPlans/amlcp3131?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwMzEzMT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44619217-cdef-47a3-aafe-7a74c069ebb4" + "7680745f-e947-472e-9dd7-85692d8e133c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"etag\": \"0000fd00-0000-0000-0000-573bbfd20000\",\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4465\",\r\n \"location\": \"southcentralus\",\r\n \"name\": \"amlcp4465\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2016-05-18T01:05:22.0953498Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 100.0,\r\n \"amount\": 100.0,\r\n \"includedQuantityMeter\": \"93284d87-d24e-448a-9d4c-c5df44b3bb52\",\r\n \"overageMeter\": \"60c709a8-0783-47cd-a4f8-662814c46aa0\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 10000.0,\r\n \"amount\": 10000.0,\r\n \"includedQuantityMeter\": \"a22f9766-117b-4865-8389-631cb8f852b1\",\r\n \"overageMeter\": \"d9f14fca-2680-44a1-83ca-511364fe3201\"\r\n }\r\n },\r\n \"planMeter\": \"2d38cd70-6831-4e50-acc4-4c72d6ef57c1\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false,\r\n \"maxAssociationLimit\": 10000\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"PLAN_SKU_NAME\",\r\n \"tier\": \"PLAN_SKU_TIER\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", + "ResponseBody": "{\r\n \"etag\": \"0000b103-0000-0000-0000-58c10ed70000\",\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/commitmentPlans/amlcp3131\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"amlcp3131\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2017-03-09T08:14:15.7405552Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 25.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"29187de1-b4a1-4503-a6f6-078271b3fc9d\",\r\n \"overageMeter\": \"842f92f7-a46b-4522-ac62-8134271dc591\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 100000.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"303743b6-4cd0-44df-8ec2-a93c8f14943b\",\r\n \"overageMeter\": \"c906e161-98b8-41b1-81e2-b59e0b263740\"\r\n }\r\n },\r\n \"maxAssociationLimit\": 10000,\r\n \"maxCapacityLimit\": 10,\r\n \"minCapacityLimit\": 1,\r\n \"planMeter\": \"4a5a4b83-6216-47c5-b3db-fe430fa6e2c3\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1020" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-request-id": [ - "25e3d928-d3dc-486f-9bdd-f2c07a9cdb32" + "Date": [ + "Thu, 09 Mar 2017 08:14:34 GMT" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" + "Pragma": [ + "no-cache" ], - "x-ms-correlation-request-id": [ - "94cf13ee-71f2-4dd4-be25-7010ed35a6d3" + "Transfer-Encoding": [ + "chunked" ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T010552Z:94cf13ee-71f2-4dd4-be25-7010ed35a6d3" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Cache-Control": [ - "no-cache" + "x-ms-request-id": [ + "57af8ebe-1c64-404e-9a3f-511cc91d3ba3" ], - "Date": [ - "Wed, 18 May 2016 01:05:51 GMT" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-correlation-request-id": [ + "c0332c67-a04a-410c-8ee4-645107ffb43b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T081435Z:c0332c67-a04a-410c-8ee4-645107ffb43b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Mj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czMxNTA/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec43a13c-9827-4a40-9e9e-c1a32c57857b" + "ccb591c6-5b18-47e1-a721-f96a4b24160f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, "ResponseBody": "", @@ -528,47 +547,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:36 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "bc94f89c-d70e-48e5-a2b5-c2434cfa24e3" + "74563c74-0fcb-4c6d-bf74-003d586fa7e6" ], "x-ms-correlation-request-id": [ - "bc94f89c-d70e-48e5-a2b5-c2434cfa24e3" + "74563c74-0fcb-4c6d-bf74-003d586fa7e6" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010556Z:bc94f89c-d70e-48e5-a2b5-c2434cfa24e3" + "WESTCENTRALUS:20170309T081436Z:74563c74-0fcb-4c6d-bf74-003d586fa7e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:05:56 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Mj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czMxNTA/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5255392-2c66-4150-b49d-534e0ecd5f0e" + "f0ec6f40-1a12-4081-ad44-d30f952bcefa" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, "ResponseBody": "", @@ -579,71 +599,75 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:47 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/6cc56499-1b7d-4d5c-9274-6ba3c7518645?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/04b38c8f-d7c8-4cc8-a960-6b7c425afa8c?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/6cc56499-1b7d-4d5c-9274-6ba3c7518645?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "134" + ], "x-ms-correlation-request-id": [ - "d5ebccbd-a9da-4760-a845-6e2e95dde6e2" + "0137b90b-24cf-4a12-be4d-09bf261783b0" ], "x-ms-request-id": [ - "087c94f8-dd6e-4f53-95bd-c2cb50f4f6f4" + "34390278-295c-4d8c-b934-ef80e2d1bdb0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010617Z:d5ebccbd-a9da-4760-a845-6e2e95dde6e2" + "WESTCENTRALUS:20170309T081448Z:0137b90b-24cf-4a12-be4d-09bf261783b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:16 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationresults/04b38c8f-d7c8-4cc8-a960-6b7c425afa8c?api-version=2016-05-01-preview" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Mj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czMxNTA/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": true,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2208\",\r\n \"key\": \"I/kyaczBH73Rap3dIurn8yYDWKjqobL4nOqoDVsFMl3FMxPctrfJnV8rF8XEHOForFMRiY3qnRgoOZkKEGIe/Q==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4465\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_01\",\r\n \"certificateThumbprint\": \"SOME_THUMBPRINT\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {}\r\n },\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"keys\": {\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7775\",\r\n \"key\": \"WEB_SERVICE_KEY_SAMPLE3\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/commitmentPlans/amlcp3131\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"payloadsInBlobStorage\": false\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5902" + "15025" ], "x-ms-client-request-id": [ - "654ca5a3-69e3-4a26-b4e7-5da4f70f16aa" + "5865675e-72a2-4087-9543-2d8d8635d44a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552\",\r\n \"name\": \"amlws552\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"keys\": {\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n },\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2208\",\r\n \"key\": \"I/kyaczBH73Rap3dIurn8yYDWKjqobL4nOqoDVsFMl3FMxPctrfJnV8rF8XEHOForFMRiY3qnRgoOZkKEGIe/Q==\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/commitmentPlans/amlcp4465\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150\",\r\n \"name\": \"amlws3150\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "6165" + "378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -651,323 +675,304 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:36 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/f9382225-e909-406c-ba71-fc06c528c54b?api-version=2016-05-01-preview" + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/ca2a684a-f19e-4c65-8556-23ab4c679461?api-version=2017-01-01" ], "Azure-AsyncOperationPercentComplete": [ "0" ], + "x-ms-request-duration": [ + "426" + ], "x-ms-correlation-request-id": [ - "b62747ac-8123-445e-8e9e-ed9de521c49e" + "083acf93-52fc-4e39-a116-d5753960ac0d" ], "x-ms-request-id": [ - "e8813754-22c8-40ec-a047-86083d5ab741" + "3a2d7653-20d5-4d1f-80d8-283d3df19e91" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010559Z:b62747ac-8123-445e-8e9e-ed9de521c49e" + "WESTCENTRALUS:20170309T081437Z:083acf93-52fc-4e39-a116-d5753960ac0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:05:59 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/f9382225-e909-406c-ba71-fc06c528c54b?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2Y5MzgyMjI1LWU5MDktNDA2Yy1iYTcxLWZjMDZjNTI4YzU0Yj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/ca2a684a-f19e-4c65-8556-23ab4c679461?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvY2EyYTY4NGEtZjE5ZS00YzY1LTg1NTYtMjNhYjRjNjc5NDYxP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/f9382225-e909-406c-ba71-fc06c528c54b\",\r\n \"name\": \"f9382225-e909-406c-ba71-fc06c528c54b\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:06:00.4573973Z\",\r\n \"percentComplete\": 0.44444444444444442\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/ca2a684a-f19e-4c65-8556-23ab4c679461\",\r\n \"name\": \"ca2a684a-f19e-4c65-8556-23ab4c679461\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T08:14:37.3457384Z\",\r\n \"percentComplete\": 0.6\r\n}", "ResponseHeaders": { - "Content-Length": [ - "353" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-correlation-request-id": [ - "4862982e-c897-4a77-ba20-bea5d689d917" - ], - "x-ms-request-id": [ - "acafabd9-b179-4c8d-ac87-3433a373fb49" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14649" - ], - "x-ms-routing-request-id": [ - "WESTUS:20160518T010605Z:4862982e-c897-4a77-ba20-bea5d689d917" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Date": [ + "Thu, 09 Mar 2017 08:14:42 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], - "Date": [ - "Wed, 18 May 2016 01:06:05 GMT" + "Transfer-Encoding": [ + "chunked" ], "Server": [ "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/f9382225-e909-406c-ba71-fc06c528c54b?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2Y5MzgyMjI1LWU5MDktNDA2Yy1iYTcxLWZjMDZjNTI4YzU0Yj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/f9382225-e909-406c-ba71-fc06c528c54b\",\r\n \"name\": \"f9382225-e909-406c-ba71-fc06c528c54b\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2016-05-18T01:06:00.4573973Z\",\r\n \"percentComplete\": 0.66666666666666663\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "353" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Vary": [ + "Accept-Encoding" ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-request-duration": [ + "147" ], "x-ms-correlation-request-id": [ - "968499d1-9010-49c0-9913-fde48cc731de" + "36dc7b2f-1001-435b-84b1-bd70d24d2960" ], "x-ms-request-id": [ - "9d191b97-ec4f-43f0-bb5e-b49391921798" + "57f0cf63-e525-4f63-aae9-92269b761eed" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14648" + "14999" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010610Z:968499d1-9010-49c0-9913-fde48cc731de" + "WESTCENTRALUS:20170309T081442Z:36dc7b2f-1001-435b-84b1-bd70d24d2960" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:10 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/f9382225-e909-406c-ba71-fc06c528c54b?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzL2Y5MzgyMjI1LWU5MDktNDA2Yy1iYTcxLWZjMDZjNTI4YzU0Yj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/ca2a684a-f19e-4c65-8556-23ab4c679461?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvY2EyYTY4NGEtZjE5ZS00YzY1LTg1NTYtMjNhYjRjNjc5NDYxP2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/f9382225-e909-406c-ba71-fc06c528c54b\",\r\n \"name\": \"f9382225-e909-406c-ba71-fc06c528c54b\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:06:00.4573973Z\",\r\n \"endTime\": \"2016-05-18T01:06:14.285295Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/ca2a684a-f19e-4c65-8556-23ab4c679461\",\r\n \"name\": \"ca2a684a-f19e-4c65-8556-23ab4c679461\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:14:37.3457384Z\",\r\n \"endTime\": \"2017-03-09T08:14:46.958284Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "379" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:47 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], "x-ms-correlation-request-id": [ - "def63a96-9fcb-44c6-a2f0-33813dc1f521" + "48fee010-4969-4b5f-8f88-9ba6619025e2" ], "x-ms-request-id": [ - "109e01e0-0c73-4423-87a0-24e3f615f351" + "cf3e5d8b-cecb-491d-8a08-de044b1ea9a2" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14647" + "14998" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010615Z:def63a96-9fcb-44c6-a2f0-33813dc1f521" + "WESTCENTRALUS:20170309T081447Z:48fee010-4969-4b5f-8f88-9ba6619025e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:15 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Mj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czMxNTA/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552\",\r\n \"name\": \"amlws552\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:05:59.0368953Z\",\r\n \"modifiedOn\": \"2016-05-18T01:06:14.3435366Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/d127cff59c3c4c3d9d126ed1658441aa/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2208\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150\",\r\n \"name\": \"amlws3150\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:14:36.8400351Z\",\r\n \"modifiedOn\": \"2017-03-09T08:14:47.0178767Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bd79b2cc889247bdbbe8d659358bbdde/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7775\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_02\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5914" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:47 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "37" + ], "x-ms-correlation-request-id": [ - "7173cb00-1d0d-489a-a66e-9b34163ce2a7" + "58b24ac7-070c-46ad-aaaa-7e8b196fde8f" ], "x-ms-request-id": [ - "529754e9-73fb-4be0-8caf-b97626f9ab48" + "295583d1-013b-4671-a9fd-b3f5a802ed82" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14646" + "14997" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010616Z:7173cb00-1d0d-489a-a66e-9b34163ce2a7" + "WESTCENTRALUS:20170309T081447Z:58b24ac7-070c-46ad-aaaa-7e8b196fde8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:15 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Mj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czMxNTA/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a85aa89b-7119-44d6-9bdb-c9e626ce593f" + "62bb9039-86f9-401f-a254-bd681b7eed90" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552\",\r\n \"name\": \"amlws552\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2016-05-18T01:05:59.0368953Z\",\r\n \"modifiedOn\": \"2016-05-18T01:06:14.3435366Z\",\r\n \"title\": \"ServiceTitle\",\r\n \"description\": \"This is some service description\",\r\n \"swaggerLocation\": \"https://ussouthcentral.services.azureml.net/subscriptions/80c77c7674ba4c8c82294c3b2957990c/services/d127cff59c3c4c3d9d126ed1658441aa/swagger.json\",\r\n \"readOnly\": false,\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2208\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Apply Math Operation\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571\"\r\n }\r\n }\r\n },\r\n \"parameters\": {\r\n \"category\": \"Trigonometric\",\r\n \"trigonometric Function\": \"Sin\",\r\n \"column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"output mode\": \"ResultOnly\"\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"Class\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"sepal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-length\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"petal-width\": {\r\n \"type\": \"Number\",\r\n \"format\": \"Double\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"package\": {\r\n \"nodes\": {\r\n \"node1\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Category\": \"Trigonometric\",\r\n \"Trigonometric Function\": \"Sin\",\r\n \"Column Set\": \"{\\\"isFilter\\\":true,\\\"rules\\\":[{\\\"ruleType\\\":\\\"ColumnTypes\\\",\\\"exclude\\\":false,\\\"columnTypes\\\":[\\\"Numeric\\\"],\\\"columnKinds\\\":[\\\"All\\\"]}]}\",\r\n \"Output mode\": \"ResultOnly\"\r\n }\r\n },\r\n \"node3\": {\r\n \"outputId\": \"output1\"\r\n }\r\n },\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node3\"\r\n }\r\n ],\r\n \"graphParameters\": {\r\n \"Category\": {\r\n \"description\": \"\",\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Category\"\r\n }\r\n ]\r\n },\r\n \"Trigonometric Function\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Trigonometric Function\"\r\n }\r\n ]\r\n },\r\n \"Column Set\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Column Set\"\r\n }\r\n ]\r\n },\r\n \"Output mode\": {\r\n \"links\": [\r\n {\r\n \"nodeId\": \"node2\",\r\n \"parameterKey\": \"Output mode\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n \"1\",\r\n \"2.3\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\"\r\n ],\r\n [\r\n \"0\",\r\n \"0.5\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"2.5\"\r\n ],\r\n [\r\n \"0\",\r\n \"4.3\",\r\n \"1.2\",\r\n \"6.5\",\r\n \"6.3\"\r\n ],\r\n [\r\n \"1\",\r\n \"7.8\",\r\n \"8.0\",\r\n \"2.3\",\r\n \"0.5\"\r\n ],\r\n [\r\n \"1\",\r\n \"1.3\",\r\n \"5.5\",\r\n \"2.2\",\r\n \"9.2\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150\",\r\n \"name\": \"amlws3150\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T08:14:36.8400351Z\",\r\n \"modifiedOn\": \"2017-03-09T08:14:47.0178767Z\",\r\n \"title\": \"Some title (new contract)\",\r\n \"description\": \"This is some service description (new contract)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/bd79b2cc889247bdbbe8d659358bbdde/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor7775\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"name\": \"Import Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"name\": \"Join Data\",\r\n \"type\": \"Module\",\r\n \"locationInfo\": {\r\n \"uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"input\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"input1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"output1\": {\r\n \"title\": \"\",\r\n \"description\": \"\",\r\n \"type\": \"object\",\r\n \"properties\": {\r\n \"0\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"type\": \"Integer\",\r\n \"format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"type\": \"String\",\r\n \"format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n }\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node1\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node3\",\r\n \"targetNodeId\": \"node2\",\r\n \"targetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"sourceNodeId\": \"node2\",\r\n \"sourcePortId\": \"Results dataset\",\r\n \"targetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_02\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\r\n }\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5914" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:47 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "15" + ], "x-ms-correlation-request-id": [ - "a9681542-a764-4d63-9cce-4e96df23c50a" + "37bddbdd-a03c-404a-8bad-e44ff207a114" ], "x-ms-request-id": [ - "dc151d4a-2c61-4e07-8015-a83ebaa66bed" + "31396276-731a-46b5-9b0d-01337cb0536b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14645" + "14996" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010616Z:a9681542-a764-4d63-9cce-4e96df23c50a" + "WESTCENTRALUS:20170309T081447Z:37bddbdd-a03c-404a-8bad-e44ff207a114" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:15 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Mj9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czMxNTA/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8def8011-a759-4ef1-b379-b9aea40f07b5" + "a422b86d-607e-43c1-878d-857ea94fa6a9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The specified resource was not found.\",\r\n \"details\": [\r\n {\r\n \"code\": \"WebServiceNotFound\",\r\n \"message\": \"No Web Service could be found with the provided name: amlws552.\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The specified resource was not found.\",\r\n \"details\": [\r\n {\r\n \"code\": \"WebServiceNotFound\",\r\n \"message\": \"No Web Service could be found with the provided name: amlws3150.\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "273" + "274" ], "Content-Type": [ "application/json; charset=utf-8" @@ -975,158 +980,176 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:52 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-duration": [ + "9" + ], "x-ms-correlation-request-id": [ - "4b143d24-dd60-4342-9d8c-991958184cca" + "5730e878-3598-4206-ae4f-bb3702ee11ce" ], "x-ms-request-id": [ - "8ce54024-afb2-4288-895e-6f7f955e8d3a" + "9c2fda23-f466-4f04-8ed7-26e1b5a4a352" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14640" + "14993" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010622Z:4b143d24-dd60-4342-9d8c-991958184cca" + "WESTCENTRALUS:20170309T081453Z:5730e878-3598-4206-ae4f-bb3702ee11ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:21 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.MachineLearning/webServices/amlws552/listKeys?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czU1Mi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.MachineLearning/webServices/amlws3150/listKeys?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czMxNTAvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "edf68e15-1c41-4453-8152-27efba01e4a4" + "7d0516bf-4790-420c-90d6-a9bba186c98d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"primary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==\",\r\n \"secondary\": \"S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==\"\r\n}", + "ResponseBody": "{\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "217" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:47 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "7" + ], "x-ms-correlation-request-id": [ - "56120551-0b31-4e5a-97c5-e9ad87c743bb" + "a34773aa-5872-43cb-a3dc-714152d45a05" ], "x-ms-request-id": [ - "c9ed0113-e522-44a5-82a9-b3889e88f7be" + "cb5af364-81a5-4b05-b6c4-d89f53615c40" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14644" + "14995" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010616Z:56120551-0b31-4e5a-97c5-e9ad87c743bb" + "WESTCENTRALUS:20170309T081447Z:a34773aa-5872-43cb-a3dc-714152d45a05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:16 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/04b38c8f-d7c8-4cc8-a960-6b7c425afa8c?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy9zb3V0aGNlbnRyYWx1cy9vcGVyYXRpb25zU3RhdHVzLzA0YjM4YzhmLWQ3YzgtNGNjOC1hOTYwLTZiN2M0MjVhZmE4Yz9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/6cc56499-1b7d-4d5c-9274-6ba3c7518645?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvNmNjNTY0OTktMWI3ZC00ZDVjLTkyNzQtNmJhM2M3NTE4NjQ1P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/0.9.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/providers/Microsoft.MachineLearning/locations/southcentralus/operationsStatus/04b38c8f-d7c8-4cc8-a960-6b7c425afa8c\",\r\n \"name\": \"04b38c8f-d7c8-4cc8-a960-6b7c425afa8c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2016-05-18T01:06:18.9930625Z\",\r\n \"endTime\": \"2016-05-18T01:06:21.1806711Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/6cc56499-1b7d-4d5c-9274-6ba3c7518645\",\r\n \"name\": \"6cc56499-1b7d-4d5c-9274-6ba3c7518645\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T08:14:49.3374823Z\",\r\n \"endTime\": \"2017-03-09T08:14:51.1452287Z\",\r\n \"percentComplete\": 1.0\r\n}", "ResponseHeaders": { - "Content-Length": [ - "380" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:52 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], "x-ms-correlation-request-id": [ - "34f71097-d7cf-40f2-8724-8d2af695817e" + "76b7c63c-6fd9-4412-9cd1-8782f2e45a48" ], "x-ms-request-id": [ - "718a3aea-0cda-4c65-b065-92af115cc827" + "bbd15565-95cb-47ef-8c15-1451f72fe695" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14641" + "14994" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010622Z:34f71097-d7cf-40f2-8724-8d2af695817e" + "WESTCENTRALUS:20170309T081453Z:76b7c63c-6fd9-4412-9cd1-8782f2e45a48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:21 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423/providers/Microsoft.MachineLearning//commitmentPlans/amlcp4465?api-version=2016-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwNDQ2NT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543/providers/Microsoft.MachineLearning//commitmentPlans/amlcp3131?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwMzEzMT9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af9c5f02-a018-4f23-8468-8e95c099ec57" + "abdf18b4-5ffa-4acb-b8c7-590c4c828c3e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1137,50 +1160,51 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:53 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "bc738e13-bdca-4afd-8507-790d167cf054" + "54293d56-234f-4c32-9f81-4a33d2fa2fea" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "b3ded325-6c55-4d9f-a495-460f4556def9" + "b8a4e418-7f22-4df0-8ffb-72c2f415b263" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010623Z:b3ded325-6c55-4d9f-a495-460f4556def9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:23 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "WESTCENTRALUS:20170309T081453Z:b8a4e418-7f22-4df0-8ffb-72c2f415b263" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423/providers/Microsoft.Resources/deployments/deplamlcp4465?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3A0NDY1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543/providers/Microsoft.Resources/deployments/deplamlcp3131?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AzMTMxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2aa804be-0291-49c9-8180-f314546cc45b" + "81df91cc-954d-4c23-8bfd-6d2895c30a70" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1191,9 +1215,18 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:14:53 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNTQzLURFUExBTUxDUDMxMzEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], "Retry-After": [ "15" ], @@ -1201,37 +1234,29 @@ "1196" ], "x-ms-request-id": [ - "6040c4c8-efde-4792-9fb9-77ef9dc90f7c" + "35cf3c27-beae-4ec1-9cba-13a4c0005ec8" ], "x-ms-correlation-request-id": [ - "6040c4c8-efde-4792-9fb9-77ef9dc90f7c" + "35cf3c27-beae-4ec1-9cba-13a4c0005ec8" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010624Z:6040c4c8-efde-4792-9fb9-77ef9dc90f7c" + "WESTCENTRALUS:20170309T081453Z:35cf3c27-beae-4ec1-9cba-13a4c0005ec8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:24 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4NDIzLURFUExBTUxDUDQ0NjUtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4NDIzLURFUExBTUxDUDQ0NjUtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzROREl6TFVSRlVFeEJUVXhEVURRME5qVXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNTQzLURFUExBTUxDUDMxMzEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3lOVFF6TFVSRlVFeEJUVXhEVURNeE16RXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1242,47 +1267,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:15:23 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNTQzLURFUExBTUxDUDMxMzEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14732" + "14995" ], "x-ms-request-id": [ - "51dc5ef7-7ffb-4804-80c4-16e08697f0de" + "c9c815a8-db1a-4496-9f7c-66fc68604529" ], "x-ms-correlation-request-id": [ - "51dc5ef7-7ffb-4804-80c4-16e08697f0de" + "c9c815a8-db1a-4496-9f7c-66fc68604529" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010654Z:51dc5ef7-7ffb-4804-80c4-16e08697f0de" + "WESTCENTRALUS:20170309T081523Z:c9c815a8-db1a-4496-9f7c-66fc68604529" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:06:54 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4NDIzLURFUExBTUxDUDQ0NjUtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkc4NDIzLURFUExBTUxDUDQ0NjUtIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrYzROREl6TFVSRlVFeEJUVXhEVURRME5qVXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSnpiM1YwYUdObGJuUnlZV3gxY3lKOT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNTQzLURFUExBTUxDUDMxMzEtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3lOVFF6TFVSRlVFeEJUVXhEVURNeE16RXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1290,47 +1316,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:15:52 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" + "14994" ], "x-ms-request-id": [ - "28af0c5d-4475-4942-8701-ea27584a3c49" + "47dcb729-9e12-4636-8a6a-8387f3b497f2" ], "x-ms-correlation-request-id": [ - "28af0c5d-4475-4942-8701-ea27584a3c49" + "47dcb729-9e12-4636-8a6a-8387f3b497f2" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010724Z:28af0c5d-4475-4942-8701-ea27584a3c49" + "WESTCENTRALUS:20170309T081553Z:47dcb729-9e12-4636-8a6a-8387f3b497f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:07:24 GMT" ] }, "StatusCode": 204 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourceGroups/amlrg8423/providers/Microsoft.Storage/storageAccounts/amlstor2208?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlR3JvdXBzL2FtbHJnODQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyMjA4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2543/providers/Microsoft.Storage/storageAccounts/amlstor7775?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjU0My9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3I3Nzc1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42be3745-0c56-4c0b-986f-db4dd24efa81" + "587a053e-5607-458f-b536-3cd0487b52d7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, "ResponseBody": "", @@ -1341,51 +1368,52 @@ "Expires": [ "-1" ], - "Pragma": [ + "Cache-Control": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "7cd07240-6d34-45f5-8c6c-4d361400cf10" + "Date": [ + "Thu, 09 Mar 2017 08:15:54 GMT" ], - "Cache-Control": [ + "Pragma": [ "no-cache" ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "9934157e-6dbc-44d2-af86-eee3495474ab" + ], "x-ms-correlation-request-id": [ - "7cd07240-6d34-45f5-8c6c-4d361400cf10" + "9934157e-6dbc-44d2-af86-eee3495474ab" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010726Z:7cd07240-6d34-45f5-8c6c-4d361400cf10" + "WESTCENTRALUS:20170309T081554Z:9934157e-6dbc-44d2-af86-eee3495474ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Date": [ - "Wed, 18 May 2016 01:07:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/resourcegroups/amlrg8423?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL3Jlc291cmNlZ3JvdXBzL2FtbHJnODQyMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2543?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjU0Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70445990-2eef-40c1-a5f6-e0e4023daf61" + "0d9b19fd-6fa9-4bfe-ad0a-26e348cb32b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1396,9 +1424,18 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:15:54 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI1NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], @@ -1406,37 +1443,29 @@ "1195" ], "x-ms-request-id": [ - "902a2323-8ea1-4a57-b059-4a09452acbd8" + "dd3996ad-5e65-4406-9ac1-67a4f07e4b61" ], "x-ms-correlation-request-id": [ - "902a2323-8ea1-4a57-b059-4a09452acbd8" + "dd3996ad-5e65-4406-9ac1-67a4f07e4b61" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010727Z:902a2323-8ea1-4a57-b059-4a09452acbd8" + "WESTCENTRALUS:20170309T081554Z:dd3996ad-5e65-4406-9ac1-67a4f07e4b61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:07:26 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg0MjMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg0MjMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6ZzBNak10VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI1NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6STFORE10VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1447,47 +1476,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:16:24 GMT" + ], "Pragma": [ "no-cache" ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI1NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" + "14993" ], "x-ms-request-id": [ - "c137fb6b-5839-43be-8141-db9882d4223e" + "55a3db89-8284-4248-951a-18b266651c54" ], "x-ms-correlation-request-id": [ - "c137fb6b-5839-43be-8141-db9882d4223e" + "55a3db89-8284-4248-951a-18b266651c54" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010757Z:c137fb6b-5839-43be-8141-db9882d4223e" + "WESTCENTRALUS:20170309T081624Z:55a3db89-8284-4248-951a-18b266651c54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:07:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg0MjMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/80c77c76-74ba-4c8c-8229-4c3b2957990c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzg0MjMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODBjNzdjNzYtNzRiYS00YzhjLTgyMjktNGMzYjI5NTc5OTBjL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6ZzBNak10VTA5VlZFaERSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluTnZkWFJvWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI1NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6STFORE10VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -1498,29 +1528,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 08:16:54 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" + "14992" ], "x-ms-request-id": [ - "99f3f65e-3479-4599-9021-1d2f0d4550d1" + "8f0a0b8e-d916-429d-bca6-12e011c3d188" ], "x-ms-correlation-request-id": [ - "99f3f65e-3479-4599-9021-1d2f0d4550d1" + "8f0a0b8e-d916-429d-bca6-12e011c3d188" ], "x-ms-routing-request-id": [ - "WESTUS:20160518T010827Z:99f3f65e-3479-4599-9021-1d2f0d4550d1" + "WESTCENTRALUS:20170309T081654Z:8f0a0b8e-d916-429d-bca6-12e011c3d188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 18 May 2016 01:08:26 GMT" ] }, "StatusCode": 200 @@ -1528,13 +1558,13 @@ ], "Names": { "RunAMLWebServiceTestScenario": [ - "amlws552", - "amlrg8423", - "amlcp4465", - "amlstor2208" + "amlws3150", + "amlrg2543", + "amlcp3131", + "amlstor7775" ] }, "Variables": { - "SubscriptionId": "80c77c76-74ba-4c8c-8229-4c3b2957990c" + "SubscriptionId": "d128f140-94e6-4175-87a7-954b9d27db16" } } \ No newline at end of file diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebServiceWithLargePayload.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebServiceWithLargePayload.json new file mode 100644 index 000000000000..07210aca5e0b --- /dev/null +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/SessionRecords/MachineLearning.Tests.ScenarioTests.WebServiceTests/CreateGetRemoveGraphWebServiceWithLargePayload.json @@ -0,0 +1,1686 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ], + "x-ms-client-request-id": [ + "88f13fea-035c-4560-bb9d-de90fc6c576d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691\",\r\n \"name\": \"amlrg2691\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:58:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "9d8aa4a8-12f7-439d-a704-b36f8086045e" + ], + "x-ms-correlation-request-id": [ + "9d8aa4a8-12f7-439d-a704-b36f8086045e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195852Z:9d8aa4a8-12f7-439d-a704-b36f8086045e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.Storage/storageAccounts/amlstor2329?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyMzI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "97" + ], + "x-ms-client-request-id": [ + "b9c32313-3496-4dd3-ac83-36f85fdc3df5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:58:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/3d9bba6c-22f7-443c-af90-9ceeaebd93d9?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "96a75d12-be25-415a-b053-23f4f2794484" + ], + "x-ms-correlation-request-id": [ + "96a75d12-be25-415a-b053-23f4f2794484" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195857Z:96a75d12-be25-415a-b053-23f4f2794484" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.Storage/operations/3d9bba6c-22f7-443c-af90-9ceeaebd93d9?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzNkOWJiYTZjLTIyZjctNDQzYy1hZjkwLTljZWVhZWJkOTNkOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:59:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "ace24285-52b2-4015-a2f3-4dbe43e40b39" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "ace24285-52b2-4015-a2f3-4dbe43e40b39" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195927Z:ace24285-52b2-4015-a2f3-4dbe43e40b39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.Storage/storageAccounts/amlstor2329/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyMzI5L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2191e53b-f9dc-432f-879d-5512238e64a3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"WEB_SERVICE_KEY_SAMPLE7\",\r\n \"key2\": \"WEB_SERVICE_KEY_SAMPLE8\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:59:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "6f47e8c8-35f8-450a-b511-745b15b53507" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "6f47e8c8-35f8-450a-b511-745b15b53507" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195927Z:6f47e8c8-35f8-450a-b511-745b15b53507" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "561d3768-6960-4227-a829-a93b4c41bcb8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\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, 09 Mar 2017 19:59:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "35452003-7df6-4289-ac78-0b3d186da5f8" + ], + "x-ms-correlation-request-id": [ + "35452003-7df6-4289-ac78-0b3d186da5f8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195927Z:35452003-7df6-4289-ac78-0b3d186da5f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691/providers/Microsoft.Resources/deployments/deplamlcp1514?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AxNTE0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"string\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"string\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"string\"\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"apiVersion\": \"[parameters('apiVersion')]\",\r\n \"name\": \"[parameters('planName')]\",\r\n \"type\": \"Microsoft.MachineLearning/CommitmentPlans\",\r\n \"location\": \"[resourceGroup().location]\",\r\n \"sku\": {\r\n \"name\": \"[parameters('planSkuName')]\",\r\n \"tier\": \"[parameters('planSkuTier')]\",\r\n \"capacity\": \"1\"\r\n },\r\n \"properties\": {}\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"planName\": {\r\n \"value\": \"amlcp1514\"\r\n },\r\n \"planSkuName\": {\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1258" + ], + "x-ms-client-request-id": [ + "e63fe25e-1121-49a3-a32b-8fd3f42aae80" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.Resources/deployments/deplamlcp1514\",\r\n \"name\": \"deplamlcp1514\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp1514\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2017-03-09T19:59:29.335507Z\",\r\n \"duration\": \"PT0.6010767S\",\r\n \"correlationId\": \"290d6a31-b88e-4e9b-ae3f-f1668e06848e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "768" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:59:28 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691/providers/Microsoft.Resources/deployments/deplamlcp1514/operationStatuses/08587125173167617942?api-version=2015-11-01" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "290d6a31-b88e-4e9b-ae3f-f1668e06848e" + ], + "x-ms-correlation-request-id": [ + "290d6a31-b88e-4e9b-ae3f-f1668e06848e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195929Z:290d6a31-b88e-4e9b-ae3f-f1668e06848e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691/providers/Microsoft.Resources/deployments/deplamlcp1514/operationStatuses/08587125173167617942?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AxNTE0L29wZXJhdGlvblN0YXR1c2VzLzA4NTg3MTI1MTczMTY3NjE3OTQyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:59:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "e077cb1e-f440-4aca-bf20-247af338f318" + ], + "x-ms-correlation-request-id": [ + "e077cb1e-f440-4aca-bf20-247af338f318" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195959Z:e077cb1e-f440-4aca-bf20-247af338f318" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691/providers/Microsoft.Resources/deployments/deplamlcp1514?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AxNTE0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.Resources/deployments/deplamlcp1514\",\r\n \"name\": \"deplamlcp1514\",\r\n \"properties\": {\r\n \"templateHash\": \"1634491995510124870\",\r\n \"parameters\": {\r\n \"planName\": {\r\n \"type\": \"String\",\r\n \"value\": \"amlcp1514\"\r\n },\r\n \"planSkuName\": {\r\n \"type\": \"String\",\r\n \"value\": \"S1\"\r\n },\r\n \"planSkuTier\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard\"\r\n },\r\n \"apiVersion\": {\r\n \"type\": \"String\",\r\n \"value\": \"2016-05-01-preview\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2017-03-09T19:59:33.6330415Z\",\r\n \"duration\": \"PT4.8986112S\",\r\n \"correlationId\": \"290d6a31-b88e-4e9b-ae3f-f1668e06848e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"CommitmentPlans\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.MachineLearning/CommitmentPlans/amlcp1514\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 19:59:59 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "37f635b1-da82-4a48-b7dc-cc8739cf29f8" + ], + "x-ms-correlation-request-id": [ + "37f635b1-da82-4a48-b7dc-cc8739cf29f8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T195959Z:37f635b1-da82-4a48-b7dc-cc8739cf29f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691/providers/Microsoft.MachineLearning//commitmentPlans/amlcp1514?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwMTUxND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "606b6767-dcb8-415b-b3dd-70c309af2d67" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"etag\": \"0000991c-0000-0000-0000-58c1b4260000\",\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/commitmentPlans/amlcp1514\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"amlcp1514\",\r\n \"properties\": {\r\n \"chargeForOverage\": true,\r\n \"chargeForPlan\": true,\r\n \"creationDate\": \"2017-03-09T19:59:30.4654461Z\",\r\n \"includedQuantities\": {\r\n \"machineLearningWebServiceComputeHours\": {\r\n \"allowance\": 25.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"29187de1-b4a1-4503-a6f6-078271b3fc9d\",\r\n \"overageMeter\": \"842f92f7-a46b-4522-ac62-8134271dc591\"\r\n },\r\n \"machineLearningWebServiceTransactions\": {\r\n \"allowance\": 100000.0,\r\n \"amount\": 0.0,\r\n \"includedQuantityMeter\": \"303743b6-4cd0-44df-8ec2-a93c8f14943b\",\r\n \"overageMeter\": \"c906e161-98b8-41b1-81e2-b59e0b263740\"\r\n }\r\n },\r\n \"maxAssociationLimit\": 10000,\r\n \"maxCapacityLimit\": 10,\r\n \"minCapacityLimit\": 1,\r\n \"planMeter\": \"4a5a4b83-6216-47c5-b3db-fe430fa6e2c3\",\r\n \"refillFrequencyInDays\": 30,\r\n \"suspendPlanOnOverage\": false\r\n },\r\n \"sku\": {\r\n \"capacity\": 1,\r\n \"name\": \"S1\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.MachineLearning/commitmentPlans\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3316a769-6d79-4bba-9baa-1089a4c958cd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "e38085a3-d682-43d3-a0d0-18a40a6babe3" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200000Z:e38085a3-d682-43d3-a0d0-18a40a6babe3" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI0NjM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c6a7eeca-ab8f-4cf7-b1fa-20cbff793c9f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "f8761b39-5b35-4064-9049-823b1df3b9c3" + ], + "x-ms-correlation-request-id": [ + "f8761b39-5b35-4064-9049-823b1df3b9c3" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200005Z:f8761b39-5b35-4064-9049-823b1df3b9c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI0NjM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8bd9478-9495-4c5a-8c9b-7d3da136a131" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationresults/32fb7933-1995-4936-89dd-6dfe3006c3a6?api-version=2017-01-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/32fb7933-1995-4936-89dd-6dfe3006c3a6?api-version=2017-01-01" + ], + "Azure-AsyncOperationPercentComplete": [ + "0" + ], + "x-ms-request-duration": [ + "139" + ], + "x-ms-correlation-request-id": [ + "8446b206-c16a-4841-bb74-e8fe9373a44c" + ], + "x-ms-request-id": [ + "d6ac9c1e-d392-47ca-861a-1d7527e83eae" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200022Z:8446b206-c16a-4841-bb74-e8fe9373a44c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI0NjM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"packageType\": \"Graph\",\r\n \"title\": \"Some title (new contract large payload)\",\r\n \"description\": \"This is some service description (new contract large payload)\",\r\n \"keys\": {\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n },\r\n \"readOnly\": false,\r\n \"exposeSampleData\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2329\",\r\n \"key\": \"WEB_SERVICE_KEY_SAMPLE7\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"commitmentPlan\": {\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/commitmentPlans/amlcp1514\"\r\n },\r\n \"payloadsInBlobStorage\": true,\r\n \"PayloadsLocation\": {\r\n \"uri\": \"https://bohurp.blob.core.windows.net/uploadeddata/payload.json?st=2017-03-09T19%3A18%3A00Z&se=2018-03-10T19%3A18%3A00Z&sp=rl&sv=2015-12-11&sr=b&sig=SAS_SIGNATURE\",\r\n \"credentials\": \"\"\r\n }\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1428" + ], + "x-ms-client-request-id": [ + "6506bf55-2632-454f-9665-39d745362761" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463\",\r\n \"name\": \"amlws2463\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "378" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Azure-AsyncOperation": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/cf038dd4-7f07-4a88-9ae8-9954f510c3e8?api-version=2017-01-01" + ], + "Azure-AsyncOperationPercentComplete": [ + "0" + ], + "x-ms-request-duration": [ + "405" + ], + "x-ms-correlation-request-id": [ + "87bad3bd-de50-4d71-89a0-8969aef79ca6" + ], + "x-ms-request-id": [ + "924ab345-8c19-4e7b-81c9-ecf9e0725206" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200006Z:87bad3bd-de50-4d71-89a0-8969aef79ca6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/cf038dd4-7f07-4a88-9ae8-9954f510c3e8?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvY2YwMzhkZDQtN2YwNy00YTg4LTlhZTgtOTk1NGY1MTBjM2U4P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/cf038dd4-7f07-4a88-9ae8-9954f510c3e8\",\r\n \"name\": \"cf038dd4-7f07-4a88-9ae8-9954f510c3e8\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T20:00:06.2131485Z\",\r\n \"percentComplete\": 0.6\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "112" + ], + "x-ms-correlation-request-id": [ + "99acd922-8fc3-497c-b6cd-d30ddd2c38ad" + ], + "x-ms-request-id": [ + "d3bcee0d-1e54-41e4-9cb2-749413876adf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200011Z:99acd922-8fc3-497c-b6cd-d30ddd2c38ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/cf038dd4-7f07-4a88-9ae8-9954f510c3e8?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvY2YwMzhkZDQtN2YwNy00YTg4LTlhZTgtOTk1NGY1MTBjM2U4P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/cf038dd4-7f07-4a88-9ae8-9954f510c3e8\",\r\n \"name\": \"cf038dd4-7f07-4a88-9ae8-9954f510c3e8\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T20:00:06.2131485Z\",\r\n \"percentComplete\": 0.9\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "15" + ], + "x-ms-correlation-request-id": [ + "218ff60e-e691-40b0-a7f1-1d546c7cdf3e" + ], + "x-ms-request-id": [ + "9d408b6d-1a7e-42ad-b2c1-e3fd54c7e47f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200016Z:218ff60e-e691-40b0-a7f1-1d546c7cdf3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/cf038dd4-7f07-4a88-9ae8-9954f510c3e8?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvY2YwMzhkZDQtN2YwNy00YTg4LTlhZTgtOTk1NGY1MTBjM2U4P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/cf038dd4-7f07-4a88-9ae8-9954f510c3e8\",\r\n \"name\": \"cf038dd4-7f07-4a88-9ae8-9954f510c3e8\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T20:00:06.2131485Z\",\r\n \"endTime\": \"2017-03-09T20:00:17.2944292Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "8" + ], + "x-ms-correlation-request-id": [ + "913a162a-e810-490c-a436-1da226425a17" + ], + "x-ms-request-id": [ + "d2b59d2f-fdda-4481-be95-848c1162da2d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200022Z:913a162a-e810-490c-a436-1da226425a17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI0NjM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463\",\r\n \"name\": \"amlws2463\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T20:00:07.2562664Z\",\r\n \"modifiedOn\": \"2017-03-09T20:00:17.3510749Z\",\r\n \"title\": \"Some title (new contract large payload)\",\r\n \"description\": \"This is some service description (new contract large payload)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/330ae2e4b5b04a44bf7a102c659eff43/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2329\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"Name\": \"Import Data\",\r\n \"Type\": \"Module\",\r\n \"LocationInfo\": {\r\n \"Uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"Credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"Name\": \"Join Data\",\r\n \"Type\": \"Module\",\r\n \"LocationInfo\": {\r\n \"Uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"Credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"input\": {\r\n \"Title\": \"\",\r\n \"Description\": \"\",\r\n \"Type\": \"object\",\r\n \"Properties\": {\r\n \"input1\": {\r\n \"Title\": \"\",\r\n \"Description\": \"\",\r\n \"Type\": \"object\",\r\n \"Properties\": {\r\n \"0\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"Title\": \"\",\r\n \"Description\": \"\",\r\n \"Type\": \"object\",\r\n \"Properties\": {\r\n \"output1\": {\r\n \"Title\": \"\",\r\n \"Description\": \"\",\r\n \"Type\": \"object\",\r\n \"Properties\": {\r\n \"0\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"Inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n },\r\n \"GlobalParameters\": null\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"SourceNodeId\": \"node1\",\r\n \"SourcePortId\": \"Results dataset\",\r\n \"TargetNodeId\": \"node2\",\r\n \"TargetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"SourceNodeId\": \"node1\",\r\n \"SourcePortId\": \"Results dataset\",\r\n \"TargetNodeId\": \"node2\",\r\n \"TargetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"SourceNodeId\": \"node3\",\r\n \"TargetNodeId\": \"node2\",\r\n \"TargetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"SourceNodeId\": \"node2\",\r\n \"SourcePortId\": \"Results dataset\",\r\n \"TargetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_11\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\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, 09 Mar 2017 20:00:21 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "83" + ], + "x-ms-correlation-request-id": [ + "4e00f8cb-1da1-495a-8af4-7c8a860fc23e" + ], + "x-ms-request-id": [ + "14452906-85a8-44f4-bb07-aacbfb11d1b0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200022Z:4e00f8cb-1da1-495a-8af4-7c8a860fc23e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI0NjM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56f7b17d-5d09-4024-a99e-29146985e226" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463\",\r\n \"name\": \"amlws2463\",\r\n \"type\": \"Microsoft.MachineLearning/webServices\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"payloadsInBlobStorage\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"createdOn\": \"2017-03-09T20:00:07.2562664Z\",\r\n \"modifiedOn\": \"2017-03-09T20:00:17.3510749Z\",\r\n \"title\": \"Some title (new contract large payload)\",\r\n \"description\": \"This is some service description (new contract large payload)\",\r\n \"swaggerLocation\": \"https://uswestcentral.services.azureml.net/subscriptions/d128f14094e6417587a7954b9d27db16/services/330ae2e4b5b04a44bf7a102c659eff43/swagger.json\",\r\n \"readOnly\": false,\r\n \"realtimeConfiguration\": {\r\n \"maxConcurrentCalls\": 20\r\n },\r\n \"diagnostics\": {\r\n \"level\": \"None\"\r\n },\r\n \"storageAccount\": {\r\n \"name\": \"amlstor2329\"\r\n },\r\n \"machineLearningWorkspace\": {\r\n \"id\": \"8b841df9d60a4d54bcebd4948b10a5db\"\r\n },\r\n \"assets\": {\r\n \"asset1\": {\r\n \"Name\": \"Import Data\",\r\n \"Type\": \"Module\",\r\n \"LocationInfo\": {\r\n \"Uri\": \"aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743\",\r\n \"Credentials\": \"\"\r\n }\r\n },\r\n \"asset2\": {\r\n \"Name\": \"Join Data\",\r\n \"Type\": \"Module\",\r\n \"LocationInfo\": {\r\n \"Uri\": \"aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712\",\r\n \"Credentials\": \"\"\r\n }\r\n }\r\n },\r\n \"input\": {\r\n \"Title\": \"\",\r\n \"Description\": \"\",\r\n \"Type\": \"object\",\r\n \"Properties\": {\r\n \"input1\": {\r\n \"Title\": \"\",\r\n \"Description\": \"\",\r\n \"Type\": \"object\",\r\n \"Properties\": {\r\n \"0\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"output\": {\r\n \"Title\": \"\",\r\n \"Description\": \"\",\r\n \"Type\": \"object\",\r\n \"Properties\": {\r\n \"output1\": {\r\n \"Title\": \"\",\r\n \"Description\": \"\",\r\n \"Type\": \"object\",\r\n \"Properties\": {\r\n \"0\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"13\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"39\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"2174\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"77516\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Bachelors\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Never-married\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"United-States\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"39 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"State-gov (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"77516 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Bachelors (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"13 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"Never-married (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Adm-clerical (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Not-in-family (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"White (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"Male (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"2174 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"0 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"40 (2)\": {\r\n \"Type\": \"Integer\",\r\n \"Format\": \"Int32\",\r\n \"x-ms-isnullable\": true\r\n },\r\n \"United-States (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n },\r\n \"<=50K (2)\": {\r\n \"Type\": \"String\",\r\n \"Format\": \"\",\r\n \"x-ms-isnullable\": false\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"packageType\": \"Graph\",\r\n \"exampleRequest\": {\r\n \"Inputs\": {\r\n \"input1\": [\r\n [\r\n 50,\r\n \"Self-emp-not-inc\",\r\n 83311,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Husband\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 13,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 38,\r\n \"Private\",\r\n 215646,\r\n \"HS-grad\",\r\n 9,\r\n \"Divorced\",\r\n \"Handlers-cleaners\",\r\n \"Not-in-family\",\r\n \"White\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 53,\r\n \"Private\",\r\n 234721,\r\n \"11th\",\r\n 7,\r\n \"Married-civ-spouse\",\r\n \"Handlers-cleaners\",\r\n \"Husband\",\r\n \"Black\",\r\n \"Male\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 28,\r\n \"Private\",\r\n 338409,\r\n \"Bachelors\",\r\n 13,\r\n \"Married-civ-spouse\",\r\n \"Prof-specialty\",\r\n \"Wife\",\r\n \"Black\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"Cuba\",\r\n \"<=50K\"\r\n ],\r\n [\r\n 37,\r\n \"Private\",\r\n 284582,\r\n \"Masters\",\r\n 14,\r\n \"Married-civ-spouse\",\r\n \"Exec-managerial\",\r\n \"Wife\",\r\n \"White\",\r\n \"Female\",\r\n 0,\r\n 0,\r\n 40,\r\n \"United-States\",\r\n \"<=50K\"\r\n ]\r\n ]\r\n },\r\n \"GlobalParameters\": null\r\n },\r\n \"exposeSampleData\": false,\r\n \"parameters\": {},\r\n \"package\": {\r\n \"edges\": [\r\n {\r\n \"SourceNodeId\": \"node1\",\r\n \"SourcePortId\": \"Results dataset\",\r\n \"TargetNodeId\": \"node2\",\r\n \"TargetPortId\": \"Dataset1\"\r\n },\r\n {\r\n \"SourceNodeId\": \"node1\",\r\n \"SourcePortId\": \"Results dataset\",\r\n \"TargetNodeId\": \"node2\",\r\n \"TargetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"SourceNodeId\": \"node3\",\r\n \"TargetNodeId\": \"node2\",\r\n \"TargetPortId\": \"Dataset2\"\r\n },\r\n {\r\n \"SourceNodeId\": \"node2\",\r\n \"SourcePortId\": \"Results dataset\",\r\n \"TargetNodeId\": \"node4\"\r\n }\r\n ],\r\n \"graphParameters\": {},\r\n \"nodes\": {\r\n \"node1\": {\r\n \"assetId\": \"asset1\",\r\n \"parameters\": {\r\n \"Please Specify Data Source\": {\r\n \"value\": \"AzureBlobStorage\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Please Specify Authentication Type\": {\r\n \"value\": \"Account\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Name\": {\r\n \"value\": \"bohurp\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Account Key\": {\r\n \"value\": \"ENCRYPTED_VALUE_11\",\r\n \"certificateThumbprint\": \"189FFCD52B84562DF6BFA9678357B0B23524D543\"\r\n },\r\n \"Path to container or directory or blob\": {\r\n \"value\": \"uploadeddata/adult.data\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Blob File format\": {\r\n \"value\": \"CSV\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"File has Header Row\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node2\": {\r\n \"assetId\": \"asset2\",\r\n \"parameters\": {\r\n \"Comma-separated case-sensitive names of join key columns for L\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Comma-separated case-sensitive names of join key columns for R\": {\r\n \"value\": \"%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Match case\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Join type\": {\r\n \"value\": \"Inner Join\",\r\n \"certificateThumbprint\": \"\"\r\n },\r\n \"Keep right key columns in joined table\": {\r\n \"value\": \"True\",\r\n \"certificateThumbprint\": \"\"\r\n }\r\n }\r\n },\r\n \"node3\": {\r\n \"inputId\": \"input1\"\r\n },\r\n \"node4\": {\r\n \"outputId\": \"output1\"\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, 09 Mar 2017 20:00:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "18" + ], + "x-ms-correlation-request-id": [ + "4669d197-1dfa-4436-873f-087b5ce5a5ae" + ], + "x-ms-request-id": [ + "707040cb-18e2-4a2a-996e-f5e49703357c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200022Z:4669d197-1dfa-4436-873f-087b5ce5a5ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI0NjM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0fbb5e91-6aff-404d-87ee-2fcde38a7fe6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The specified resource was not found.\",\r\n \"details\": [\r\n {\r\n \"code\": \"WebServiceNotFound\",\r\n \"message\": \"No Web Service could be found with the provided name: amlws2463.\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "274" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-duration": [ + "10" + ], + "x-ms-correlation-request-id": [ + "68212413-f373-45cb-a18f-4b39857281be" + ], + "x-ms-request-id": [ + "bcd45d24-3592-4007-a956-fb2ef4f4ed8e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200032Z:68212413-f373-45cb-a18f-4b39857281be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.MachineLearning/webServices/amlws2463/listKeys?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy93ZWJTZXJ2aWNlcy9hbWx3czI0NjMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b369c73-0838-4265-aaea-3425c7aef700" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"primary\": \"SAMPLE_KEY_1\",\r\n \"secondary\": \"SAMPLE_KEY_2\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "9" + ], + "x-ms-correlation-request-id": [ + "64b4e51a-93ab-4e31-8670-99730d067da1" + ], + "x-ms-request-id": [ + "aa8f39ab-91e7-4caa-b025-db1cce00c901" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200022Z:64b4e51a-93ab-4e31-8670-99730d067da1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/32fb7933-1995-4936-89dd-6dfe3006c3a6?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzJmYjc5MzMtMTk5NS00OTM2LTg5ZGQtNmRmZTMwMDZjM2E2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/32fb7933-1995-4936-89dd-6dfe3006c3a6\",\r\n \"name\": \"32fb7933-1995-4936-89dd-6dfe3006c3a6\",\r\n \"status\": \"Provisioning\",\r\n \"startTime\": \"2017-03-09T20:00:27.9258746Z\",\r\n \"percentComplete\": 0.2\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "14" + ], + "x-ms-correlation-request-id": [ + "dc4f3467-6c90-4d08-a57f-65cecd641c56" + ], + "x-ms-request-id": [ + "a34b86c8-ba1b-45d1-8879-473e9ba0b640" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14992" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200027Z:dc4f3467-6c90-4d08-a57f-65cecd641c56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/32fb7933-1995-4936-89dd-6dfe3006c3a6?api-version=2017-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nL2xvY2F0aW9ucy93ZXN0Y2VudHJhbHVzL29wZXJhdGlvbnNTdGF0dXMvMzJmYjc5MzMtMTk5NS00OTM2LTg5ZGQtNmRmZTMwMDZjM2E2P2FwaS12ZXJzaW9uPTIwMTctMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.MachineLearning.WebServices.AzureMLWebServicesManagementClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/providers/Microsoft.MachineLearning/locations/westcentralus/operationsStatus/32fb7933-1995-4936-89dd-6dfe3006c3a6\",\r\n \"name\": \"32fb7933-1995-4936-89dd-6dfe3006c3a6\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-03-09T20:00:27.9258746Z\",\r\n \"endTime\": \"2017-03-09T20:00:28.7768309Z\",\r\n \"percentComplete\": 1.0\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-duration": [ + "25" + ], + "x-ms-correlation-request-id": [ + "5c7c5ebc-5109-4669-aad5-23d52d4a8111" + ], + "x-ms-request-id": [ + "9b5f60b1-eeb0-461d-8b4c-1d208dc09e46" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14991" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200032Z:5c7c5ebc-5109-4669-aad5-23d52d4a8111" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691/providers/Microsoft.MachineLearning//commitmentPlans/amlcp1514?api-version=2016-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZy8vY29tbWl0bWVudFBsYW5zL2FtbGNwMTUxND9hcGktdmVyc2lvbj0yMDE2LTA1LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d614c823-9020-4122-abed-165106579ea5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "efab9518-6b3f-4f2e-88e5-af817183bb7a" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "9c6cdb47-fdd6-4e57-9022-5d9dd47379e0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200034Z:9c6cdb47-fdd6-4e57-9022-5d9dd47379e0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691/providers/Microsoft.Resources/deployments/deplamlcp1514?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9kZXBsYW1sY3AxNTE0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e50c5de0-3a49-426f-b055-1ed582df105e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:00:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNjkxLURFUExBTUxDUDE1MTQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "87836740-4e72-4188-810b-3eaa032bb6f8" + ], + "x-ms-correlation-request-id": [ + "87836740-4e72-4188-810b-3eaa032bb6f8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200034Z:87836740-4e72-4188-810b-3eaa032bb6f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNjkxLURFUExBTUxDUDE1MTQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3lOamt4TFVSRlVFeEJUVXhEVURFMU1UUXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:01:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNjkxLURFUExBTUxDUDE1MTQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "40f31438-bd06-4f66-9991-cd5abd58bd68" + ], + "x-ms-correlation-request-id": [ + "40f31438-bd06-4f66-9991-cd5abd58bd68" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200104Z:40f31438-bd06-4f66-9991-cd5abd58bd68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1HTlMtQU1MUkcyNjkxLURFUExBTUxDUDE1MTQtIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMUhUbE10UVUxTVVrY3lOamt4TFVSRlVFeEJUVXhEVURFMU1UUXRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:01:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "4b219bc7-59a0-4fc7-945e-3b2dda688025" + ], + "x-ms-correlation-request-id": [ + "4b219bc7-59a0-4fc7-945e-3b2dda688025" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200134Z:4b219bc7-59a0-4fc7-945e-3b2dda688025" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourceGroups/amlrg2691/providers/Microsoft.Storage/storageAccounts/amlstor2329?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlR3JvdXBzL2FtbHJnMjY5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2FtbHN0b3IyMzI5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "989cbc1c-128f-4062-b7c6-bf2c88f4d105" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:01:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "a4b6ae6a-3434-47a8-bf0a-85a6c3de9dc6" + ], + "x-ms-correlation-request-id": [ + "a4b6ae6a-3434-47a8-bf0a-85a6c3de9dc6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200135Z:a4b6ae6a-3434-47a8-bf0a-85a6c3de9dc6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/resourcegroups/amlrg2691?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L3Jlc291cmNlZ3JvdXBzL2FtbHJnMjY5MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "935a8f69-77be-4c4c-8f64-fccc5f1b1ead" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:01:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI2OTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "022f5110-e73e-4705-a81f-b964e74f6a97" + ], + "x-ms-correlation-request-id": [ + "022f5110-e73e-4705-a81f-b964e74f6a97" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200135Z:022f5110-e73e-4705-a81f-b964e74f6a97" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI2OTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6STJPVEV0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:02:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westcentralus.management.azure.com/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI2OTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "53558d59-bc9f-41de-b1b4-5a789fae61a9" + ], + "x-ms-correlation-request-id": [ + "53558d59-bc9f-41de-b1b4-5a789fae61a9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200205Z:53558d59-bc9f-41de-b1b4-5a789fae61a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/d128f140-94e6-4175-87a7-954b9d27db16/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BTUxSRzI2OTEtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDEyOGYxNDAtOTRlNi00MTc1LTg3YTctOTU0YjlkMjdkYjE2L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCVFV4U1J6STJPVEV0VjBWVFZFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 09 Mar 2017 20:02:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "e0b7373c-9eff-4e04-a73e-ff2d911d75bd" + ], + "x-ms-correlation-request-id": [ + "e0b7373c-9eff-4e04-a73e-ff2d911d75bd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20170309T200235Z:e0b7373c-9eff-4e04-a73e-ff2d911d75bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "RunAMLWebServiceTestScenario": [ + "amlws2463", + "amlrg2691", + "amlcp1514", + "amlstor2329" + ] + }, + "Variables": { + "SubscriptionId": "d128f140-94e6-4175-87a7-954b9d27db16" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Dogfood.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Dogfood.json index 722c34884183..bfa406ab9ada 100644 --- a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Dogfood.json +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Dogfood.json @@ -4,8 +4,8 @@ "description": "This is some service description", "readOnly": "false", "keys": { - "primary": "S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==", - "secondary": "S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==" + "primary": "SAMPLE_KEY_1", + "secondary": "SAMPLE_KEY_2" }, "storageAccount": { "name": "THIS IS FILLED IN DYNAMICALLY BY THE TEST", diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_LargePayload_Prod.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_LargePayload_Prod.json new file mode 100644 index 000000000000..f5426df80062 --- /dev/null +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_LargePayload_Prod.json @@ -0,0 +1,36 @@ +{ + "properties": { + "title": "Some title (new contract large payload)", + "description": "This is some service description (new contract large payload)", + "readOnly": false, + "exposeSampleData": false, + "realtimeConfiguration": { + "maxConcurrentCalls": 20 + }, + "diagnostics": { + "level": "None" + }, + "keys": { + "primary": "SAMPLE_KEY_1", + "secondary": "SAMPLE_KEY_2" + }, + "commitmentPlan": { + "id": "WILL BE FILLED IN BY THE TEST" + }, + "storageAccount": { + "name": "WILL BE FILLED IN BY THE TEST", + "key": "WILL BE FILLED IN BY THE TEST" + }, + "PayloadsInBlobStorage": true, + "MachineLearningWorkspace": { + "Id": "8b841df9d60a4d54bcebd4948b10a5db" + }, + "packageType": "Graph", + "payloadsLocation": { + "Uri": "https://bohurp.blob.core.windows.net/uploadeddata/payload.json?st=2017-03-09T19%3A18%3A00Z&se=2018-03-10T19%3A18%3A00Z&sp=rl&sv=2015-12-11&sr=b&sig=SAS_SIGNATURE", + "Credentials": "" + } + }, + "location": "West Central US", + "tags": {} +} \ No newline at end of file diff --git a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Prod.json b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Prod.json index 662ee6f557d8..9a7c8ddc565b 100644 --- a/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Prod.json +++ b/src/ResourceManagement/MachineLearning/MachineLearning.Tests/TestData/GraphWebServiceDefinition_Prod.json @@ -1,190 +1,489 @@ { "properties": { - "title": "ServiceTitle", - "description": "This is some service description", - "readOnly": "false", + "title": "Some title (new contract)", + "description": "This is some service description (new contract)", + "readOnly": false, + "exposeSampleData": false, + "realtimeConfiguration": { + "maxConcurrentCalls": 20 + }, + "diagnostics": { + "level": "None" + }, + "commitmentPlan": { + "id": "WILL BE FILLED IN BY THE TEST" + }, "keys": { - "primary": "S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmkKw==", - "secondary": "S8ayf24PAsbQqy8Nm67uGf3MbOeorYKPY8QfXen2+JsBZV5Q0NFfk9tgC7mjJ3aCsUPY8yKCFVcI/sCcOlmooo==" + "primary": "SAMPLE_KEY_1", + "secondary": "SAMPLE_KEY_2" }, "storageAccount": { - "name": "THIS IS FILLED IN DYNAMICALLY BY THE TEST", - "key": "THIS IS FILLED IN DYNAMICALLY BY THE TEST" + "name": "WILL BE FILLED IN BY THE TEST", + "key": "WILL BE FILLED IN BY THE TEST" }, - "commitmentPlan": { - "id": "THIS IS FILLED IN DYNAMICALLY BY THE TEST" + "PayloadsInBlobStorage": false, + "MachineLearningWorkspace": { + "Id": "8b841df9d60a4d54bcebd4948b10a5db" }, - "assets": { + "Assets": { "asset1": { - "name": "Apply Math Operation", - "type": "Module", - "locationInfo": { - "uri": "aml://module/506153734175476c4f62416c57734963.6bd12c13d9c3452294d34aa44513af57.v1-default-1571" + "Name": "Import Data", + "Type": "Module", + "LocationInfo": { + "Uri": "aml://module/506153734175476c4f62416c57734963.4e1b0fe6aded4b3fa36f39b8862b9004.v1-default-1743", + "Credentials": "" + } + }, + "asset2": { + "Name": "Join Data", + "Type": "Module", + "LocationInfo": { + "Uri": "aml://module/506153734175476c4f62416c57734963.124865f7e9014656adacf4cb08248099.v1-default-1712", + "Credentials": "" } } }, - "parameters": { - "category": "Trigonometric", - "trigonometric Function": "Sin", - "column Set": "{\"isFilter\":true,\"rules\":[{\"ruleType\":\"ColumnTypes\",\"exclude\":false,\"columnTypes\":[\"Numeric\"],\"columnKinds\":[\"All\"]}]}", - "output mode": "ResultOnly" - }, - "input": { - "title": "", - "description": "", - "type": "object", - "properties": { + "Parameters": {}, + "Input": { + "Title": "", + "Description": "", + "Type": "object", + "Properties": { "input1": { - "title": "", - "description": "", - "type": "object", - "properties": { - "Class": { - "type": "Number", - "format": "Double", + "Title": "", + "Description": "", + "Type": "object", + "Properties": { + "0": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "13": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "39": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "40": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "2174": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "77516": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "State-gov": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Bachelors": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Never-married": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Adm-clerical": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Not-in-family": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "sepal-length": { - "type": "Number", - "format": "Double", + "White": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "sepal-width": { - "type": "Number", - "format": "Double", + "Male": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "petal-length": { - "type": "Number", - "format": "Double", + "United-States": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "petal-width": { - "type": "Number", - "format": "Double", + "<=50K": { + "Type": "String", + "Format": "", "x-ms-isnullable": false } } } } }, - "output": { - "title": "", - "description": "", - "type": "object", - "properties": { + "Output": { + "Title": "", + "Description": "", + "Type": "object", + "Properties": { "output1": { - "title": "", - "description": "", - "type": "object", - "properties": { - "Class": { - "type": "Number", - "format": "Double", + "Title": "", + "Description": "", + "Type": "object", + "Properties": { + "0": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "13": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "39": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "40": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "2174": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "77516": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "State-gov": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Bachelors": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Never-married": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Adm-clerical": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Not-in-family": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "White": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "Male": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "United-States": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "<=50K": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "39 (2)": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "State-gov (2)": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "77516 (2)": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "Bachelors (2)": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "13 (2)": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "Never-married (2)": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "sepal-length": { - "type": "Number", - "format": "Double", + "Adm-clerical (2)": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "sepal-width": { - "type": "Number", - "format": "Double", + "Not-in-family (2)": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "petal-length": { - "type": "Number", - "format": "Double", + "White (2)": { + "Type": "String", + "Format": "", "x-ms-isnullable": false }, - "petal-width": { - "type": "Number", - "format": "Double", + "Male (2)": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "2174 (2)": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "0 (2)": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "40 (2)": { + "Type": "Integer", + "Format": "Int32", + "x-ms-isnullable": true + }, + "United-States (2)": { + "Type": "String", + "Format": "", + "x-ms-isnullable": false + }, + "<=50K (2)": { + "Type": "String", + "Format": "", "x-ms-isnullable": false } } } } }, - "exposeSampleData": "true", - "exampleRequest": { - "inputs": { - "input1": [ - [ "1", "2.3", "0.5", "4.3", "1.2" ], - [ "0", "0.5", "4.3", "1.2", "2.5" ], - [ "0", "4.3", "1.2", "6.5", "6.3" ], - [ "1", "7.8", "8.0", "2.3", "0.5" ], - [ "1", "1.3", "5.5", "2.2", "9.2" ] - ] - } - }, "packageType": "Graph", - "package": { + "Package": { "Nodes": { "node1": { - "inputId": "input1" + "AssetId": "asset1", + "Parameters": { + "Please Specify Data Source": { + "Value": "AzureBlobStorage", + "CertificateThumbprint": "" + }, + "Please Specify Authentication Type": { + "Value": "Account", + "CertificateThumbprint": "" + }, + "Account Name": { + "Value": "bohurp", + "CertificateThumbprint": "" + }, + "Account Key": { + "Value": "ENCRYPTED_VALUE_01", + "CertificateThumbprint": "SOME_THUMBPRINT" + }, + "Path to container or directory or blob": { + "Value": "uploadeddata/adult.data", + "CertificateThumbprint": "" + }, + "Blob File format": { + "Value": "CSV", + "CertificateThumbprint": "" + }, + "File has Header Row": { + "Value": "True", + "CertificateThumbprint": "" + } + } }, "node2": { - "assetId": "asset1", - "parameters": { - "Category": "Trigonometric", - "Trigonometric Function": "Sin", - "Column Set": "{\"isFilter\":true,\"rules\":[{\"ruleType\":\"ColumnTypes\",\"exclude\":false,\"columnTypes\":[\"Numeric\"],\"columnKinds\":[\"All\"]}]}", - "Output mode": "ResultOnly" + "AssetId": "asset2", + "Parameters": { + "Comma-separated case-sensitive names of join key columns for L": { + "Value": "%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D", + "CertificateThumbprint": "" + }, + "Comma-separated case-sensitive names of join key columns for R": { + "Value": "%7B%22isFilter%22%3Atrue%2C%22rules%22%3A%5B%7B%22ruleType%22%3A%22AllColumns%22%2C%22exclude%22%3Afalse%7D%2C%7B%22ruleType%22%3A%22ColumnTypes%22%2C%22exclude%22%3Afalse%2C%22columnTypes%22%3A%5B%22All%22%5D%2C%22columnKinds%22%3A%5B%22Feature%22%5D%7D%5D%2C%22ui%22%3A%7B%22withRules%22%3Atrue%7D%7D", + "CertificateThumbprint": "" + }, + "Match case": { + "Value": "True", + "CertificateThumbprint": "" + }, + "Join type": { + "Value": "Inner Join", + "CertificateThumbprint": "" + }, + "Keep right key columns in joined table": { + "Value": "True", + "CertificateThumbprint": "" + } } }, "node3": { - "outputId": "output1" + "InputId": "input1" + }, + "node4": { + "OutputId": "output1" } }, "Edges": [ { - "sourceNodeId": "node1", - "targetNodeId": "node2", - "targetPortId": "Dataset" + "SourceNodeId": "node1", + "SourcePortId": "Results dataset", + "TargetNodeId": "node2", + "TargetPortId": "Dataset1" }, { - "sourceNodeId": "node2", - "sourcePortId": "Results dataset", - "targetNodeId": "node3" - } - ], - "GraphParameters": { - "Category": { - "description": "", - "Links": [ - { - "NodeId": "node2", - "ParameterKey": "Category" - } - ] - }, - "Trigonometric Function": { - "Links": [ - { - "NodeId": "node2", - "ParameterKey": "Trigonometric Function" - } - ] + "SourceNodeId": "node1", + "SourcePortId": "Results dataset", + "TargetNodeId": "node2", + "TargetPortId": "Dataset2" }, - "Column Set": { - "Links": [ - { - "NodeId": "node2", - "ParameterKey": "Column Set" - } - ] + { + "SourceNodeId": "node3", + "TargetNodeId": "node2", + "TargetPortId": "Dataset2" }, - "Output mode": { - "Links": [ - { - "NodeId": "node2", - "ParameterKey": "Output mode" - } - ] + { + "SourceNodeId": "node2", + "SourcePortId": "Results dataset", + "TargetNodeId": "node4" } - } + ], + "GraphParameters": {} + }, + "ExampleRequest": { + "Inputs": { + "input1": [ + [ + 50, + "Self-emp-not-inc", + 83311, + "Bachelors", + 13, + "Married-civ-spouse", + "Exec-managerial", + "Husband", + "White", + "Male", + 0, + 0, + 13, + "United-States", + "<=50K" + ], + [ + 38, + "Private", + 215646, + "HS-grad", + 9, + "Divorced", + "Handlers-cleaners", + "Not-in-family", + "White", + "Male", + 0, + 0, + 40, + "United-States", + "<=50K" + ], + [ + 53, + "Private", + 234721, + "11th", + 7, + "Married-civ-spouse", + "Handlers-cleaners", + "Husband", + "Black", + "Male", + 0, + 0, + 40, + "United-States", + "<=50K" + ], + [ + 28, + "Private", + 338409, + "Bachelors", + 13, + "Married-civ-spouse", + "Prof-specialty", + "Wife", + "Black", + "Female", + 0, + 0, + 40, + "Cuba", + "<=50K" + ], + [ + 37, + "Private", + 284582, + "Masters", + 14, + "Married-civ-spouse", + "Exec-managerial", + "Wife", + "White", + "Female", + 0, + 0, + 40, + "United-States", + "<=50K" + ] + ] + }, + "GlobalParameters": null } - } + }, + "location": "West Central US", + "tags": {} } \ No newline at end of file diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/IWebServicesOperationsAdditions.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/IWebServicesOperationsAdditions.cs index b337e5819060..6601928d70e2 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/IWebServicesOperationsAdditions.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/IWebServicesOperationsAdditions.cs @@ -16,5 +16,7 @@ public partial interface IWebServicesOperations Task> PatchWebServiceWithProperRequestIdAsync(WebService patchPayload, string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); Task RemoveWebServiceWitProperRequestIdAsync(string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } + + Task CreateRegionalPropertiesWithProperRequestIdAsync(string resourceGroupName, string webServiceName, string region, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); +} } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsAdditions.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsAdditions.cs index c51e6e7c409a..77982c7cd86e 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsAdditions.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsAdditions.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. +using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; @@ -123,5 +124,40 @@ internal partial class WebServicesOperations throw; } } + + /// + /// Create web service properties for a specific region. + /// + /// + /// Name of the resource group. + /// + /// + /// The Azure ML web service name which you want to reach. + /// + /// + /// The new region of Azure ML web service properties + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task CreateRegionalPropertiesWithProperRequestIdAsync(string resourceGroupName, string webServiceName, string region, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + var _response = await BeginCreateRegionalPropertiesWithHttpMessagesAsync( + resourceGroupName, webServiceName, region, customHeaders, cancellationToken); + try + { + var operationResult = await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken); + operationResult.RequestId = _response.RequestId; + return operationResult.Body; + } + catch (CloudException cloudEx) + { + cloudEx.RequestId = _response.RequestId; + throw; + } + } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsExtensionsAdditions.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsExtensionsAdditions.cs index 17d37feeaf6a..8a9b2d753484 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsExtensionsAdditions.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Extensions/WebServicesOperationsExtensionsAdditions.cs @@ -155,5 +155,47 @@ public static void RemoveWithRequestId(this IWebServicesOperations operations, s await operations.RemoveWebServiceWitProperRequestIdAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false); } + /// + /// Create web service properties for a specific region. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// The Azure ML web service name which you want to reach. + /// + /// + /// The new region of Azure ML web service properties. + /// + public static void CreateRegionalPropertiesWithRequestId(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region) + { + Task.Factory.StartNew(s => ((IWebServicesOperations)s).CreateRegionalPropertiesWithRequestIdAsync(resourceGroupName, webServiceName, region), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Create web service properties for a specific region. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// The Azure ML web service name which you want to reach. + /// + /// + /// The new region of Azure ML web service properties. + /// + /// + /// The cancellation token. + /// + public static async Task CreateRegionalPropertiesWithRequestIdAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.CreateRegionalPropertiesWithProperRequestIdAsync(resourceGroupName, webServiceName, region, null, cancellationToken).ConfigureAwait(false); + } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/AzureMLWebServicesManagementClient.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/AzureMLWebServicesManagementClient.cs index d582d93bd292..97f5b86e4e18 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/AzureMLWebServicesManagementClient.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/AzureMLWebServicesManagementClient.cs @@ -1,31 +1,35 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices { - using System.Linq; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; using Microsoft.Rest; using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; /// /// These APIs allow end users to operate on Azure Machine Learning Web /// Services resources. They support the following /// operations:<ul><li>Create or update a web - /// service</li><li>Get a web - /// service</li><li>Patch a web - /// service</li><li>Delete a web + /// service</li><li>Get a web service</li><li>Patch + /// a web service</li><li>Delete a web /// service</li><li>Get All Web Services in a Resource Group /// </li><li>Get All Web Services in a /// Subscription</li><li>Get Web Services /// Keys</li></ul> /// - public partial class AzureMLWebServicesManagementClient : Microsoft.Rest.ServiceClient, IAzureMLWebServicesManagementClient, IAzureClient + public partial class AzureMLWebServicesManagementClient : ServiceClient, IAzureMLWebServicesManagementClient, IAzureClient { /// /// The base URI of the service. @@ -35,17 +39,17 @@ public partial class AzureMLWebServicesManagementClient : Microsoft.Rest.Service /// /// Gets or sets json serialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + public JsonSerializerSettings SerializationSettings { get; private set; } /// /// Gets or sets json deserialization settings. /// - public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } /// /// Credentials needed for the client to connect to Azure. /// - public Microsoft.Rest.ServiceClientCredentials Credentials { get; private set; } + public ServiceClientCredentials Credentials { get; private set; } /// /// The Azure subscription ID. @@ -85,9 +89,9 @@ public partial class AzureMLWebServicesManagementClient : Microsoft.Rest.Service /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected AzureMLWebServicesManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + protected AzureMLWebServicesManagementClient(params DelegatingHandler[] handlers) : base(handlers) { - this.Initialize(); + Initialize(); } /// @@ -99,9 +103,9 @@ protected AzureMLWebServicesManagementClient(params System.Net.Http.DelegatingHa /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected AzureMLWebServicesManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected AzureMLWebServicesManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { - this.Initialize(); + Initialize(); } /// @@ -116,13 +120,13 @@ protected AzureMLWebServicesManagementClient(System.Net.Http.HttpClientHandler r /// /// Thrown when a required parameter is null /// - protected AzureMLWebServicesManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + protected AzureMLWebServicesManagementClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -140,13 +144,13 @@ protected AzureMLWebServicesManagementClient(System.Uri baseUri, params System.N /// /// Thrown when a required parameter is null /// - protected AzureMLWebServicesManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + protected AzureMLWebServicesManagementClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -161,16 +165,16 @@ protected AzureMLWebServicesManagementClient(System.Uri baseUri, System.Net.Http /// /// Thrown when a required parameter is null /// - public AzureMLWebServicesManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public AzureMLWebServicesManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -189,16 +193,16 @@ public AzureMLWebServicesManagementClient(Microsoft.Rest.ServiceClientCredential /// /// Thrown when a required parameter is null /// - public AzureMLWebServicesManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public AzureMLWebServicesManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -217,7 +221,7 @@ public AzureMLWebServicesManagementClient(Microsoft.Rest.ServiceClientCredential /// /// Thrown when a required parameter is null /// - public AzureMLWebServicesManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + public AzureMLWebServicesManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -227,11 +231,11 @@ public AzureMLWebServicesManagementClient(System.Uri baseUri, Microsoft.Rest.Ser { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -253,7 +257,7 @@ public AzureMLWebServicesManagementClient(System.Uri baseUri, Microsoft.Rest.Ser /// /// Thrown when a required parameter is null /// - public AzureMLWebServicesManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + public AzureMLWebServicesManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -263,11 +267,11 @@ public AzureMLWebServicesManagementClient(System.Uri baseUri, Microsoft.Rest.Ser { throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -280,41 +284,41 @@ public AzureMLWebServicesManagementClient(System.Uri baseUri, Microsoft.Rest.Ser /// private void Initialize() { - this.WebServices = new WebServicesOperations(this); - this.BaseUri = new System.Uri("https://management.azure.com"); - this.ApiVersion = "2016-05-01-preview"; - this.AcceptLanguage = "en-US"; - this.LongRunningOperationRetryTimeout = 30; - this.GenerateClientRequestId = true; - SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + WebServices = new WebServicesOperations(this); + BaseUri = new System.Uri("https://management.azure.com"); + ApiVersion = "2017-01-01"; + AcceptLanguage = "en-US"; + LongRunningOperationRetryTimeout = 30; + GenerateClientRequestId = true; + SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, - ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; - DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + DeserializationSettings = new JsonSerializerSettings { DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, - ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), - Converters = new System.Collections.Generic.List + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List { - new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + new Iso8601TimeSpanConverter() } }; - SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicSerializeJsonConverter("packageType")); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.PolymorphicDeserializeJsonConverter("packageType")); + SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("packageType")); + DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("packageType")); CustomInitialize(); - DeserializationSettings.Converters.Add(new Microsoft.Rest.Azure.CloudErrorJsonConverter()); - } + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IAzureMLWebServicesManagementClient.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IAzureMLWebServicesManagementClient.cs index 3e2676b0b132..86bed6fbb621 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IAzureMLWebServicesManagementClient.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IAzureMLWebServicesManagementClient.cs @@ -1,24 +1,23 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; using Microsoft.Rest; using Microsoft.Rest.Azure; using Models; + using Newtonsoft.Json; /// /// These APIs allow end users to operate on Azure Machine Learning Web /// Services resources. They support the following /// operations:<ul><li>Create or update a web - /// service</li><li>Get a web - /// service</li><li>Patch a web - /// service</li><li>Delete a web + /// service</li><li>Get a web service</li><li>Patch + /// a web service</li><li>Delete a web /// service</li><li>Get All Web Services in a Resource Group /// </li><li>Get All Web Services in a /// Subscription</li><li>Get Web Services @@ -34,17 +33,17 @@ public partial interface IAzureMLWebServicesManagementClient : System.IDisposabl /// /// Gets or sets json serialization settings. /// - Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + JsonSerializerSettings SerializationSettings { get; } /// /// Gets or sets json deserialization settings. /// - Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + JsonSerializerSettings DeserializationSettings { get; } /// /// Credentials needed for the client to connect to Azure. /// - Microsoft.Rest.ServiceClientCredentials Credentials { get; } + ServiceClientCredentials Credentials { get; } /// /// The Azure subscription ID. @@ -69,8 +68,8 @@ public partial interface IAzureMLWebServicesManagementClient : System.IDisposabl int? LongRunningOperationRetryTimeout { get; set; } /// - /// When set to true a unique x-ms-client-request-id value is - /// generated and included in each request. Default is true. + /// When set to true a unique x-ms-client-request-id value is generated + /// and included in each request. Default is true. /// bool? GenerateClientRequestId { get; set; } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IWebServicesOperations.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IWebServicesOperations.cs index 60a968b10d29..f7c80dd83010 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IWebServicesOperations.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/IWebServicesOperations.cs @@ -1,15 +1,19 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Rest; using Microsoft.Rest.Azure; using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; /// /// WebServicesOperations operations. @@ -19,9 +23,9 @@ public partial interface IWebServicesOperations /// /// Create or update a web service. This call will overwrite an /// existing web service. Note that there is no warning or - /// confirmation. This is a nonrecoverable operation. If your intent - /// is to create a new web service, call the Get operation first to - /// verify that it does not exist. + /// confirmation. This is a nonrecoverable operation. If your intent is + /// to create a new web service, call the Get operation first to verify + /// that it does not exist. /// /// /// Name of the resource group in which the web service is located. @@ -47,13 +51,12 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Create or update a web service. This call will overwrite an - /// existing web service. Note that there is no warning or - /// confirmation. This is a nonrecoverable operation. If your intent - /// is to create a new web service, call the Get operation first to - /// verify that it does not exist. + /// Gets the Web Service Definition as specified by a subscription, + /// resource group, and name. Note that the storage credentials and web + /// service keys are not returned by this call. To get the web service + /// access keys, call List Keys. /// /// /// Name of the resource group in which the web service is located. @@ -61,8 +64,8 @@ public partial interface IWebServicesOperations /// /// The name of the web service. /// - /// - /// The payload that is used to create or update the web service. + /// + /// The region for which encrypted credential parameters are valid. /// /// /// The headers that will be added to request. @@ -79,12 +82,11 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string webServiceName, string region = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the Web Service Definiton as specified by a subscription, - /// resource group, and name. Note that the storage credentials and - /// web service keys are not returned by this call. To get the web - /// service access keys, call List Keys. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed + /// successfully, you must perform a Get operation. /// /// /// Name of the resource group in which the web service is located. @@ -92,6 +94,9 @@ public partial interface IWebServicesOperations /// /// The name of the web service. /// + /// + /// The payload to use to patch the web service. + /// /// /// The headers that will be added to request. /// @@ -107,11 +112,9 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> PatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Modifies an existing web service resource. The PATCH API call is - /// an asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. + /// Deletes the specified web service. /// /// /// Name of the resource group in which the web service is located. @@ -119,9 +122,6 @@ public partial interface IWebServicesOperations /// /// The name of the web service. /// - /// - /// The payload to use to patch the web service. - /// /// /// The headers that will be added to request. /// @@ -131,17 +131,18 @@ public partial interface IWebServicesOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> PatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task RemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Modifies an existing web service resource. The PATCH API call is - /// an asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. + /// Creates an encrypted credentials parameter blob for the specified + /// region. To get the web service from a region other than the region + /// in which it has been created, you must first call Create Regional + /// Web Services Properties to create a copy of the encrypted + /// credential parameter blob in that region. You only need to do this + /// before the first time that you get the web service in the new + /// region. /// /// /// Name of the resource group in which the web service is located. @@ -149,8 +150,8 @@ public partial interface IWebServicesOperations /// /// The name of the web service. /// - /// - /// The payload to use to patch the web service. + /// + /// The region for which encrypted credential parameters are created. /// /// /// The headers that will be added to request. @@ -167,9 +168,9 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> BeginPatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> CreateRegionalPropertiesWithHttpMessagesAsync(string resourceGroupName, string webServiceName, string region, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes the specified web service. + /// Gets the access keys for the specified web service. /// /// /// Name of the resource group in which the web service is located. @@ -186,18 +187,21 @@ public partial interface IWebServicesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task RemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes the specified web service. + /// Gets the web services in the specified resource group. /// /// /// Name of the resource group in which the web service is located. /// - /// - /// The name of the web service. + /// + /// Continuation token for pagination. /// /// /// The headers that will be added to request. @@ -208,12 +212,41 @@ public partial interface IWebServicesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task BeginRemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string skiptoken = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the access keys for the specified web service. + /// Gets the web services in the specified subscription. + /// + /// + /// Continuation token for pagination. + /// + /// + /// 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>> ListBySubscriptionIdWithHttpMessagesAsync(string skiptoken = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or update a web service. This call will overwrite an + /// existing web service. Note that there is no warning or + /// confirmation. This is a nonrecoverable operation. If your intent is + /// to create a new web service, call the Get operation first to verify + /// that it does not exist. /// /// /// Name of the resource group in which the web service is located. @@ -221,6 +254,9 @@ public partial interface IWebServicesOperations /// /// The name of the web service. /// + /// + /// The payload that is used to create or update the web service. + /// /// /// The headers that will be added to request. /// @@ -236,15 +272,20 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the web services in the specified resource group. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed + /// successfully, you must perform a Get operation. /// /// /// Name of the resource group in which the web service is located. /// - /// - /// Continuation token for pagination. + /// + /// The name of the web service. + /// + /// + /// The payload to use to patch the web service. /// /// /// The headers that will be added to request. @@ -261,12 +302,46 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string skiptoken = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> BeginPatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the web services in the specified subscription. + /// Deletes the specified web service. /// - /// - /// Continuation token for pagination. + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// 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 BeginRemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates an encrypted credentials parameter blob for the specified + /// region. To get the web service from a region other than the region + /// in which it has been created, you must first call Create Regional + /// Web Services Properties to create a copy of the encrypted + /// credential parameter blob in that region. You only need to do this + /// before the first time that you get the web service in the new + /// region. + /// + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The region for which encrypted credential parameters are created. /// /// /// The headers that will be added to request. @@ -283,7 +358,7 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string skiptoken = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task> BeginCreateRegionalPropertiesWithHttpMessagesAsync(string resourceGroupName, string webServiceName, string region, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the web services in the specified resource group. /// @@ -305,7 +380,7 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets the web services in the specified subscription. /// @@ -327,6 +402,6 @@ public partial interface IWebServicesOperations /// /// Thrown when a required parameter is null /// - System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + Task>> ListBySubscriptionIdNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetItem.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetItem.cs index 8a9c9a0f04a2..57150943b626 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetItem.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetItem.cs @@ -1,13 +1,17 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,14 +22,17 @@ public partial class AssetItem /// /// Initializes a new instance of the AssetItem class. /// - public AssetItem() { } + public AssetItem() + { + CustomInit(); + } /// /// Initializes a new instance of the AssetItem class. /// /// Asset's friendly name. - /// Asset's type. Possible values include: - /// 'Module', 'Resource' + /// Asset's type. Possible values include: 'Module', + /// 'Resource' /// Access information for the /// asset. /// Asset's Id. @@ -37,7 +44,7 @@ public AssetItem() { } /// the module's metadata. /// If the asset is a custom module, this /// holds the module's parameters. - public AssetItem(string name, string type, AssetLocation locationInfo, string id = default(string), System.Collections.Generic.IDictionary inputPorts = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IDictionary outputPorts = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IDictionary metadata = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList parameters = default(System.Collections.Generic.IList)) + public AssetItem(string name, string type, BlobLocation locationInfo, string id = default(string), IDictionary inputPorts = default(IDictionary), IDictionary outputPorts = default(IDictionary), IDictionary metadata = default(IDictionary), IList parameters = default(IList)) { Name = name; Id = id; @@ -47,82 +54,88 @@ public AssetItem() { } OutputPorts = outputPorts; Metadata = metadata; Parameters = parameters; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets asset's friendly name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// Gets or sets asset's Id. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// Gets or sets asset's type. Possible values include: 'Module', /// 'Resource' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } /// /// Gets or sets access information for the asset. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "locationInfo")] - public AssetLocation LocationInfo { get; set; } + [JsonProperty(PropertyName = "locationInfo")] + public BlobLocation LocationInfo { get; set; } /// /// Gets or sets information about the asset's input ports. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "inputPorts")] - public System.Collections.Generic.IDictionary InputPorts { get; set; } + [JsonProperty(PropertyName = "inputPorts")] + public IDictionary InputPorts { get; set; } /// /// Gets or sets information about the asset's output ports. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "outputPorts")] - public System.Collections.Generic.IDictionary OutputPorts { get; set; } + [JsonProperty(PropertyName = "outputPorts")] + public IDictionary OutputPorts { get; set; } /// /// Gets or sets if the asset is a custom module, this holds the /// module's metadata. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "metadata")] - public System.Collections.Generic.IDictionary Metadata { get; set; } + [JsonProperty(PropertyName = "metadata")] + public IDictionary Metadata { get; set; } /// /// Gets or sets if the asset is a custom module, this holds the /// module's parameters. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "parameters")] - public System.Collections.Generic.IList Parameters { get; set; } + [JsonProperty(PropertyName = "parameters")] + public IList Parameters { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Name == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); } if (Type == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Type"); + throw new ValidationException(ValidationRules.CannotBeNull, "Type"); } if (LocationInfo == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "LocationInfo"); + throw new ValidationException(ValidationRules.CannotBeNull, "LocationInfo"); } - if (this.LocationInfo != null) + if (LocationInfo != null) { - this.LocationInfo.Validate(); + LocationInfo.Validate(); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetLocation.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetLocation.cs deleted file mode 100644 index 705e9ced8a31..000000000000 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetLocation.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 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models -{ - using System.Linq; - - /// - /// Describes the access location for a web service asset. - /// - public partial class AssetLocation - { - /// - /// Initializes a new instance of the AssetLocation class. - /// - public AssetLocation() { } - - /// - /// Initializes a new instance of the AssetLocation class. - /// - /// The URI where the asset is accessible from, - /// (e.g. aml://abc for system assets or https://xyz for user - /// asets - /// Access credentials for the asset, if - /// applicable (e.g. asset specified by storage account connection - /// string + blob URI) - public AssetLocation(string uri, string credentials = default(string)) - { - Uri = uri; - Credentials = credentials; - } - - /// - /// Gets or sets the URI where the asset is accessible from, (e.g. - /// aml://abc for system assets or https://xyz for user asets - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "uri")] - public string Uri { get; set; } - - /// - /// Gets or sets access credentials for the asset, if applicable (e.g. - /// asset specified by storage account connection string + blob URI) - /// - [Newtonsoft.Json.JsonProperty(PropertyName = "credentials")] - public string Credentials { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Uri == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Uri"); - } - } - } -} diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetType.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetType.cs index 794943b6d76f..22b3736a9325 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetType.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AssetType.cs @@ -1,13 +1,13 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for AssetType. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AsyncOperationErrorInfo.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AsyncOperationErrorInfo.cs new file mode 100644 index 000000000000..af099828f123 --- /dev/null +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AsyncOperationErrorInfo.cs @@ -0,0 +1,76 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The error detail information for async operation + /// + public partial class AsyncOperationErrorInfo + { + /// + /// Initializes a new instance of the AsyncOperationErrorInfo class. + /// + public AsyncOperationErrorInfo() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AsyncOperationErrorInfo class. + /// + /// The error code. + /// The error target. + /// The error message. + /// An array containing error + /// information. + public AsyncOperationErrorInfo(string code = default(string), string target = default(string), string message = default(string), IList details = default(IList)) + { + Code = code; + Target = target; + Message = message; + Details = details; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the error code. + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; set; } + + /// + /// Gets or sets the error target. + /// + [JsonProperty(PropertyName = "target")] + public string Target { get; set; } + + /// + /// Gets or sets the error message. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; set; } + + /// + /// Gets or sets an array containing error information. + /// + [JsonProperty(PropertyName = "details")] + public IList Details { get; set; } + + } +} diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AsyncOperationStatus.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AsyncOperationStatus.cs new file mode 100644 index 000000000000..4a268f847399 --- /dev/null +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/AsyncOperationStatus.cs @@ -0,0 +1,106 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Azure async operation status. + /// + public partial class AsyncOperationStatus + { + /// + /// Initializes a new instance of the AsyncOperationStatus class. + /// + public AsyncOperationStatus() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AsyncOperationStatus class. + /// + /// Async operation id. + /// Async operation name. + /// Read Only: The provisioning state + /// of the web service. Valid values are Unknown, Provisioning, + /// Succeeded, and Failed. Possible values include: 'Unknown', + /// 'Provisioning', 'Succeeded', 'Failed' + /// The date time that the async operation + /// started. + /// The date time that the async operation + /// finished. + /// Async operation progress. + /// If the async operation fails, this + /// structure contains the error details. + public AsyncOperationStatus(string id = default(string), string name = default(string), string provisioningState = default(string), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), double? percentComplete = default(double?), AsyncOperationErrorInfo errorInfo = default(AsyncOperationErrorInfo)) + { + Id = id; + Name = name; + ProvisioningState = provisioningState; + StartTime = startTime; + EndTime = endTime; + PercentComplete = percentComplete; + ErrorInfo = errorInfo; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets async operation id. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets async operation name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets read Only: The provisioning state of the web service. Valid + /// values are Unknown, Provisioning, Succeeded, and Failed. Possible + /// values include: 'Unknown', 'Provisioning', 'Succeeded', 'Failed' + /// + [JsonProperty(PropertyName = "provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets the date time that the async operation started. + /// + [JsonProperty(PropertyName = "startTime")] + public System.DateTime? StartTime { get; private set; } + + /// + /// Gets the date time that the async operation finished. + /// + [JsonProperty(PropertyName = "endTime")] + public System.DateTime? EndTime { get; private set; } + + /// + /// Gets or sets async operation progress. + /// + [JsonProperty(PropertyName = "percentComplete")] + public double? PercentComplete { get; set; } + + /// + /// Gets or sets if the async operation fails, this structure contains + /// the error details. + /// + [JsonProperty(PropertyName = "errorInfo")] + public AsyncOperationErrorInfo ErrorInfo { get; set; } + + } +} diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/BlobLocation.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/BlobLocation.cs new file mode 100644 index 000000000000..0db14597bb0c --- /dev/null +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/BlobLocation.cs @@ -0,0 +1,78 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Describes the access location for a blob. + /// + public partial class BlobLocation + { + /// + /// Initializes a new instance of the BlobLocation class. + /// + public BlobLocation() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the BlobLocation class. + /// + /// The URI from which the blob is accessible from. + /// For example, aml://abc for system assets or https://xyz for user + /// assets or payload. + /// Access credentials for the blob, if + /// applicable (e.g. blob specified by storage account connection + /// string + blob URI) + public BlobLocation(string uri, string credentials = default(string)) + { + Uri = uri; + Credentials = credentials; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the URI from which the blob is accessible from. For + /// example, aml://abc for system assets or https://xyz for user assets + /// or payload. + /// + [JsonProperty(PropertyName = "uri")] + public string Uri { get; set; } + + /// + /// Gets or sets access credentials for the blob, if applicable (e.g. + /// blob specified by storage account connection string + blob URI) + /// + [JsonProperty(PropertyName = "credentials")] + public string Credentials { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Uri == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Uri"); + } + } + } +} diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnFormat.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnFormat.cs index 784d9170b756..1b0375302ad5 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnFormat.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnFormat.cs @@ -1,13 +1,13 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for ColumnFormat. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnSpecification.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnSpecification.cs index 6d55aed6ad76..ce020e2c147e 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnSpecification.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnSpecification.cs @@ -1,13 +1,17 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -20,7 +24,10 @@ public partial class ColumnSpecification /// /// Initializes a new instance of the ColumnSpecification class. /// - public ColumnSpecification() { } + public ColumnSpecification() + { + CustomInit(); + } /// /// Initializes a new instance of the ColumnSpecification class. @@ -29,9 +36,9 @@ public ColumnSpecification() { } /// include: 'Boolean', 'Integer', 'Number', 'String' /// Additional format information for the data /// type. Possible values include: 'Byte', 'Char', 'Complex64', - /// 'Complex128', 'Date-time', 'Date-timeOffset', 'Double', - /// 'Duration', 'Float', 'Int8', 'Int16', 'Int32', 'Int64', 'Uint8', - /// 'Uint16', 'Uint32', 'Uint64' + /// 'Complex128', 'Date-time', 'Date-timeOffset', 'Double', 'Duration', + /// 'Float', 'Int8', 'Int16', 'Int32', 'Int64', 'Uint8', 'Uint16', + /// 'Uint32', 'Uint64' /// If the data type is categorical, this /// provides the list of accepted categories. /// Flag indicating if the type supports @@ -39,64 +46,70 @@ public ColumnSpecification() { } /// Flag indicating whether the categories /// are treated as an ordered set or not, if this is a categorical /// column. - public ColumnSpecification(string type, string format = default(string), System.Collections.Generic.IList enumProperty = default(System.Collections.Generic.IList), bool? xMsIsnullable = default(bool?), bool? xMsIsordered = default(bool?)) + public ColumnSpecification(string type, string format = default(string), IList enumProperty = default(IList), bool? xMsIsnullable = default(bool?), bool? xMsIsordered = default(bool?)) { Type = type; Format = format; EnumProperty = enumProperty; XMsIsnullable = xMsIsnullable; XMsIsordered = xMsIsordered; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets data type of the column. Possible values include: /// 'Boolean', 'Integer', 'Number', 'String' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } /// /// Gets or sets additional format information for the data type. - /// Possible values include: 'Byte', 'Char', 'Complex64', - /// 'Complex128', 'Date-time', 'Date-timeOffset', 'Double', - /// 'Duration', 'Float', 'Int8', 'Int16', 'Int32', 'Int64', 'Uint8', - /// 'Uint16', 'Uint32', 'Uint64' + /// Possible values include: 'Byte', 'Char', 'Complex64', 'Complex128', + /// 'Date-time', 'Date-timeOffset', 'Double', 'Duration', 'Float', + /// 'Int8', 'Int16', 'Int32', 'Int64', 'Uint8', 'Uint16', 'Uint32', + /// 'Uint64' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "format")] + [JsonProperty(PropertyName = "format")] public string Format { get; set; } /// /// Gets or sets if the data type is categorical, this provides the /// list of accepted categories. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "enum")] - public System.Collections.Generic.IList EnumProperty { get; set; } + [JsonProperty(PropertyName = "enum")] + public IList EnumProperty { get; set; } /// /// Gets or sets flag indicating if the type supports null values or /// not. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "x-ms-isnullable")] + [JsonProperty(PropertyName = "x-ms-isnullable")] public bool? XMsIsnullable { get; set; } /// /// Gets or sets flag indicating whether the categories are treated as /// an ordered set or not, if this is a categorical column. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "x-ms-isordered")] + [JsonProperty(PropertyName = "x-ms-isordered")] public bool? XMsIsordered { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Type == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Type"); + throw new ValidationException(ValidationRules.CannotBeNull, "Type"); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnType.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnType.cs index db758ca7f748..f8d47e9e0a5d 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnType.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ColumnType.cs @@ -1,13 +1,13 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for ColumnType. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/CommitmentPlan.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/CommitmentPlan.cs index 6f77bab26718..ce496069f342 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/CommitmentPlan.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/CommitmentPlan.cs @@ -1,13 +1,15 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -19,7 +21,10 @@ public partial class CommitmentPlan /// /// Initializes a new instance of the CommitmentPlan class. /// - public CommitmentPlan() { } + public CommitmentPlan() + { + CustomInit(); + } /// /// Initializes a new instance of the CommitmentPlan class. @@ -29,26 +34,32 @@ public CommitmentPlan() { } public CommitmentPlan(string id) { Id = id; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets specifies the Azure Resource Manager ID of the /// commitment plan associated with the web service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Id == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Id"); + throw new ValidationException(ValidationRules.CannotBeNull, "Id"); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsConfiguration.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsConfiguration.cs index bf3f0e823f3d..1da135a7b2cf 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsConfiguration.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsConfiguration.cs @@ -1,13 +1,15 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -18,16 +20,18 @@ public partial class DiagnosticsConfiguration /// /// Initializes a new instance of the DiagnosticsConfiguration class. /// - public DiagnosticsConfiguration() { } + public DiagnosticsConfiguration() + { + CustomInit(); + } /// /// Initializes a new instance of the DiagnosticsConfiguration class. /// /// Specifies the verbosity of the diagnostic - /// output. Valid values are: None - disables tracing; Error - - /// collects only error (stderr) traces; All - collects all traces - /// (stdout and stderr). Possible values include: 'None', 'Error', - /// 'All' + /// output. Valid values are: None - disables tracing; Error - collects + /// only error (stderr) traces; All - collects all traces (stdout and + /// stderr). Possible values include: 'None', 'Error', 'All' /// Specifies the date and time when the logging /// will cease. If null, diagnostic collection is not time /// limited. @@ -35,35 +39,41 @@ public DiagnosticsConfiguration() { } { Level = level; Expiry = expiry; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets specifies the verbosity of the diagnostic output. /// Valid values are: None - disables tracing; Error - collects only /// error (stderr) traces; All - collects all traces (stdout and /// stderr). Possible values include: 'None', 'Error', 'All' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "level")] + [JsonProperty(PropertyName = "level")] public string Level { get; set; } /// /// Gets or sets specifies the date and time when the logging will /// cease. If null, diagnostic collection is not time limited. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "expiry")] + [JsonProperty(PropertyName = "expiry")] public System.DateTime? Expiry { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Level == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Level"); + throw new ValidationException(ValidationRules.CannotBeNull, "Level"); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsLevel.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsLevel.cs index e161c88fb502..f22377f4647d 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsLevel.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/DiagnosticsLevel.cs @@ -1,13 +1,13 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for DiagnosticsLevel. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ExampleRequest.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ExampleRequest.cs index e2596e1f984e..908cd5b3bb0c 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ExampleRequest.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ExampleRequest.cs @@ -1,13 +1,16 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,7 +21,10 @@ public partial class ExampleRequest /// /// Initializes a new instance of the ExampleRequest class. /// - public ExampleRequest() { } + public ExampleRequest() + { + CustomInit(); + } /// /// Initializes a new instance of the ExampleRequest class. @@ -28,25 +34,31 @@ public ExampleRequest() { } /// map. /// Sample input data for the web /// service's global parameters - public ExampleRequest(System.Collections.Generic.IDictionary>> inputs = default(System.Collections.Generic.IDictionary>>), System.Collections.Generic.IDictionary globalParameters = default(System.Collections.Generic.IDictionary)) + public ExampleRequest(IDictionary>> inputs = default(IDictionary>>), IDictionary globalParameters = default(IDictionary)) { Inputs = inputs; GlobalParameters = globalParameters; + CustomInit(); } /// - /// Gets or sets sample input data for the web service's input(s) - /// given as an input name to sample input values matrix map. + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets sample input data for the web service's input(s) given + /// as an input name to sample input values matrix map. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "inputs")] - public System.Collections.Generic.IDictionary>> Inputs { get; set; } + [JsonProperty(PropertyName = "inputs")] + public IDictionary>> Inputs { get; set; } /// /// Gets or sets sample input data for the web service's global /// parameters /// - [Newtonsoft.Json.JsonProperty(PropertyName = "globalParameters")] - public System.Collections.Generic.IDictionary GlobalParameters { get; set; } + [JsonProperty(PropertyName = "globalParameters")] + public IDictionary GlobalParameters { get; set; } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphEdge.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphEdge.cs index 53372439721d..f040a7d8d11d 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphEdge.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphEdge.cs @@ -1,13 +1,14 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; using System.Linq; /// @@ -18,51 +19,60 @@ public partial class GraphEdge /// /// Initializes a new instance of the GraphEdge class. /// - public GraphEdge() { } + public GraphEdge() + { + CustomInit(); + } /// /// Initializes a new instance of the GraphEdge class. /// /// The source graph node's /// identifier. - /// The identifier of the source node's - /// port that the edge connects from. + /// The identifier of the source node's port + /// that the edge connects from. /// The destination graph node's /// identifier. - /// The identifier of the destination - /// node's port that the edge connects into. + /// The identifier of the destination node's + /// port that the edge connects into. public GraphEdge(string sourceNodeId = default(string), string sourcePortId = default(string), string targetNodeId = default(string), string targetPortId = default(string)) { SourceNodeId = sourceNodeId; SourcePortId = sourcePortId; TargetNodeId = targetNodeId; TargetPortId = targetPortId; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the source graph node's identifier. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "sourceNodeId")] + [JsonProperty(PropertyName = "sourceNodeId")] public string SourceNodeId { get; set; } /// - /// Gets or sets the identifier of the source node's port that the - /// edge connects from. + /// Gets or sets the identifier of the source node's port that the edge + /// connects from. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "sourcePortId")] + [JsonProperty(PropertyName = "sourcePortId")] public string SourcePortId { get; set; } /// /// Gets or sets the destination graph node's identifier. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "targetNodeId")] + [JsonProperty(PropertyName = "targetNodeId")] public string TargetNodeId { get; set; } /// - /// Gets or sets the identifier of the destination node's port that - /// the edge connects into. + /// Gets or sets the identifier of the destination node's port that the + /// edge connects into. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "targetPortId")] + [JsonProperty(PropertyName = "targetPortId")] public string TargetPortId { get; set; } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphNode.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphNode.cs index 6774d024118a..d4ed58fb9152 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphNode.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphNode.cs @@ -1,13 +1,16 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -20,7 +23,10 @@ public partial class GraphNode /// /// Initializes a new instance of the GraphNode class. /// - public GraphNode() { } + public GraphNode() + { + CustomInit(); + } /// /// Initializes a new instance of the GraphNode class. @@ -34,38 +40,44 @@ public GraphNode() { } /// If applicable, parameters of the node. /// Global graph parameters map into these, with values set at /// runtime. - public GraphNode(string assetId = default(string), string inputId = default(string), string outputId = default(string), System.Collections.Generic.IDictionary parameters = default(System.Collections.Generic.IDictionary)) + public GraphNode(string assetId = default(string), string inputId = default(string), string outputId = default(string), IDictionary parameters = default(IDictionary)) { AssetId = assetId; InputId = inputId; OutputId = outputId; Parameters = parameters; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the id of the asset represented by this node. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "assetId")] + [JsonProperty(PropertyName = "assetId")] public string AssetId { get; set; } /// /// Gets or sets the id of the input element represented by this node. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "inputId")] + [JsonProperty(PropertyName = "inputId")] public string InputId { get; set; } /// /// Gets or sets the id of the output element represented by this node. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "outputId")] + [JsonProperty(PropertyName = "outputId")] public string OutputId { get; set; } /// /// Gets or sets if applicable, parameters of the node. Global graph /// parameters map into these, with values set at runtime. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "parameters")] - public System.Collections.Generic.IDictionary Parameters { get; set; } + [JsonProperty(PropertyName = "parameters")] + public IDictionary Parameters { get; set; } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphPackage.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphPackage.cs index b64d9278cf60..71722811f013 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphPackage.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphPackage.cs @@ -1,13 +1,16 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,7 +21,10 @@ public partial class GraphPackage /// /// Initializes a new instance of the GraphPackage class. /// - public GraphPackage() { } + public GraphPackage() + { + CustomInit(); + } /// /// Initializes a new instance of the GraphPackage class. @@ -28,28 +34,33 @@ public GraphPackage() { } /// The list of edges making up the graph. /// The collection of global parameters /// for the graph, given as a global parameter name to GraphParameter - /// map. Each parameter here has a 1:1 match with the global - /// parameters values map declared at the WebServiceProperties - /// level. - public GraphPackage(System.Collections.Generic.IDictionary nodes = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList edges = default(System.Collections.Generic.IList), System.Collections.Generic.IDictionary graphParameters = default(System.Collections.Generic.IDictionary)) + /// map. Each parameter here has a 1:1 match with the global parameters + /// values map declared at the WebServiceProperties level. + public GraphPackage(IDictionary nodes = default(IDictionary), IList edges = default(IList), IDictionary graphParameters = default(IDictionary)) { Nodes = nodes; Edges = edges; GraphParameters = graphParameters; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the set of nodes making up the graph, provided as a /// nodeId to GraphNode map /// - [Newtonsoft.Json.JsonProperty(PropertyName = "nodes")] - public System.Collections.Generic.IDictionary Nodes { get; set; } + [JsonProperty(PropertyName = "nodes")] + public IDictionary Nodes { get; set; } /// /// Gets or sets the list of edges making up the graph. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "edges")] - public System.Collections.Generic.IList Edges { get; set; } + [JsonProperty(PropertyName = "edges")] + public IList Edges { get; set; } /// /// Gets or sets the collection of global parameters for the graph, @@ -57,8 +68,8 @@ public GraphPackage() { } /// parameter here has a 1:1 match with the global parameters values /// map declared at the WebServiceProperties level. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "graphParameters")] - public System.Collections.Generic.IDictionary GraphParameters { get; set; } + [JsonProperty(PropertyName = "graphParameters")] + public IDictionary GraphParameters { get; set; } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameter.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameter.cs index 8ede8de22609..d6c098841611 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameter.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameter.cs @@ -1,13 +1,17 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,30 +22,39 @@ public partial class GraphParameter /// /// Initializes a new instance of the GraphParameter class. /// - public GraphParameter() { } + public GraphParameter() + { + CustomInit(); + } /// /// Initializes a new instance of the GraphParameter class. /// - /// Graph parameter's type. Possible values - /// include: 'String', 'Int', 'Float', 'Enumerated', 'Script', - /// 'Mode', 'Credential', 'Boolean', 'Double', 'ColumnPicker', + /// Graph parameter's type. Possible values include: + /// 'String', 'Int', 'Float', 'Enumerated', 'Script', 'Mode', + /// 'Credential', 'Boolean', 'Double', 'ColumnPicker', /// 'ParameterRange', 'DataGatewayName' /// Association links for this parameter to nodes /// in the graph. /// Description of this graph /// parameter. - public GraphParameter(string type, System.Collections.Generic.IList links, string description = default(string)) + public GraphParameter(string type, IList links, string description = default(string)) { Description = description; Type = type; Links = links; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets description of this graph parameter. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "description")] + [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// @@ -50,35 +63,35 @@ public GraphParameter() { } /// 'Credential', 'Boolean', 'Double', 'ColumnPicker', /// 'ParameterRange', 'DataGatewayName' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } /// /// Gets or sets association links for this parameter to nodes in the /// graph. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "links")] - public System.Collections.Generic.IList Links { get; set; } + [JsonProperty(PropertyName = "links")] + public IList Links { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Type == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Type"); + throw new ValidationException(ValidationRules.CannotBeNull, "Type"); } if (Links == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Links"); + throw new ValidationException(ValidationRules.CannotBeNull, "Links"); } - if (this.Links != null) + if (Links != null) { - foreach (var element in this.Links) + foreach (var element in Links) { if (element != null) { diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameterLink.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameterLink.cs index 0eeadff8ecea..3827df6fc49d 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameterLink.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/GraphParameterLink.cs @@ -1,13 +1,15 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -18,7 +20,10 @@ public partial class GraphParameterLink /// /// Initializes a new instance of the GraphParameterLink class. /// - public GraphParameterLink() { } + public GraphParameterLink() + { + CustomInit(); + } /// /// Initializes a new instance of the GraphParameterLink class. @@ -30,36 +35,42 @@ public GraphParameterLink(string nodeId, string parameterKey) { NodeId = nodeId; ParameterKey = parameterKey; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the graph node's identifier /// - [Newtonsoft.Json.JsonProperty(PropertyName = "nodeId")] + [JsonProperty(PropertyName = "nodeId")] public string NodeId { get; set; } /// /// Gets or sets the identifier of the node parameter that the global /// parameter maps to. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "parameterKey")] + [JsonProperty(PropertyName = "parameterKey")] public string ParameterKey { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (NodeId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "NodeId"); + throw new ValidationException(ValidationRules.CannotBeNull, "NodeId"); } if (ParameterKey == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ParameterKey"); + throw new ValidationException(ValidationRules.CannotBeNull, "ParameterKey"); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPort.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPort.cs index 256384e18f69..d5c42f5dea37 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPort.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPort.cs @@ -1,13 +1,14 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; using System.Linq; /// @@ -18,7 +19,10 @@ public partial class InputPort /// /// Initializes a new instance of the InputPort class. /// - public InputPort() { } + public InputPort() + { + CustomInit(); + } /// /// Initializes a new instance of the InputPort class. @@ -28,12 +32,18 @@ public InputPort() { } public InputPort(string type = default(string)) { Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets port data type. Possible values include: 'Dataset' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPortType.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPortType.cs index 433879d4c10a..cbdbff530fd4 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPortType.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/InputPortType.cs @@ -1,13 +1,13 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for InputPortType. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/MachineLearningWorkspace.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/MachineLearningWorkspace.cs index 109aa1d320fe..303e70af525f 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/MachineLearningWorkspace.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/MachineLearningWorkspace.cs @@ -1,13 +1,15 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -19,36 +21,45 @@ public partial class MachineLearningWorkspace /// /// Initializes a new instance of the MachineLearningWorkspace class. /// - public MachineLearningWorkspace() { } + public MachineLearningWorkspace() + { + CustomInit(); + } /// /// Initializes a new instance of the MachineLearningWorkspace class. /// - /// Specifies the workspace ID of the machine - /// learning workspace associated with the web service + /// Specifies the workspace ID of the machine learning + /// workspace associated with the web service public MachineLearningWorkspace(string id) { Id = id; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets specifies the workspace ID of the machine learning /// workspace associated with the web service /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Id == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Id"); + throw new ValidationException(ValidationRules.CannotBeNull, "Id"); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModeValueInfo.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModeValueInfo.cs index 26378aa304c3..081d3d19de62 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModeValueInfo.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModeValueInfo.cs @@ -1,13 +1,16 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,7 +21,10 @@ public partial class ModeValueInfo /// /// Initializes a new instance of the ModeValueInfo class. /// - public ModeValueInfo() { } + public ModeValueInfo() + { + CustomInit(); + } /// /// Initializes a new instance of the ModeValueInfo class. @@ -26,23 +32,29 @@ public ModeValueInfo() { } /// The interface string name for the /// nested parameter. /// The definition of the parameter. - public ModeValueInfo(string interfaceString = default(string), System.Collections.Generic.IList parameters = default(System.Collections.Generic.IList)) + public ModeValueInfo(string interfaceString = default(string), IList parameters = default(IList)) { InterfaceString = interfaceString; Parameters = parameters; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the interface string name for the nested parameter. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "interfaceString")] + [JsonProperty(PropertyName = "interfaceString")] public string InterfaceString { get; set; } /// /// Gets or sets the definition of the parameter. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "parameters")] - public System.Collections.Generic.IList Parameters { get; set; } + [JsonProperty(PropertyName = "parameters")] + public IList Parameters { get; set; } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModuleAssetParameter.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModuleAssetParameter.cs index 6d6ca92d0b4d..f9a4a3875e63 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModuleAssetParameter.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ModuleAssetParameter.cs @@ -1,13 +1,16 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,7 +21,10 @@ public partial class ModuleAssetParameter /// /// Initializes a new instance of the ModuleAssetParameter class. /// - public ModuleAssetParameter() { } + public ModuleAssetParameter() + { + CustomInit(); + } /// /// Initializes a new instance of the ModuleAssetParameter class. @@ -27,31 +33,37 @@ public ModuleAssetParameter() { } /// Parameter type. /// Definitions for nested interface /// parameters if this is a complex module parameter. - public ModuleAssetParameter(string name = default(string), string parameterType = default(string), System.Collections.Generic.IDictionary modeValuesInfo = default(System.Collections.Generic.IDictionary)) + public ModuleAssetParameter(string name = default(string), string parameterType = default(string), IDictionary modeValuesInfo = default(IDictionary)) { Name = name; ParameterType = parameterType; ModeValuesInfo = modeValuesInfo; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets parameter name. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// Gets or sets parameter type. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "parameterType")] + [JsonProperty(PropertyName = "parameterType")] public string ParameterType { get; set; } /// - /// Gets or sets definitions for nested interface parameters if this - /// is a complex module parameter. + /// Gets or sets definitions for nested interface parameters if this is + /// a complex module parameter. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "modeValuesInfo")] - public System.Collections.Generic.IDictionary ModeValuesInfo { get; set; } + [JsonProperty(PropertyName = "modeValuesInfo")] + public IDictionary ModeValuesInfo { get; set; } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPort.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPort.cs index d6daccaf4213..35beacb2053a 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPort.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPort.cs @@ -1,13 +1,14 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; using System.Linq; /// @@ -18,7 +19,10 @@ public partial class OutputPort /// /// Initializes a new instance of the OutputPort class. /// - public OutputPort() { } + public OutputPort() + { + CustomInit(); + } /// /// Initializes a new instance of the OutputPort class. @@ -28,12 +32,18 @@ public OutputPort() { } public OutputPort(string type = default(string)) { Type = type; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets port data type. Possible values include: 'Dataset' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPortType.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPortType.cs index c84e55387702..aa06b4c27444 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPortType.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/OutputPortType.cs @@ -1,13 +1,13 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for OutputPortType. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Page.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Page.cs index 14631fc17aab..59eadd37557f 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Page.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Page.cs @@ -1,44 +1,49 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; /// /// Defines a page in Azure responses. /// /// Type of the page content items - [Newtonsoft.Json.JsonObject] - public class Page : Microsoft.Rest.Azure.IPage + [JsonObject] + public class Page : IPage { /// /// Gets the link to the next page. /// - [Newtonsoft.Json.JsonProperty("nextLink")] - public System.String NextPageLink { get; private set; } + [JsonProperty("nextLink")] + public string NextPageLink { get; private set; } - [Newtonsoft.Json.JsonProperty("value")] - private System.Collections.Generic.IList Items{ get; set; } + [JsonProperty("value")] + private IList Items{ get; set; } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - public System.Collections.Generic.IEnumerator GetEnumerator() + public IEnumerator GetEnumerator() { - return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); } /// /// Returns an enumerator that iterates through the collection. /// /// A an enumerator that can be used to iterate through the collection. - System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ParameterType.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ParameterType.cs index 07e9643050e8..004c0cdb1e58 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ParameterType.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ParameterType.cs @@ -1,13 +1,13 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for ParameterType. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ProvisioningState.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ProvisioningState.cs index edf4d24292d3..144a6fe04df4 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ProvisioningState.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ProvisioningState.cs @@ -1,13 +1,13 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; /// /// Defines values for ProvisioningState. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/RealtimeConfiguration.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/RealtimeConfiguration.cs index 30ba253d22c1..7b095d537b75 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/RealtimeConfiguration.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/RealtimeConfiguration.cs @@ -1,13 +1,15 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; using System.Linq; /// @@ -19,7 +21,10 @@ public partial class RealtimeConfiguration /// /// Initializes a new instance of the RealtimeConfiguration class. /// - public RealtimeConfiguration() { } + public RealtimeConfiguration() + { + CustomInit(); + } /// /// Initializes a new instance of the RealtimeConfiguration class. @@ -30,30 +35,36 @@ public RealtimeConfiguration() { } public RealtimeConfiguration(int? maxConcurrentCalls = default(int?)) { MaxConcurrentCalls = maxConcurrentCalls; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets specifies the maximum concurrent calls that can be /// made to the web service. Minimum value: 4, Maximum value: 200. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "maxConcurrentCalls")] + [JsonProperty(PropertyName = "maxConcurrentCalls")] public int? MaxConcurrentCalls { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (this.MaxConcurrentCalls > 200) + if (MaxConcurrentCalls > 200) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMaximum, "MaxConcurrentCalls", 200); + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxConcurrentCalls", 200); } - if (this.MaxConcurrentCalls < 4) + if (MaxConcurrentCalls < 4) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.InclusiveMinimum, "MaxConcurrentCalls", 4); + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxConcurrentCalls", 4); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Resource.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Resource.cs index 05a03e85be0b..892032cfa24d 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Resource.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/Resource.cs @@ -1,21 +1,32 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; - public partial class Resource : Microsoft.Rest.Azure.IResource + /// + /// Azure resource. + /// + public partial class Resource : IResource { /// /// Initializes a new instance of the Resource class. /// - public Resource() { } + public Resource() + { + CustomInit(); + } /// /// Initializes a new instance of the Resource class. @@ -27,56 +38,62 @@ public Resource() { } /// Specifies the type of the resource. /// Contains resource tags defined as key/value /// pairs. - public Resource(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + public Resource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) { Id = id; Name = name; Location = location; Type = type; Tags = tags; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets specifies the resource ID. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + [JsonProperty(PropertyName = "id")] public string Id { get; private set; } /// - /// Gets or sets specifies the name of the resource. + /// Gets specifies the name of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] - public string Name { get; set; } + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } /// /// Gets or sets specifies the location of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "location")] + [JsonProperty(PropertyName = "location")] public string Location { get; set; } /// /// Gets specifies the type of the resource. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; private set; } /// /// Gets or sets contains resource tags defined as key/value pairs. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] - public System.Collections.Generic.IDictionary Tags { get; set; } + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Location == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Location"); + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ServiceInputOutputSpecification.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ServiceInputOutputSpecification.cs index f0b3e2d9af1b..96a77fdaf876 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ServiceInputOutputSpecification.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/ServiceInputOutputSpecification.cs @@ -1,13 +1,17 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -20,7 +24,10 @@ public partial class ServiceInputOutputSpecification /// Initializes a new instance of the ServiceInputOutputSpecification /// class. /// - public ServiceInputOutputSpecification() { } + public ServiceInputOutputSpecification() + { + CustomInit(); + } /// /// Initializes a new instance of the ServiceInputOutputSpecification @@ -29,65 +36,71 @@ public ServiceInputOutputSpecification() { } /// The type of the entity described in swagger. /// Always 'object'. /// Specifies a collection that contains the - /// column schema for each input or output of the web service. For - /// more information, see the Swagger specification. + /// column schema for each input or output of the web service. For more + /// information, see the Swagger specification. /// The title of your Swagger schema. /// The description of the Swagger /// schema. - public ServiceInputOutputSpecification(string type, System.Collections.Generic.IDictionary properties, string title = default(string), string description = default(string)) + public ServiceInputOutputSpecification(string type, IDictionary properties, string title = default(string), string description = default(string)) { Title = title; Description = description; Type = type; Properties = properties; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the title of your Swagger schema. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "title")] + [JsonProperty(PropertyName = "title")] public string Title { get; set; } /// /// Gets or sets the description of the Swagger schema. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "description")] + [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// /// Gets or sets the type of the entity described in swagger. Always /// 'object'. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } /// - /// Gets or sets specifies a collection that contains the column - /// schema for each input or output of the web service. For more - /// information, see the Swagger specification. + /// Gets or sets specifies a collection that contains the column schema + /// for each input or output of the web service. For more information, + /// see the Swagger specification. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] - public System.Collections.Generic.IDictionary Properties { get; set; } + [JsonProperty(PropertyName = "properties")] + public IDictionary Properties { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Type == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Type"); + throw new ValidationException(ValidationRules.CannotBeNull, "Type"); } if (Properties == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Properties"); + throw new ValidationException(ValidationRules.CannotBeNull, "Properties"); } - if (this.Properties != null) + if (Properties != null) { - foreach (var valueElement in this.Properties.Values) + foreach (var valueElement in Properties.Values) { if (valueElement != null) { diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/StorageAccount.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/StorageAccount.cs index 712380b47564..6bbe4e0e7ee9 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/StorageAccount.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/StorageAccount.cs @@ -1,13 +1,14 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; using System.Linq; /// @@ -18,7 +19,10 @@ public partial class StorageAccount /// /// Initializes a new instance of the StorageAccount class. /// - public StorageAccount() { } + public StorageAccount() + { + CustomInit(); + } /// /// Initializes a new instance of the StorageAccount class. @@ -31,18 +35,24 @@ public StorageAccount() { } { Name = name; Key = key; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets specifies the name of the storage account. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// Gets or sets specifies the key used to access the storage account. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "key")] + [JsonProperty(PropertyName = "key")] public string Key { get; set; } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/TableSpecification.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/TableSpecification.cs index dd9e305f38e2..5916d2486c4b 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/TableSpecification.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/TableSpecification.cs @@ -1,25 +1,32 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// The swagger 2.0 schema describing a single service input or output. - /// See Swagger specification: http://swagger.io/specification/ + /// The swagger 2.0 schema describing a single service input or output. See + /// Swagger specification: http://swagger.io/specification/ /// public partial class TableSpecification { /// /// Initializes a new instance of the TableSpecification class. /// - public TableSpecification() { } + public TableSpecification() + { + CustomInit(); + } /// /// Initializes a new instance of the TableSpecification class. @@ -31,60 +38,66 @@ public TableSpecification() { } /// The format, if 'type' is not 'object' /// The set of columns within the data /// table. - public TableSpecification(string type, string title = default(string), string description = default(string), string format = default(string), System.Collections.Generic.IDictionary properties = default(System.Collections.Generic.IDictionary)) + public TableSpecification(string type, string title = default(string), string description = default(string), string format = default(string), IDictionary properties = default(IDictionary)) { Title = title; Description = description; Type = type; Format = format; Properties = properties; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets swagger schema title. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "title")] + [JsonProperty(PropertyName = "title")] public string Title { get; set; } /// /// Gets or sets swagger schema description. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "description")] + [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// /// Gets or sets the type of the entity described in swagger. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + [JsonProperty(PropertyName = "type")] public string Type { get; set; } /// /// Gets or sets the format, if 'type' is not 'object' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "format")] + [JsonProperty(PropertyName = "format")] public string Format { get; set; } /// /// Gets or sets the set of columns within the data table. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] - public System.Collections.Generic.IDictionary Properties { get; set; } + [JsonProperty(PropertyName = "properties")] + public IDictionary Properties { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { if (Type == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Type"); + throw new ValidationException(ValidationRules.CannotBeNull, "Type"); } - if (this.Properties != null) + if (Properties != null) { - foreach (var valueElement in this.Properties.Values) + foreach (var valueElement in Properties.Values) { if (valueElement != null) { diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebService.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebService.cs index 143ff206166b..3b6fc2453dca 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebService.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebService.cs @@ -1,13 +1,17 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,7 +22,10 @@ public partial class WebService : Resource /// /// Initializes a new instance of the WebService class. /// - public WebService() { } + public WebService() + { + CustomInit(); + } /// /// Initializes a new instance of the WebService class. @@ -32,23 +39,29 @@ public WebService() { } /// Specifies the type of the resource. /// Contains resource tags defined as key/value /// pairs. - public WebService(string location, WebServiceProperties properties, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + public WebService(string location, WebServiceProperties properties, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) : base(location, id, name, type, tags) { Properties = properties; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets contains the property payload that describes the web /// service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] + [JsonProperty(PropertyName = "properties")] public WebServiceProperties Properties { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() @@ -56,11 +69,11 @@ public override void Validate() base.Validate(); if (Properties == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Properties"); + throw new ValidationException(ValidationRules.CannotBeNull, "Properties"); } - if (this.Properties != null) + if (Properties != null) { - this.Properties.Validate(); + Properties.Validate(); } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceKeys.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceKeys.cs index b6226796d12d..3a1f7e8a1edc 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceKeys.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceKeys.cs @@ -1,13 +1,14 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; using System.Linq; /// @@ -18,7 +19,10 @@ public partial class WebServiceKeys /// /// Initializes a new instance of the WebServiceKeys class. /// - public WebServiceKeys() { } + public WebServiceKeys() + { + CustomInit(); + } /// /// Initializes a new instance of the WebServiceKeys class. @@ -29,18 +33,24 @@ public WebServiceKeys() { } { Primary = primary; Secondary = secondary; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the primary access key. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "primary")] + [JsonProperty(PropertyName = "primary")] public string Primary { get; set; } /// /// Gets or sets the secondary access key. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "secondary")] + [JsonProperty(PropertyName = "secondary")] public string Secondary { get; set; } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceParameter.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceParameter.cs new file mode 100644 index 000000000000..545c49f699da --- /dev/null +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceParameter.cs @@ -0,0 +1,60 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Web Service Parameter object for node and global parameter + /// + public partial class WebServiceParameter + { + /// + /// Initializes a new instance of the WebServiceParameter class. + /// + public WebServiceParameter() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the WebServiceParameter class. + /// + /// The parameter value + /// If the parameter value in + /// 'value' field is encrypted, the thumbprint of the certificate + /// should be put here. + public WebServiceParameter(object value = default(object), string certificateThumbprint = default(string)) + { + Value = value; + CertificateThumbprint = certificateThumbprint; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the parameter value + /// + [JsonProperty(PropertyName = "value")] + public object Value { get; set; } + + /// + /// Gets or sets if the parameter value in 'value' field is encrypted, + /// the thumbprint of the certificate should be put here. + /// + [JsonProperty(PropertyName = "certificateThumbprint")] + public string CertificateThumbprint { get; set; } + + } +} diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceProperties.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceProperties.cs index ad95976f42ca..197cee34c8d2 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceProperties.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServiceProperties.cs @@ -1,13 +1,16 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -18,7 +21,10 @@ public partial class WebServiceProperties /// /// Initializes a new instance of the WebServiceProperties class. /// - public WebServiceProperties() { } + public WebServiceProperties() + { + CustomInit(); + } /// /// Initializes a new instance of the WebServiceProperties class. @@ -31,22 +37,22 @@ public WebServiceProperties() { } /// Read Only: The date and time when the web /// service was last modified. /// Read Only: The provision state of - /// the web service. Valid values are Unknown, Provisioning, - /// Succeeded, and Failed. Possible values include: 'Unknown', - /// 'Provisioning', 'Succeeded', 'Failed' + /// the web service. Valid values are Unknown, Provisioning, Succeeded, + /// and Failed. Possible values include: 'Unknown', 'Provisioning', + /// 'Succeeded', 'Failed' /// Contains the web service provisioning keys. If /// you do not specify provisioning keys, the Azure Machine Learning - /// system generates them for you. Note: The keys are not returned - /// from calls to GET operations. - /// When set to true, indicates that - /// the web service is read-only and can no longer be updated or - /// patched, only removed. Default, is false. Note: Once set to true, - /// you cannot change its value. + /// system generates them for you. Note: The keys are not returned from + /// calls to GET operations. + /// When set to true, indicates that the + /// web service is read-only and can no longer be updated or patched, + /// only removed. Default, is false. Note: Once set to true, you cannot + /// change its value. /// Read Only: Contains the URI of the /// swagger spec associated with this web service. /// When set to true, sample data is - /// included in the web service's swagger definition. The default - /// value is true. + /// included in the web service's swagger definition. The default value + /// is true. /// Contains the configuration /// settings for the web service endpoint. /// Settings controlling the diagnostics @@ -59,18 +65,18 @@ public WebServiceProperties() { } /// available in the new storage account or calls to your web service /// will fail. /// Specifies the Machine - /// Learning workspace containing the experiment that is source for - /// the web service. + /// Learning workspace containing the experiment that is source for the + /// web service. /// Contains the commitment plan /// associated with this web service. Set at creation time. Once set, /// this value cannot be changed. Note: The commitment plan is not /// returned from calls to GET operations. /// Contains the Swagger 2.0 schema describing one - /// or more of the web service's inputs. For more information, see - /// the Swagger specification. - /// Contains the Swagger 2.0 schema describing - /// one or more of the web service's outputs. For more information, - /// see the Swagger specification. + /// or more of the web service's inputs. For more information, see the + /// Swagger specification. + /// Contains the Swagger 2.0 schema describing one + /// or more of the web service's outputs. For more information, see the + /// Swagger specification. /// Defines sample input data for one or /// more of the service's inputs. /// Contains user defined properties describing @@ -78,9 +84,20 @@ public WebServiceProperties() { } /// pairs. /// The set of global parameters values /// defined for the web service, given as a global parameter name to - /// default value map. If no default value is specified, the - /// parameter is considered to be required. - public WebServiceProperties(string title = default(string), string description = default(string), System.DateTime? createdOn = default(System.DateTime?), System.DateTime? modifiedOn = default(System.DateTime?), string provisioningState = default(string), WebServiceKeys keys = default(WebServiceKeys), bool? readOnlyProperty = default(bool?), string swaggerLocation = default(string), bool? exposeSampleData = default(bool?), RealtimeConfiguration realtimeConfiguration = default(RealtimeConfiguration), DiagnosticsConfiguration diagnostics = default(DiagnosticsConfiguration), StorageAccount storageAccount = default(StorageAccount), MachineLearningWorkspace machineLearningWorkspace = default(MachineLearningWorkspace), CommitmentPlan commitmentPlan = default(CommitmentPlan), ServiceInputOutputSpecification input = default(ServiceInputOutputSpecification), ServiceInputOutputSpecification output = default(ServiceInputOutputSpecification), ExampleRequest exampleRequest = default(ExampleRequest), System.Collections.Generic.IDictionary assets = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IDictionary parameters = default(System.Collections.Generic.IDictionary)) + /// default value map. If no default value is specified, the parameter + /// is considered to be required. + /// When set to true, indicates + /// that the payload size is larger than 3 MB. Otherwise false. If the + /// payload size exceed 3 MB, the payload is stored in a blob and the + /// PayloadsLocation parameter contains the URI of the blob. Otherwise, + /// this will be set to false and Assets, Input, Output, Package, + /// Parameters, ExampleRequest are inline. The Payload sizes is + /// determined by adding the size of the Assets, Input, Output, + /// Package, Parameters, and the ExampleRequest. + /// The URI of the payload blob. This + /// paramater contains a value only if the payloadsInBlobStorage + /// parameter is set to true. Otherwise is set to null. + public WebServiceProperties(string title = default(string), string description = default(string), System.DateTime? createdOn = default(System.DateTime?), System.DateTime? modifiedOn = default(System.DateTime?), string provisioningState = default(string), WebServiceKeys keys = default(WebServiceKeys), bool? readOnlyProperty = default(bool?), string swaggerLocation = default(string), bool? exposeSampleData = default(bool?), RealtimeConfiguration realtimeConfiguration = default(RealtimeConfiguration), DiagnosticsConfiguration diagnostics = default(DiagnosticsConfiguration), StorageAccount storageAccount = default(StorageAccount), MachineLearningWorkspace machineLearningWorkspace = default(MachineLearningWorkspace), CommitmentPlan commitmentPlan = default(CommitmentPlan), ServiceInputOutputSpecification input = default(ServiceInputOutputSpecification), ServiceInputOutputSpecification output = default(ServiceInputOutputSpecification), ExampleRequest exampleRequest = default(ExampleRequest), IDictionary assets = default(IDictionary), IDictionary parameters = default(IDictionary), bool? payloadsInBlobStorage = default(bool?), BlobLocation payloadsLocation = default(BlobLocation)) { Title = title; Description = description; @@ -101,31 +118,39 @@ public WebServiceProperties() { } ExampleRequest = exampleRequest; Assets = assets; Parameters = parameters; + PayloadsInBlobStorage = payloadsInBlobStorage; + PayloadsLocation = payloadsLocation; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the title of the web service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "title")] + [JsonProperty(PropertyName = "title")] public string Title { get; set; } /// /// Gets or sets the description of the web service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "description")] + [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// /// Gets read Only: The date and time when the web service was created. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "createdOn")] + [JsonProperty(PropertyName = "createdOn")] public System.DateTime? CreatedOn { get; private set; } /// /// Gets read Only: The date and time when the web service was last /// modified. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "modifiedOn")] + [JsonProperty(PropertyName = "modifiedOn")] public System.DateTime? ModifiedOn { get; private set; } /// @@ -133,16 +158,16 @@ public WebServiceProperties() { } /// values are Unknown, Provisioning, Succeeded, and Failed. Possible /// values include: 'Unknown', 'Provisioning', 'Succeeded', 'Failed' /// - [Newtonsoft.Json.JsonProperty(PropertyName = "provisioningState")] + [JsonProperty(PropertyName = "provisioningState")] public string ProvisioningState { get; private set; } /// /// Gets or sets contains the web service provisioning keys. If you do /// not specify provisioning keys, the Azure Machine Learning system - /// generates them for you. Note: The keys are not returned from - /// calls to GET operations. + /// generates them for you. Note: The keys are not returned from calls + /// to GET operations. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "keys")] + [JsonProperty(PropertyName = "keys")] public WebServiceKeys Keys { get; set; } /// @@ -151,53 +176,53 @@ public WebServiceProperties() { } /// Default, is false. Note: Once set to true, you cannot change its /// value. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "readOnly")] + [JsonProperty(PropertyName = "readOnly")] public bool? ReadOnlyProperty { get; set; } /// /// Gets read Only: Contains the URI of the swagger spec associated /// with this web service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "swaggerLocation")] + [JsonProperty(PropertyName = "swaggerLocation")] public string SwaggerLocation { get; private set; } /// /// Gets or sets when set to true, sample data is included in the web /// service's swagger definition. The default value is true. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "exposeSampleData")] + [JsonProperty(PropertyName = "exposeSampleData")] public bool? ExposeSampleData { get; set; } /// /// Gets or sets contains the configuration settings for the web /// service endpoint. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "realtimeConfiguration")] + [JsonProperty(PropertyName = "realtimeConfiguration")] public RealtimeConfiguration RealtimeConfiguration { get; set; } /// - /// Gets or sets settings controlling the diagnostics traces - /// collection for the web service. + /// Gets or sets settings controlling the diagnostics traces collection + /// for the web service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "diagnostics")] + [JsonProperty(PropertyName = "diagnostics")] public DiagnosticsConfiguration Diagnostics { get; set; } /// /// Gets or sets specifies the storage account that Azure Machine - /// Learning uses to store information about the web service. Only - /// the name of the storage account is returned from calls to GET - /// operations. When updating the storage account information, you - /// must ensure that all necessary assets are available in the new - /// storage account or calls to your web service will fail. + /// Learning uses to store information about the web service. Only the + /// name of the storage account is returned from calls to GET + /// operations. When updating the storage account information, you must + /// ensure that all necessary assets are available in the new storage + /// account or calls to your web service will fail. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "storageAccount")] + [JsonProperty(PropertyName = "storageAccount")] public StorageAccount StorageAccount { get; set; } /// /// Gets or sets specifies the Machine Learning workspace containing /// the experiment that is source for the web service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "machineLearningWorkspace")] + [JsonProperty(PropertyName = "machineLearningWorkspace")] public MachineLearningWorkspace MachineLearningWorkspace { get; set; } /// @@ -206,83 +231,103 @@ public WebServiceProperties() { } /// changed. Note: The commitment plan is not returned from calls to /// GET operations. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "commitmentPlan")] + [JsonProperty(PropertyName = "commitmentPlan")] public CommitmentPlan CommitmentPlan { get; set; } /// - /// Gets or sets contains the Swagger 2.0 schema describing one or - /// more of the web service's inputs. For more information, see the - /// Swagger specification. + /// Gets or sets contains the Swagger 2.0 schema describing one or more + /// of the web service's inputs. For more information, see the Swagger + /// specification. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "input")] + [JsonProperty(PropertyName = "input")] public ServiceInputOutputSpecification Input { get; set; } /// - /// Gets or sets contains the Swagger 2.0 schema describing one or - /// more of the web service's outputs. For more information, see the - /// Swagger specification. + /// Gets or sets contains the Swagger 2.0 schema describing one or more + /// of the web service's outputs. For more information, see the Swagger + /// specification. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "output")] + [JsonProperty(PropertyName = "output")] public ServiceInputOutputSpecification Output { get; set; } /// /// Gets or sets defines sample input data for one or more of the /// service's inputs. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "exampleRequest")] + [JsonProperty(PropertyName = "exampleRequest")] public ExampleRequest ExampleRequest { get; set; } /// /// Gets or sets contains user defined properties describing web /// service assets. Properties are expressed as Key/Value pairs. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "assets")] - public System.Collections.Generic.IDictionary Assets { get; set; } + [JsonProperty(PropertyName = "assets")] + public IDictionary Assets { get; set; } /// /// Gets or sets the set of global parameters values defined for the - /// web service, given as a global parameter name to default value - /// map. If no default value is specified, the parameter is - /// considered to be required. + /// web service, given as a global parameter name to default value map. + /// If no default value is specified, the parameter is considered to be + /// required. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "parameters")] - public System.Collections.Generic.IDictionary Parameters { get; set; } + [JsonProperty(PropertyName = "parameters")] + public IDictionary Parameters { get; set; } + + /// + /// Gets or sets when set to true, indicates that the payload size is + /// larger than 3 MB. Otherwise false. If the payload size exceed 3 MB, + /// the payload is stored in a blob and the PayloadsLocation parameter + /// contains the URI of the blob. Otherwise, this will be set to false + /// and Assets, Input, Output, Package, Parameters, ExampleRequest are + /// inline. The Payload sizes is determined by adding the size of the + /// Assets, Input, Output, Package, Parameters, and the ExampleRequest. + /// + [JsonProperty(PropertyName = "payloadsInBlobStorage")] + public bool? PayloadsInBlobStorage { get; set; } + + /// + /// Gets or sets the URI of the payload blob. This paramater contains a + /// value only if the payloadsInBlobStorage parameter is set to true. + /// Otherwise is set to null. + /// + [JsonProperty(PropertyName = "payloadsLocation")] + public BlobLocation PayloadsLocation { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public virtual void Validate() { - if (this.RealtimeConfiguration != null) + if (RealtimeConfiguration != null) { - this.RealtimeConfiguration.Validate(); + RealtimeConfiguration.Validate(); } - if (this.Diagnostics != null) + if (Diagnostics != null) { - this.Diagnostics.Validate(); + Diagnostics.Validate(); } - if (this.MachineLearningWorkspace != null) + if (MachineLearningWorkspace != null) { - this.MachineLearningWorkspace.Validate(); + MachineLearningWorkspace.Validate(); } - if (this.CommitmentPlan != null) + if (CommitmentPlan != null) { - this.CommitmentPlan.Validate(); + CommitmentPlan.Validate(); } - if (this.Input != null) + if (Input != null) { - this.Input.Validate(); + Input.Validate(); } - if (this.Output != null) + if (Output != null) { - this.Output.Validate(); + Output.Validate(); } - if (this.Assets != null) + if (Assets != null) { - foreach (var valueElement in this.Assets.Values) + foreach (var valueElement in Assets.Values) { if (valueElement != null) { @@ -290,6 +335,10 @@ public virtual void Validate() } } } + if (PayloadsLocation != null) + { + PayloadsLocation.Validate(); + } } } } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServicePropertiesForGraph.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServicePropertiesForGraph.cs index 76373b74cfa7..c261e5337216 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServicePropertiesForGraph.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/Models/WebServicePropertiesForGraph.cs @@ -1,13 +1,16 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Azure.Management.MachineLearning.WebServices; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -20,7 +23,10 @@ public partial class WebServicePropertiesForGraph : WebServiceProperties /// Initializes a new instance of the WebServicePropertiesForGraph /// class. /// - public WebServicePropertiesForGraph() { } + public WebServicePropertiesForGraph() + { + CustomInit(); + } /// /// Initializes a new instance of the WebServicePropertiesForGraph @@ -34,22 +40,22 @@ public WebServicePropertiesForGraph() { } /// Read Only: The date and time when the web /// service was last modified. /// Read Only: The provision state of - /// the web service. Valid values are Unknown, Provisioning, - /// Succeeded, and Failed. Possible values include: 'Unknown', - /// 'Provisioning', 'Succeeded', 'Failed' + /// the web service. Valid values are Unknown, Provisioning, Succeeded, + /// and Failed. Possible values include: 'Unknown', 'Provisioning', + /// 'Succeeded', 'Failed' /// Contains the web service provisioning keys. If /// you do not specify provisioning keys, the Azure Machine Learning - /// system generates them for you. Note: The keys are not returned - /// from calls to GET operations. - /// When set to true, indicates that - /// the web service is read-only and can no longer be updated or - /// patched, only removed. Default, is false. Note: Once set to true, - /// you cannot change its value. + /// system generates them for you. Note: The keys are not returned from + /// calls to GET operations. + /// When set to true, indicates that the + /// web service is read-only and can no longer be updated or patched, + /// only removed. Default, is false. Note: Once set to true, you cannot + /// change its value. /// Read Only: Contains the URI of the /// swagger spec associated with this web service. /// When set to true, sample data is - /// included in the web service's swagger definition. The default - /// value is true. + /// included in the web service's swagger definition. The default value + /// is true. /// Contains the configuration /// settings for the web service endpoint. /// Settings controlling the diagnostics @@ -62,18 +68,18 @@ public WebServicePropertiesForGraph() { } /// available in the new storage account or calls to your web service /// will fail. /// Specifies the Machine - /// Learning workspace containing the experiment that is source for - /// the web service. + /// Learning workspace containing the experiment that is source for the + /// web service. /// Contains the commitment plan /// associated with this web service. Set at creation time. Once set, /// this value cannot be changed. Note: The commitment plan is not /// returned from calls to GET operations. /// Contains the Swagger 2.0 schema describing one - /// or more of the web service's inputs. For more information, see - /// the Swagger specification. - /// Contains the Swagger 2.0 schema describing - /// one or more of the web service's outputs. For more information, - /// see the Swagger specification. + /// or more of the web service's inputs. For more information, see the + /// Swagger specification. + /// Contains the Swagger 2.0 schema describing one + /// or more of the web service's outputs. For more information, see the + /// Swagger specification. /// Defines sample input data for one or /// more of the service's inputs. /// Contains user defined properties describing @@ -81,27 +87,44 @@ public WebServicePropertiesForGraph() { } /// pairs. /// The set of global parameters values /// defined for the web service, given as a global parameter name to - /// default value map. If no default value is specified, the - /// parameter is considered to be required. - /// The definition of the graph package making - /// up this web service. - public WebServicePropertiesForGraph(string title = default(string), string description = default(string), System.DateTime? createdOn = default(System.DateTime?), System.DateTime? modifiedOn = default(System.DateTime?), string provisioningState = default(string), WebServiceKeys keys = default(WebServiceKeys), bool? readOnlyProperty = default(bool?), string swaggerLocation = default(string), bool? exposeSampleData = default(bool?), RealtimeConfiguration realtimeConfiguration = default(RealtimeConfiguration), DiagnosticsConfiguration diagnostics = default(DiagnosticsConfiguration), StorageAccount storageAccount = default(StorageAccount), MachineLearningWorkspace machineLearningWorkspace = default(MachineLearningWorkspace), CommitmentPlan commitmentPlan = default(CommitmentPlan), ServiceInputOutputSpecification input = default(ServiceInputOutputSpecification), ServiceInputOutputSpecification output = default(ServiceInputOutputSpecification), ExampleRequest exampleRequest = default(ExampleRequest), System.Collections.Generic.IDictionary assets = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IDictionary parameters = default(System.Collections.Generic.IDictionary), GraphPackage package = default(GraphPackage)) - : base(title, description, createdOn, modifiedOn, provisioningState, keys, readOnlyProperty, swaggerLocation, exposeSampleData, realtimeConfiguration, diagnostics, storageAccount, machineLearningWorkspace, commitmentPlan, input, output, exampleRequest, assets, parameters) + /// default value map. If no default value is specified, the parameter + /// is considered to be required. + /// When set to true, indicates + /// that the payload size is larger than 3 MB. Otherwise false. If the + /// payload size exceed 3 MB, the payload is stored in a blob and the + /// PayloadsLocation parameter contains the URI of the blob. Otherwise, + /// this will be set to false and Assets, Input, Output, Package, + /// Parameters, ExampleRequest are inline. The Payload sizes is + /// determined by adding the size of the Assets, Input, Output, + /// Package, Parameters, and the ExampleRequest. + /// The URI of the payload blob. This + /// paramater contains a value only if the payloadsInBlobStorage + /// parameter is set to true. Otherwise is set to null. + /// The definition of the graph package making up + /// this web service. + public WebServicePropertiesForGraph(string title = default(string), string description = default(string), System.DateTime? createdOn = default(System.DateTime?), System.DateTime? modifiedOn = default(System.DateTime?), string provisioningState = default(string), WebServiceKeys keys = default(WebServiceKeys), bool? readOnlyProperty = default(bool?), string swaggerLocation = default(string), bool? exposeSampleData = default(bool?), RealtimeConfiguration realtimeConfiguration = default(RealtimeConfiguration), DiagnosticsConfiguration diagnostics = default(DiagnosticsConfiguration), StorageAccount storageAccount = default(StorageAccount), MachineLearningWorkspace machineLearningWorkspace = default(MachineLearningWorkspace), CommitmentPlan commitmentPlan = default(CommitmentPlan), ServiceInputOutputSpecification input = default(ServiceInputOutputSpecification), ServiceInputOutputSpecification output = default(ServiceInputOutputSpecification), ExampleRequest exampleRequest = default(ExampleRequest), IDictionary assets = default(IDictionary), IDictionary parameters = default(IDictionary), bool? payloadsInBlobStorage = default(bool?), BlobLocation payloadsLocation = default(BlobLocation), GraphPackage package = default(GraphPackage)) + : base(title, description, createdOn, modifiedOn, provisioningState, keys, readOnlyProperty, swaggerLocation, exposeSampleData, realtimeConfiguration, diagnostics, storageAccount, machineLearningWorkspace, commitmentPlan, input, output, exampleRequest, assets, parameters, payloadsInBlobStorage, payloadsLocation) { Package = package; + CustomInit(); } /// - /// Gets or sets the definition of the graph package making up this - /// web service. + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the definition of the graph package making up this web + /// service. /// - [Newtonsoft.Json.JsonProperty(PropertyName = "package")] + [JsonProperty(PropertyName = "package")] public GraphPackage Package { get; set; } /// /// Validate the object. /// - /// + /// /// Thrown if validation fails /// public override void Validate() diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperations.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperations.cs index f9257b84eabe..830384b1d781 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperations.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperations.cs @@ -1,22 +1,28 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices { - using System.Linq; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; 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; /// /// WebServicesOperations operations. /// - internal partial class WebServicesOperations : Microsoft.Rest.IServiceOperations, IWebServicesOperations + internal partial class WebServicesOperations : IServiceOperations, IWebServicesOperations { /// /// Initializes a new instance of the WebServicesOperations class. @@ -29,11 +35,11 @@ internal partial class WebServicesOperations : Microsoft.Rest.IServiceOperations /// internal WebServicesOperations(AzureMLWebServicesManagementClient client) { - if (client == null) + if (client == null) { throw new System.ArgumentNullException("client"); } - this.Client = client; + Client = client; } /// @@ -62,21 +68,18 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The cancellation token. /// - public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { // Send Request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync( - resourceGroupName, webServiceName, createOrUpdatePayload, customHeaders, cancellationToken); - return await this.Client.GetPutOrPatchOperationResultAsync(_response, - customHeaders, - cancellationToken); + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, webServiceName, createOrUpdatePayload, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); } /// - /// Create or update a web service. This call will overwrite an existing web - /// service. Note that there is no warning or confirmation. This is a - /// nonrecoverable operation. If your intent is to create a new web service, - /// call the Get operation first to verify that it does not exist. + /// Gets the Web Service Definition as specified by a subscription, resource + /// group, and name. Note that the storage credentials and web service keys are + /// not returned by this call. To get the web service access keys, call List + /// Keys. /// /// /// Name of the resource group in which the web service is located. @@ -84,8 +87,8 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The name of the web service. /// - /// - /// The payload that is used to create or update the web service. + /// + /// The region for which encrypted credential parameters are valid. /// /// /// Headers that will be added to request. @@ -93,90 +96,91 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// 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 System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string webServiceName, string region = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (webServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "webServiceName"); - } - if (createOrUpdatePayload == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "createOrUpdatePayload"); - } - if (createOrUpdatePayload != null) - { - createOrUpdatePayload.Validate(); + throw new ValidationException(ValidationRules.CannotBeNull, "webServiceName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("webServiceName", webServiceName); - tracingParameters.Add("createOrUpdatePayload", createOrUpdatePayload); + tracingParameters.Add("region", region); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{webServiceName}", System.Uri.EscapeDataString(webServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (region != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("region={0}", System.Uri.EscapeDataString(region))); + } + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -191,58 +195,52 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; - if(createOrUpdatePayload != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(createOrUpdatePayload, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -252,7 +250,7 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -265,48 +263,106 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the Web Service Definiton as specified by a subscription, resource - /// group, and name. Note that the storage credentials and web service keys - /// are not returned by this call. To get the web service access keys, call - /// List Keys. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed successfully, + /// you must perform a Get operation. + /// + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The payload to use to patch the web service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> PatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginPatchWithHttpMessagesAsync(resourceGroupName, webServiceName, patchPayload, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes the specified web service. + /// + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task RemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRemoveWithHttpMessagesAsync(resourceGroupName, webServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Creates an encrypted credentials parameter blob for the specified region. + /// To get the web service from a region other than the region in which it has + /// been created, you must first call Create Regional Web Services Properties + /// to create a copy of the encrypted credential parameter blob in that region. + /// You only need to do this before the first time that you get the web service + /// in the new region. + /// + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The region for which encrypted credential parameters are created. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateRegionalPropertiesWithHttpMessagesAsync(string resourceGroupName, string webServiceName, string region, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginCreateRegionalPropertiesWithHttpMessagesAsync(resourceGroupName, webServiceName, region, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the access keys for the specified web service. /// /// /// Name of the resource group in which the web service is located. @@ -320,81 +376,86 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// 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 System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (webServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "webServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "webServiceName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("webServiceName", webServiceName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListKeys", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}").ToString(); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}/listKeys").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{webServiceName}", System.Uri.EscapeDataString(webServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -410,51 +471,51 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -464,7 +525,7 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -477,68 +538,33 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Modifies an existing web service resource. The PATCH API call is an - /// asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. - /// - /// - /// Name of the resource group in which the web service is located. - /// - /// - /// The name of the web service. - /// - /// - /// The payload to use to patch the web service. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async System.Threading.Tasks.Task> PatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) - { - // Send Request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginPatchWithHttpMessagesAsync( - resourceGroupName, webServiceName, patchPayload, customHeaders, cancellationToken); - return await this.Client.GetPutOrPatchOperationResultAsync(_response, - customHeaders, - cancellationToken); - } - - /// - /// Modifies an existing web service resource. The PATCH API call is an - /// asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. + /// Gets the web services in the specified resource group. /// /// /// Name of the resource group in which the web service is located. /// - /// - /// The name of the web service. - /// - /// - /// The payload to use to patch the web service. + /// + /// Continuation token for pagination. /// /// /// Headers that will be added to request. @@ -546,86 +572,85 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// 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 System.Threading.Tasks.Task> BeginPatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string skiptoken = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (webServiceName == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "webServiceName"); - } - if (patchPayload == null) - { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "patchPayload"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("webServiceName", webServiceName); - tracingParameters.Add("patchPayload", patchPayload); + tracingParameters.Add("skiptoken", skiptoken); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginPatch", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}").ToString(); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{webServiceName}", System.Uri.EscapeDataString(webServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (skiptoken != null) + { + _queryParameters.Add(string.Format("$skiptoken={0}", System.Uri.EscapeDataString(skiptoken))); + } + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -640,58 +665,52 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; - if(patchPayload != null) - { - _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(patchPayload, this.Client.SerializationSettings); - _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -701,7 +720,7 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -714,50 +733,216 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Deletes the specified web service. + /// Gets the web services in the specified subscription. /// - /// - /// Name of the resource group in which the web service is located. - /// - /// - /// The name of the web service. + /// + /// Continuation token for pagination. /// /// - /// The headers that will be added to request. + /// Headers that will be added to request. /// /// /// The cancellation token. /// - public async System.Threading.Tasks.Task RemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + /// + /// 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>> ListBySubscriptionIdWithHttpMessagesAsync(string skiptoken = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - // Send request - Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginRemoveWithHttpMessagesAsync( - resourceGroupName, webServiceName, customHeaders, cancellationToken); - return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken); + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("skiptoken", skiptoken); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscriptionId", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.MachineLearning/webServices").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (skiptoken != null) + { + _queryParameters.Add(string.Format("$skiptoken={0}", System.Uri.EscapeDataString(skiptoken))); + } + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.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 web service. + /// Create or update a web service. This call will overwrite an existing web + /// service. Note that there is no warning or confirmation. This is a + /// nonrecoverable operation. If your intent is to create a new web service, + /// call the Get operation first to verify that it does not exist. /// /// /// Name of the resource group in which the web service is located. @@ -765,84 +950,104 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The name of the web service. /// + /// + /// The payload that is used to create or update the web service. + /// /// /// 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 System.Threading.Tasks.Task BeginRemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (webServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "webServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "webServiceName"); + } + if (createOrUpdatePayload == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "createOrUpdatePayload"); + } + if (createOrUpdatePayload != null) + { + createOrUpdatePayload.Validate(); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("webServiceName", webServiceName); + tracingParameters.Add("createOrUpdatePayload", createOrUpdatePayload); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginRemove", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{webServiceName}", System.Uri.EscapeDataString(webServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -857,44 +1062,58 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; + if(createOrUpdatePayload != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(createOrUpdatePayload, 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 (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202 && (int)_statusCode != 204) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + 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; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -904,22 +1123,60 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + 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); + } + } + // 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); + } + } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the access keys for the specified web service. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed successfully, + /// you must perform a Get operation. /// /// /// Name of the resource group in which the web service is located. @@ -927,87 +1184,100 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// The name of the web service. /// + /// + /// The payload to use to patch the web service. + /// /// /// 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 System.Threading.Tasks.Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string webServiceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> BeginPatchWithHttpMessagesAsync(string resourceGroupName, string webServiceName, WebService patchPayload, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } if (webServiceName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "webServiceName"); + throw new ValidationException(ValidationRules.CannotBeNull, "webServiceName"); } - if (this.Client.ApiVersion == null) + if (patchPayload == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "patchPayload"); } - if (this.Client.SubscriptionId == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("webServiceName", webServiceName); + tracingParameters.Add("patchPayload", patchPayload); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListKeys", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginPatch", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}/listKeys").ToString(); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{webServiceName}", System.Uri.EscapeDataString(webServiceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (this.Client.ApiVersion != null) + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1022,52 +1292,58 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; + if(patchPayload != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(patchPayload, 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 (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1077,7 +1353,7 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1090,33 +1366,33 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the web services in the specified resource group. + /// Deletes the specified web service. /// /// /// Name of the resource group in which the web service is located. /// - /// - /// Continuation token for pagination. + /// + /// The name of the web service. /// /// /// Headers that will be added to request. @@ -1124,80 +1400,83 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// 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 System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string skiptoken = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task BeginRemoveWithHttpMessagesAsync(string resourceGroupName, string webServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (webServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "webServiceName"); } - if (this.Client.ApiVersion == null) + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("skiptoken", skiptoken); + tracingParameters.Add("webServiceName", webServiceName); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginRemove", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices").ToString(); + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (skiptoken != null) - { - _queryParameters.Add(string.Format("$skiptoken={0}", System.Uri.EscapeDataString(skiptoken))); - } - if (this.Client.ApiVersion != null) + _url = _url.Replace("{webServiceName}", System.Uri.EscapeDataString(webServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1213,51 +1492,51 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 202 && (int)_statusCode != 204) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1267,43 +1546,36 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + 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 = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); - } - catch (Newtonsoft.Json.JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } /// - /// Gets the web services in the specified subscription. + /// Creates an encrypted credentials parameter blob for the specified region. + /// To get the web service from a region other than the region in which it has + /// been created, you must first call Create Regional Web Services Properties + /// to create a copy of the encrypted credential parameter blob in that region. + /// You only need to do this before the first time that you get the web service + /// in the new region. /// - /// - /// Continuation token for pagination. + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The region for which encrypted credential parameters are created. /// /// /// Headers that will be added to request. @@ -1311,74 +1583,95 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// 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 System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(string skiptoken = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task> BeginCreateRegionalPropertiesWithHttpMessagesAsync(string resourceGroupName, string webServiceName, string region, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (this.Client.ApiVersion == null) + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (webServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "webServiceName"); + } + if (region == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "region"); + } + if (Client.ApiVersion == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (this.Client.SubscriptionId == null) + if (Client.SubscriptionId == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); - tracingParameters.Add("skiptoken", skiptoken); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("webServiceName", webServiceName); + tracingParameters.Add("region", region); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateRegionalProperties", tracingParameters); } // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.MachineLearning/webServices").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); - if (skiptoken != null) + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearning/webServices/{webServiceName}/CreateRegionalBlob").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{webServiceName}", System.Uri.EscapeDataString(webServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (region != null) { - _queryParameters.Add(string.Format("$skiptoken={0}", System.Uri.EscapeDataString(skiptoken))); + _queryParameters.Add(string.Format("region={0}", System.Uri.EscapeDataString(region))); } - if (this.Client.ApiVersion != null) + if (Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1394,51 +1687,51 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 202 && (int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1448,7 +1741,7 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1461,21 +1754,21 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -1492,61 +1785,66 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// 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 System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1562,51 +1860,51 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1616,7 +1914,7 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1629,21 +1927,21 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -1660,61 +1958,66 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) /// /// 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 System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public async Task>> ListBySubscriptionIdNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { - throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing - bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) { - _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); - System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscriptionIdNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; _url = _url.Replace("{nextLink}", nextPageLink); - System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + List _queryParameters = new List(); if (_queryParameters.Count > 0) { - _url += "?" + string.Join("&", _queryParameters); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects - System.Net.Http.HttpRequestMessage _httpRequest = new System.Net.Http.HttpRequestMessage(); - System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if (this.Client.AcceptLanguage != null) + if (Client.AcceptLanguage != null) { if (_httpRequest.Headers.Contains("accept-language")) { _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); } + + if (customHeaders != null) { foreach(var _header in customHeaders) @@ -1730,51 +2033,51 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) // Serialize Request string _requestContent = null; // Set Credentials - if (this.Client.Credentials != null) + if (Client.Credentials != null) { cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } - System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } - catch (Newtonsoft.Json.JsonException) + catch (JsonException) { // Ignore the exception } - ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); - ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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) { - Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + ServiceClientTracing.Error(_invocationId, ex); } _httpRequest.Dispose(); if (_httpResponse != null) @@ -1784,7 +2087,7 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) throw ex; } // Create Result - var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1797,21 +2100,21 @@ internal WebServicesOperations(AzureMLWebServicesManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } - catch (Newtonsoft.Json.JsonException ex) + catch (JsonException ex) { _httpRequest.Dispose(); if (_httpResponse != null) { _httpResponse.Dispose(); } - throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } if (_shouldTrace) { - Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperationsExtensions.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperationsExtensions.cs index 2c520b111d34..9d1dd4ff5507 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperationsExtensions.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Generated/WebServices/WebServicesOperationsExtensions.cs @@ -1,16 +1,17 @@ -// 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 0.17.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.MachineLearning.WebServices { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.MachineLearning; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; using System.Threading.Tasks; - using Microsoft.Rest.Azure; - using Models; /// /// Extension methods for WebServicesOperations. @@ -37,7 +38,7 @@ public static partial class WebServicesOperationsExtensions /// public static WebService CreateOrUpdate(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService createOrUpdatePayload) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).CreateOrUpdateAsync(resourceGroupName, webServiceName, createOrUpdatePayload), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, webServiceName, createOrUpdatePayload).GetAwaiter().GetResult(); } /// @@ -61,7 +62,7 @@ public static WebService CreateOrUpdate(this IWebServicesOperations operations, /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateOrUpdateAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, webServiceName, createOrUpdatePayload, null, cancellationToken).ConfigureAwait(false)) { @@ -70,10 +71,10 @@ public static WebService CreateOrUpdate(this IWebServicesOperations operations, } /// - /// Create or update a web service. This call will overwrite an existing web - /// service. Note that there is no warning or confirmation. This is a - /// nonrecoverable operation. If your intent is to create a new web service, - /// call the Get operation first to verify that it does not exist. + /// Gets the Web Service Definition as specified by a subscription, resource + /// group, and name. Note that the storage credentials and web service keys are + /// not returned by this call. To get the web service access keys, call List + /// Keys. /// /// /// The operations group for this extension method. @@ -84,19 +85,19 @@ public static WebService CreateOrUpdate(this IWebServicesOperations operations, /// /// The name of the web service. /// - /// - /// The payload that is used to create or update the web service. + /// + /// The region for which encrypted credential parameters are valid. /// - public static WebService BeginCreateOrUpdate(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService createOrUpdatePayload) + public static WebService Get(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region = default(string)) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).BeginCreateOrUpdateAsync(resourceGroupName, webServiceName, createOrUpdatePayload), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, webServiceName, region).GetAwaiter().GetResult(); } /// - /// Create or update a web service. This call will overwrite an existing web - /// service. Note that there is no warning or confirmation. This is a - /// nonrecoverable operation. If your intent is to create a new web service, - /// call the Get operation first to verify that it does not exist. + /// Gets the Web Service Definition as specified by a subscription, resource + /// group, and name. Note that the storage credentials and web service keys are + /// not returned by this call. To get the web service access keys, call List + /// Keys. /// /// /// The operations group for this extension method. @@ -107,25 +108,24 @@ public static WebService BeginCreateOrUpdate(this IWebServicesOperations operati /// /// The name of the web service. /// - /// - /// The payload that is used to create or update the web service. + /// + /// The region for which encrypted credential parameters are valid. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginCreateOrUpdateAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task GetAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, webServiceName, createOrUpdatePayload, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, webServiceName, region, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the Web Service Definiton as specified by a subscription, resource - /// group, and name. Note that the storage credentials and web service keys - /// are not returned by this call. To get the web service access keys, call - /// List Keys. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed successfully, + /// you must perform a Get operation. /// /// /// The operations group for this extension method. @@ -136,16 +136,18 @@ public static WebService BeginCreateOrUpdate(this IWebServicesOperations operati /// /// The name of the web service. /// - public static WebService Get(this IWebServicesOperations operations, string resourceGroupName, string webServiceName) + /// + /// The payload to use to patch the web service. + /// + public static WebService Patch(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).GetAsync(resourceGroupName, webServiceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.PatchAsync(resourceGroupName, webServiceName, patchPayload).GetAwaiter().GetResult(); } /// - /// Gets the Web Service Definiton as specified by a subscription, resource - /// group, and name. Note that the storage credentials and web service keys - /// are not returned by this call. To get the web service access keys, call - /// List Keys. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed successfully, + /// you must perform a Get operation. /// /// /// The operations group for this extension method. @@ -156,21 +158,22 @@ public static WebService Get(this IWebServicesOperations operations, string reso /// /// The name of the web service. /// + /// + /// The payload to use to patch the web service. + /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task GetAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task PatchAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.PatchWithHttpMessagesAsync(resourceGroupName, webServiceName, patchPayload, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Modifies an existing web service resource. The PATCH API call is an - /// asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. + /// Deletes the specified web service. /// /// /// The operations group for this extension method. @@ -181,18 +184,13 @@ public static WebService Get(this IWebServicesOperations operations, string reso /// /// The name of the web service. /// - /// - /// The payload to use to patch the web service. - /// - public static WebService Patch(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload) + public static void Remove(this IWebServicesOperations operations, string resourceGroupName, string webServiceName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).PatchAsync(resourceGroupName, webServiceName, patchPayload), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.RemoveAsync(resourceGroupName, webServiceName).GetAwaiter().GetResult(); } /// - /// Modifies an existing web service resource. The PATCH API call is an - /// asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. + /// Deletes the specified web service. /// /// /// The operations group for this extension method. @@ -203,24 +201,21 @@ public static WebService Patch(this IWebServicesOperations operations, string re /// /// The name of the web service. /// - /// - /// The payload to use to patch the web service. - /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task PatchAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task RemoveAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.PatchWithHttpMessagesAsync(resourceGroupName, webServiceName, patchPayload, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.RemoveWithHttpMessagesAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Modifies an existing web service resource. The PATCH API call is an - /// asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. + /// Creates an encrypted credentials parameter blob for the specified region. + /// To get the web service from a region other than the region in which it has + /// been created, you must first call Create Regional Web Services Properties + /// to create a copy of the encrypted credential parameter blob in that region. + /// You only need to do this before the first time that you get the web service + /// in the new region. /// /// /// The operations group for this extension method. @@ -231,18 +226,21 @@ public static WebService Patch(this IWebServicesOperations operations, string re /// /// The name of the web service. /// - /// - /// The payload to use to patch the web service. + /// + /// The region for which encrypted credential parameters are created. /// - public static WebService BeginPatch(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload) + public static AsyncOperationStatus CreateRegionalProperties(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).BeginPatchAsync(resourceGroupName, webServiceName, patchPayload), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.CreateRegionalPropertiesAsync(resourceGroupName, webServiceName, region).GetAwaiter().GetResult(); } /// - /// Modifies an existing web service resource. The PATCH API call is an - /// asynchronous operation. To determine whether it has completed - /// successfully, you must perform a Get operation. + /// Creates an encrypted credentials parameter blob for the specified region. + /// To get the web service from a region other than the region in which it has + /// been created, you must first call Create Regional Web Services Properties + /// to create a copy of the encrypted credential parameter blob in that region. + /// You only need to do this before the first time that you get the web service + /// in the new region. /// /// /// The operations group for this extension method. @@ -253,22 +251,22 @@ public static WebService BeginPatch(this IWebServicesOperations operations, stri /// /// The name of the web service. /// - /// - /// The payload to use to patch the web service. + /// + /// The region for which encrypted credential parameters are created. /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginPatchAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task CreateRegionalPropertiesAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.BeginPatchWithHttpMessagesAsync(resourceGroupName, webServiceName, patchPayload, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateRegionalPropertiesWithHttpMessagesAsync(resourceGroupName, webServiceName, region, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Deletes the specified web service. + /// Gets the access keys for the specified web service. /// /// /// The operations group for this extension method. @@ -279,13 +277,13 @@ public static WebService BeginPatch(this IWebServicesOperations operations, stri /// /// The name of the web service. /// - public static void Remove(this IWebServicesOperations operations, string resourceGroupName, string webServiceName) + public static WebServiceKeys ListKeys(this IWebServicesOperations operations, string resourceGroupName, string webServiceName) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).RemoveAsync(resourceGroupName, webServiceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListKeysAsync(resourceGroupName, webServiceName).GetAwaiter().GetResult(); } /// - /// Deletes the specified web service. + /// Gets the access keys for the specified web service. /// /// /// The operations group for this extension method. @@ -299,13 +297,93 @@ public static void Remove(this IWebServicesOperations operations, string resourc /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task RemoveAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task ListKeysAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.RemoveWithHttpMessagesAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false); + using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Deletes the specified web service. + /// Gets the web services in the specified resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// Continuation token for pagination. + /// + public static IPage ListByResourceGroup(this IWebServicesOperations operations, string resourceGroupName, string skiptoken = default(string)) + { + return operations.ListByResourceGroupAsync(resourceGroupName, skiptoken).GetAwaiter().GetResult(); + } + + /// + /// Gets the web services in the specified resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// Continuation token for pagination. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IWebServicesOperations operations, string resourceGroupName, string skiptoken = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, skiptoken, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the web services in the specified subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Continuation token for pagination. + /// + public static IPage ListBySubscriptionId(this IWebServicesOperations operations, string skiptoken = default(string)) + { + return operations.ListBySubscriptionIdAsync(skiptoken).GetAwaiter().GetResult(); + } + + /// + /// Gets the web services in the specified subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Continuation token for pagination. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySubscriptionIdAsync(this IWebServicesOperations operations, string skiptoken = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySubscriptionIdWithHttpMessagesAsync(skiptoken, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or update a web service. This call will overwrite an existing web + /// service. Note that there is no warning or confirmation. This is a + /// nonrecoverable operation. If your intent is to create a new web service, + /// call the Get operation first to verify that it does not exist. /// /// /// The operations group for this extension method. @@ -316,13 +394,19 @@ public static void Remove(this IWebServicesOperations operations, string resourc /// /// The name of the web service. /// - public static void BeginRemove(this IWebServicesOperations operations, string resourceGroupName, string webServiceName) + /// + /// The payload that is used to create or update the web service. + /// + public static WebService BeginCreateOrUpdate(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService createOrUpdatePayload) { - System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).BeginRemoveAsync(resourceGroupName, webServiceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.BeginCreateOrUpdateAsync(resourceGroupName, webServiceName, createOrUpdatePayload).GetAwaiter().GetResult(); } /// - /// Deletes the specified web service. + /// Create or update a web service. This call will overwrite an existing web + /// service. Note that there is no warning or confirmation. This is a + /// nonrecoverable operation. If your intent is to create a new web service, + /// call the Get operation first to verify that it does not exist. /// /// /// The operations group for this extension method. @@ -333,16 +417,24 @@ public static void BeginRemove(this IWebServicesOperations operations, string re /// /// The name of the web service. /// + /// + /// The payload that is used to create or update the web service. + /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task BeginRemoveAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginCreateOrUpdateAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService createOrUpdatePayload, CancellationToken cancellationToken = default(CancellationToken)) { - await operations.BeginRemoveWithHttpMessagesAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false); + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, webServiceName, createOrUpdatePayload, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Gets the access keys for the specified web service. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed successfully, + /// you must perform a Get operation. /// /// /// The operations group for this extension method. @@ -353,13 +445,18 @@ public static void BeginRemove(this IWebServicesOperations operations, string re /// /// The name of the web service. /// - public static WebServiceKeys ListKeys(this IWebServicesOperations operations, string resourceGroupName, string webServiceName) + /// + /// The payload to use to patch the web service. + /// + public static WebService BeginPatch(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).ListKeysAsync(resourceGroupName, webServiceName), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.BeginPatchAsync(resourceGroupName, webServiceName, patchPayload).GetAwaiter().GetResult(); } /// - /// Gets the access keys for the specified web service. + /// Modifies an existing web service resource. The PATCH API call is an + /// asynchronous operation. To determine whether it has completed successfully, + /// you must perform a Get operation. /// /// /// The operations group for this extension method. @@ -370,19 +467,22 @@ public static WebServiceKeys ListKeys(this IWebServicesOperations operations, st /// /// The name of the web service. /// + /// + /// The payload to use to patch the web service. + /// /// /// The cancellation token. /// - public static async System.Threading.Tasks.Task ListKeysAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginPatchAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, WebService patchPayload, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginPatchWithHttpMessagesAsync(resourceGroupName, webServiceName, patchPayload, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the web services in the specified resource group. + /// Deletes the specified web service. /// /// /// The operations group for this extension method. @@ -390,16 +490,16 @@ public static WebServiceKeys ListKeys(this IWebServicesOperations operations, st /// /// Name of the resource group in which the web service is located. /// - /// - /// Continuation token for pagination. + /// + /// The name of the web service. /// - public static Microsoft.Rest.Azure.IPage ListByResourceGroup(this IWebServicesOperations operations, string resourceGroupName, string skiptoken = default(string)) + public static void BeginRemove(this IWebServicesOperations operations, string resourceGroupName, string webServiceName) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).ListByResourceGroupAsync(resourceGroupName, skiptoken), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + operations.BeginRemoveAsync(resourceGroupName, webServiceName).GetAwaiter().GetResult(); } /// - /// Gets the web services in the specified resource group. + /// Deletes the specified web service. /// /// /// The operations group for this extension method. @@ -407,49 +507,68 @@ public static WebServiceKeys ListKeys(this IWebServicesOperations operations, st /// /// Name of the resource group in which the web service is located. /// - /// - /// Continuation token for pagination. + /// + /// The name of the web service. /// /// /// The cancellation token. /// - public static async Task> ListByResourceGroupAsync(this IWebServicesOperations operations, string resourceGroupName, string skiptoken = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginRemoveAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, skiptoken, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.BeginRemoveWithHttpMessagesAsync(resourceGroupName, webServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Gets the web services in the specified subscription. + /// Creates an encrypted credentials parameter blob for the specified region. + /// To get the web service from a region other than the region in which it has + /// been created, you must first call Create Regional Web Services Properties + /// to create a copy of the encrypted credential parameter blob in that region. + /// You only need to do this before the first time that you get the web service + /// in the new region. /// /// /// The operations group for this extension method. /// - /// - /// Continuation token for pagination. + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The region for which encrypted credential parameters are created. /// - public static Microsoft.Rest.Azure.IPage List(this IWebServicesOperations operations, string skiptoken = default(string)) + public static AsyncOperationStatus BeginCreateRegionalProperties(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).ListAsync(skiptoken), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.BeginCreateRegionalPropertiesAsync(resourceGroupName, webServiceName, region).GetAwaiter().GetResult(); } /// - /// Gets the web services in the specified subscription. + /// Creates an encrypted credentials parameter blob for the specified region. + /// To get the web service from a region other than the region in which it has + /// been created, you must first call Create Regional Web Services Properties + /// to create a copy of the encrypted credential parameter blob in that region. + /// You only need to do this before the first time that you get the web service + /// in the new region. /// /// /// The operations group for this extension method. /// - /// - /// Continuation token for pagination. + /// + /// Name of the resource group in which the web service is located. + /// + /// + /// The name of the web service. + /// + /// + /// The region for which encrypted credential parameters are created. /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IWebServicesOperations operations, string skiptoken = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task BeginCreateRegionalPropertiesAsync(this IWebServicesOperations operations, string resourceGroupName, string webServiceName, string region, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(skiptoken, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.BeginCreateRegionalPropertiesWithHttpMessagesAsync(resourceGroupName, webServiceName, region, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -464,9 +583,9 @@ public static WebServiceKeys ListKeys(this IWebServicesOperations operations, st /// /// The NextLink from the previous successful call to List operation. /// - public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(this IWebServicesOperations operations, string nextPageLink) + public static IPage ListByResourceGroupNext(this IWebServicesOperations operations, string nextPageLink) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).ListByResourceGroupNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -481,7 +600,7 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(thi /// /// The cancellation token. /// - public static async Task> ListByResourceGroupNextAsync(this IWebServicesOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListByResourceGroupNextAsync(this IWebServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { @@ -498,9 +617,9 @@ public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(thi /// /// The NextLink from the previous successful call to List operation. /// - public static Microsoft.Rest.Azure.IPage ListNext(this IWebServicesOperations operations, string nextPageLink) + public static IPage ListBySubscriptionIdNext(this IWebServicesOperations operations, string nextPageLink) { - return System.Threading.Tasks.Task.Factory.StartNew(s => ((IWebServicesOperations)s).ListNextAsync(nextPageLink), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None, System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return operations.ListBySubscriptionIdNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// @@ -515,9 +634,9 @@ public static Microsoft.Rest.Azure.IPage ListNext(this IWebServicesO /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IWebServicesOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + public static async Task> ListBySubscriptionIdNextAsync(this IWebServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListBySubscriptionIdNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Properties/AssemblyInfo.cs b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Properties/AssemblyInfo.cs index 20430ab25e11..bf6aa5f3f193 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/Properties/AssemblyInfo.cs @@ -8,8 +8,8 @@ [assembly: AssemblyTitle("Microsoft Azure Machine Learning Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Machine Learning.")] -[assembly: AssemblyVersion("0.9.0.0")] -[assembly: AssemblyFileVersion("0.10.0.0")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/generate.cmd b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/generate.cmd index 9163875bff6c..0b55f2ba2a39 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/generate.cmd +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/generate.cmd @@ -8,7 +8,7 @@ setlocal set autoRestVersion=0.17.0-Nightly20160824 -set webServicesSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-machinelearning/2016-05-01-preview/swagger/webservices.json" +set webServicesSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-machinelearning/2017-01-01/swagger/webservices.json" set commitmentPlansSpecFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-machinelearning/2016-05-01-preview/swagger/commitmentPlans.json" set repoRoot=%~dp0..\..\..\.. diff --git a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json index 387e39b3d1a1..52c2bf834a9d 100644 --- a/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json +++ b/src/ResourceManagement/MachineLearning/Microsoft.Azure.Management.MachineLearning/project.json @@ -1,5 +1,5 @@ { - "version": "0.10.0-preview", + "version": "1.0.0", "description": "Provides Machine Learning WebServices management capabilities for Microsoft Azure.", "authors": [ "Microsoft" ], From 45f8790286ce2816d055f66e388c0008f7ba92cd Mon Sep 17 00:00:00 2001 From: Dragos Avadanei Date: Thu, 6 Apr 2017 15:47:19 -0700 Subject: [PATCH 55/56] exporting secret backup/restore in KV .net SDK (#3035) --- .../Tests/KeyVaultKeyResolverTests.cs | 7 + .../KeyVaultTestFixture.cs | 2 +- .../KeyVaultOperationsTest.cs | 109 +- .../KeyVaultBackupRestoreTest.json | 406 ------ .../KeyVaultGetDeletedKeyTest.json | 3 +- .../KeyVaultGetDeletedSecretTest.json | 3 +- .../KeyVaultKeyBackupRestoreTest.json | 1181 ++++++++++++++++ ...yVaultKeyCreateDeleteRecoverPurgeTest.json | 3 +- .../KeyVaultListDeletedKeysTest.json | 3 +- .../KeyVaultListDeletedSecretsTest.json | 3 +- .../KeyVaultSecretBackupRestoreTest.json | 1245 +++++++++++++++++ ...ultSecretCreateDeleteRecoverPurgeTest.json | 3 +- .../Generated/IKeyVaultClient.cs | 35 + .../Generated/KeyVaultClient.cs | 382 +++++ .../Generated/KeyVaultClientExtensions.cs | 80 +- .../Generated/Models/BackupSecretResult.cs | 46 + .../Models/SecretRestoreParameters.cs | 59 + 17 files changed, 3124 insertions(+), 446 deletions(-) delete mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultBackupRestoreTest.json create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultKeyBackupRestoreTest.json create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretBackupRestoreTest.json create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/BackupSecretResult.cs create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/SecretRestoreParameters.cs diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/Tests/KeyVaultKeyResolverTests.cs b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/Tests/KeyVaultKeyResolverTests.cs index 32a4fb3fbdb7..cf5e05a555cf 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/Tests/KeyVaultKeyResolverTests.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Extensions.Tests/Tests/KeyVaultKeyResolverTests.cs @@ -53,12 +53,19 @@ private KeyVaultClient GetKeyVaultClient() HttpMockServer.Variables["VaultAddress"] = _vaultAddress; HttpMockServer.Variables["KeyName"] = _keyName; HttpMockServer.Variables["KeyVersion"] = _keyVersion; + HttpMockServer.Variables[ "SoftDeleteEnabled" ] = _softDeleteEnabled.ToString( ); } else { _vaultAddress = HttpMockServer.Variables["VaultAddress"]; _keyName = HttpMockServer.Variables["KeyName"]; _keyVersion = HttpMockServer.Variables["KeyVersion"]; + + string softDeleteSetting = String.Empty; + if ( HttpMockServer.Variables.TryGetValue( "SoftDeleteEnabled", out softDeleteSetting ) ) + { + Boolean.TryParse( softDeleteSetting, out _softDeleteEnabled ); + } } _keyIdentifier = new KeyIdentifier(_vaultAddress, _keyName, _keyVersion); return fixture.CreateKeyVaultClient(); diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/KeyVaultTestFixture.cs b/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/KeyVaultTestFixture.cs index 15830252c5a0..94eddc42bea7 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/KeyVaultTestFixture.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault.TestFramework/KeyVaultTestFixture.cs @@ -56,7 +56,7 @@ public KeyVaultTestFixture() retryExecutor = new RetryPolicy(new ExponentialBackoffRetryStrategy(8, TimeSpan.FromSeconds(1), TimeSpan.FromSeconds(60), TimeSpan.FromSeconds(5))); } else { - retryExecutor = new RetryPolicy(new FixedIntervalRetryStrategy(0)); + retryExecutor = new RetryPolicy( new FixedIntervalRetryStrategy( 5, TimeSpan.FromSeconds( 5.0 ) ) ); } } diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/KeyVaultOperationsTest.cs b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/KeyVaultOperationsTest.cs index 36bf5911ae19..b3af905782d2 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/KeyVaultOperationsTest.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/KeyVaultOperationsTest.cs @@ -52,12 +52,19 @@ private void Initialize() HttpMockServer.Variables["VaultAddress"] = _vaultAddress; HttpMockServer.Variables["KeyName"] = _keyName; HttpMockServer.Variables["KeyVersion"] = _keyVersion; + HttpMockServer.Variables[ "SoftDeleteEnabled" ] = _softDeleteEnabled.ToString( ); } else { _vaultAddress = HttpMockServer.Variables["VaultAddress"]; _keyName = HttpMockServer.Variables["KeyName"]; _keyVersion = HttpMockServer.Variables["KeyVersion"]; + + string softDeleteSetting = String.Empty; + if ( HttpMockServer.Variables.TryGetValue( "SoftDeleteEnabled", out softDeleteSetting ) ) + { + Boolean.TryParse( softDeleteSetting, out _softDeleteEnabled ); + } } } @@ -474,14 +481,14 @@ public void KeyVaultUpdateKeyAttributesWithNoChangeTest() } [Fact] - public void KeyVaultBackupRestoreTest() + public void KeyVaultKeyBackupRestoreTest() { using (MockContext context = MockContext.Start(this.GetType().FullName)) { var client = GetKeyVaultClient(); - var keyName = "BackupRestoreTest"; + var keyName = "KeyBackupRestoreTest"; var attribute = new KeyAttributes() { @@ -532,6 +539,64 @@ public void KeyVaultBackupRestoreTest() } } + [Fact] + public void KeyVaultSecretBackupRestoreTest( ) + { + using ( MockContext context = MockContext.Start( this.GetType( ).FullName ) ) + { + + var client = GetKeyVaultClient(); + + var name = "SecretBackupRestoreTest"; + + var attributes = new SecretAttributes() + { + Enabled = true, + Expires = new DateTime(2030, 1, 1).ToUniversalTime(), + NotBefore = new DateTime(2010, 1, 1).ToUniversalTime() + }; + + var created = client.SetSecretAsync(_vaultAddress, name, "if found please return to secretbackuprestoretest", tags: null, contentType: "text", secretAttributes: attributes ) + .GetAwaiter() + .GetResult(); + + try + { + // Backup the secret + var backupResponse = client.BackupSecretAsync(_vaultAddress, name).GetAwaiter().GetResult(); + + client.DeleteSecretAsync( _vaultAddress, name ).Wait( ); + + if ( _softDeleteEnabled ) + { + this.fixture.WaitOnDeletedSecret( client, _vaultAddress, name ); + + client.PurgeDeletedSecretAsync( _vaultAddress, name ).Wait( ); + } + + // Restore the backedup secret + var restoredDeletedSecret = + this.fixture.retryExecutor.ExecuteAction(() => client.RestoreSecretAsync(_vaultAddress, backupResponse.Value).GetAwaiter().GetResult()); + + VerifySecretAttributesAreEqual( restoredDeletedSecret.Attributes, created.Attributes ); + Assert.Equal( created.Id, restoredDeletedSecret.Id ); + } + finally + { + this.fixture.WaitOnSecret( client, _vaultAddress, name ); + + client.DeleteSecretAsync( _vaultAddress, name ).Wait( ); + + if ( _softDeleteEnabled ) + { + this.fixture.WaitOnDeletedSecret( client, _vaultAddress, name ); + + client.PurgeDeletedSecretAsync( _vaultAddress, name ).Wait( ); + } + } + } + } + [Fact] public void KeyVaultListKeysTest() { @@ -642,12 +707,13 @@ public void KeyVaultListKeyVersionsTest() [Fact] public void KeyVaultGetDeletedKeyTest() { - if (!_softDeleteEnabled) return; - using (MockContext context = MockContext.Start(this.GetType().FullName)) { var client = GetKeyVaultClient(); + // settings may not be loaded until the client is fully initialized + if ( !_softDeleteEnabled ) return; + var keyName = "GetDeletedKeyTest"; var attributes = new KeyAttributes(); var tags = new Dictionary() { { "purpose", "unit test" }, { "test name ", "GetDeletedKeyTest" } }; @@ -677,13 +743,13 @@ public void KeyVaultGetDeletedKeyTest() [Fact] public void KeyVaultKeyCreateDeleteRecoverPurgeTest() { - if (!_softDeleteEnabled) return; - using (MockContext context = MockContext.Start(this.GetType().FullName)) { - var client = GetKeyVaultClient(); + // settings may not be loaded until the client is fully initialized + if ( !_softDeleteEnabled ) return; + var keyName = "CreateDeleteRecoverPurgeTest"; var attributes = new KeyAttributes(); var tags = new Dictionary() { { "purpose", "unit test" }, { "test name ", "CreateDeleteRecoverPurgeTest" } }; @@ -766,11 +832,13 @@ public void KeyVaultKeyCreateDeleteRecoverPurgeTest() [Fact] public void KeyVaultListDeletedKeysTest() { - if (!_softDeleteEnabled) return; - using (MockContext context = MockContext.Start(this.GetType().FullName)) { var client = GetKeyVaultClient(); + + // settings may not be loaded until the client is fully initialized + if ( !_softDeleteEnabled ) return; + string keyNamePrefix = "listdeletedkeytest"; int numKeys = 3; int maxResults = 1; @@ -1129,12 +1197,13 @@ public void KeyVaultTestSecretExtendedAttributes() [Fact] public void KeyVaultGetDeletedSecretTest() { - if (!_softDeleteEnabled) return; - using (MockContext context = MockContext.Start(this.GetType().FullName)) { var client = GetKeyVaultClient(); + // settings may not be loaded until the client is fully initialized + if ( !_softDeleteEnabled ) return; + var secretName = "GetDeletedSecretTest"; var secretValue = "mysecretvalue"; var secretOlder = client.SetSecretAsync(_vaultAddress, secretName, secretValue).GetAwaiter().GetResult(); @@ -1162,13 +1231,13 @@ public void KeyVaultGetDeletedSecretTest() [Fact] public void KeyVaultSecretCreateDeleteRecoverPurgeTest() { - if (!_softDeleteEnabled) return; - using (MockContext context = MockContext.Start(this.GetType().FullName)) { - var client = GetKeyVaultClient(); + // settings may not be loaded until the client is fully initialized + if ( !_softDeleteEnabled ) return; + string secretName = "SecretCreateDeleteRecoverPurgeTest"; string originalSecretValue = "mysecretvalue"; @@ -1254,12 +1323,13 @@ public void KeyVaultSecretCreateDeleteRecoverPurgeTest() [Fact] public void KeyVaultListDeletedSecretsTest() { - if (!_softDeleteEnabled) return; - using (MockContext context = MockContext.Start(this.GetType().FullName)) { var client = GetKeyVaultClient(); + // settings may not be loaded until the client is fully initialized + if ( !_softDeleteEnabled ) return; + int numSecrets = 3; int maxResults = 1; @@ -2840,6 +2910,13 @@ private void VerifyKeyAttributesAreEqual(KeyAttributes keyAttribute1, KeyAttribu Assert.Equal(keyAttribute1.Enabled ?? true, keyAttribute2.Enabled ?? true); } + private void VerifySecretAttributesAreEqual( SecretAttributes leftAttributes, SecretAttributes rightAttributes ) + { + Assert.Equal( leftAttributes.Expires, rightAttributes.Expires ); + Assert.Equal( leftAttributes.NotBefore, rightAttributes.NotBefore ); + Assert.Equal( leftAttributes.Enabled ?? true, rightAttributes.Enabled ?? true ); + } + private void VerifyKeyOperationsAreEqual(IList firstOperations, IList secondOperations) { Assert.False(firstOperations == null && secondOperations != null); diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultBackupRestoreTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultBackupRestoreTest.json deleted file mode 100644 index 3626b3bdf558..000000000000 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultBackupRestoreTest.json +++ /dev/null @@ -1,406 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "//keys/BackupRestoreTest/create?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL0JhY2t1cFJlc3RvcmVUZXN0L2NyZWF0ZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800\r\n }\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "251" - ], - "x-ms-client-request-id": [ - "d6a61411-869f-4ab3-a2ac-bef3385bfbb2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24709.01", - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" - ] - }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/BackupRestoreTest/de83072dee6d4f7886947b6776e66d1a\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"qIJMru9B0l7lPVzdxoYXMnRmKZnodMkXRoBTTmUSgeV3FWZcEnOQ_OKrP1UJJF2nrhYU3ExcAqf8Z86flgSMhQrlSIe1V49r8psggNHgtWrI_gCNs0HOp4JPlwaCTp1i1GscnKAYXoDuEg7a3X5yAW7bwYxV_UQREOodFz9QYpMjt4nvKHLajGO6h2jJ5W71fXMUpsuhAR3BL9GFfBq6uJmdl-MwOZZanQGqcqZMt5gThUXS2g_7Xnm7aiKtEaztXlr3S9LLfA791sZW5lWv5WaHcVilKybBVfR0Y0urCEC9GykfE3Epkm0boKRj6BudaBMk0t-VWNRgCP2sXySP5w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1483991568,\r\n \"updated\": 1483991568\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "660" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Jan 2017 19:52:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "eastus" - ], - "x-ms-request-id": [ - "c97d79f0-6dde-4564-bd48-e7849d2429e6" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.793" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "//keys/BackupRestoreTest/backup?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL0JhY2t1cFJlc3RvcmVUZXN0L2JhY2t1cD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d6bd6eef-6724-40ec-bb36-6cf1b71f1811" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24709.01", - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" - ] - }, - "ResponseBody": "{\r\n \"value\": \"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLkg3Q2dzYktfejRVMExDOEFtRXJyamtvOTZlcUpmX1U2R252b2hrTGdUMllXdWQ1dFlVSnlmQWlMbDZ1Y2VVc28wX29xc3N0TktzT3dYZU9nX3FVWUQtV194aDlkOFR5RE9iZ0k0eWxROEg0bXd2TU95cGlOSzJoQUtSQ1JzUFpTVWlESGJLa3lPSEI1bGFscVZyV3IwQUhoX3RGQ3pUTWE5ejVHd2E1My1HbWxid3VYLUhvZG5LNkJncVVWUWktdFlhRjc1UlJXZHBaZGg3Ti1naHBCWG4wVDhaWlRDN0ZscDJaNnE1RlotYjNxQll2RWhPVjlwUVFtTXVHSTBNQl9vRzFQSWY2MXhIN2VlbDZkSWVtRGZobHpvMlJSSGdUVFFJWFBfSFQtZnQ5T0pXdkh1MUhUNE41ZURrUnY0ZFFfbzg1MWRpZFRxdVZhV2FNTTJYd2pzZy42N0w1a0ZSdXU3MDdHbHpiaTNMV1RRLmZSb194T0hiVVMtbTlaRnNVVkpyTFpCaTg1eGxFX1JDMHBQRy1ZdXZyN3Q4TVctN1JBd0NkTldDazVpT1VMaXZpWlRORktfQUxTeFJTLVY4U1c2SDMzY0FuUWNKdUhnZTRFaGxyYklfQkZqWE5LdUlsTkNhS1Fpc2lVdkx4RGpTQkpFaGpxNHBVTUl1anROMVFqSVk1aDB1aHN5LW94WnVULXgtX2RuU2F6dkwtWGF5RWZieTM1dU9Wb1JfWFNoUU1DeEY1MEF2aS1FZE1IbWJwdmd3aXlIYVpkLXR6SGtyOXg1cXo2TlV6TG15SVZyX1d3RUNaUkZLM1RILU1nZ05zd1Q4SHNiRGxlN0txU1JkNVk5Z2RzNUxGUVFWN2pfMGpob0pjb3BnOEFyNFM2by1FMVZDQ296azU2bDdreHNvTU40blRGd2ZKVElzTUg5QU5QdXlMM0RLalZuOXAxc2lzRER4ZktSb2lYZTdMVC1vT1Q3QmM0dU4zOFZiSVdIaktMLUxVSjBzYTBKM2ZXRllKUTVWMUgyU3JPNkNrQWQ3akMtcmpsSFpsUWIwLWNvcDU2T3EyRXR6YU40Vi05REQ2LTNya0ZfcUxsekpDUG1kZm5jU211eG9FZmJDcnFuQTN0c044XzZMUTJpUHdLTE5HWnpCMUFaRGlaeWtYTDA2RUdwZUVPMWJzTFd6Y3ozaEV4TVVNejlRZDdCWnEwT1RtMG5hZ0k0S3hpaXdNRUtfcU14RlZGSGhtZTNNcEJnaE50NnhJT2lCSTlOdnhUd2M2MTV3VEtXT0tmZVZfNkhtcndjMmJLellwOVJoM09xM3dYWUtnbzFyTVJCdnpJQ3BhZ0FGSEFrek1wRlNxZ25lbnRKQV9rRnNRWWVfdHVsODNUN0FhZ2Q4eF9nTE1COEdyc1ExLURvcTVIWjJRM3hHaUUtS3hRRkRYYnVEWkhBbzR0VC1ZWjR5b0c1SE91OEVSZGRUcllJVHJMVW9lMlB4a0FQSXR0ejREZVduRU4tYmp5QUdnOVpPUG9Md3JZS1V4eTVYU2FFTHRhM2o4RTV6UTU0eXg5TmY5UGlPMTFFWi1DVW9DVlpyenRZNXRWaUFHOUdVWGhEdTdEZjZUbTk4YXZaRGMyOFl2VHpaaGNfaVY2Tk1JUUVmYkI1dEVJb3JYRE5LdkVLWW45akFGRTc2MldQejJ0VUNDMExZcjgzbXZzcEtja1dReE9IR2ZBcUNSZWFxa3EtN3U5QU9zVzVxRnhFa2FoZTlwWjZ5ZzJaaTBmUW9uVkNrcFZIdDhGWGFhWWcwb05aMTNvRk1MbWY3ZnBlVG5Ta3VVdmZScVJKcjVTS09vX0czdG12bkc1V2dtaDVRSEJPcnYxb0QyekhUSF9sTnBXQ0JVZnRGYS1HY1BhUkdlYk1OMm9NY1ZJUUNzSDdwVHVwTHJkdEphRVQ2aHNxYm5QeTJPWlo1OXRkaE9yb3A5TEdEMDJSckRpR3VFTDBpYmZ4aThLOVpaQlk3cnRJeEo0N1hpWlBpejFrbWM0eWRsdFZtaUdWVGExbFV5ZlFTeWphcE1pckY4YUxFUHk4amxXTjZ6ell4aHd6dUQtMWhKbFVWX3ZjV3dBcDJvQXNLTXA5NnZJRmxhQmp4bVN2TXdUckhHcDlOeldnOHo3WWJrUDh2SWl6anZ5eGNfVnNGRDFNODFVS284RHhwTDFVeVItY3RCWHg0aTJJVDRBLXVkeWtYcURiN0o5X2RUOGFfeFl4NHJ3ZngyTHI1cHpjbS1RNGl0U3JHUVdfX3Z4cnVXWTZlOHRrM284UUZoemNtQzh6Smh0X25jb2c5UlAtR2s0Q3RDVEgxTWdXa1lpQ0NzMGdFUG9NOWU0MUtLak9IMUFRcERqTnRhMGpGZm03aFBRYU5odXpjaEJ2eHZLT3JhT1RCaGZLS2FjbkJJSVBQS0E3c2pqTFdza3lIM3FhNGo4ZFZBUUVQSEE0eWhZS1cxMGFJS2lCLTdoeXU3dEV0S1NkVDh5SXlKSzRfaXlzanFzTmZ4REZPMU5QbzVlVVlza1V0c1B2TXFNSGR2dWh6RWg3bEI4czVheFVjZjAzeThQd3Y2TVBHU1YxVXVIaGhsNURaSHRSdURJaThWMUJFcm9SMWZzRUlxTGZlRTZtRFRmdDl2UDFUOEJjTl9XQUM4djNYVGo5TWwxY05wZnFlQ3RQRVl0U3JCeFdpQ08wMVpYVEJVbm5LMGc5allrTVJWWGJCRkxPZUVGWVYwdkxpbUt4bmVvdjhNNTZZOVk3S3VHOE1LWlVVeXA1bjBpbTc2RXZLMXd4cVNGTFNzY0JIS3VPRzJfeF8wNE54U2x2ZXo0aGluNy1vUW9IOHhLOUpvR2Y2dVlLZFJBY201S0hZbGNPRkVscFk3ZUxPNmtBSFhvQ0RJSlpaXzF5dnlNV29GeHVlUjF2b28wU1BLWWc5V1gyczk0aVI5MWhvSkZfZ2tVSjN5eFdGQmVFVk9GQ0VINmdyWTN5X2pObzRIeTY1MnE1QlcxampkUHhCRXlkVVRUenhWeG5lOFV2Qk4ydUtBYkhyTXZkT2ZYcjNfa3FvSUg5RS1VLXNzVENpeUVIS185VWpMLTBEOUpkYmVyMl8zdlZVUmVWTTRaTWVFY3pucU8xRFJhYlJDVzQ5Uy1GaGFsT0t5bzNsVExMSlR2OXZpcjFnYVNFcU1ZNGYwN3ZXZmJtcTFWNDRYMFVmakhLYmpWYlZaYldjVmZpbVZGeEY4cl90blBVcnExZVUzM2hxNGJtVmlFQkZLOFZSZ1N2eTF3WXZRZHBVbFlTamgxTThVNlNOZVktRGFPOTA5SXJUQThzZmFOR3pOcTlLNkljaVgwWFhJMnEzeGw5RVhOWVByQWg4M1UxSXY1a0c3Tmx6eXZhMkxWLV9SUnVMUjF3YjJ5ZnhUTy1BSXZ1UUx3VnJqa2tmXy1uNVltc2t4aW8xRFp3ZzlPYzBYYzFjZGNOS1RBb1NTdlUwUV9zNWFWNi02QzE0cV93SjhzZXJtR05mUnlJVm9tb0tBZ3hVdTdTSkZCQjg4TWg0dEJJN25fa2x6UGVReXZjMU8wV2EzTlRfOFd6Q2I5YUdiZlQxYXhTaEY1RlZBMXRpTzNSdkNBZjBjM0VzLUQyc1BONHp5M09RNWRIY2xBV09VRGtHakliVFlzVnc2ajlCalo5V0txSTdXbk9aeXBXOWZjeTZIU0JwWDlwUHB0XzFya1RDbkxWTXdCU0htTXZTLVlTTVZjWVlSZjN0a2UzMFRIMjV2NUh5MVpwRnBWa1RkTm82WkhWNEROeWJNeHNWQzBlZmpCeFNCUFNUSjdoZmw1Wm1JLVJfd2RpbkZGUGY5WFE2ZlF3OW9oV1ZBVWhEZ1pBVVVleHV4MjZsYVUxYktrY2luMm15RE51M2U5aGtZSTVSOWxQclJCOFo2c3JkRmxiU0RPSVg1UENnVTVQYU1TZml1SmNnNmVfVC1Bd3pvRTJoZGVNaTZOVVpxSzA3S1gzOWJoRkp1b1NjVm5mNmpTdVpGbDlQSG5pZUJuZnVMV1F5cW9WTm9jdmpfV2pYZng0ZGVmcHQ4MzVDNkxpRVhaR2pFZTFiR3pJcnNXTW9ZeXVIcGoyRDFsM19rZi1pdEdPYkhlVm9NV3lJS2pLZnZBbFlMNmtUMmVjRFVhNEtKRnFCSmhnM3pKWkYwb2F2S2dKc0JDSkhXenV2RXR0T1F0R3hGQUozSmE4ZmdDNTA0cXJJYVlsVVdYaUdvcGxLNVI5bkZHdEFXQnV4MUpYYkhMNVVfUE00YUw4UmFKNVl3ZThyQkktby0zR1FITFFXX3RJS2xjQzdyUm5pZTgwSjFOTUNXVTVxejl2QWExbXhZQ2VVU2Y0VHlMcXk0eHpBNEp6VTlKWW5EWGxid1N4VE8wQUNKSUIteGVjN0lTWDdzS21SYmoxOE44X0ZJYnEzaTEtQTd6VWM3UExXd0pqWlFoS2p4ODdoUkN0djRmNzE0V2w2dDF0djhvczF6UkdTZURKMWgteHZ2dW44RUxadTdQeGJVZzBla0plRVhnX09tc3NPMzlXYUpNMHkxNVM2YTlIQ2xsZ3ctWjhqT1dzanQwVlhBOEhhNmpJOEROb2tiZTVTSXp0amRGQTV3Wkc1Y3BZbHN1b3R6YmlPbHFqSWNxSS1hZkcxMzFLSUdDbU02bC1QbnQzNUdqSHJkVzlnd3RUSkE4Q0FfdUdlRHJuUnlQWlVDX2luUlpycl9DRFcxN19nT0xOSnhuampKM0g1VTRzaDBoanZYVk1nY1BkdllFOXlFcU84Z0pYQWk0b1FRSUMtM2loYm9qYWtpblBNdjV1US05aG02XzdUVk1mTlFMejN6b09tT0l5emprQnpPV1RmUmpPSFhJRjgzYjYwaGNJWmhwVm85Y3ZvbWtzT2ktWTc0TjlOVUlDVUdvdmxNdldVSG1aYWJTNmd1VHRFczZSTm13akYyNzQ0cDhxTnNmMVJ0V2x0TEY3UXpwaS1XaW9WUm5tT0pqQVJ0Q29Wcy1BSjdvcVNnN0l3OEhYUVJDdXc1NXk0T1NWRW54Wm9NZ0tsdTNXVlBCUHN5NU5YODN1YTNwVjZwSzNKMDRMZE4zQk1WbWV6MkRDcUV0ZWdJT1J5WTljT0NZM1NtbUQtM3dEUzdXd3ZQSFp6U3JBbWt3X05CMUZLZkZDWkJ0T3liN2lCNDRkVDRxVjlVcHAybDEwcHJ0LVJxMjRwZlRaU0dqZFJ3MWJtcXJ2RGo0WjBiNWFCaHFYMVFCckoxZXdYSjIwcUJZekdLMERoLTRLUG9BcVBJSXVjc2lWLTV4YVI2TVFJVXVXbC1OS3VKZkZBamFsd2hYU2x5QXZycl9EUGFNWkhYOGxxd0VtdHBubmZPUGpiR1dNc1pLWW1LY3pGVGViaEVUb2V0R3FmWGQ0bXpQaGkyX240by1RTjU0YThvMFdJWWxwaE5kT0pNNGZ3ejdhZVMyMGFxYnZKc05iSi1BYVZ6VFJCc0tRSEZSMzhlcTk4aWNKc1hSd2FQcmpKTUtzbDlrT0ctZEFKNWZYR282eGlINUt2MUVWNGVya1FkTFRrLXhva1hlb3ZuNmx3QkNfMVF3MzJPUWNmQWh0UExFcDRaaHREdEVKWkZrTmxrRmlvZGFKNFBJa2lOdkdGMzlwVWNLNnlHeElIWThUejAyeC1pd2xhR2pPZU9CbkRzZjM4UVg1STNWTUczOE0zaDN6V3UzdUVYZnBkOVg0UlMybngxb3VTdEtrdFZFcjZuSHhSTmhNdTVMcFZ2bzBWa1JvS1ZIdkJaeWF3STI2Yno2RkdPaTgyUlMzU3Q5VXdsWkpndmI4X08xZmFIUlZhbEh0MHpJSDYxRlhNdXA4Wl9LanJ2Q0dYdEYxV2FWRlJMNjBOMFVBQVpSaFc1ejU4dmpsLU14RC1za2FhUlBlZzd3S0Y1QVB3RlBBb21KZy1NTzA3TW9ZajhLcDdVOE5Ybzg0dXQ5b0pDN0diYi1USndXbHQ5QllLN0d6Y2NhMU9VU1ZESlVkYk55Y3dwWGlieDNKdkljUTZwbHFVSlpzVW9mX2xySUtqZ1VGTjR5ajdzSlJmdUNZZmdHSU5yLWRTNXRqTEpucWZpRjBHUk56MEZZU3lfNmtTdFJEa3pwQ09Xam1LNDhZaHhLa3dUSktFVG9GNXp2T2o5WDRHX0t1YmFFZ0p2dDlwNkZvWkRVTEhlVTRHdFVTRnRyRVdNVGFRT3FPeWJDSHA2NGxydXdQSFJuN2k0VjJaa1lFa1p3WUw5dGRQMzFicEdOSkhGVlJjYU1fYlpFZnpCVTdaVzFfMktUQVY5ZWFza085TUpGZTlraVg2X2xydVNMQWlXMjFmUEhfZEZWR0VLeVozOE1DS1dKZHIwZDRGanBkWUhyYXU3bFJ0bUdjSWtTcWZ4NXhCdkR1dERmdXFkM1hSMnUzMXVzUVJRcVVMOGJJZTRkUFlZX2p1YmpLRjNDbWJRa01QNXlkZmlRaTdjc19qanZnVGVIYUxrc056bmoyUjlFa082dWMwaFhEdGRoMUZDbDZSTU1pTTJBZDd5MDJ2RU9raG1GU2RraDFieUQ2eWJvYUN0T2JrcEdXYTI2TjlTNWFQMk5DUS1HQmVhTF83SXc1NkhQN1lYN0VxWngxOVRBYVNNQWM1WGFZZVFtUEc1WXRqSEliOXdOMTVjQ2tkcmNQWDlxTUp4clNwdm9zbXRHc3FrTjhLTWFyUEJEempRMm4tUENYOTB2Y05sUk9kZFg5a2M0dUNaSnRkUXFIbG5WMHhDa0lpWXJBbjl6Um9kdW52eTRLQVM5OGdwZmdzcVV3QVN6LWFmQ3lOSDFMVGZQakZPTEIyLVFuQjBYWWZqcjdVbG9Ba0JMZ1Rla3ZOM0hCcXB3Um1ydUpQQVRmdG4tUUNtNUpFSmlQaUpRM0UxZzQtX3h5RnlTeFRNMXdQVmR1THhqRDNZd0lEZ3hsRE5hSTBBY2pHRGNXdmhyU2dmcmpVU2xWWjZ5NXRXaWtrTE01TENpMEZYUmxlYWdNZXJKQVhmQTVtdE1MQ1o5T3BMVFMxOFRIOTVJTHNXbG10cXlXRUthOFRqYTBYYVVHeWdOLTN6d3FCNXFjYXFiNUJLUUM4TTlRcmJrTE5neENVUDdlREVEdktoVnNIYVpFUm5MYldmMUNTQXFIcDRRN2Eza0toNEVDRW5tQ1F2VHAyM3JPclZlRG0xUVJFQVRZVy1YRzMwZHAyT1BCRW51dmlpU2U1Tl9JUGpoWktidEI4QW1FcVFKUUpMZ3dtZmRtdWNhb25NdTRfMFI4elVwX1Z5MkFibnI4elJsUTVrcTlSVnI0R3c5UkdOdDRFeTZ0ZU1RNnNPcW5BaXk4NkZ0Q0txRm8wTTZ2NENHdjFpUzI3MUVDTkRjZFNIYVJNUFVDNFEtQjdMZjVIYlRBdTNTcUc3NHZPYmF1YXRrODhJRkNNWEI4Z3MtMEdtZWVfemFxTlNGTDd1aWlrOGltcEt2Q1NIYi13THBfWXBRWnMwRGVYdjdYWTBWV0xFd1VVeW53XzUwNkNBVFlTYk9FV08xeTVWc0JuNmxuSWxSUEVNdlA0QV9aQ1pPWERQWk9KMWFsU0F5MXlLdUhqb0k5RzZsWnNLTEt0eElBZ2U1bjNvb1Q3c211WVdfUU9MSzgzaEdTMy0yc2tob0dXWkF2SkxUM3Y4RldyVFZ4R3FYanR2WjhEMk5UUHNjNGVmVGJ6Y0pfZnJ2UlJEZUtGSkhseVFDU3N0MldOdllfNTFtczRHam1WMzNYWDFmZjdMTzNWVVcwNV9uX0NlWThKMkt4MGhFZTlmNnFpaUpzYXd2OHhXNDZvS0pOU2dPZGFLV0g0d0Exb0dVVURFSVczclBsU2hkUGpDYl9tOEdGZHd0VlRDcEtVVjhlTFJPbnEyZ3hiSUFPQmF6MVVVdm91clZtX25WTHRTSTlxdjlVVWdLbGNOOU1qUlk2dkpEdllma21tMk9QbTNkTGRIeUhDc08zR3d5MGJoUFlScVZ3MFoySUw1dkNLT2JuZVA4UkRxMmp0aXBTTkZrajdlbl8xa1lyc3lnd1lXWVRsU2NXSGE4VlpYUTM0T1JLMVZ1cUppMVpYUHlmbGFEN2RIQ0JSV2JacHQ4cE5TUkJCMGNNdWNTd3pDdGhrczVGclQ5U1NpU2Nob0Y2a2VudGZtZ3c4ck9OVzRfa1JJaEVNbXpCNnd6dnlMeHAzSFdvV2Zac2t1ZDRXWEpTTk16VDMyMUl6TkE3aXRRZ2ozQ3djRjk3SG9zWGdpczFhSzNNYThSMUl0U0dwRmhVTGZFT25oeVBURDhwTWo2ZWdrcjZ1WWFHSEVSNmhmNVdoNFJScU1DNkQ5RDdTeTBESWp1NzgxN2RVVE1SMXFXTkhBbDZJNEk5R2pHaXZnRlZKZEViREtJXzBaaGVFbmFOUHA2S1ROZnItTkZIUDhzYmllQVZBcC1RSUNqOXdGRG13OTBqTTZsWklhOXpYbkFMSGI4SlBSOEtLUzJrT3JJaXFLUjhJSEhXd3NlcF9nOXJwTnA4YVBxRDF6N3pGdExMSjFLdEFIMDRJWkFEbndmZmxTdkF1WVlaY2R4OU1saTlON1RDbkV3TllSRnFFMHZiR182ZE9wdmQtV21KbVBHWXRqYTN0dTJ6M1lsUnZqaTJaSHlCVTdZaEt3RG80bDBaTjIxQ3c2T0ZiV09JVFR5Z3haRjdDVEZlaW05Z2dXQjUxWkFrSWtuM2J6bHpkTkxycnhHaTdxb0pjeHMxMUhmdkREcXZ0eThhN2kzWjBJblNTX0lnajlmaXlrNlBueUZkRlJNM25ZMWhQVHI4Yk9wMDhGYVI2TFRaN3JYSmZ2UkZaRzZNR3haSjZNS2dQVHpEZDZycmFmQWJtZlZuenZNY3k0cnlwZm9CLVhuTVZzb2NTYUU1UXhQbkNPV3FRVzNaLXdIR0JrZWM3Q1dacjNlVUdEWmhqUWstR0k4UFA1bEpWUTBCT25aclFBWktCMHkyMERjaWMyUm9JeHdnSnhMUzAtakVMMmRvVm1EaTJTUGY5eXVxYmNIVEpLLW9Ba0o4MC1yNzk5N2JNSGpCUWpHd2JiV2ZLdnEtNDBxYVpBYVNqNGZicGc1TkJteVNhNVNFaXBmemR0a0lYc2Jfb08xUWRGbGxxenowZGNCRG1HbE9FaENpb3lxWHpoNVFkeEEuRkFfYzA3ZTR3ODNoaURQMERrTGNQZw\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "9470" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Jan 2017 19:52:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "eastus" - ], - "x-ms-request-id": [ - "79e421a0-cbd9-466e-a476-cdbc9cbf21c4" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.793" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "//keys/BackupRestoreTest?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL0JhY2t1cFJlc3RvcmVUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "89d1800d-0b4a-49a4-ad41-e62e51cf841c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24709.01", - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" - ] - }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/BackupRestoreTest/de83072dee6d4f7886947b6776e66d1a\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"qIJMru9B0l7lPVzdxoYXMnRmKZnodMkXRoBTTmUSgeV3FWZcEnOQ_OKrP1UJJF2nrhYU3ExcAqf8Z86flgSMhQrlSIe1V49r8psggNHgtWrI_gCNs0HOp4JPlwaCTp1i1GscnKAYXoDuEg7a3X5yAW7bwYxV_UQREOodFz9QYpMjt4nvKHLajGO6h2jJ5W71fXMUpsuhAR3BL9GFfBq6uJmdl-MwOZZanQGqcqZMt5gThUXS2g_7Xnm7aiKtEaztXlr3S9LLfA791sZW5lWv5WaHcVilKybBVfR0Y0urCEC9GykfE3Epkm0boKRj6BudaBMk0t-VWNRgCP2sXySP5w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1483991568,\r\n \"updated\": 1483991568\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "660" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Jan 2017 19:52:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "eastus" - ], - "x-ms-request-id": [ - "a60587f9-3934-49d0-a496-8cc749fe9bbe" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.793" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "//keys/BackupRestoreTest?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL0JhY2t1cFJlc3RvcmVUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "afaf0483-abce-44e2-b08b-b86a5a1d7c35" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24709.01", - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" - ] - }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/BackupRestoreTest/de83072dee6d4f7886947b6776e66d1a\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"qIJMru9B0l7lPVzdxoYXMnRmKZnodMkXRoBTTmUSgeV3FWZcEnOQ_OKrP1UJJF2nrhYU3ExcAqf8Z86flgSMhQrlSIe1V49r8psggNHgtWrI_gCNs0HOp4JPlwaCTp1i1GscnKAYXoDuEg7a3X5yAW7bwYxV_UQREOodFz9QYpMjt4nvKHLajGO6h2jJ5W71fXMUpsuhAR3BL9GFfBq6uJmdl-MwOZZanQGqcqZMt5gThUXS2g_7Xnm7aiKtEaztXlr3S9LLfA791sZW5lWv5WaHcVilKybBVfR0Y0urCEC9GykfE3Epkm0boKRj6BudaBMk0t-VWNRgCP2sXySP5w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1483991568,\r\n \"updated\": 1483991568\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "660" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Jan 2017 19:52:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "eastus" - ], - "x-ms-request-id": [ - "fd17307a-0be6-49fa-8e08-f1ecc8e6a6dc" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.793" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "//keys/restore?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"value\": \"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUkwTXpnMVlqQTNZaTFrTlRRM0xUUXlaVFV0WVdVNVpTMDJNVEJrWXpNNVpHWmhaamdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLkg3Q2dzYktfejRVMExDOEFtRXJyamtvOTZlcUpmX1U2R252b2hrTGdUMllXdWQ1dFlVSnlmQWlMbDZ1Y2VVc28wX29xc3N0TktzT3dYZU9nX3FVWUQtV194aDlkOFR5RE9iZ0k0eWxROEg0bXd2TU95cGlOSzJoQUtSQ1JzUFpTVWlESGJLa3lPSEI1bGFscVZyV3IwQUhoX3RGQ3pUTWE5ejVHd2E1My1HbWxid3VYLUhvZG5LNkJncVVWUWktdFlhRjc1UlJXZHBaZGg3Ti1naHBCWG4wVDhaWlRDN0ZscDJaNnE1RlotYjNxQll2RWhPVjlwUVFtTXVHSTBNQl9vRzFQSWY2MXhIN2VlbDZkSWVtRGZobHpvMlJSSGdUVFFJWFBfSFQtZnQ5T0pXdkh1MUhUNE41ZURrUnY0ZFFfbzg1MWRpZFRxdVZhV2FNTTJYd2pzZy42N0w1a0ZSdXU3MDdHbHpiaTNMV1RRLmZSb194T0hiVVMtbTlaRnNVVkpyTFpCaTg1eGxFX1JDMHBQRy1ZdXZyN3Q4TVctN1JBd0NkTldDazVpT1VMaXZpWlRORktfQUxTeFJTLVY4U1c2SDMzY0FuUWNKdUhnZTRFaGxyYklfQkZqWE5LdUlsTkNhS1Fpc2lVdkx4RGpTQkpFaGpxNHBVTUl1anROMVFqSVk1aDB1aHN5LW94WnVULXgtX2RuU2F6dkwtWGF5RWZieTM1dU9Wb1JfWFNoUU1DeEY1MEF2aS1FZE1IbWJwdmd3aXlIYVpkLXR6SGtyOXg1cXo2TlV6TG15SVZyX1d3RUNaUkZLM1RILU1nZ05zd1Q4SHNiRGxlN0txU1JkNVk5Z2RzNUxGUVFWN2pfMGpob0pjb3BnOEFyNFM2by1FMVZDQ296azU2bDdreHNvTU40blRGd2ZKVElzTUg5QU5QdXlMM0RLalZuOXAxc2lzRER4ZktSb2lYZTdMVC1vT1Q3QmM0dU4zOFZiSVdIaktMLUxVSjBzYTBKM2ZXRllKUTVWMUgyU3JPNkNrQWQ3akMtcmpsSFpsUWIwLWNvcDU2T3EyRXR6YU40Vi05REQ2LTNya0ZfcUxsekpDUG1kZm5jU211eG9FZmJDcnFuQTN0c044XzZMUTJpUHdLTE5HWnpCMUFaRGlaeWtYTDA2RUdwZUVPMWJzTFd6Y3ozaEV4TVVNejlRZDdCWnEwT1RtMG5hZ0k0S3hpaXdNRUtfcU14RlZGSGhtZTNNcEJnaE50NnhJT2lCSTlOdnhUd2M2MTV3VEtXT0tmZVZfNkhtcndjMmJLellwOVJoM09xM3dYWUtnbzFyTVJCdnpJQ3BhZ0FGSEFrek1wRlNxZ25lbnRKQV9rRnNRWWVfdHVsODNUN0FhZ2Q4eF9nTE1COEdyc1ExLURvcTVIWjJRM3hHaUUtS3hRRkRYYnVEWkhBbzR0VC1ZWjR5b0c1SE91OEVSZGRUcllJVHJMVW9lMlB4a0FQSXR0ejREZVduRU4tYmp5QUdnOVpPUG9Md3JZS1V4eTVYU2FFTHRhM2o4RTV6UTU0eXg5TmY5UGlPMTFFWi1DVW9DVlpyenRZNXRWaUFHOUdVWGhEdTdEZjZUbTk4YXZaRGMyOFl2VHpaaGNfaVY2Tk1JUUVmYkI1dEVJb3JYRE5LdkVLWW45akFGRTc2MldQejJ0VUNDMExZcjgzbXZzcEtja1dReE9IR2ZBcUNSZWFxa3EtN3U5QU9zVzVxRnhFa2FoZTlwWjZ5ZzJaaTBmUW9uVkNrcFZIdDhGWGFhWWcwb05aMTNvRk1MbWY3ZnBlVG5Ta3VVdmZScVJKcjVTS09vX0czdG12bkc1V2dtaDVRSEJPcnYxb0QyekhUSF9sTnBXQ0JVZnRGYS1HY1BhUkdlYk1OMm9NY1ZJUUNzSDdwVHVwTHJkdEphRVQ2aHNxYm5QeTJPWlo1OXRkaE9yb3A5TEdEMDJSckRpR3VFTDBpYmZ4aThLOVpaQlk3cnRJeEo0N1hpWlBpejFrbWM0eWRsdFZtaUdWVGExbFV5ZlFTeWphcE1pckY4YUxFUHk4amxXTjZ6ell4aHd6dUQtMWhKbFVWX3ZjV3dBcDJvQXNLTXA5NnZJRmxhQmp4bVN2TXdUckhHcDlOeldnOHo3WWJrUDh2SWl6anZ5eGNfVnNGRDFNODFVS284RHhwTDFVeVItY3RCWHg0aTJJVDRBLXVkeWtYcURiN0o5X2RUOGFfeFl4NHJ3ZngyTHI1cHpjbS1RNGl0U3JHUVdfX3Z4cnVXWTZlOHRrM284UUZoemNtQzh6Smh0X25jb2c5UlAtR2s0Q3RDVEgxTWdXa1lpQ0NzMGdFUG9NOWU0MUtLak9IMUFRcERqTnRhMGpGZm03aFBRYU5odXpjaEJ2eHZLT3JhT1RCaGZLS2FjbkJJSVBQS0E3c2pqTFdza3lIM3FhNGo4ZFZBUUVQSEE0eWhZS1cxMGFJS2lCLTdoeXU3dEV0S1NkVDh5SXlKSzRfaXlzanFzTmZ4REZPMU5QbzVlVVlza1V0c1B2TXFNSGR2dWh6RWg3bEI4czVheFVjZjAzeThQd3Y2TVBHU1YxVXVIaGhsNURaSHRSdURJaThWMUJFcm9SMWZzRUlxTGZlRTZtRFRmdDl2UDFUOEJjTl9XQUM4djNYVGo5TWwxY05wZnFlQ3RQRVl0U3JCeFdpQ08wMVpYVEJVbm5LMGc5allrTVJWWGJCRkxPZUVGWVYwdkxpbUt4bmVvdjhNNTZZOVk3S3VHOE1LWlVVeXA1bjBpbTc2RXZLMXd4cVNGTFNzY0JIS3VPRzJfeF8wNE54U2x2ZXo0aGluNy1vUW9IOHhLOUpvR2Y2dVlLZFJBY201S0hZbGNPRkVscFk3ZUxPNmtBSFhvQ0RJSlpaXzF5dnlNV29GeHVlUjF2b28wU1BLWWc5V1gyczk0aVI5MWhvSkZfZ2tVSjN5eFdGQmVFVk9GQ0VINmdyWTN5X2pObzRIeTY1MnE1QlcxampkUHhCRXlkVVRUenhWeG5lOFV2Qk4ydUtBYkhyTXZkT2ZYcjNfa3FvSUg5RS1VLXNzVENpeUVIS185VWpMLTBEOUpkYmVyMl8zdlZVUmVWTTRaTWVFY3pucU8xRFJhYlJDVzQ5Uy1GaGFsT0t5bzNsVExMSlR2OXZpcjFnYVNFcU1ZNGYwN3ZXZmJtcTFWNDRYMFVmakhLYmpWYlZaYldjVmZpbVZGeEY4cl90blBVcnExZVUzM2hxNGJtVmlFQkZLOFZSZ1N2eTF3WXZRZHBVbFlTamgxTThVNlNOZVktRGFPOTA5SXJUQThzZmFOR3pOcTlLNkljaVgwWFhJMnEzeGw5RVhOWVByQWg4M1UxSXY1a0c3Tmx6eXZhMkxWLV9SUnVMUjF3YjJ5ZnhUTy1BSXZ1UUx3VnJqa2tmXy1uNVltc2t4aW8xRFp3ZzlPYzBYYzFjZGNOS1RBb1NTdlUwUV9zNWFWNi02QzE0cV93SjhzZXJtR05mUnlJVm9tb0tBZ3hVdTdTSkZCQjg4TWg0dEJJN25fa2x6UGVReXZjMU8wV2EzTlRfOFd6Q2I5YUdiZlQxYXhTaEY1RlZBMXRpTzNSdkNBZjBjM0VzLUQyc1BONHp5M09RNWRIY2xBV09VRGtHakliVFlzVnc2ajlCalo5V0txSTdXbk9aeXBXOWZjeTZIU0JwWDlwUHB0XzFya1RDbkxWTXdCU0htTXZTLVlTTVZjWVlSZjN0a2UzMFRIMjV2NUh5MVpwRnBWa1RkTm82WkhWNEROeWJNeHNWQzBlZmpCeFNCUFNUSjdoZmw1Wm1JLVJfd2RpbkZGUGY5WFE2ZlF3OW9oV1ZBVWhEZ1pBVVVleHV4MjZsYVUxYktrY2luMm15RE51M2U5aGtZSTVSOWxQclJCOFo2c3JkRmxiU0RPSVg1UENnVTVQYU1TZml1SmNnNmVfVC1Bd3pvRTJoZGVNaTZOVVpxSzA3S1gzOWJoRkp1b1NjVm5mNmpTdVpGbDlQSG5pZUJuZnVMV1F5cW9WTm9jdmpfV2pYZng0ZGVmcHQ4MzVDNkxpRVhaR2pFZTFiR3pJcnNXTW9ZeXVIcGoyRDFsM19rZi1pdEdPYkhlVm9NV3lJS2pLZnZBbFlMNmtUMmVjRFVhNEtKRnFCSmhnM3pKWkYwb2F2S2dKc0JDSkhXenV2RXR0T1F0R3hGQUozSmE4ZmdDNTA0cXJJYVlsVVdYaUdvcGxLNVI5bkZHdEFXQnV4MUpYYkhMNVVfUE00YUw4UmFKNVl3ZThyQkktby0zR1FITFFXX3RJS2xjQzdyUm5pZTgwSjFOTUNXVTVxejl2QWExbXhZQ2VVU2Y0VHlMcXk0eHpBNEp6VTlKWW5EWGxid1N4VE8wQUNKSUIteGVjN0lTWDdzS21SYmoxOE44X0ZJYnEzaTEtQTd6VWM3UExXd0pqWlFoS2p4ODdoUkN0djRmNzE0V2w2dDF0djhvczF6UkdTZURKMWgteHZ2dW44RUxadTdQeGJVZzBla0plRVhnX09tc3NPMzlXYUpNMHkxNVM2YTlIQ2xsZ3ctWjhqT1dzanQwVlhBOEhhNmpJOEROb2tiZTVTSXp0amRGQTV3Wkc1Y3BZbHN1b3R6YmlPbHFqSWNxSS1hZkcxMzFLSUdDbU02bC1QbnQzNUdqSHJkVzlnd3RUSkE4Q0FfdUdlRHJuUnlQWlVDX2luUlpycl9DRFcxN19nT0xOSnhuampKM0g1VTRzaDBoanZYVk1nY1BkdllFOXlFcU84Z0pYQWk0b1FRSUMtM2loYm9qYWtpblBNdjV1US05aG02XzdUVk1mTlFMejN6b09tT0l5emprQnpPV1RmUmpPSFhJRjgzYjYwaGNJWmhwVm85Y3ZvbWtzT2ktWTc0TjlOVUlDVUdvdmxNdldVSG1aYWJTNmd1VHRFczZSTm13akYyNzQ0cDhxTnNmMVJ0V2x0TEY3UXpwaS1XaW9WUm5tT0pqQVJ0Q29Wcy1BSjdvcVNnN0l3OEhYUVJDdXc1NXk0T1NWRW54Wm9NZ0tsdTNXVlBCUHN5NU5YODN1YTNwVjZwSzNKMDRMZE4zQk1WbWV6MkRDcUV0ZWdJT1J5WTljT0NZM1NtbUQtM3dEUzdXd3ZQSFp6U3JBbWt3X05CMUZLZkZDWkJ0T3liN2lCNDRkVDRxVjlVcHAybDEwcHJ0LVJxMjRwZlRaU0dqZFJ3MWJtcXJ2RGo0WjBiNWFCaHFYMVFCckoxZXdYSjIwcUJZekdLMERoLTRLUG9BcVBJSXVjc2lWLTV4YVI2TVFJVXVXbC1OS3VKZkZBamFsd2hYU2x5QXZycl9EUGFNWkhYOGxxd0VtdHBubmZPUGpiR1dNc1pLWW1LY3pGVGViaEVUb2V0R3FmWGQ0bXpQaGkyX240by1RTjU0YThvMFdJWWxwaE5kT0pNNGZ3ejdhZVMyMGFxYnZKc05iSi1BYVZ6VFJCc0tRSEZSMzhlcTk4aWNKc1hSd2FQcmpKTUtzbDlrT0ctZEFKNWZYR282eGlINUt2MUVWNGVya1FkTFRrLXhva1hlb3ZuNmx3QkNfMVF3MzJPUWNmQWh0UExFcDRaaHREdEVKWkZrTmxrRmlvZGFKNFBJa2lOdkdGMzlwVWNLNnlHeElIWThUejAyeC1pd2xhR2pPZU9CbkRzZjM4UVg1STNWTUczOE0zaDN6V3UzdUVYZnBkOVg0UlMybngxb3VTdEtrdFZFcjZuSHhSTmhNdTVMcFZ2bzBWa1JvS1ZIdkJaeWF3STI2Yno2RkdPaTgyUlMzU3Q5VXdsWkpndmI4X08xZmFIUlZhbEh0MHpJSDYxRlhNdXA4Wl9LanJ2Q0dYdEYxV2FWRlJMNjBOMFVBQVpSaFc1ejU4dmpsLU14RC1za2FhUlBlZzd3S0Y1QVB3RlBBb21KZy1NTzA3TW9ZajhLcDdVOE5Ybzg0dXQ5b0pDN0diYi1USndXbHQ5QllLN0d6Y2NhMU9VU1ZESlVkYk55Y3dwWGlieDNKdkljUTZwbHFVSlpzVW9mX2xySUtqZ1VGTjR5ajdzSlJmdUNZZmdHSU5yLWRTNXRqTEpucWZpRjBHUk56MEZZU3lfNmtTdFJEa3pwQ09Xam1LNDhZaHhLa3dUSktFVG9GNXp2T2o5WDRHX0t1YmFFZ0p2dDlwNkZvWkRVTEhlVTRHdFVTRnRyRVdNVGFRT3FPeWJDSHA2NGxydXdQSFJuN2k0VjJaa1lFa1p3WUw5dGRQMzFicEdOSkhGVlJjYU1fYlpFZnpCVTdaVzFfMktUQVY5ZWFza085TUpGZTlraVg2X2xydVNMQWlXMjFmUEhfZEZWR0VLeVozOE1DS1dKZHIwZDRGanBkWUhyYXU3bFJ0bUdjSWtTcWZ4NXhCdkR1dERmdXFkM1hSMnUzMXVzUVJRcVVMOGJJZTRkUFlZX2p1YmpLRjNDbWJRa01QNXlkZmlRaTdjc19qanZnVGVIYUxrc056bmoyUjlFa082dWMwaFhEdGRoMUZDbDZSTU1pTTJBZDd5MDJ2RU9raG1GU2RraDFieUQ2eWJvYUN0T2JrcEdXYTI2TjlTNWFQMk5DUS1HQmVhTF83SXc1NkhQN1lYN0VxWngxOVRBYVNNQWM1WGFZZVFtUEc1WXRqSEliOXdOMTVjQ2tkcmNQWDlxTUp4clNwdm9zbXRHc3FrTjhLTWFyUEJEempRMm4tUENYOTB2Y05sUk9kZFg5a2M0dUNaSnRkUXFIbG5WMHhDa0lpWXJBbjl6Um9kdW52eTRLQVM5OGdwZmdzcVV3QVN6LWFmQ3lOSDFMVGZQakZPTEIyLVFuQjBYWWZqcjdVbG9Ba0JMZ1Rla3ZOM0hCcXB3Um1ydUpQQVRmdG4tUUNtNUpFSmlQaUpRM0UxZzQtX3h5RnlTeFRNMXdQVmR1THhqRDNZd0lEZ3hsRE5hSTBBY2pHRGNXdmhyU2dmcmpVU2xWWjZ5NXRXaWtrTE01TENpMEZYUmxlYWdNZXJKQVhmQTVtdE1MQ1o5T3BMVFMxOFRIOTVJTHNXbG10cXlXRUthOFRqYTBYYVVHeWdOLTN6d3FCNXFjYXFiNUJLUUM4TTlRcmJrTE5neENVUDdlREVEdktoVnNIYVpFUm5MYldmMUNTQXFIcDRRN2Eza0toNEVDRW5tQ1F2VHAyM3JPclZlRG0xUVJFQVRZVy1YRzMwZHAyT1BCRW51dmlpU2U1Tl9JUGpoWktidEI4QW1FcVFKUUpMZ3dtZmRtdWNhb25NdTRfMFI4elVwX1Z5MkFibnI4elJsUTVrcTlSVnI0R3c5UkdOdDRFeTZ0ZU1RNnNPcW5BaXk4NkZ0Q0txRm8wTTZ2NENHdjFpUzI3MUVDTkRjZFNIYVJNUFVDNFEtQjdMZjVIYlRBdTNTcUc3NHZPYmF1YXRrODhJRkNNWEI4Z3MtMEdtZWVfemFxTlNGTDd1aWlrOGltcEt2Q1NIYi13THBfWXBRWnMwRGVYdjdYWTBWV0xFd1VVeW53XzUwNkNBVFlTYk9FV08xeTVWc0JuNmxuSWxSUEVNdlA0QV9aQ1pPWERQWk9KMWFsU0F5MXlLdUhqb0k5RzZsWnNLTEt0eElBZ2U1bjNvb1Q3c211WVdfUU9MSzgzaEdTMy0yc2tob0dXWkF2SkxUM3Y4RldyVFZ4R3FYanR2WjhEMk5UUHNjNGVmVGJ6Y0pfZnJ2UlJEZUtGSkhseVFDU3N0MldOdllfNTFtczRHam1WMzNYWDFmZjdMTzNWVVcwNV9uX0NlWThKMkt4MGhFZTlmNnFpaUpzYXd2OHhXNDZvS0pOU2dPZGFLV0g0d0Exb0dVVURFSVczclBsU2hkUGpDYl9tOEdGZHd0VlRDcEtVVjhlTFJPbnEyZ3hiSUFPQmF6MVVVdm91clZtX25WTHRTSTlxdjlVVWdLbGNOOU1qUlk2dkpEdllma21tMk9QbTNkTGRIeUhDc08zR3d5MGJoUFlScVZ3MFoySUw1dkNLT2JuZVA4UkRxMmp0aXBTTkZrajdlbl8xa1lyc3lnd1lXWVRsU2NXSGE4VlpYUTM0T1JLMVZ1cUppMVpYUHlmbGFEN2RIQ0JSV2JacHQ4cE5TUkJCMGNNdWNTd3pDdGhrczVGclQ5U1NpU2Nob0Y2a2VudGZtZ3c4ck9OVzRfa1JJaEVNbXpCNnd6dnlMeHAzSFdvV2Zac2t1ZDRXWEpTTk16VDMyMUl6TkE3aXRRZ2ozQ3djRjk3SG9zWGdpczFhSzNNYThSMUl0U0dwRmhVTGZFT25oeVBURDhwTWo2ZWdrcjZ1WWFHSEVSNmhmNVdoNFJScU1DNkQ5RDdTeTBESWp1NzgxN2RVVE1SMXFXTkhBbDZJNEk5R2pHaXZnRlZKZEViREtJXzBaaGVFbmFOUHA2S1ROZnItTkZIUDhzYmllQVZBcC1RSUNqOXdGRG13OTBqTTZsWklhOXpYbkFMSGI4SlBSOEtLUzJrT3JJaXFLUjhJSEhXd3NlcF9nOXJwTnA4YVBxRDF6N3pGdExMSjFLdEFIMDRJWkFEbndmZmxTdkF1WVlaY2R4OU1saTlON1RDbkV3TllSRnFFMHZiR182ZE9wdmQtV21KbVBHWXRqYTN0dTJ6M1lsUnZqaTJaSHlCVTdZaEt3RG80bDBaTjIxQ3c2T0ZiV09JVFR5Z3haRjdDVEZlaW05Z2dXQjUxWkFrSWtuM2J6bHpkTkxycnhHaTdxb0pjeHMxMUhmdkREcXZ0eThhN2kzWjBJblNTX0lnajlmaXlrNlBueUZkRlJNM25ZMWhQVHI4Yk9wMDhGYVI2TFRaN3JYSmZ2UkZaRzZNR3haSjZNS2dQVHpEZDZycmFmQWJtZlZuenZNY3k0cnlwZm9CLVhuTVZzb2NTYUU1UXhQbkNPV3FRVzNaLXdIR0JrZWM3Q1dacjNlVUdEWmhqUWstR0k4UFA1bEpWUTBCT25aclFBWktCMHkyMERjaWMyUm9JeHdnSnhMUzAtakVMMmRvVm1EaTJTUGY5eXVxYmNIVEpLLW9Ba0o4MC1yNzk5N2JNSGpCUWpHd2JiV2ZLdnEtNDBxYVpBYVNqNGZicGc1TkJteVNhNVNFaXBmemR0a0lYc2Jfb08xUWRGbGxxenowZGNCRG1HbE9FaENpb3lxWHpoNVFkeEEuRkFfYzA3ZTR3ODNoaURQMERrTGNQZw\"\r\n}", - "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "9477" - ], - "x-ms-client-request-id": [ - "a833808e-138d-4026-9afe-427872f293a6" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24709.01", - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" - ] - }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/BackupRestoreTest/de83072dee6d4f7886947b6776e66d1a\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"qIJMru9B0l7lPVzdxoYXMnRmKZnodMkXRoBTTmUSgeV3FWZcEnOQ_OKrP1UJJF2nrhYU3ExcAqf8Z86flgSMhQrlSIe1V49r8psggNHgtWrI_gCNs0HOp4JPlwaCTp1i1GscnKAYXoDuEg7a3X5yAW7bwYxV_UQREOodFz9QYpMjt4nvKHLajGO6h2jJ5W71fXMUpsuhAR3BL9GFfBq6uJmdl-MwOZZanQGqcqZMt5gThUXS2g_7Xnm7aiKtEaztXlr3S9LLfA791sZW5lWv5WaHcVilKybBVfR0Y0urCEC9GykfE3Epkm0boKRj6BudaBMk0t-VWNRgCP2sXySP5w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1483991568,\r\n \"updated\": 1483991568\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "660" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Jan 2017 19:52:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "eastus" - ], - "x-ms-request-id": [ - "dffff270-81e4-4625-83b3-05f298298f94" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.793" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "//keys/BackupRestoreTest/?api-version=2016-10-01", - "EncodedRequestUri": "Ly9rZXlzL0JhY2t1cFJlc3RvcmVUZXN0Lz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bc00621f-9444-4495-9863-e9cef8075b72" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24709.01", - "Microsoft.Azure.KeyVault.KeyVaultClient/2.0.6" - ] - }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://testvault1021.vault.azure.net/keys/BackupRestoreTest/de83072dee6d4f7886947b6776e66d1a\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"qIJMru9B0l7lPVzdxoYXMnRmKZnodMkXRoBTTmUSgeV3FWZcEnOQ_OKrP1UJJF2nrhYU3ExcAqf8Z86flgSMhQrlSIe1V49r8psggNHgtWrI_gCNs0HOp4JPlwaCTp1i1GscnKAYXoDuEg7a3X5yAW7bwYxV_UQREOodFz9QYpMjt4nvKHLajGO6h2jJ5W71fXMUpsuhAR3BL9GFfBq6uJmdl-MwOZZanQGqcqZMt5gThUXS2g_7Xnm7aiKtEaztXlr3S9LLfA791sZW5lWv5WaHcVilKybBVfR0Y0urCEC9GykfE3Epkm0boKRj6BudaBMk0t-VWNRgCP2sXySP5w\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1483991568,\r\n \"updated\": 1483991568\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "660" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 09 Jan 2017 19:52:48 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/8.5" - ], - "x-ms-keyvault-region": [ - "eastus" - ], - "x-ms-request-id": [ - "5babc4b0-993a-4584-945a-5461d97cb694" - ], - "x-ms-keyvault-service-version": [ - "1.0.0.793" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "VaultAddress": "https://testvault1021.vault.azure.net/", - "KeyName": "sdktestkey", - "KeyVersion": "d015b4371d884032b7138b49e82102c8" - } -} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedKeyTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedKeyTest.json index 2d5f7660b6d1..6bf094e559a8 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedKeyTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedKeyTest.json @@ -645,6 +645,7 @@ "Variables": { "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "cf7c860fb9db4564a1389db973a52436" + "KeyVersion": "cf7c860fb9db4564a1389db973a52436", + "SoftDeleteEnabled": "true" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedSecretTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedSecretTest.json index 98ac059b62c1..1162145efad2 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedSecretTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultGetDeletedSecretTest.json @@ -453,6 +453,7 @@ "Variables": { "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "4ac8dbcb697b44a2bff598b1a21e371c" + "KeyVersion": "4ac8dbcb697b44a2bff598b1a21e371c", + "SoftDeleteEnabled": "true" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultKeyBackupRestoreTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultKeyBackupRestoreTest.json new file mode 100644 index 000000000000..61652ff9780b --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultKeyBackupRestoreTest.json @@ -0,0 +1,1181 @@ +{ + "Entries": [ + { + "RequestUri": "//keys/KeyBackupRestoreTest/create?api-version=2016-10-01", + "EncodedRequestUri": "Ly9rZXlzL0tleUJhY2t1cFJlc3RvcmVUZXN0L2NyZWF0ZT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"kty\": \"RSA\",\r\n \"key_size\": 2048,\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"attributes\": {\r\n \"purgeDisabled\": false,\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "280" + ], + "x-ms-client-request-id": [ + "1557f2e9-3191-4489-826c-e2fb4840f0c5" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://kv-sdk-test.vault-int.azure-int.net/keys/KeyBackupRestoreTest/b1634f7d6662425d967888b6abb3f413\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"sutrU6YgaSoSGtNeDijrmXbC6fRjqwz1GIjczBJBFyKZwP_2hC1tRSlxoAHcpViObrhwo9gHQiIFg2jkZAMfYEQk3D6G1MutjEfcQGHi-3ReWV0BDDtkBvOuT8TWsGATQ9kYKgtWOWuFjEARxVzHaThuEbs-e_cHsPIglwcBUvPoMS-vrwyzowJaT95MMxLZUq42Xji3gKIbUhAEZ27z_tkEdQtkBpBorBzChkXdDak6D7XnIjsVQHnMRCwVMgRfIrT06ILdEBeq3eCjCx_jwvGrUyO4PwEm35ToMf-EXirz8X1Ea3JFZ2r5zIbSnoGst1okaQNbynXBlcOcGcVviQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1491343158,\r\n \"updated\": 1491343158,\r\n \"purgedisabled\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "691" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 21:59:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "ab3f3ea0-3f22-4f3d-b158-9f46f5550c4c" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//keys/KeyBackupRestoreTest/backup?api-version=2016-10-01", + "EncodedRequestUri": "Ly9rZXlzL0tleUJhY2t1cFJlc3RvcmVUZXN0L2JhY2t1cD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a19b950-292e-48a9-b74d-8916e351025e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": \"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUppTlRjMk5ESTVaaTB5TlRZNExUUTFZbVV0WW1aaFlTMHpOMlZrTURkbVl6QmpPREVpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLk00Qzg3SE5zMTZqcFdwSkVUQ1dmZE5SUWcwNDV1ZU1hblA2NHNmcGtYaFpjVzBrVldNYVBjVmkwaHYxeXpWdTZ2bnAycHY1ejdfY204alR6WkQ3VVd3NllpVC0xZ1RsbFlGSS1tRWVpU2xuSHJMNnpVTEtONnBuR2p6UVdEUHhJb2c5Slh5bFFkSW9xdWxVX3NVcnN6SEttQWFSQS1xdVZmNFlZaElVbm94eW1pQjA5MkJ6Tm5BcFB1UllIQ0JsMUstRjQ5aW1UWk9BcnVHX1dEeGhKMUo3SEhJWEJzVElGTEpQX0ItOTVpS1A0SHNhTEpqREZBTmJxV3JoSC1OQXc1aWZDTWRsSlBMbTdsU0NJV3JsVVVZLVpPR2tpNnVUUm9kdUhjMGYza2lXOEhuUHJqYkkyRHd6am0zQWQ3dnMxMXpnMzBtZUNvU19ZTWtsb2VPM0RRUS5UWE1sNjNvYWREREc1dDd1WG5aLVRBLlFVeUhrY2JpZU95R21LTWdxUF9QTjIteTJDMW9MNDNneGNvQkxidkM0c0h0VmNoYWtQMU9lWmdwRll0My1UbjRscDNNak83ZFF0a09ZeXd0c080TE13TUFsMXdvM0RHSDNaNHhVd1BQdHJGSV9uaWg0Z1IxS0ZMdXVZVE9CdUlkQ3MtVFpreVZOV1FreUh6VUpkcUx5SlhoOUlUdDJVSDJwOEJVTVZnZU5mdU5ONWd6MVlxa1Q4Um9aWmFRUnNkdnZWalRWazE4cWpFbG5YZ0I0ckFGWWIzcGZNdzhJbjBhc0E4Rkotc1JHdEZPTFhTbWs5M2dHTnp0ZnJQMUxYalpyU19iQkduc3UzMWItSEZJR1hNX3drdzZQUjBlSGZ2dGQ5Z1ZQMWpvREdWV3R1OFBDTlp1ek90ZlRMRG9VWVFvYkU2dmVpVEdRVzEwdWRQOW15S2FxaGtjSHBnc0trVzN4VjdRTDFRSFg2UjRUT0VTY1F1Qm5vQ3J3UlN0RnpuY29Mb2tmREdXYmZiWUdsb3F5THo4Y0IyaVZERTM3eUZUQzJEY2dMeW9tYklUWklvUU9EUHIwcEdOa2Y3WU4ycHU1UVRBZXN0ZnRqWWtlbUhfNEZadFcteFcxT1YwUDU3THgzcGpGcVFyaTR5YW1kUHYtS2F5YWwyUVNmV1p3RE5rX3h1cTFxT2dlb0NWMGhwSVFuYXBLYzBvVG8tTFdqMk1IazBBbFhQdWhyUmM0UHktWGJ2NGFRUE9qY0puMkZTZmF5YkQzejNiSzVPMklrNm9WZ2NwNjNhWDk0UUJFTXJjbGlpalhDRXpXS1ZTUmNBQVAxbWxUSVJiYW5paVFuMHhJQ3hUcXM1VVlvSW1fcFJ0YVB6N08xUGd6V3F3M2d4Vi1sSUZEd3cyNU5TR3pqS3VfTk9zUE5WVWtpa2xmWHJOZEpqME5oMFVObHFRejg2TWpnVnNadDVWQkZ3Q2VHQUhhMjdHTXdhVkd3M0dwNXpxbDJFU1E4Q3l0b2JSYUxQZ1RJNURESncza3E4M2dsa0pqSndzcmpIQ3JXaEM4b2tSck9la3NLMU8zbmpuTnlSMkQ5VmE2S3N4V2RXYzg0Tkd4Z1JURVpyWXA0SFFDcl8zMGpQdU9DbUwtTXA2cnF0OG0wSW1VTkUxZWUtc2NCbE8xLWpHcjc2QktRdVZQMUpOV2o5MTRETFE4aDNvMlhDT0g1ZndMRmRiLUhJWkZfazQ3eWZqSENmbm9TSm5LdUdiV05RUDc0TzI1MlFPSlFCOHhFSmpJbHFRdXI1SmhldDFFUWowYjZ1WFZhMHh4cTRlWjdDb0tIQ1FfZmRPbnd3aTNpaXNiQXd0Z183YndrdnpwUG9pSW40ZDY5bVk3NHBRRURsYzBzbTY3ZGJ4LWxFQW5faTFmNUVNVGVSWFgtUG9xSmRZaGItanlCbnR0d0dUQnIzSkJUVGFZOFpIZmhJem9MdTA2N0lqVGFHNFltZHRwc2JTajVramR2b19wR2t4UkVoaUw1em03RWdiZXo0Ui1JaE11N2pNd2lNSjJKUU9fMF9oVG5oY3NYeXBzbEpWN3NWSVY4UmJkcTY1Uk40UGlZUzU5ZVRBVUxKOFFaaWRyaUFfbkY1czFwQTNpLXA4Z1Q2YWx3bldCV0wwLUp2U1AteW9BVk8zS0ZIOWVDVnpxZ0FLeDNrQVhiNTJLMEtCZGQ5aXdiVlZoTU1VR3Zpbi00eThDRWd1dVB1S01lVm5fbTV1WkJpZFpTRWxLWnhpUE9WS0NzTUdLUTkxT29XR1pLelVwYmJ5NVNyTDJ5bFZoT3ZPZWVaSXJndVFCM1hvNjZJa2NFQ3daMHV6Z29zVHRfSm5JZVpqVHFZTU1WYTQzTEtjQmZBdVMzTnp6akhvNEhGb2JaWFdGc1RZN1pZdUFid0JtWkFFbWZhWDE3SlRSVlRKa3E3STRnamFXa04zaHFPdHJHZ3R6bEJSc2lvbE5YSWdyaGl0em5HUEdlcVpZYW4wZ190Q3BoWnpIT0hwX1BwSjlhcGNNeUxHRVp6NU11cE1rRVdwQlUteEs5WDJJLTVRSUx1eGcxSXF4aVNOLTZRTmlyXzdJdFhPT09GMVpyemMtNkRKMVpBaS1EdjRvRDlBcFM3c1lQQXNVQ1VYMU53Y2JkMVM2YkZlWEpwdDFzR0pUVE5jSFljV1pVUmxLZVlmNWpzVkZGMTczcHBiSG5NUnMtM3JWWkFrQzdnOUVrN3YxNFZpSEtqaHFfSlplZXJ2MFdKNHhpWExhVmIxZlN2azNQWXBTeGd5TDdtcF9sT3hpNS1GX1NQc3NVdTJwWnhYS1lqcG1wUDhnSHlKa1R6WGJ4SXJaWV9oMXBJNXFuSTZ4YTFqRkpiTUNuWUNRbHZTWWhIY1AycG1sM0FMeDBJNk9yUmY2Y25WNlUwWVNZWkcwemEtRXRKUU1nX3dHU2lMcV9LNk4yRWNUVDRFR1otZTJzN0VqLUQtVWxoLUthb19MS2k0Q2czaTEyYnNZRnBZcDROU1JlWnJVQjNHZEZrOGhhZWdQcVROdFhsR1IyWjNSd29SWHRkNXM0MnVxVC1fWlI1ZDBQclZRR1VNTUZ6Wk1Ga3E2Y1hNeXhzTjRXa283UGUyZW11Wl80ZkN6U2pFRmhpS0Rvel9ac3ZpZUZzUDZSdVFjQWtRM096R2xWYXpaYzl5ZUZjWDFCaWppQXg1OG5QMklNdmJDMVNPeDZJdnhRalZKU1NtdDI2c1dYTERTbjlpYWpkWUVTQmc4U0x5a0d3eDVMMUNzWEs2MFBtWEgwUGRkRkktak9oTDhXT2UwclBWSnoycklOeFhFMzVMRVFKaFBKY19qUFVONU9pV2d0YWd6Y2xJNjM2TWIwZFRYd0V4OWlHVURORXgzRmFJMEN5dW1UdURLNVJiaDFVdjNsVXhLSGdEcFJIX0JnYTh0a1RObHN4WDlmS0NVT2lqeVJiR3dzN0ZtWUZyYjdYMDJxYjU3bE9wZW1KbGVNSjBTbzRhWG5Yd1VTcTN3V0ZJTzRkVUN6dWZQRTloRkstYTVhRXVHVlk4Z2tsYzNJSVhsMHBxZXdSeVZJNDUzQWJBY2tXLU9WTUZCOGMwQ3hyMFZKWi1YUF9nLUd3YmpLWFRzUW44NlpPT0JjTFByUm9La3pRejRFamNjd1NBUTk0cko1Wm9YMmdFV3dEZTZTT0Etd283cnViSC1MLXdSck91Uk8zeUlVT0JrM1ZnLTRuLWlINjhSRkpVWkpLVTJmOG93TmVMUlBLV0xEVXBHUTJYSUphUXp2ZllIYThVeUR0bDQ2M3lOOElzN3djZ09ydmJlTXlMbVdJTDQ1WDl1TkNOVTRRaXFaRTM3dzFjUG1GOEhOSndwLXdBS2l2S29OMWZuR0xfT0xOMExBcnFxSV9PYUVFbWRVUUpCQVNQdS1JYWZNNE8xdGVVS1d6MGpjRjhockVwTkFNQnlrSUJmdUdCQ3NiRk5Qc1VwNENvWGlaZjBuWU5jMllrUnJDdnpHZXNpUzBOWXlvM3oyV2xoTnpkWU4xRG9DcS1Dd3hFb3V4dVphUGxVTW1zaFFJZUttMmFQT2dQTUIyd1NkWnlmUDEtMnZwNlN1c2lpbjJWYi1zcGdWMkcySXVqcWNNSFlnUnpJRFJrS0tHQklScFpsRDF6SlI2V3FjbkJ0Vjg0VlFGRG12NGFqMWRLUWM4Z2dhQ09NdVpicUtJQUhYcjhDRy1CbVpNM2pmb3o0YmVXbHZ0ZUJZWjJkaHB4ZXkwVzVYZ1hhaV9EYXl4U0ZxVmhOT2dkcFVuMVptRXFCVmVOSGNwWmxTTS0xU2dKallOREI4eVNIa2s5ZUhvSTV0QVAwMENfVWpjLUhoeFp3Zkxtem8tNWlmVDVoN1JvU2VWUjdxT2t2ZDhhd0RjU1FQNlA0UnltMEVsc0liRHY2TG81OXRXeFNlaGQwdTlJUE0tSnhmSElpSHJhWDVxc0l2WHhzYjI5MURTdl9GNy0yU25WS3hFZHY5bDhteFlrYTFGWGp4SEZvbFVoMmVIMFlMOHdwdVgwYTg0NXZoUzJvZ2dFYkNmZDJ5akowVHFOYTljeUlVaDFYVVVmS0RJT1BrQVNjdEdjbG90eE1vLWNfMkxTY3BKby13MlpiWlRfYXVURHJyeTN2V1V1VnNHMkNBa0pXVFlpRGloZjViMVc0VDlUM2VEZGJ3TEZjcHJDTE93Wjg0MlpMcGw0Njh4cDlwNThTa2s1aEtLV3h2YnBlTzhmdmctUjgxLU50QXVTWUtaZ2tNeFEwUlZUSkQwX052dE5yWXRzMUhZQ01NUzBUdkZZMzhweUl1aHVFN21ZNko3Z3ljckt5c2RYVkFYQTdjYzJNVUlJYkhVT3BlcEdZWlJQVzAyeHdoQUZlbmU1eHpIb3BjWkRlcTFvYl9vUDZtLUdFZEo4RzZqb2JQdmlEaW91Z0wweGc0d21RSkNjbnQ0UU5LdmlDQWZzNzhfWm5qUmNyQkU2LTJBUkRURGpwVkxKTzRPVTRVWWdzLUM2TGw3TktVUUNIWUNCNWlqM3VLTDV4eWluX2wxeFYya1VvR3g0TjdXTl93VEhpR1g2ejlMWEdocXY0bmhyNXBSLVFET01wTVhMU2VPeDEycko4OU9rYzVDZDJfbjV4cTJHUy1BVkFiTVd0ZGtjT1pSamJCSWE2VzhxNGFnLTNZbnZTSlkyaGljU2FNb0otY2dzUTVydC1fai1xcnQzMXJiRHc4cnpGazRleV9pNHZXbjk0bF9xODRGYmlKRVU4WFNaRnRtT0ZURkU1QnVoMm11U01TZ2hIMm5ZSFA0Q1ZDVzYtQU94cnU1UWlEZ0c5SkhRMTYyOTI5dFN2YXFjaV9ZSUVwVXU2YnBGS0RwQ1NmZUVMc2s1NVNMRnZHZnIzRkkzbmtNOFVYbkhUMGpNUnpLQ2VSTUliNUdYc2tJSEZCaE5BWElqd1pCRW1DZWphZlc4Wmh0SnFPOWxVOGc0a2hxRnFEUzhmcUFvU2Nub2U0VGZwbW1hUlFPMEViVUM2dk1Xdno4b091ZFdxbFBLN2NCVjYxd09uakNBaFFKenRkTHFzUF9kYkV4ZERvOUVqaVplYVB0NWNsOXJ4bEY1MzM3WFB5OUo4ZnI2M1JoYlV3aGdUSUxTWFh1NEpvOEVrZk5ZVjk2MjA2SW43WWE5SkVnZUNKOWp5anhkNTBabGhDaWtOamFaTDlpTlNYNnd5cmtDWlo3SUpyQ0gzbEd4Zl8wRHB1SWxMdzZ0Zm9GNXlTaDdHVnBYYy1xM3o3S3FDQ2E0RjN6aEU2WHN3WVE5SGdrVjdwRkc4Q0tDaEp4andoSVVjS2NLSlp3MkhSLW92VDVJTi04ZjhrQi1xaTBOeGgxWTIzeWRoVE1NVHRqN1pLNGZCNWJKRlY2WmduNWtiTXR0d2FOcWVjNnRZRmEzcVJnbUtoZW1YVTVsNjJyZ09nbkJlbjNCZEZ5MlJXVjVRSzZaeW9WQV94N0M5UGVFcVVLUTloLWQtb3NXVVUzVkJsRUgzSDh5UEs5aXlXWFhseDFZeC1xMmFGVFFlTlhqTW40TWhwMkRXZS1OUzFxTEFJM21zVmRKTVA4S0p5R3pJY3RfaGJOV2NSelhKUE5tRklaSWhjbTJJVU04Zml3aTZNcGhWdDZXZjVzQjZVdUFmVl82R1E2QlVwaENwclN6allUcTlEYVdkSnJYTUdvMW9TQ3FyRm5ZWGtxTkpLdWNFeURIU3dZZlVjc2RYZGZKMjFnYmUwUWF0X092dnJzcFpkbm8wdDhQY1NWQU5YeGdOVmhLRDgzTHphWEJrZ1lpbWZpQ3NmaExXbm9lQkZNbXhocC1MU0xJOUh0UU5oLVNxQWJBb0JyV05WUXNNeGIxaUYyTzhxYkJfWTBOeE5EYXZCU0l3QWNTOHRzUHVrd2RlUWNpV0tmZ2tJWng3c3JvWVViNE1zUUU1Q2ZoN0cxb0Vpc1dEX2hTNEFOVmFLbnJMeWNmZm5uM2UxenA0b3lvak9KVFJ0M1l6OUZCZDVLSjRRYjJWblh1MVJYNXgxd3JsYVZtY1B5eXlidk8zbTBFc3l3TkV6R001RTBLbFZiZ2NHTE9LT2NrbzZDbVlXVnh3RW5fSG9Sdmc5R3V6aEpjVzFKbXdoU29LeEFNUUpaRDNucGNkMjg4cWF2SUl5NHRHdTNtUkFCU1FRQmR5eUlVNmF3WWIxUjVhTEQ1YXhmUnlzZzl0OThBeDNLVGs5QlpFanFrcTVKXzRHckNtbzhNbndBVzhxUWN6U3VmNDNUbzVhWDBjVGFYb3p5SVdZM3FIMmNZZndYelMzZzFQT3RzU0FlNG5oaUtnVkxCYzh6MjZBV2F5RVZMX0htMGZXMlBGZGwzVVV3WU1KODllMmdhZGZCNTUyVnJuU2tmblBWSkhaUFMydHJuMGxCNlhhVTJOUDRoT2g0OUJUMTRpankwNUZiZHR0U29wMm5PYVNubmQ5NUV2dnhWdzRCYTd2S1hIblZvMHJoZlhWS2VSOHJUOFFRNU44c3NnY0xyLXRrM0U4WlhRZURuejZObkxVbUFpaDBFeTNMaC1XZzNVSmdKb1FiNDM1S1ZBX3ZKcFV1SnY0SmxSeHV4dVJLcHVYS2x5TEh4SjhQb1pUOGlzT1d6MFdJWk5xdWthdHY0TW5Nd09fbEhZa1RJLTZtQ3BwSHdkUkhrdk5ReWNZUDN5SzNXNVl4bU5LY1p4V1hQOFlxQ2F4UFhfZEJUWmNBOE0xb1FfUHpvaU5fRXlYdWx6VU1iR0J1UldoMklqWVdkdHdDT3c5SHQ5bTBlelQzZEk3M0ZBV0dXZkdJZXg4UC1sLXJBYUtLQ1A5RW81Slc3dGQ4T2s3bU5ES1p0ZjloSkNWNFNpSEhVUzNxdUZNVWVRMnQ2UHdUN1B4US1uMDk3Ri1zZ0ZzaTlJUmIzeEZsaHVHaUJpX1o1ckR5UUlsV0h6QmFUZ29iSmg0UTB5UHFhSExhM2ROOFVLRUxRblFXc2RCWHhmN2I1RUg1UTBranJ0bGVhUEVhOWhqd1Z6RTZDNk9OOWE4ZHpkSzVVenhsY0FieEZoZ3RaZVAwZFdkNXNET0I3bzhCbnFpYTllczNjZ192S2FSaXZvd3YySUItckxEWDJESGpPU2ZlNUR4TEpGQUNrVmtZM09hX1pEVDN1YmVBT0FJZ2dOUFRjVEpIRm9rTzFzbVlxN21lRlllUkpCWWpNMmVmRTJpWF9iNnRxbG42ZFZidENlOGhiRTJaYlVHZ0pzYjVRVHczWWlSb3BvREJZR1RCWVgwTXRMNE9GcUVCbTg5Sm1iaERzMG1SZFlvcmR0d2FndVVXRVFhTi1uNDNLVFdQeWxSR3k2emRNWE5KTWstWXE4NlF2MGMySV90c2pPa2tBakg3VEJIQVpsZVJLcFNlYXo2UEpJWHpmTzViV3NabGhWZnN0NUFYUjRNVWZBLXEtb3NFSHg0eEpFM2VjdmFxZGhkcnJoOVBLMC1zbl91MDBMV0hzcEJnd1pWNDVGc0RteXJGaHF6ZDFOQXRFOXlpVzYzXzJ0Q2pYVXVVcHpqYnN3MlhHaEtlVTZmQmkwTVFsalNUTEM3VFhtRkJFRy1OYjdXQUpFWmwtU181a0ZzdnZDdWJHeG5ZNVNOZ1AyNmJaSUYtX2xKSDk5WHk2YzhBdFhleUJydFh6emxGZmVlbjVBYjRhM2NTTlB6YnR5aGZfVG1yVWZJdG5SZ0JhOU1ORTB6M0ZDT29MUkQwMXlqQS1MdnMxc1ozRWdwZHMzOGhZcVdNTTNGUjN0MGtFZDhUWXRZcmNFdVVVQmNmVmJWdW9NTGxoRm5XYm5XNXRuWWtOVlU5SGRoNkdya04wdXJ6UzZKdnZIRTBPUlA2UDN1ME9fVWVlYTQzbnBBMGhwNmw0UFBoTnVRM21RRGRaX0pzRlEtcTJFdUpFOHRUdVVkdXczVmZhNkNDZlhiUVNlUW9JUWVWdHRYS2t1aUZoN042QXVXeXlsaDlia1V5LURMWmgtZUxsRnpXb2xES1hWdW9qUDJiZy1Gb1B3b0lWVTNxVVJoazVTQXlCT2FSM2pVZmx4YnAtUGRLNVJBcWJ1SVc3Y0lXUGx1amd5NXBVdVROVjJ3Mnlxa19VNTJGdzNEYXlZNXBzaEpWdXF1MFJiZHd3UGZhYXRvejVpUXVPblo2VjdDQWhvSW9oUjAzanVHLWFNZTlKYXQ4NGJ5WENPVF9waEU2OHdxTVpzaWV2VGs2NzRhZXlvckdkYk9BbjBTQWpjR2YwMnpWVWtrRWlQNkRudnptRXA1NEZlSlR2Y285VHlLUGlVUmU2SzdTR0hxREw1MEp0bjFFWVdhVGtqeHhRVXp1a21MWURLcHpGZFVBSUZadktGR1BTRmVEbFpTQ25IR2FlVWR6blFfWnhycFZlOG1UZVpJZTZ0ejg2QzdmUGFDX0hXWXZJLXNrRGoxQ2Y4Rm9FNzk2bEEwRWIzZk5ISkhXV2R6OVZBYngwSTNEcmJfd0JRWWFsdTBZa2FUUnI2dklyb25nanBOLU03VXV1dWdoRnFsaFVmR0JpTGh2M2lxcWRFWTl4X1RKWFc0anVfNVBqcXNtTU9VT1ltMG1NdnZTbGgzUDFQVGJCRlE1WXZvOVZWcV92bTNRWDhTOW45WDhLLXNFd1VVRUxjM05RcFVXNEp6c0t5dWFYVTNNcE5RenZxZ1UwWVp1MldoWFBZLWV5cUxWVXJFbXNjMWgtay0tSFhFT3BHOVNZemd3Q090RGRHcHNrdXdlVVR2eUluRXpaTlBMWEZ3Skx4S25oTVRwMElORG1tbFN2WVdWRzZhaEFHUF9OUlpBUHBsQVQ5NF9HUUNlUmVzUjZIbnN2MHc2TWVaYjU1MU5SSHE1dEdmYWd0ZGhiZnVjN0Q3Z2tJcEtzMEJZLVZPbVJSckNQR3V5YnhBeE9NbGVuRnAyUE9aTUY5Mk9CMFJhTi1ZTE5hVG9nZEtJTTlKcnNMVS1nZlJPZ1dFanZMSGhEYVd0dlFfLVFqMVZCUW1URno3c3NLSmJoNG9YQmZXZ1poTm1VeUUyWWREdnhQaWQzRDZEektMSlU0azNlUEJGUUZvVXo1a1BTQWhfc0FDbkNMU1ctaU43ZG1GUFRrYURlZEFnTHJuM3AwNmxKWE5XNERDT1ExLTN4YXVoQkdHS3RBSXFwVE82VDFlcmx1R09wOGszbnh2RF9QSlVTc1BQUzVpd2YxSW9fRUcxSUdPRXRFbHdSa1Fjb3ZLZFltMTAzUUFyWGt6STlqdjhRRXRsdHBQbWdENlh0YVVWVWtjTTY5RXg4emZaUzlocy1aa0xfbnpfOXJWQTNsTTlvam1lLUVNZXJTd05WZVBaLWVwUEJVWXlHbkY2eF9CUU9LWWxjV3BKaTdncy1mcHZIZnlqVVlQUW1QZjVkZlhEQ19xVzJUMG1EaEI0Y05SLUdnY09PQ3BjaUZoby15OWVaWWJ4bU1CTVA4U3NPNk44QzVtUS1YRFRQdVloZGN2c1QtcG0zVlF5ZGZWZDY4TmNXeVY1NGVfWlRtSl90ZW9LNk5OUHEtZFloNEVvbElVemVYc05MbVhPX1dQZzh6dmlSZlRrNGtZdjJobUZqcFlOdUdVd2s5NVdsYkszWGJMaDRmVEpvTHB6RGxrVy1JUFdrblVMUE9FMmQzTUJiZDFpMHZveEVuRjh5eXA2aXpqTmhQRFpuWmFuWHFycXVpNlBfWXpQZS1jYmxoRjl5VnpFTEEwbkJUREJhNUgxX201NWRtNDczNEVRclFfOXo0Y2dCeTlDYndaa000cVJ4c0syX1NUYnJKRTNUUG5hVzQzOGF2bENHekZ0MzBUSlY2bGx5U2d3RVBXNkk3b0w5UWpKQ3oyTVVVWnRvUjZaYXl1U3duQS5jNkhoeG92Nk12Vm1rd1ljSE1yZkxR\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "10664" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 21:59:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "ba82bcc4-fba9-43a9-bf35-c8dfbd5c9346" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//keys/KeyBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9rZXlzL0tleUJhY2t1cFJlc3RvcmVUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "842336da-b83b-4429-95a2-04dc5eef5f09" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://kv-sdk-test.vault-int.azure-int.net/deletedkeys/KeyBackupRestoreTest\",\r\n \"deletedDate\": 1491343158,\r\n \"scheduledPurgeDate\": 1499119158,\r\n \"key\": {\r\n \"kid\": \"https://kv-sdk-test.vault-int.azure-int.net/keys/KeyBackupRestoreTest/b1634f7d6662425d967888b6abb3f413\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"sutrU6YgaSoSGtNeDijrmXbC6fRjqwz1GIjczBJBFyKZwP_2hC1tRSlxoAHcpViObrhwo9gHQiIFg2jkZAMfYEQk3D6G1MutjEfcQGHi-3ReWV0BDDtkBvOuT8TWsGATQ9kYKgtWOWuFjEARxVzHaThuEbs-e_cHsPIglwcBUvPoMS-vrwyzowJaT95MMxLZUq42Xji3gKIbUhAEZ27z_tkEdQtkBpBorBzChkXdDak6D7XnIjsVQHnMRCwVMgRfIrT06ILdEBeq3eCjCx_jwvGrUyO4PwEm35ToMf-EXirz8X1Ea3JFZ2r5zIbSnoGst1okaQNbynXBlcOcGcVviQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1491343158,\r\n \"updated\": 1491343158,\r\n \"purgedisabled\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "840" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 21:59:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "4367f340-8fa3-4572-b1d4-8d3193d47bbf" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//keys/KeyBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9rZXlzL0tleUJhY2t1cFJlc3RvcmVUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bafe34a5-d0ec-4528-95bf-6ae97e1ac34a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://kv-sdk-test.vault-int.azure-int.net/deletedkeys/KeyBackupRestoreTest\",\r\n \"deletedDate\": 1491343202,\r\n \"scheduledPurgeDate\": 1499119202,\r\n \"key\": {\r\n \"kid\": \"https://kv-sdk-test.vault-int.azure-int.net/keys/KeyBackupRestoreTest/b1634f7d6662425d967888b6abb3f413\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"sutrU6YgaSoSGtNeDijrmXbC6fRjqwz1GIjczBJBFyKZwP_2hC1tRSlxoAHcpViObrhwo9gHQiIFg2jkZAMfYEQk3D6G1MutjEfcQGHi-3ReWV0BDDtkBvOuT8TWsGATQ9kYKgtWOWuFjEARxVzHaThuEbs-e_cHsPIglwcBUvPoMS-vrwyzowJaT95MMxLZUq42Xji3gKIbUhAEZ27z_tkEdQtkBpBorBzChkXdDak6D7XnIjsVQHnMRCwVMgRfIrT06ILdEBeq3eCjCx_jwvGrUyO4PwEm35ToMf-EXirz8X1Ea3JFZ2r5zIbSnoGst1okaQNbynXBlcOcGcVviQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1491343158,\r\n \"updated\": 1491343158,\r\n \"purgedisabled\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "840" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:00:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "44bd9226-bf1b-480a-b7d0-1e96ec4d8508" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//deletedkeys/KeyBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVka2V5cy9LZXlCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45a19465-296d-4767-bf01-b3dd63d2c1cc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: KeyBackupRestoreTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 21:59:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "a4411114-ed21-4783-9900-de17567fa850" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "//deletedkeys/KeyBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVka2V5cy9LZXlCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1da562e-095d-41d9-a949-d20861d6316c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: KeyBackupRestoreTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 21:59:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "9899099f-969f-487d-a008-ac3171c7304f" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "//deletedkeys/KeyBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVka2V5cy9LZXlCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0bf3f132-f2d0-4364-85e4-e453a3e05e81" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: KeyBackupRestoreTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 21:59:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "deeeab4d-d71f-4fc3-95c5-35c1973bf66e" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "//deletedkeys/KeyBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVka2V5cy9LZXlCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c61931a5-50bb-4b28-bba6-62f9a134d9eb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://kv-sdk-test.vault-int.azure-int.net/deletedkeys/KeyBackupRestoreTest\",\r\n \"deletedDate\": 1491343158,\r\n \"scheduledPurgeDate\": 1499119158,\r\n \"key\": {\r\n \"kid\": \"https://kv-sdk-test.vault-int.azure-int.net/keys/KeyBackupRestoreTest/b1634f7d6662425d967888b6abb3f413\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"sutrU6YgaSoSGtNeDijrmXbC6fRjqwz1GIjczBJBFyKZwP_2hC1tRSlxoAHcpViObrhwo9gHQiIFg2jkZAMfYEQk3D6G1MutjEfcQGHi-3ReWV0BDDtkBvOuT8TWsGATQ9kYKgtWOWuFjEARxVzHaThuEbs-e_cHsPIglwcBUvPoMS-vrwyzowJaT95MMxLZUq42Xji3gKIbUhAEZ27z_tkEdQtkBpBorBzChkXdDak6D7XnIjsVQHnMRCwVMgRfIrT06ILdEBeq3eCjCx_jwvGrUyO4PwEm35ToMf-EXirz8X1Ea3JFZ2r5zIbSnoGst1okaQNbynXBlcOcGcVviQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1491343158,\r\n \"updated\": 1491343158,\r\n \"purgedisabled\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "840" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 21:59:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "c7fd718e-031c-44a1-9173-e2e12924427b" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//deletedkeys/KeyBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVka2V5cy9LZXlCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54a00a00-46df-4fee-92eb-6bd047a9f69e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: KeyBackupRestoreTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:00:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "477afdf7-52b4-4230-ba5f-7e9a0faa601e" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "//deletedkeys/KeyBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVka2V5cy9LZXlCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbe30dc9-1aae-4a38-af22-c72c1aa0543d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"KeyNotFound\",\r\n \"message\": \"Deleted Key not found: KeyBackupRestoreTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:00:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "55ede3e5-87d7-4c3c-82d7-62f4069a2015" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "//deletedkeys/KeyBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVka2V5cy9LZXlCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "917ea360-e19f-41a2-9752-b0d402a5833d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://kv-sdk-test.vault-int.azure-int.net/deletedkeys/KeyBackupRestoreTest\",\r\n \"deletedDate\": 1491343202,\r\n \"scheduledPurgeDate\": 1499119202,\r\n \"key\": {\r\n \"kid\": \"https://kv-sdk-test.vault-int.azure-int.net/keys/KeyBackupRestoreTest/b1634f7d6662425d967888b6abb3f413\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"sutrU6YgaSoSGtNeDijrmXbC6fRjqwz1GIjczBJBFyKZwP_2hC1tRSlxoAHcpViObrhwo9gHQiIFg2jkZAMfYEQk3D6G1MutjEfcQGHi-3ReWV0BDDtkBvOuT8TWsGATQ9kYKgtWOWuFjEARxVzHaThuEbs-e_cHsPIglwcBUvPoMS-vrwyzowJaT95MMxLZUq42Xji3gKIbUhAEZ27z_tkEdQtkBpBorBzChkXdDak6D7XnIjsVQHnMRCwVMgRfIrT06ILdEBeq3eCjCx_jwvGrUyO4PwEm35ToMf-EXirz8X1Ea3JFZ2r5zIbSnoGst1okaQNbynXBlcOcGcVviQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1491343158,\r\n \"updated\": 1491343158,\r\n \"purgedisabled\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "840" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:00:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "eb9ba6f8-168c-4fec-ac3d-7990b5649266" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//deletedkeys/KeyBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVka2V5cy9LZXlCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70703fb5-34c8-4592-b28d-8bb88ebf44a4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 21:59:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "178b93b7-9138-463d-bf10-9b775cc119d4" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "//deletedkeys/KeyBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVka2V5cy9LZXlCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "840d5c30-d1a9-44c9-9ea8-ec5bc49b77a1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:00:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "bf85968a-1fba-435f-93af-2987dcff6b04" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "//keys/restore?api-version=2016-10-01", + "EncodedRequestUri": "Ly9rZXlzL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"value\": \"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUppTlRjMk5ESTVaaTB5TlRZNExUUTFZbVV0WW1aaFlTMHpOMlZrTURkbVl6QmpPREVpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLk00Qzg3SE5zMTZqcFdwSkVUQ1dmZE5SUWcwNDV1ZU1hblA2NHNmcGtYaFpjVzBrVldNYVBjVmkwaHYxeXpWdTZ2bnAycHY1ejdfY204alR6WkQ3VVd3NllpVC0xZ1RsbFlGSS1tRWVpU2xuSHJMNnpVTEtONnBuR2p6UVdEUHhJb2c5Slh5bFFkSW9xdWxVX3NVcnN6SEttQWFSQS1xdVZmNFlZaElVbm94eW1pQjA5MkJ6Tm5BcFB1UllIQ0JsMUstRjQ5aW1UWk9BcnVHX1dEeGhKMUo3SEhJWEJzVElGTEpQX0ItOTVpS1A0SHNhTEpqREZBTmJxV3JoSC1OQXc1aWZDTWRsSlBMbTdsU0NJV3JsVVVZLVpPR2tpNnVUUm9kdUhjMGYza2lXOEhuUHJqYkkyRHd6am0zQWQ3dnMxMXpnMzBtZUNvU19ZTWtsb2VPM0RRUS5UWE1sNjNvYWREREc1dDd1WG5aLVRBLlFVeUhrY2JpZU95R21LTWdxUF9QTjIteTJDMW9MNDNneGNvQkxidkM0c0h0VmNoYWtQMU9lWmdwRll0My1UbjRscDNNak83ZFF0a09ZeXd0c080TE13TUFsMXdvM0RHSDNaNHhVd1BQdHJGSV9uaWg0Z1IxS0ZMdXVZVE9CdUlkQ3MtVFpreVZOV1FreUh6VUpkcUx5SlhoOUlUdDJVSDJwOEJVTVZnZU5mdU5ONWd6MVlxa1Q4Um9aWmFRUnNkdnZWalRWazE4cWpFbG5YZ0I0ckFGWWIzcGZNdzhJbjBhc0E4Rkotc1JHdEZPTFhTbWs5M2dHTnp0ZnJQMUxYalpyU19iQkduc3UzMWItSEZJR1hNX3drdzZQUjBlSGZ2dGQ5Z1ZQMWpvREdWV3R1OFBDTlp1ek90ZlRMRG9VWVFvYkU2dmVpVEdRVzEwdWRQOW15S2FxaGtjSHBnc0trVzN4VjdRTDFRSFg2UjRUT0VTY1F1Qm5vQ3J3UlN0RnpuY29Mb2tmREdXYmZiWUdsb3F5THo4Y0IyaVZERTM3eUZUQzJEY2dMeW9tYklUWklvUU9EUHIwcEdOa2Y3WU4ycHU1UVRBZXN0ZnRqWWtlbUhfNEZadFcteFcxT1YwUDU3THgzcGpGcVFyaTR5YW1kUHYtS2F5YWwyUVNmV1p3RE5rX3h1cTFxT2dlb0NWMGhwSVFuYXBLYzBvVG8tTFdqMk1IazBBbFhQdWhyUmM0UHktWGJ2NGFRUE9qY0puMkZTZmF5YkQzejNiSzVPMklrNm9WZ2NwNjNhWDk0UUJFTXJjbGlpalhDRXpXS1ZTUmNBQVAxbWxUSVJiYW5paVFuMHhJQ3hUcXM1VVlvSW1fcFJ0YVB6N08xUGd6V3F3M2d4Vi1sSUZEd3cyNU5TR3pqS3VfTk9zUE5WVWtpa2xmWHJOZEpqME5oMFVObHFRejg2TWpnVnNadDVWQkZ3Q2VHQUhhMjdHTXdhVkd3M0dwNXpxbDJFU1E4Q3l0b2JSYUxQZ1RJNURESncza3E4M2dsa0pqSndzcmpIQ3JXaEM4b2tSck9la3NLMU8zbmpuTnlSMkQ5VmE2S3N4V2RXYzg0Tkd4Z1JURVpyWXA0SFFDcl8zMGpQdU9DbUwtTXA2cnF0OG0wSW1VTkUxZWUtc2NCbE8xLWpHcjc2QktRdVZQMUpOV2o5MTRETFE4aDNvMlhDT0g1ZndMRmRiLUhJWkZfazQ3eWZqSENmbm9TSm5LdUdiV05RUDc0TzI1MlFPSlFCOHhFSmpJbHFRdXI1SmhldDFFUWowYjZ1WFZhMHh4cTRlWjdDb0tIQ1FfZmRPbnd3aTNpaXNiQXd0Z183YndrdnpwUG9pSW40ZDY5bVk3NHBRRURsYzBzbTY3ZGJ4LWxFQW5faTFmNUVNVGVSWFgtUG9xSmRZaGItanlCbnR0d0dUQnIzSkJUVGFZOFpIZmhJem9MdTA2N0lqVGFHNFltZHRwc2JTajVramR2b19wR2t4UkVoaUw1em03RWdiZXo0Ui1JaE11N2pNd2lNSjJKUU9fMF9oVG5oY3NYeXBzbEpWN3NWSVY4UmJkcTY1Uk40UGlZUzU5ZVRBVUxKOFFaaWRyaUFfbkY1czFwQTNpLXA4Z1Q2YWx3bldCV0wwLUp2U1AteW9BVk8zS0ZIOWVDVnpxZ0FLeDNrQVhiNTJLMEtCZGQ5aXdiVlZoTU1VR3Zpbi00eThDRWd1dVB1S01lVm5fbTV1WkJpZFpTRWxLWnhpUE9WS0NzTUdLUTkxT29XR1pLelVwYmJ5NVNyTDJ5bFZoT3ZPZWVaSXJndVFCM1hvNjZJa2NFQ3daMHV6Z29zVHRfSm5JZVpqVHFZTU1WYTQzTEtjQmZBdVMzTnp6akhvNEhGb2JaWFdGc1RZN1pZdUFid0JtWkFFbWZhWDE3SlRSVlRKa3E3STRnamFXa04zaHFPdHJHZ3R6bEJSc2lvbE5YSWdyaGl0em5HUEdlcVpZYW4wZ190Q3BoWnpIT0hwX1BwSjlhcGNNeUxHRVp6NU11cE1rRVdwQlUteEs5WDJJLTVRSUx1eGcxSXF4aVNOLTZRTmlyXzdJdFhPT09GMVpyemMtNkRKMVpBaS1EdjRvRDlBcFM3c1lQQXNVQ1VYMU53Y2JkMVM2YkZlWEpwdDFzR0pUVE5jSFljV1pVUmxLZVlmNWpzVkZGMTczcHBiSG5NUnMtM3JWWkFrQzdnOUVrN3YxNFZpSEtqaHFfSlplZXJ2MFdKNHhpWExhVmIxZlN2azNQWXBTeGd5TDdtcF9sT3hpNS1GX1NQc3NVdTJwWnhYS1lqcG1wUDhnSHlKa1R6WGJ4SXJaWV9oMXBJNXFuSTZ4YTFqRkpiTUNuWUNRbHZTWWhIY1AycG1sM0FMeDBJNk9yUmY2Y25WNlUwWVNZWkcwemEtRXRKUU1nX3dHU2lMcV9LNk4yRWNUVDRFR1otZTJzN0VqLUQtVWxoLUthb19MS2k0Q2czaTEyYnNZRnBZcDROU1JlWnJVQjNHZEZrOGhhZWdQcVROdFhsR1IyWjNSd29SWHRkNXM0MnVxVC1fWlI1ZDBQclZRR1VNTUZ6Wk1Ga3E2Y1hNeXhzTjRXa283UGUyZW11Wl80ZkN6U2pFRmhpS0Rvel9ac3ZpZUZzUDZSdVFjQWtRM096R2xWYXpaYzl5ZUZjWDFCaWppQXg1OG5QMklNdmJDMVNPeDZJdnhRalZKU1NtdDI2c1dYTERTbjlpYWpkWUVTQmc4U0x5a0d3eDVMMUNzWEs2MFBtWEgwUGRkRkktak9oTDhXT2UwclBWSnoycklOeFhFMzVMRVFKaFBKY19qUFVONU9pV2d0YWd6Y2xJNjM2TWIwZFRYd0V4OWlHVURORXgzRmFJMEN5dW1UdURLNVJiaDFVdjNsVXhLSGdEcFJIX0JnYTh0a1RObHN4WDlmS0NVT2lqeVJiR3dzN0ZtWUZyYjdYMDJxYjU3bE9wZW1KbGVNSjBTbzRhWG5Yd1VTcTN3V0ZJTzRkVUN6dWZQRTloRkstYTVhRXVHVlk4Z2tsYzNJSVhsMHBxZXdSeVZJNDUzQWJBY2tXLU9WTUZCOGMwQ3hyMFZKWi1YUF9nLUd3YmpLWFRzUW44NlpPT0JjTFByUm9La3pRejRFamNjd1NBUTk0cko1Wm9YMmdFV3dEZTZTT0Etd283cnViSC1MLXdSck91Uk8zeUlVT0JrM1ZnLTRuLWlINjhSRkpVWkpLVTJmOG93TmVMUlBLV0xEVXBHUTJYSUphUXp2ZllIYThVeUR0bDQ2M3lOOElzN3djZ09ydmJlTXlMbVdJTDQ1WDl1TkNOVTRRaXFaRTM3dzFjUG1GOEhOSndwLXdBS2l2S29OMWZuR0xfT0xOMExBcnFxSV9PYUVFbWRVUUpCQVNQdS1JYWZNNE8xdGVVS1d6MGpjRjhockVwTkFNQnlrSUJmdUdCQ3NiRk5Qc1VwNENvWGlaZjBuWU5jMllrUnJDdnpHZXNpUzBOWXlvM3oyV2xoTnpkWU4xRG9DcS1Dd3hFb3V4dVphUGxVTW1zaFFJZUttMmFQT2dQTUIyd1NkWnlmUDEtMnZwNlN1c2lpbjJWYi1zcGdWMkcySXVqcWNNSFlnUnpJRFJrS0tHQklScFpsRDF6SlI2V3FjbkJ0Vjg0VlFGRG12NGFqMWRLUWM4Z2dhQ09NdVpicUtJQUhYcjhDRy1CbVpNM2pmb3o0YmVXbHZ0ZUJZWjJkaHB4ZXkwVzVYZ1hhaV9EYXl4U0ZxVmhOT2dkcFVuMVptRXFCVmVOSGNwWmxTTS0xU2dKallOREI4eVNIa2s5ZUhvSTV0QVAwMENfVWpjLUhoeFp3Zkxtem8tNWlmVDVoN1JvU2VWUjdxT2t2ZDhhd0RjU1FQNlA0UnltMEVsc0liRHY2TG81OXRXeFNlaGQwdTlJUE0tSnhmSElpSHJhWDVxc0l2WHhzYjI5MURTdl9GNy0yU25WS3hFZHY5bDhteFlrYTFGWGp4SEZvbFVoMmVIMFlMOHdwdVgwYTg0NXZoUzJvZ2dFYkNmZDJ5akowVHFOYTljeUlVaDFYVVVmS0RJT1BrQVNjdEdjbG90eE1vLWNfMkxTY3BKby13MlpiWlRfYXVURHJyeTN2V1V1VnNHMkNBa0pXVFlpRGloZjViMVc0VDlUM2VEZGJ3TEZjcHJDTE93Wjg0MlpMcGw0Njh4cDlwNThTa2s1aEtLV3h2YnBlTzhmdmctUjgxLU50QXVTWUtaZ2tNeFEwUlZUSkQwX052dE5yWXRzMUhZQ01NUzBUdkZZMzhweUl1aHVFN21ZNko3Z3ljckt5c2RYVkFYQTdjYzJNVUlJYkhVT3BlcEdZWlJQVzAyeHdoQUZlbmU1eHpIb3BjWkRlcTFvYl9vUDZtLUdFZEo4RzZqb2JQdmlEaW91Z0wweGc0d21RSkNjbnQ0UU5LdmlDQWZzNzhfWm5qUmNyQkU2LTJBUkRURGpwVkxKTzRPVTRVWWdzLUM2TGw3TktVUUNIWUNCNWlqM3VLTDV4eWluX2wxeFYya1VvR3g0TjdXTl93VEhpR1g2ejlMWEdocXY0bmhyNXBSLVFET01wTVhMU2VPeDEycko4OU9rYzVDZDJfbjV4cTJHUy1BVkFiTVd0ZGtjT1pSamJCSWE2VzhxNGFnLTNZbnZTSlkyaGljU2FNb0otY2dzUTVydC1fai1xcnQzMXJiRHc4cnpGazRleV9pNHZXbjk0bF9xODRGYmlKRVU4WFNaRnRtT0ZURkU1QnVoMm11U01TZ2hIMm5ZSFA0Q1ZDVzYtQU94cnU1UWlEZ0c5SkhRMTYyOTI5dFN2YXFjaV9ZSUVwVXU2YnBGS0RwQ1NmZUVMc2s1NVNMRnZHZnIzRkkzbmtNOFVYbkhUMGpNUnpLQ2VSTUliNUdYc2tJSEZCaE5BWElqd1pCRW1DZWphZlc4Wmh0SnFPOWxVOGc0a2hxRnFEUzhmcUFvU2Nub2U0VGZwbW1hUlFPMEViVUM2dk1Xdno4b091ZFdxbFBLN2NCVjYxd09uakNBaFFKenRkTHFzUF9kYkV4ZERvOUVqaVplYVB0NWNsOXJ4bEY1MzM3WFB5OUo4ZnI2M1JoYlV3aGdUSUxTWFh1NEpvOEVrZk5ZVjk2MjA2SW43WWE5SkVnZUNKOWp5anhkNTBabGhDaWtOamFaTDlpTlNYNnd5cmtDWlo3SUpyQ0gzbEd4Zl8wRHB1SWxMdzZ0Zm9GNXlTaDdHVnBYYy1xM3o3S3FDQ2E0RjN6aEU2WHN3WVE5SGdrVjdwRkc4Q0tDaEp4andoSVVjS2NLSlp3MkhSLW92VDVJTi04ZjhrQi1xaTBOeGgxWTIzeWRoVE1NVHRqN1pLNGZCNWJKRlY2WmduNWtiTXR0d2FOcWVjNnRZRmEzcVJnbUtoZW1YVTVsNjJyZ09nbkJlbjNCZEZ5MlJXVjVRSzZaeW9WQV94N0M5UGVFcVVLUTloLWQtb3NXVVUzVkJsRUgzSDh5UEs5aXlXWFhseDFZeC1xMmFGVFFlTlhqTW40TWhwMkRXZS1OUzFxTEFJM21zVmRKTVA4S0p5R3pJY3RfaGJOV2NSelhKUE5tRklaSWhjbTJJVU04Zml3aTZNcGhWdDZXZjVzQjZVdUFmVl82R1E2QlVwaENwclN6allUcTlEYVdkSnJYTUdvMW9TQ3FyRm5ZWGtxTkpLdWNFeURIU3dZZlVjc2RYZGZKMjFnYmUwUWF0X092dnJzcFpkbm8wdDhQY1NWQU5YeGdOVmhLRDgzTHphWEJrZ1lpbWZpQ3NmaExXbm9lQkZNbXhocC1MU0xJOUh0UU5oLVNxQWJBb0JyV05WUXNNeGIxaUYyTzhxYkJfWTBOeE5EYXZCU0l3QWNTOHRzUHVrd2RlUWNpV0tmZ2tJWng3c3JvWVViNE1zUUU1Q2ZoN0cxb0Vpc1dEX2hTNEFOVmFLbnJMeWNmZm5uM2UxenA0b3lvak9KVFJ0M1l6OUZCZDVLSjRRYjJWblh1MVJYNXgxd3JsYVZtY1B5eXlidk8zbTBFc3l3TkV6R001RTBLbFZiZ2NHTE9LT2NrbzZDbVlXVnh3RW5fSG9Sdmc5R3V6aEpjVzFKbXdoU29LeEFNUUpaRDNucGNkMjg4cWF2SUl5NHRHdTNtUkFCU1FRQmR5eUlVNmF3WWIxUjVhTEQ1YXhmUnlzZzl0OThBeDNLVGs5QlpFanFrcTVKXzRHckNtbzhNbndBVzhxUWN6U3VmNDNUbzVhWDBjVGFYb3p5SVdZM3FIMmNZZndYelMzZzFQT3RzU0FlNG5oaUtnVkxCYzh6MjZBV2F5RVZMX0htMGZXMlBGZGwzVVV3WU1KODllMmdhZGZCNTUyVnJuU2tmblBWSkhaUFMydHJuMGxCNlhhVTJOUDRoT2g0OUJUMTRpankwNUZiZHR0U29wMm5PYVNubmQ5NUV2dnhWdzRCYTd2S1hIblZvMHJoZlhWS2VSOHJUOFFRNU44c3NnY0xyLXRrM0U4WlhRZURuejZObkxVbUFpaDBFeTNMaC1XZzNVSmdKb1FiNDM1S1ZBX3ZKcFV1SnY0SmxSeHV4dVJLcHVYS2x5TEh4SjhQb1pUOGlzT1d6MFdJWk5xdWthdHY0TW5Nd09fbEhZa1RJLTZtQ3BwSHdkUkhrdk5ReWNZUDN5SzNXNVl4bU5LY1p4V1hQOFlxQ2F4UFhfZEJUWmNBOE0xb1FfUHpvaU5fRXlYdWx6VU1iR0J1UldoMklqWVdkdHdDT3c5SHQ5bTBlelQzZEk3M0ZBV0dXZkdJZXg4UC1sLXJBYUtLQ1A5RW81Slc3dGQ4T2s3bU5ES1p0ZjloSkNWNFNpSEhVUzNxdUZNVWVRMnQ2UHdUN1B4US1uMDk3Ri1zZ0ZzaTlJUmIzeEZsaHVHaUJpX1o1ckR5UUlsV0h6QmFUZ29iSmg0UTB5UHFhSExhM2ROOFVLRUxRblFXc2RCWHhmN2I1RUg1UTBranJ0bGVhUEVhOWhqd1Z6RTZDNk9OOWE4ZHpkSzVVenhsY0FieEZoZ3RaZVAwZFdkNXNET0I3bzhCbnFpYTllczNjZ192S2FSaXZvd3YySUItckxEWDJESGpPU2ZlNUR4TEpGQUNrVmtZM09hX1pEVDN1YmVBT0FJZ2dOUFRjVEpIRm9rTzFzbVlxN21lRlllUkpCWWpNMmVmRTJpWF9iNnRxbG42ZFZidENlOGhiRTJaYlVHZ0pzYjVRVHczWWlSb3BvREJZR1RCWVgwTXRMNE9GcUVCbTg5Sm1iaERzMG1SZFlvcmR0d2FndVVXRVFhTi1uNDNLVFdQeWxSR3k2emRNWE5KTWstWXE4NlF2MGMySV90c2pPa2tBakg3VEJIQVpsZVJLcFNlYXo2UEpJWHpmTzViV3NabGhWZnN0NUFYUjRNVWZBLXEtb3NFSHg0eEpFM2VjdmFxZGhkcnJoOVBLMC1zbl91MDBMV0hzcEJnd1pWNDVGc0RteXJGaHF6ZDFOQXRFOXlpVzYzXzJ0Q2pYVXVVcHpqYnN3MlhHaEtlVTZmQmkwTVFsalNUTEM3VFhtRkJFRy1OYjdXQUpFWmwtU181a0ZzdnZDdWJHeG5ZNVNOZ1AyNmJaSUYtX2xKSDk5WHk2YzhBdFhleUJydFh6emxGZmVlbjVBYjRhM2NTTlB6YnR5aGZfVG1yVWZJdG5SZ0JhOU1ORTB6M0ZDT29MUkQwMXlqQS1MdnMxc1ozRWdwZHMzOGhZcVdNTTNGUjN0MGtFZDhUWXRZcmNFdVVVQmNmVmJWdW9NTGxoRm5XYm5XNXRuWWtOVlU5SGRoNkdya04wdXJ6UzZKdnZIRTBPUlA2UDN1ME9fVWVlYTQzbnBBMGhwNmw0UFBoTnVRM21RRGRaX0pzRlEtcTJFdUpFOHRUdVVkdXczVmZhNkNDZlhiUVNlUW9JUWVWdHRYS2t1aUZoN042QXVXeXlsaDlia1V5LURMWmgtZUxsRnpXb2xES1hWdW9qUDJiZy1Gb1B3b0lWVTNxVVJoazVTQXlCT2FSM2pVZmx4YnAtUGRLNVJBcWJ1SVc3Y0lXUGx1amd5NXBVdVROVjJ3Mnlxa19VNTJGdzNEYXlZNXBzaEpWdXF1MFJiZHd3UGZhYXRvejVpUXVPblo2VjdDQWhvSW9oUjAzanVHLWFNZTlKYXQ4NGJ5WENPVF9waEU2OHdxTVpzaWV2VGs2NzRhZXlvckdkYk9BbjBTQWpjR2YwMnpWVWtrRWlQNkRudnptRXA1NEZlSlR2Y285VHlLUGlVUmU2SzdTR0hxREw1MEp0bjFFWVdhVGtqeHhRVXp1a21MWURLcHpGZFVBSUZadktGR1BTRmVEbFpTQ25IR2FlVWR6blFfWnhycFZlOG1UZVpJZTZ0ejg2QzdmUGFDX0hXWXZJLXNrRGoxQ2Y4Rm9FNzk2bEEwRWIzZk5ISkhXV2R6OVZBYngwSTNEcmJfd0JRWWFsdTBZa2FUUnI2dklyb25nanBOLU03VXV1dWdoRnFsaFVmR0JpTGh2M2lxcWRFWTl4X1RKWFc0anVfNVBqcXNtTU9VT1ltMG1NdnZTbGgzUDFQVGJCRlE1WXZvOVZWcV92bTNRWDhTOW45WDhLLXNFd1VVRUxjM05RcFVXNEp6c0t5dWFYVTNNcE5RenZxZ1UwWVp1MldoWFBZLWV5cUxWVXJFbXNjMWgtay0tSFhFT3BHOVNZemd3Q090RGRHcHNrdXdlVVR2eUluRXpaTlBMWEZ3Skx4S25oTVRwMElORG1tbFN2WVdWRzZhaEFHUF9OUlpBUHBsQVQ5NF9HUUNlUmVzUjZIbnN2MHc2TWVaYjU1MU5SSHE1dEdmYWd0ZGhiZnVjN0Q3Z2tJcEtzMEJZLVZPbVJSckNQR3V5YnhBeE9NbGVuRnAyUE9aTUY5Mk9CMFJhTi1ZTE5hVG9nZEtJTTlKcnNMVS1nZlJPZ1dFanZMSGhEYVd0dlFfLVFqMVZCUW1URno3c3NLSmJoNG9YQmZXZ1poTm1VeUUyWWREdnhQaWQzRDZEektMSlU0azNlUEJGUUZvVXo1a1BTQWhfc0FDbkNMU1ctaU43ZG1GUFRrYURlZEFnTHJuM3AwNmxKWE5XNERDT1ExLTN4YXVoQkdHS3RBSXFwVE82VDFlcmx1R09wOGszbnh2RF9QSlVTc1BQUzVpd2YxSW9fRUcxSUdPRXRFbHdSa1Fjb3ZLZFltMTAzUUFyWGt6STlqdjhRRXRsdHBQbWdENlh0YVVWVWtjTTY5RXg4emZaUzlocy1aa0xfbnpfOXJWQTNsTTlvam1lLUVNZXJTd05WZVBaLWVwUEJVWXlHbkY2eF9CUU9LWWxjV3BKaTdncy1mcHZIZnlqVVlQUW1QZjVkZlhEQ19xVzJUMG1EaEI0Y05SLUdnY09PQ3BjaUZoby15OWVaWWJ4bU1CTVA4U3NPNk44QzVtUS1YRFRQdVloZGN2c1QtcG0zVlF5ZGZWZDY4TmNXeVY1NGVfWlRtSl90ZW9LNk5OUHEtZFloNEVvbElVemVYc05MbVhPX1dQZzh6dmlSZlRrNGtZdjJobUZqcFlOdUdVd2s5NVdsYkszWGJMaDRmVEpvTHB6RGxrVy1JUFdrblVMUE9FMmQzTUJiZDFpMHZveEVuRjh5eXA2aXpqTmhQRFpuWmFuWHFycXVpNlBfWXpQZS1jYmxoRjl5VnpFTEEwbkJUREJhNUgxX201NWRtNDczNEVRclFfOXo0Y2dCeTlDYndaa000cVJ4c0syX1NUYnJKRTNUUG5hVzQzOGF2bENHekZ0MzBUSlY2bGx5U2d3RVBXNkk3b0w5UWpKQ3oyTVVVWnRvUjZaYXl1U3duQS5jNkhoeG92Nk12Vm1rd1ljSE1yZkxR\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "10671" + ], + "x-ms-client-request-id": [ + "5bbb5041-3b13-46f0-8734-ab1cdfe5728c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"Conflict\",\r\n \"message\": \"Conflict while restoring key https://kv-sdk-test.vault-int.azure-int.net/keys/KeyBackupRestoreTest/b1634f7d6662425d967888b6abb3f413 - key already exists or concurrent access\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 21:59:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "5afd03ed-160c-405f-8c3f-9cd7cb90fb21" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "//keys/restore?api-version=2016-10-01", + "EncodedRequestUri": "Ly9rZXlzL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"value\": \"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUppTlRjMk5ESTVaaTB5TlRZNExUUTFZbVV0WW1aaFlTMHpOMlZrTURkbVl6QmpPREVpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLk00Qzg3SE5zMTZqcFdwSkVUQ1dmZE5SUWcwNDV1ZU1hblA2NHNmcGtYaFpjVzBrVldNYVBjVmkwaHYxeXpWdTZ2bnAycHY1ejdfY204alR6WkQ3VVd3NllpVC0xZ1RsbFlGSS1tRWVpU2xuSHJMNnpVTEtONnBuR2p6UVdEUHhJb2c5Slh5bFFkSW9xdWxVX3NVcnN6SEttQWFSQS1xdVZmNFlZaElVbm94eW1pQjA5MkJ6Tm5BcFB1UllIQ0JsMUstRjQ5aW1UWk9BcnVHX1dEeGhKMUo3SEhJWEJzVElGTEpQX0ItOTVpS1A0SHNhTEpqREZBTmJxV3JoSC1OQXc1aWZDTWRsSlBMbTdsU0NJV3JsVVVZLVpPR2tpNnVUUm9kdUhjMGYza2lXOEhuUHJqYkkyRHd6am0zQWQ3dnMxMXpnMzBtZUNvU19ZTWtsb2VPM0RRUS5UWE1sNjNvYWREREc1dDd1WG5aLVRBLlFVeUhrY2JpZU95R21LTWdxUF9QTjIteTJDMW9MNDNneGNvQkxidkM0c0h0VmNoYWtQMU9lWmdwRll0My1UbjRscDNNak83ZFF0a09ZeXd0c080TE13TUFsMXdvM0RHSDNaNHhVd1BQdHJGSV9uaWg0Z1IxS0ZMdXVZVE9CdUlkQ3MtVFpreVZOV1FreUh6VUpkcUx5SlhoOUlUdDJVSDJwOEJVTVZnZU5mdU5ONWd6MVlxa1Q4Um9aWmFRUnNkdnZWalRWazE4cWpFbG5YZ0I0ckFGWWIzcGZNdzhJbjBhc0E4Rkotc1JHdEZPTFhTbWs5M2dHTnp0ZnJQMUxYalpyU19iQkduc3UzMWItSEZJR1hNX3drdzZQUjBlSGZ2dGQ5Z1ZQMWpvREdWV3R1OFBDTlp1ek90ZlRMRG9VWVFvYkU2dmVpVEdRVzEwdWRQOW15S2FxaGtjSHBnc0trVzN4VjdRTDFRSFg2UjRUT0VTY1F1Qm5vQ3J3UlN0RnpuY29Mb2tmREdXYmZiWUdsb3F5THo4Y0IyaVZERTM3eUZUQzJEY2dMeW9tYklUWklvUU9EUHIwcEdOa2Y3WU4ycHU1UVRBZXN0ZnRqWWtlbUhfNEZadFcteFcxT1YwUDU3THgzcGpGcVFyaTR5YW1kUHYtS2F5YWwyUVNmV1p3RE5rX3h1cTFxT2dlb0NWMGhwSVFuYXBLYzBvVG8tTFdqMk1IazBBbFhQdWhyUmM0UHktWGJ2NGFRUE9qY0puMkZTZmF5YkQzejNiSzVPMklrNm9WZ2NwNjNhWDk0UUJFTXJjbGlpalhDRXpXS1ZTUmNBQVAxbWxUSVJiYW5paVFuMHhJQ3hUcXM1VVlvSW1fcFJ0YVB6N08xUGd6V3F3M2d4Vi1sSUZEd3cyNU5TR3pqS3VfTk9zUE5WVWtpa2xmWHJOZEpqME5oMFVObHFRejg2TWpnVnNadDVWQkZ3Q2VHQUhhMjdHTXdhVkd3M0dwNXpxbDJFU1E4Q3l0b2JSYUxQZ1RJNURESncza3E4M2dsa0pqSndzcmpIQ3JXaEM4b2tSck9la3NLMU8zbmpuTnlSMkQ5VmE2S3N4V2RXYzg0Tkd4Z1JURVpyWXA0SFFDcl8zMGpQdU9DbUwtTXA2cnF0OG0wSW1VTkUxZWUtc2NCbE8xLWpHcjc2QktRdVZQMUpOV2o5MTRETFE4aDNvMlhDT0g1ZndMRmRiLUhJWkZfazQ3eWZqSENmbm9TSm5LdUdiV05RUDc0TzI1MlFPSlFCOHhFSmpJbHFRdXI1SmhldDFFUWowYjZ1WFZhMHh4cTRlWjdDb0tIQ1FfZmRPbnd3aTNpaXNiQXd0Z183YndrdnpwUG9pSW40ZDY5bVk3NHBRRURsYzBzbTY3ZGJ4LWxFQW5faTFmNUVNVGVSWFgtUG9xSmRZaGItanlCbnR0d0dUQnIzSkJUVGFZOFpIZmhJem9MdTA2N0lqVGFHNFltZHRwc2JTajVramR2b19wR2t4UkVoaUw1em03RWdiZXo0Ui1JaE11N2pNd2lNSjJKUU9fMF9oVG5oY3NYeXBzbEpWN3NWSVY4UmJkcTY1Uk40UGlZUzU5ZVRBVUxKOFFaaWRyaUFfbkY1czFwQTNpLXA4Z1Q2YWx3bldCV0wwLUp2U1AteW9BVk8zS0ZIOWVDVnpxZ0FLeDNrQVhiNTJLMEtCZGQ5aXdiVlZoTU1VR3Zpbi00eThDRWd1dVB1S01lVm5fbTV1WkJpZFpTRWxLWnhpUE9WS0NzTUdLUTkxT29XR1pLelVwYmJ5NVNyTDJ5bFZoT3ZPZWVaSXJndVFCM1hvNjZJa2NFQ3daMHV6Z29zVHRfSm5JZVpqVHFZTU1WYTQzTEtjQmZBdVMzTnp6akhvNEhGb2JaWFdGc1RZN1pZdUFid0JtWkFFbWZhWDE3SlRSVlRKa3E3STRnamFXa04zaHFPdHJHZ3R6bEJSc2lvbE5YSWdyaGl0em5HUEdlcVpZYW4wZ190Q3BoWnpIT0hwX1BwSjlhcGNNeUxHRVp6NU11cE1rRVdwQlUteEs5WDJJLTVRSUx1eGcxSXF4aVNOLTZRTmlyXzdJdFhPT09GMVpyemMtNkRKMVpBaS1EdjRvRDlBcFM3c1lQQXNVQ1VYMU53Y2JkMVM2YkZlWEpwdDFzR0pUVE5jSFljV1pVUmxLZVlmNWpzVkZGMTczcHBiSG5NUnMtM3JWWkFrQzdnOUVrN3YxNFZpSEtqaHFfSlplZXJ2MFdKNHhpWExhVmIxZlN2azNQWXBTeGd5TDdtcF9sT3hpNS1GX1NQc3NVdTJwWnhYS1lqcG1wUDhnSHlKa1R6WGJ4SXJaWV9oMXBJNXFuSTZ4YTFqRkpiTUNuWUNRbHZTWWhIY1AycG1sM0FMeDBJNk9yUmY2Y25WNlUwWVNZWkcwemEtRXRKUU1nX3dHU2lMcV9LNk4yRWNUVDRFR1otZTJzN0VqLUQtVWxoLUthb19MS2k0Q2czaTEyYnNZRnBZcDROU1JlWnJVQjNHZEZrOGhhZWdQcVROdFhsR1IyWjNSd29SWHRkNXM0MnVxVC1fWlI1ZDBQclZRR1VNTUZ6Wk1Ga3E2Y1hNeXhzTjRXa283UGUyZW11Wl80ZkN6U2pFRmhpS0Rvel9ac3ZpZUZzUDZSdVFjQWtRM096R2xWYXpaYzl5ZUZjWDFCaWppQXg1OG5QMklNdmJDMVNPeDZJdnhRalZKU1NtdDI2c1dYTERTbjlpYWpkWUVTQmc4U0x5a0d3eDVMMUNzWEs2MFBtWEgwUGRkRkktak9oTDhXT2UwclBWSnoycklOeFhFMzVMRVFKaFBKY19qUFVONU9pV2d0YWd6Y2xJNjM2TWIwZFRYd0V4OWlHVURORXgzRmFJMEN5dW1UdURLNVJiaDFVdjNsVXhLSGdEcFJIX0JnYTh0a1RObHN4WDlmS0NVT2lqeVJiR3dzN0ZtWUZyYjdYMDJxYjU3bE9wZW1KbGVNSjBTbzRhWG5Yd1VTcTN3V0ZJTzRkVUN6dWZQRTloRkstYTVhRXVHVlk4Z2tsYzNJSVhsMHBxZXdSeVZJNDUzQWJBY2tXLU9WTUZCOGMwQ3hyMFZKWi1YUF9nLUd3YmpLWFRzUW44NlpPT0JjTFByUm9La3pRejRFamNjd1NBUTk0cko1Wm9YMmdFV3dEZTZTT0Etd283cnViSC1MLXdSck91Uk8zeUlVT0JrM1ZnLTRuLWlINjhSRkpVWkpLVTJmOG93TmVMUlBLV0xEVXBHUTJYSUphUXp2ZllIYThVeUR0bDQ2M3lOOElzN3djZ09ydmJlTXlMbVdJTDQ1WDl1TkNOVTRRaXFaRTM3dzFjUG1GOEhOSndwLXdBS2l2S29OMWZuR0xfT0xOMExBcnFxSV9PYUVFbWRVUUpCQVNQdS1JYWZNNE8xdGVVS1d6MGpjRjhockVwTkFNQnlrSUJmdUdCQ3NiRk5Qc1VwNENvWGlaZjBuWU5jMllrUnJDdnpHZXNpUzBOWXlvM3oyV2xoTnpkWU4xRG9DcS1Dd3hFb3V4dVphUGxVTW1zaFFJZUttMmFQT2dQTUIyd1NkWnlmUDEtMnZwNlN1c2lpbjJWYi1zcGdWMkcySXVqcWNNSFlnUnpJRFJrS0tHQklScFpsRDF6SlI2V3FjbkJ0Vjg0VlFGRG12NGFqMWRLUWM4Z2dhQ09NdVpicUtJQUhYcjhDRy1CbVpNM2pmb3o0YmVXbHZ0ZUJZWjJkaHB4ZXkwVzVYZ1hhaV9EYXl4U0ZxVmhOT2dkcFVuMVptRXFCVmVOSGNwWmxTTS0xU2dKallOREI4eVNIa2s5ZUhvSTV0QVAwMENfVWpjLUhoeFp3Zkxtem8tNWlmVDVoN1JvU2VWUjdxT2t2ZDhhd0RjU1FQNlA0UnltMEVsc0liRHY2TG81OXRXeFNlaGQwdTlJUE0tSnhmSElpSHJhWDVxc0l2WHhzYjI5MURTdl9GNy0yU25WS3hFZHY5bDhteFlrYTFGWGp4SEZvbFVoMmVIMFlMOHdwdVgwYTg0NXZoUzJvZ2dFYkNmZDJ5akowVHFOYTljeUlVaDFYVVVmS0RJT1BrQVNjdEdjbG90eE1vLWNfMkxTY3BKby13MlpiWlRfYXVURHJyeTN2V1V1VnNHMkNBa0pXVFlpRGloZjViMVc0VDlUM2VEZGJ3TEZjcHJDTE93Wjg0MlpMcGw0Njh4cDlwNThTa2s1aEtLV3h2YnBlTzhmdmctUjgxLU50QXVTWUtaZ2tNeFEwUlZUSkQwX052dE5yWXRzMUhZQ01NUzBUdkZZMzhweUl1aHVFN21ZNko3Z3ljckt5c2RYVkFYQTdjYzJNVUlJYkhVT3BlcEdZWlJQVzAyeHdoQUZlbmU1eHpIb3BjWkRlcTFvYl9vUDZtLUdFZEo4RzZqb2JQdmlEaW91Z0wweGc0d21RSkNjbnQ0UU5LdmlDQWZzNzhfWm5qUmNyQkU2LTJBUkRURGpwVkxKTzRPVTRVWWdzLUM2TGw3TktVUUNIWUNCNWlqM3VLTDV4eWluX2wxeFYya1VvR3g0TjdXTl93VEhpR1g2ejlMWEdocXY0bmhyNXBSLVFET01wTVhMU2VPeDEycko4OU9rYzVDZDJfbjV4cTJHUy1BVkFiTVd0ZGtjT1pSamJCSWE2VzhxNGFnLTNZbnZTSlkyaGljU2FNb0otY2dzUTVydC1fai1xcnQzMXJiRHc4cnpGazRleV9pNHZXbjk0bF9xODRGYmlKRVU4WFNaRnRtT0ZURkU1QnVoMm11U01TZ2hIMm5ZSFA0Q1ZDVzYtQU94cnU1UWlEZ0c5SkhRMTYyOTI5dFN2YXFjaV9ZSUVwVXU2YnBGS0RwQ1NmZUVMc2s1NVNMRnZHZnIzRkkzbmtNOFVYbkhUMGpNUnpLQ2VSTUliNUdYc2tJSEZCaE5BWElqd1pCRW1DZWphZlc4Wmh0SnFPOWxVOGc0a2hxRnFEUzhmcUFvU2Nub2U0VGZwbW1hUlFPMEViVUM2dk1Xdno4b091ZFdxbFBLN2NCVjYxd09uakNBaFFKenRkTHFzUF9kYkV4ZERvOUVqaVplYVB0NWNsOXJ4bEY1MzM3WFB5OUo4ZnI2M1JoYlV3aGdUSUxTWFh1NEpvOEVrZk5ZVjk2MjA2SW43WWE5SkVnZUNKOWp5anhkNTBabGhDaWtOamFaTDlpTlNYNnd5cmtDWlo3SUpyQ0gzbEd4Zl8wRHB1SWxMdzZ0Zm9GNXlTaDdHVnBYYy1xM3o3S3FDQ2E0RjN6aEU2WHN3WVE5SGdrVjdwRkc4Q0tDaEp4andoSVVjS2NLSlp3MkhSLW92VDVJTi04ZjhrQi1xaTBOeGgxWTIzeWRoVE1NVHRqN1pLNGZCNWJKRlY2WmduNWtiTXR0d2FOcWVjNnRZRmEzcVJnbUtoZW1YVTVsNjJyZ09nbkJlbjNCZEZ5MlJXVjVRSzZaeW9WQV94N0M5UGVFcVVLUTloLWQtb3NXVVUzVkJsRUgzSDh5UEs5aXlXWFhseDFZeC1xMmFGVFFlTlhqTW40TWhwMkRXZS1OUzFxTEFJM21zVmRKTVA4S0p5R3pJY3RfaGJOV2NSelhKUE5tRklaSWhjbTJJVU04Zml3aTZNcGhWdDZXZjVzQjZVdUFmVl82R1E2QlVwaENwclN6allUcTlEYVdkSnJYTUdvMW9TQ3FyRm5ZWGtxTkpLdWNFeURIU3dZZlVjc2RYZGZKMjFnYmUwUWF0X092dnJzcFpkbm8wdDhQY1NWQU5YeGdOVmhLRDgzTHphWEJrZ1lpbWZpQ3NmaExXbm9lQkZNbXhocC1MU0xJOUh0UU5oLVNxQWJBb0JyV05WUXNNeGIxaUYyTzhxYkJfWTBOeE5EYXZCU0l3QWNTOHRzUHVrd2RlUWNpV0tmZ2tJWng3c3JvWVViNE1zUUU1Q2ZoN0cxb0Vpc1dEX2hTNEFOVmFLbnJMeWNmZm5uM2UxenA0b3lvak9KVFJ0M1l6OUZCZDVLSjRRYjJWblh1MVJYNXgxd3JsYVZtY1B5eXlidk8zbTBFc3l3TkV6R001RTBLbFZiZ2NHTE9LT2NrbzZDbVlXVnh3RW5fSG9Sdmc5R3V6aEpjVzFKbXdoU29LeEFNUUpaRDNucGNkMjg4cWF2SUl5NHRHdTNtUkFCU1FRQmR5eUlVNmF3WWIxUjVhTEQ1YXhmUnlzZzl0OThBeDNLVGs5QlpFanFrcTVKXzRHckNtbzhNbndBVzhxUWN6U3VmNDNUbzVhWDBjVGFYb3p5SVdZM3FIMmNZZndYelMzZzFQT3RzU0FlNG5oaUtnVkxCYzh6MjZBV2F5RVZMX0htMGZXMlBGZGwzVVV3WU1KODllMmdhZGZCNTUyVnJuU2tmblBWSkhaUFMydHJuMGxCNlhhVTJOUDRoT2g0OUJUMTRpankwNUZiZHR0U29wMm5PYVNubmQ5NUV2dnhWdzRCYTd2S1hIblZvMHJoZlhWS2VSOHJUOFFRNU44c3NnY0xyLXRrM0U4WlhRZURuejZObkxVbUFpaDBFeTNMaC1XZzNVSmdKb1FiNDM1S1ZBX3ZKcFV1SnY0SmxSeHV4dVJLcHVYS2x5TEh4SjhQb1pUOGlzT1d6MFdJWk5xdWthdHY0TW5Nd09fbEhZa1RJLTZtQ3BwSHdkUkhrdk5ReWNZUDN5SzNXNVl4bU5LY1p4V1hQOFlxQ2F4UFhfZEJUWmNBOE0xb1FfUHpvaU5fRXlYdWx6VU1iR0J1UldoMklqWVdkdHdDT3c5SHQ5bTBlelQzZEk3M0ZBV0dXZkdJZXg4UC1sLXJBYUtLQ1A5RW81Slc3dGQ4T2s3bU5ES1p0ZjloSkNWNFNpSEhVUzNxdUZNVWVRMnQ2UHdUN1B4US1uMDk3Ri1zZ0ZzaTlJUmIzeEZsaHVHaUJpX1o1ckR5UUlsV0h6QmFUZ29iSmg0UTB5UHFhSExhM2ROOFVLRUxRblFXc2RCWHhmN2I1RUg1UTBranJ0bGVhUEVhOWhqd1Z6RTZDNk9OOWE4ZHpkSzVVenhsY0FieEZoZ3RaZVAwZFdkNXNET0I3bzhCbnFpYTllczNjZ192S2FSaXZvd3YySUItckxEWDJESGpPU2ZlNUR4TEpGQUNrVmtZM09hX1pEVDN1YmVBT0FJZ2dOUFRjVEpIRm9rTzFzbVlxN21lRlllUkpCWWpNMmVmRTJpWF9iNnRxbG42ZFZidENlOGhiRTJaYlVHZ0pzYjVRVHczWWlSb3BvREJZR1RCWVgwTXRMNE9GcUVCbTg5Sm1iaERzMG1SZFlvcmR0d2FndVVXRVFhTi1uNDNLVFdQeWxSR3k2emRNWE5KTWstWXE4NlF2MGMySV90c2pPa2tBakg3VEJIQVpsZVJLcFNlYXo2UEpJWHpmTzViV3NabGhWZnN0NUFYUjRNVWZBLXEtb3NFSHg0eEpFM2VjdmFxZGhkcnJoOVBLMC1zbl91MDBMV0hzcEJnd1pWNDVGc0RteXJGaHF6ZDFOQXRFOXlpVzYzXzJ0Q2pYVXVVcHpqYnN3MlhHaEtlVTZmQmkwTVFsalNUTEM3VFhtRkJFRy1OYjdXQUpFWmwtU181a0ZzdnZDdWJHeG5ZNVNOZ1AyNmJaSUYtX2xKSDk5WHk2YzhBdFhleUJydFh6emxGZmVlbjVBYjRhM2NTTlB6YnR5aGZfVG1yVWZJdG5SZ0JhOU1ORTB6M0ZDT29MUkQwMXlqQS1MdnMxc1ozRWdwZHMzOGhZcVdNTTNGUjN0MGtFZDhUWXRZcmNFdVVVQmNmVmJWdW9NTGxoRm5XYm5XNXRuWWtOVlU5SGRoNkdya04wdXJ6UzZKdnZIRTBPUlA2UDN1ME9fVWVlYTQzbnBBMGhwNmw0UFBoTnVRM21RRGRaX0pzRlEtcTJFdUpFOHRUdVVkdXczVmZhNkNDZlhiUVNlUW9JUWVWdHRYS2t1aUZoN042QXVXeXlsaDlia1V5LURMWmgtZUxsRnpXb2xES1hWdW9qUDJiZy1Gb1B3b0lWVTNxVVJoazVTQXlCT2FSM2pVZmx4YnAtUGRLNVJBcWJ1SVc3Y0lXUGx1amd5NXBVdVROVjJ3Mnlxa19VNTJGdzNEYXlZNXBzaEpWdXF1MFJiZHd3UGZhYXRvejVpUXVPblo2VjdDQWhvSW9oUjAzanVHLWFNZTlKYXQ4NGJ5WENPVF9waEU2OHdxTVpzaWV2VGs2NzRhZXlvckdkYk9BbjBTQWpjR2YwMnpWVWtrRWlQNkRudnptRXA1NEZlSlR2Y285VHlLUGlVUmU2SzdTR0hxREw1MEp0bjFFWVdhVGtqeHhRVXp1a21MWURLcHpGZFVBSUZadktGR1BTRmVEbFpTQ25IR2FlVWR6blFfWnhycFZlOG1UZVpJZTZ0ejg2QzdmUGFDX0hXWXZJLXNrRGoxQ2Y4Rm9FNzk2bEEwRWIzZk5ISkhXV2R6OVZBYngwSTNEcmJfd0JRWWFsdTBZa2FUUnI2dklyb25nanBOLU03VXV1dWdoRnFsaFVmR0JpTGh2M2lxcWRFWTl4X1RKWFc0anVfNVBqcXNtTU9VT1ltMG1NdnZTbGgzUDFQVGJCRlE1WXZvOVZWcV92bTNRWDhTOW45WDhLLXNFd1VVRUxjM05RcFVXNEp6c0t5dWFYVTNNcE5RenZxZ1UwWVp1MldoWFBZLWV5cUxWVXJFbXNjMWgtay0tSFhFT3BHOVNZemd3Q090RGRHcHNrdXdlVVR2eUluRXpaTlBMWEZ3Skx4S25oTVRwMElORG1tbFN2WVdWRzZhaEFHUF9OUlpBUHBsQVQ5NF9HUUNlUmVzUjZIbnN2MHc2TWVaYjU1MU5SSHE1dEdmYWd0ZGhiZnVjN0Q3Z2tJcEtzMEJZLVZPbVJSckNQR3V5YnhBeE9NbGVuRnAyUE9aTUY5Mk9CMFJhTi1ZTE5hVG9nZEtJTTlKcnNMVS1nZlJPZ1dFanZMSGhEYVd0dlFfLVFqMVZCUW1URno3c3NLSmJoNG9YQmZXZ1poTm1VeUUyWWREdnhQaWQzRDZEektMSlU0azNlUEJGUUZvVXo1a1BTQWhfc0FDbkNMU1ctaU43ZG1GUFRrYURlZEFnTHJuM3AwNmxKWE5XNERDT1ExLTN4YXVoQkdHS3RBSXFwVE82VDFlcmx1R09wOGszbnh2RF9QSlVTc1BQUzVpd2YxSW9fRUcxSUdPRXRFbHdSa1Fjb3ZLZFltMTAzUUFyWGt6STlqdjhRRXRsdHBQbWdENlh0YVVWVWtjTTY5RXg4emZaUzlocy1aa0xfbnpfOXJWQTNsTTlvam1lLUVNZXJTd05WZVBaLWVwUEJVWXlHbkY2eF9CUU9LWWxjV3BKaTdncy1mcHZIZnlqVVlQUW1QZjVkZlhEQ19xVzJUMG1EaEI0Y05SLUdnY09PQ3BjaUZoby15OWVaWWJ4bU1CTVA4U3NPNk44QzVtUS1YRFRQdVloZGN2c1QtcG0zVlF5ZGZWZDY4TmNXeVY1NGVfWlRtSl90ZW9LNk5OUHEtZFloNEVvbElVemVYc05MbVhPX1dQZzh6dmlSZlRrNGtZdjJobUZqcFlOdUdVd2s5NVdsYkszWGJMaDRmVEpvTHB6RGxrVy1JUFdrblVMUE9FMmQzTUJiZDFpMHZveEVuRjh5eXA2aXpqTmhQRFpuWmFuWHFycXVpNlBfWXpQZS1jYmxoRjl5VnpFTEEwbkJUREJhNUgxX201NWRtNDczNEVRclFfOXo0Y2dCeTlDYndaa000cVJ4c0syX1NUYnJKRTNUUG5hVzQzOGF2bENHekZ0MzBUSlY2bGx5U2d3RVBXNkk3b0w5UWpKQ3oyTVVVWnRvUjZaYXl1U3duQS5jNkhoeG92Nk12Vm1rd1ljSE1yZkxR\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "10671" + ], + "x-ms-client-request-id": [ + "44d68676-d0e3-4e7b-bbb2-a88d6d222a11" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"Conflict\",\r\n \"message\": \"Conflict while restoring key https://kv-sdk-test.vault-int.azure-int.net/keys/KeyBackupRestoreTest/b1634f7d6662425d967888b6abb3f413 - key already exists or concurrent access\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 21:59:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "2e23cbb5-92f0-47b9-b4b9-b982e76efa28" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "//keys/restore?api-version=2016-10-01", + "EncodedRequestUri": "Ly9rZXlzL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"value\": \"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUppTlRjMk5ESTVaaTB5TlRZNExUUTFZbVV0WW1aaFlTMHpOMlZrTURkbVl6QmpPREVpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLk00Qzg3SE5zMTZqcFdwSkVUQ1dmZE5SUWcwNDV1ZU1hblA2NHNmcGtYaFpjVzBrVldNYVBjVmkwaHYxeXpWdTZ2bnAycHY1ejdfY204alR6WkQ3VVd3NllpVC0xZ1RsbFlGSS1tRWVpU2xuSHJMNnpVTEtONnBuR2p6UVdEUHhJb2c5Slh5bFFkSW9xdWxVX3NVcnN6SEttQWFSQS1xdVZmNFlZaElVbm94eW1pQjA5MkJ6Tm5BcFB1UllIQ0JsMUstRjQ5aW1UWk9BcnVHX1dEeGhKMUo3SEhJWEJzVElGTEpQX0ItOTVpS1A0SHNhTEpqREZBTmJxV3JoSC1OQXc1aWZDTWRsSlBMbTdsU0NJV3JsVVVZLVpPR2tpNnVUUm9kdUhjMGYza2lXOEhuUHJqYkkyRHd6am0zQWQ3dnMxMXpnMzBtZUNvU19ZTWtsb2VPM0RRUS5UWE1sNjNvYWREREc1dDd1WG5aLVRBLlFVeUhrY2JpZU95R21LTWdxUF9QTjIteTJDMW9MNDNneGNvQkxidkM0c0h0VmNoYWtQMU9lWmdwRll0My1UbjRscDNNak83ZFF0a09ZeXd0c080TE13TUFsMXdvM0RHSDNaNHhVd1BQdHJGSV9uaWg0Z1IxS0ZMdXVZVE9CdUlkQ3MtVFpreVZOV1FreUh6VUpkcUx5SlhoOUlUdDJVSDJwOEJVTVZnZU5mdU5ONWd6MVlxa1Q4Um9aWmFRUnNkdnZWalRWazE4cWpFbG5YZ0I0ckFGWWIzcGZNdzhJbjBhc0E4Rkotc1JHdEZPTFhTbWs5M2dHTnp0ZnJQMUxYalpyU19iQkduc3UzMWItSEZJR1hNX3drdzZQUjBlSGZ2dGQ5Z1ZQMWpvREdWV3R1OFBDTlp1ek90ZlRMRG9VWVFvYkU2dmVpVEdRVzEwdWRQOW15S2FxaGtjSHBnc0trVzN4VjdRTDFRSFg2UjRUT0VTY1F1Qm5vQ3J3UlN0RnpuY29Mb2tmREdXYmZiWUdsb3F5THo4Y0IyaVZERTM3eUZUQzJEY2dMeW9tYklUWklvUU9EUHIwcEdOa2Y3WU4ycHU1UVRBZXN0ZnRqWWtlbUhfNEZadFcteFcxT1YwUDU3THgzcGpGcVFyaTR5YW1kUHYtS2F5YWwyUVNmV1p3RE5rX3h1cTFxT2dlb0NWMGhwSVFuYXBLYzBvVG8tTFdqMk1IazBBbFhQdWhyUmM0UHktWGJ2NGFRUE9qY0puMkZTZmF5YkQzejNiSzVPMklrNm9WZ2NwNjNhWDk0UUJFTXJjbGlpalhDRXpXS1ZTUmNBQVAxbWxUSVJiYW5paVFuMHhJQ3hUcXM1VVlvSW1fcFJ0YVB6N08xUGd6V3F3M2d4Vi1sSUZEd3cyNU5TR3pqS3VfTk9zUE5WVWtpa2xmWHJOZEpqME5oMFVObHFRejg2TWpnVnNadDVWQkZ3Q2VHQUhhMjdHTXdhVkd3M0dwNXpxbDJFU1E4Q3l0b2JSYUxQZ1RJNURESncza3E4M2dsa0pqSndzcmpIQ3JXaEM4b2tSck9la3NLMU8zbmpuTnlSMkQ5VmE2S3N4V2RXYzg0Tkd4Z1JURVpyWXA0SFFDcl8zMGpQdU9DbUwtTXA2cnF0OG0wSW1VTkUxZWUtc2NCbE8xLWpHcjc2QktRdVZQMUpOV2o5MTRETFE4aDNvMlhDT0g1ZndMRmRiLUhJWkZfazQ3eWZqSENmbm9TSm5LdUdiV05RUDc0TzI1MlFPSlFCOHhFSmpJbHFRdXI1SmhldDFFUWowYjZ1WFZhMHh4cTRlWjdDb0tIQ1FfZmRPbnd3aTNpaXNiQXd0Z183YndrdnpwUG9pSW40ZDY5bVk3NHBRRURsYzBzbTY3ZGJ4LWxFQW5faTFmNUVNVGVSWFgtUG9xSmRZaGItanlCbnR0d0dUQnIzSkJUVGFZOFpIZmhJem9MdTA2N0lqVGFHNFltZHRwc2JTajVramR2b19wR2t4UkVoaUw1em03RWdiZXo0Ui1JaE11N2pNd2lNSjJKUU9fMF9oVG5oY3NYeXBzbEpWN3NWSVY4UmJkcTY1Uk40UGlZUzU5ZVRBVUxKOFFaaWRyaUFfbkY1czFwQTNpLXA4Z1Q2YWx3bldCV0wwLUp2U1AteW9BVk8zS0ZIOWVDVnpxZ0FLeDNrQVhiNTJLMEtCZGQ5aXdiVlZoTU1VR3Zpbi00eThDRWd1dVB1S01lVm5fbTV1WkJpZFpTRWxLWnhpUE9WS0NzTUdLUTkxT29XR1pLelVwYmJ5NVNyTDJ5bFZoT3ZPZWVaSXJndVFCM1hvNjZJa2NFQ3daMHV6Z29zVHRfSm5JZVpqVHFZTU1WYTQzTEtjQmZBdVMzTnp6akhvNEhGb2JaWFdGc1RZN1pZdUFid0JtWkFFbWZhWDE3SlRSVlRKa3E3STRnamFXa04zaHFPdHJHZ3R6bEJSc2lvbE5YSWdyaGl0em5HUEdlcVpZYW4wZ190Q3BoWnpIT0hwX1BwSjlhcGNNeUxHRVp6NU11cE1rRVdwQlUteEs5WDJJLTVRSUx1eGcxSXF4aVNOLTZRTmlyXzdJdFhPT09GMVpyemMtNkRKMVpBaS1EdjRvRDlBcFM3c1lQQXNVQ1VYMU53Y2JkMVM2YkZlWEpwdDFzR0pUVE5jSFljV1pVUmxLZVlmNWpzVkZGMTczcHBiSG5NUnMtM3JWWkFrQzdnOUVrN3YxNFZpSEtqaHFfSlplZXJ2MFdKNHhpWExhVmIxZlN2azNQWXBTeGd5TDdtcF9sT3hpNS1GX1NQc3NVdTJwWnhYS1lqcG1wUDhnSHlKa1R6WGJ4SXJaWV9oMXBJNXFuSTZ4YTFqRkpiTUNuWUNRbHZTWWhIY1AycG1sM0FMeDBJNk9yUmY2Y25WNlUwWVNZWkcwemEtRXRKUU1nX3dHU2lMcV9LNk4yRWNUVDRFR1otZTJzN0VqLUQtVWxoLUthb19MS2k0Q2czaTEyYnNZRnBZcDROU1JlWnJVQjNHZEZrOGhhZWdQcVROdFhsR1IyWjNSd29SWHRkNXM0MnVxVC1fWlI1ZDBQclZRR1VNTUZ6Wk1Ga3E2Y1hNeXhzTjRXa283UGUyZW11Wl80ZkN6U2pFRmhpS0Rvel9ac3ZpZUZzUDZSdVFjQWtRM096R2xWYXpaYzl5ZUZjWDFCaWppQXg1OG5QMklNdmJDMVNPeDZJdnhRalZKU1NtdDI2c1dYTERTbjlpYWpkWUVTQmc4U0x5a0d3eDVMMUNzWEs2MFBtWEgwUGRkRkktak9oTDhXT2UwclBWSnoycklOeFhFMzVMRVFKaFBKY19qUFVONU9pV2d0YWd6Y2xJNjM2TWIwZFRYd0V4OWlHVURORXgzRmFJMEN5dW1UdURLNVJiaDFVdjNsVXhLSGdEcFJIX0JnYTh0a1RObHN4WDlmS0NVT2lqeVJiR3dzN0ZtWUZyYjdYMDJxYjU3bE9wZW1KbGVNSjBTbzRhWG5Yd1VTcTN3V0ZJTzRkVUN6dWZQRTloRkstYTVhRXVHVlk4Z2tsYzNJSVhsMHBxZXdSeVZJNDUzQWJBY2tXLU9WTUZCOGMwQ3hyMFZKWi1YUF9nLUd3YmpLWFRzUW44NlpPT0JjTFByUm9La3pRejRFamNjd1NBUTk0cko1Wm9YMmdFV3dEZTZTT0Etd283cnViSC1MLXdSck91Uk8zeUlVT0JrM1ZnLTRuLWlINjhSRkpVWkpLVTJmOG93TmVMUlBLV0xEVXBHUTJYSUphUXp2ZllIYThVeUR0bDQ2M3lOOElzN3djZ09ydmJlTXlMbVdJTDQ1WDl1TkNOVTRRaXFaRTM3dzFjUG1GOEhOSndwLXdBS2l2S29OMWZuR0xfT0xOMExBcnFxSV9PYUVFbWRVUUpCQVNQdS1JYWZNNE8xdGVVS1d6MGpjRjhockVwTkFNQnlrSUJmdUdCQ3NiRk5Qc1VwNENvWGlaZjBuWU5jMllrUnJDdnpHZXNpUzBOWXlvM3oyV2xoTnpkWU4xRG9DcS1Dd3hFb3V4dVphUGxVTW1zaFFJZUttMmFQT2dQTUIyd1NkWnlmUDEtMnZwNlN1c2lpbjJWYi1zcGdWMkcySXVqcWNNSFlnUnpJRFJrS0tHQklScFpsRDF6SlI2V3FjbkJ0Vjg0VlFGRG12NGFqMWRLUWM4Z2dhQ09NdVpicUtJQUhYcjhDRy1CbVpNM2pmb3o0YmVXbHZ0ZUJZWjJkaHB4ZXkwVzVYZ1hhaV9EYXl4U0ZxVmhOT2dkcFVuMVptRXFCVmVOSGNwWmxTTS0xU2dKallOREI4eVNIa2s5ZUhvSTV0QVAwMENfVWpjLUhoeFp3Zkxtem8tNWlmVDVoN1JvU2VWUjdxT2t2ZDhhd0RjU1FQNlA0UnltMEVsc0liRHY2TG81OXRXeFNlaGQwdTlJUE0tSnhmSElpSHJhWDVxc0l2WHhzYjI5MURTdl9GNy0yU25WS3hFZHY5bDhteFlrYTFGWGp4SEZvbFVoMmVIMFlMOHdwdVgwYTg0NXZoUzJvZ2dFYkNmZDJ5akowVHFOYTljeUlVaDFYVVVmS0RJT1BrQVNjdEdjbG90eE1vLWNfMkxTY3BKby13MlpiWlRfYXVURHJyeTN2V1V1VnNHMkNBa0pXVFlpRGloZjViMVc0VDlUM2VEZGJ3TEZjcHJDTE93Wjg0MlpMcGw0Njh4cDlwNThTa2s1aEtLV3h2YnBlTzhmdmctUjgxLU50QXVTWUtaZ2tNeFEwUlZUSkQwX052dE5yWXRzMUhZQ01NUzBUdkZZMzhweUl1aHVFN21ZNko3Z3ljckt5c2RYVkFYQTdjYzJNVUlJYkhVT3BlcEdZWlJQVzAyeHdoQUZlbmU1eHpIb3BjWkRlcTFvYl9vUDZtLUdFZEo4RzZqb2JQdmlEaW91Z0wweGc0d21RSkNjbnQ0UU5LdmlDQWZzNzhfWm5qUmNyQkU2LTJBUkRURGpwVkxKTzRPVTRVWWdzLUM2TGw3TktVUUNIWUNCNWlqM3VLTDV4eWluX2wxeFYya1VvR3g0TjdXTl93VEhpR1g2ejlMWEdocXY0bmhyNXBSLVFET01wTVhMU2VPeDEycko4OU9rYzVDZDJfbjV4cTJHUy1BVkFiTVd0ZGtjT1pSamJCSWE2VzhxNGFnLTNZbnZTSlkyaGljU2FNb0otY2dzUTVydC1fai1xcnQzMXJiRHc4cnpGazRleV9pNHZXbjk0bF9xODRGYmlKRVU4WFNaRnRtT0ZURkU1QnVoMm11U01TZ2hIMm5ZSFA0Q1ZDVzYtQU94cnU1UWlEZ0c5SkhRMTYyOTI5dFN2YXFjaV9ZSUVwVXU2YnBGS0RwQ1NmZUVMc2s1NVNMRnZHZnIzRkkzbmtNOFVYbkhUMGpNUnpLQ2VSTUliNUdYc2tJSEZCaE5BWElqd1pCRW1DZWphZlc4Wmh0SnFPOWxVOGc0a2hxRnFEUzhmcUFvU2Nub2U0VGZwbW1hUlFPMEViVUM2dk1Xdno4b091ZFdxbFBLN2NCVjYxd09uakNBaFFKenRkTHFzUF9kYkV4ZERvOUVqaVplYVB0NWNsOXJ4bEY1MzM3WFB5OUo4ZnI2M1JoYlV3aGdUSUxTWFh1NEpvOEVrZk5ZVjk2MjA2SW43WWE5SkVnZUNKOWp5anhkNTBabGhDaWtOamFaTDlpTlNYNnd5cmtDWlo3SUpyQ0gzbEd4Zl8wRHB1SWxMdzZ0Zm9GNXlTaDdHVnBYYy1xM3o3S3FDQ2E0RjN6aEU2WHN3WVE5SGdrVjdwRkc4Q0tDaEp4andoSVVjS2NLSlp3MkhSLW92VDVJTi04ZjhrQi1xaTBOeGgxWTIzeWRoVE1NVHRqN1pLNGZCNWJKRlY2WmduNWtiTXR0d2FOcWVjNnRZRmEzcVJnbUtoZW1YVTVsNjJyZ09nbkJlbjNCZEZ5MlJXVjVRSzZaeW9WQV94N0M5UGVFcVVLUTloLWQtb3NXVVUzVkJsRUgzSDh5UEs5aXlXWFhseDFZeC1xMmFGVFFlTlhqTW40TWhwMkRXZS1OUzFxTEFJM21zVmRKTVA4S0p5R3pJY3RfaGJOV2NSelhKUE5tRklaSWhjbTJJVU04Zml3aTZNcGhWdDZXZjVzQjZVdUFmVl82R1E2QlVwaENwclN6allUcTlEYVdkSnJYTUdvMW9TQ3FyRm5ZWGtxTkpLdWNFeURIU3dZZlVjc2RYZGZKMjFnYmUwUWF0X092dnJzcFpkbm8wdDhQY1NWQU5YeGdOVmhLRDgzTHphWEJrZ1lpbWZpQ3NmaExXbm9lQkZNbXhocC1MU0xJOUh0UU5oLVNxQWJBb0JyV05WUXNNeGIxaUYyTzhxYkJfWTBOeE5EYXZCU0l3QWNTOHRzUHVrd2RlUWNpV0tmZ2tJWng3c3JvWVViNE1zUUU1Q2ZoN0cxb0Vpc1dEX2hTNEFOVmFLbnJMeWNmZm5uM2UxenA0b3lvak9KVFJ0M1l6OUZCZDVLSjRRYjJWblh1MVJYNXgxd3JsYVZtY1B5eXlidk8zbTBFc3l3TkV6R001RTBLbFZiZ2NHTE9LT2NrbzZDbVlXVnh3RW5fSG9Sdmc5R3V6aEpjVzFKbXdoU29LeEFNUUpaRDNucGNkMjg4cWF2SUl5NHRHdTNtUkFCU1FRQmR5eUlVNmF3WWIxUjVhTEQ1YXhmUnlzZzl0OThBeDNLVGs5QlpFanFrcTVKXzRHckNtbzhNbndBVzhxUWN6U3VmNDNUbzVhWDBjVGFYb3p5SVdZM3FIMmNZZndYelMzZzFQT3RzU0FlNG5oaUtnVkxCYzh6MjZBV2F5RVZMX0htMGZXMlBGZGwzVVV3WU1KODllMmdhZGZCNTUyVnJuU2tmblBWSkhaUFMydHJuMGxCNlhhVTJOUDRoT2g0OUJUMTRpankwNUZiZHR0U29wMm5PYVNubmQ5NUV2dnhWdzRCYTd2S1hIblZvMHJoZlhWS2VSOHJUOFFRNU44c3NnY0xyLXRrM0U4WlhRZURuejZObkxVbUFpaDBFeTNMaC1XZzNVSmdKb1FiNDM1S1ZBX3ZKcFV1SnY0SmxSeHV4dVJLcHVYS2x5TEh4SjhQb1pUOGlzT1d6MFdJWk5xdWthdHY0TW5Nd09fbEhZa1RJLTZtQ3BwSHdkUkhrdk5ReWNZUDN5SzNXNVl4bU5LY1p4V1hQOFlxQ2F4UFhfZEJUWmNBOE0xb1FfUHpvaU5fRXlYdWx6VU1iR0J1UldoMklqWVdkdHdDT3c5SHQ5bTBlelQzZEk3M0ZBV0dXZkdJZXg4UC1sLXJBYUtLQ1A5RW81Slc3dGQ4T2s3bU5ES1p0ZjloSkNWNFNpSEhVUzNxdUZNVWVRMnQ2UHdUN1B4US1uMDk3Ri1zZ0ZzaTlJUmIzeEZsaHVHaUJpX1o1ckR5UUlsV0h6QmFUZ29iSmg0UTB5UHFhSExhM2ROOFVLRUxRblFXc2RCWHhmN2I1RUg1UTBranJ0bGVhUEVhOWhqd1Z6RTZDNk9OOWE4ZHpkSzVVenhsY0FieEZoZ3RaZVAwZFdkNXNET0I3bzhCbnFpYTllczNjZ192S2FSaXZvd3YySUItckxEWDJESGpPU2ZlNUR4TEpGQUNrVmtZM09hX1pEVDN1YmVBT0FJZ2dOUFRjVEpIRm9rTzFzbVlxN21lRlllUkpCWWpNMmVmRTJpWF9iNnRxbG42ZFZidENlOGhiRTJaYlVHZ0pzYjVRVHczWWlSb3BvREJZR1RCWVgwTXRMNE9GcUVCbTg5Sm1iaERzMG1SZFlvcmR0d2FndVVXRVFhTi1uNDNLVFdQeWxSR3k2emRNWE5KTWstWXE4NlF2MGMySV90c2pPa2tBakg3VEJIQVpsZVJLcFNlYXo2UEpJWHpmTzViV3NabGhWZnN0NUFYUjRNVWZBLXEtb3NFSHg0eEpFM2VjdmFxZGhkcnJoOVBLMC1zbl91MDBMV0hzcEJnd1pWNDVGc0RteXJGaHF6ZDFOQXRFOXlpVzYzXzJ0Q2pYVXVVcHpqYnN3MlhHaEtlVTZmQmkwTVFsalNUTEM3VFhtRkJFRy1OYjdXQUpFWmwtU181a0ZzdnZDdWJHeG5ZNVNOZ1AyNmJaSUYtX2xKSDk5WHk2YzhBdFhleUJydFh6emxGZmVlbjVBYjRhM2NTTlB6YnR5aGZfVG1yVWZJdG5SZ0JhOU1ORTB6M0ZDT29MUkQwMXlqQS1MdnMxc1ozRWdwZHMzOGhZcVdNTTNGUjN0MGtFZDhUWXRZcmNFdVVVQmNmVmJWdW9NTGxoRm5XYm5XNXRuWWtOVlU5SGRoNkdya04wdXJ6UzZKdnZIRTBPUlA2UDN1ME9fVWVlYTQzbnBBMGhwNmw0UFBoTnVRM21RRGRaX0pzRlEtcTJFdUpFOHRUdVVkdXczVmZhNkNDZlhiUVNlUW9JUWVWdHRYS2t1aUZoN042QXVXeXlsaDlia1V5LURMWmgtZUxsRnpXb2xES1hWdW9qUDJiZy1Gb1B3b0lWVTNxVVJoazVTQXlCT2FSM2pVZmx4YnAtUGRLNVJBcWJ1SVc3Y0lXUGx1amd5NXBVdVROVjJ3Mnlxa19VNTJGdzNEYXlZNXBzaEpWdXF1MFJiZHd3UGZhYXRvejVpUXVPblo2VjdDQWhvSW9oUjAzanVHLWFNZTlKYXQ4NGJ5WENPVF9waEU2OHdxTVpzaWV2VGs2NzRhZXlvckdkYk9BbjBTQWpjR2YwMnpWVWtrRWlQNkRudnptRXA1NEZlSlR2Y285VHlLUGlVUmU2SzdTR0hxREw1MEp0bjFFWVdhVGtqeHhRVXp1a21MWURLcHpGZFVBSUZadktGR1BTRmVEbFpTQ25IR2FlVWR6blFfWnhycFZlOG1UZVpJZTZ0ejg2QzdmUGFDX0hXWXZJLXNrRGoxQ2Y4Rm9FNzk2bEEwRWIzZk5ISkhXV2R6OVZBYngwSTNEcmJfd0JRWWFsdTBZa2FUUnI2dklyb25nanBOLU03VXV1dWdoRnFsaFVmR0JpTGh2M2lxcWRFWTl4X1RKWFc0anVfNVBqcXNtTU9VT1ltMG1NdnZTbGgzUDFQVGJCRlE1WXZvOVZWcV92bTNRWDhTOW45WDhLLXNFd1VVRUxjM05RcFVXNEp6c0t5dWFYVTNNcE5RenZxZ1UwWVp1MldoWFBZLWV5cUxWVXJFbXNjMWgtay0tSFhFT3BHOVNZemd3Q090RGRHcHNrdXdlVVR2eUluRXpaTlBMWEZ3Skx4S25oTVRwMElORG1tbFN2WVdWRzZhaEFHUF9OUlpBUHBsQVQ5NF9HUUNlUmVzUjZIbnN2MHc2TWVaYjU1MU5SSHE1dEdmYWd0ZGhiZnVjN0Q3Z2tJcEtzMEJZLVZPbVJSckNQR3V5YnhBeE9NbGVuRnAyUE9aTUY5Mk9CMFJhTi1ZTE5hVG9nZEtJTTlKcnNMVS1nZlJPZ1dFanZMSGhEYVd0dlFfLVFqMVZCUW1URno3c3NLSmJoNG9YQmZXZ1poTm1VeUUyWWREdnhQaWQzRDZEektMSlU0azNlUEJGUUZvVXo1a1BTQWhfc0FDbkNMU1ctaU43ZG1GUFRrYURlZEFnTHJuM3AwNmxKWE5XNERDT1ExLTN4YXVoQkdHS3RBSXFwVE82VDFlcmx1R09wOGszbnh2RF9QSlVTc1BQUzVpd2YxSW9fRUcxSUdPRXRFbHdSa1Fjb3ZLZFltMTAzUUFyWGt6STlqdjhRRXRsdHBQbWdENlh0YVVWVWtjTTY5RXg4emZaUzlocy1aa0xfbnpfOXJWQTNsTTlvam1lLUVNZXJTd05WZVBaLWVwUEJVWXlHbkY2eF9CUU9LWWxjV3BKaTdncy1mcHZIZnlqVVlQUW1QZjVkZlhEQ19xVzJUMG1EaEI0Y05SLUdnY09PQ3BjaUZoby15OWVaWWJ4bU1CTVA4U3NPNk44QzVtUS1YRFRQdVloZGN2c1QtcG0zVlF5ZGZWZDY4TmNXeVY1NGVfWlRtSl90ZW9LNk5OUHEtZFloNEVvbElVemVYc05MbVhPX1dQZzh6dmlSZlRrNGtZdjJobUZqcFlOdUdVd2s5NVdsYkszWGJMaDRmVEpvTHB6RGxrVy1JUFdrblVMUE9FMmQzTUJiZDFpMHZveEVuRjh5eXA2aXpqTmhQRFpuWmFuWHFycXVpNlBfWXpQZS1jYmxoRjl5VnpFTEEwbkJUREJhNUgxX201NWRtNDczNEVRclFfOXo0Y2dCeTlDYndaa000cVJ4c0syX1NUYnJKRTNUUG5hVzQzOGF2bENHekZ0MzBUSlY2bGx5U2d3RVBXNkk3b0w5UWpKQ3oyTVVVWnRvUjZaYXl1U3duQS5jNkhoeG92Nk12Vm1rd1ljSE1yZkxR\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "10671" + ], + "x-ms-client-request-id": [ + "b6c392f3-75fa-4f0e-bb96-01cfa53ea3c0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"Conflict\",\r\n \"message\": \"Conflict while restoring key https://kv-sdk-test.vault-int.azure-int.net/keys/KeyBackupRestoreTest/b1634f7d6662425d967888b6abb3f413 - key already exists or concurrent access\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "215" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 21:59:47 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "1967363c-797b-47df-8e4b-6deba9e468da" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "//keys/restore?api-version=2016-10-01", + "EncodedRequestUri": "Ly9rZXlzL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"value\": \"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUppTlRjMk5ESTVaaTB5TlRZNExUUTFZbVV0WW1aaFlTMHpOMlZrTURkbVl6QmpPREVpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLk00Qzg3SE5zMTZqcFdwSkVUQ1dmZE5SUWcwNDV1ZU1hblA2NHNmcGtYaFpjVzBrVldNYVBjVmkwaHYxeXpWdTZ2bnAycHY1ejdfY204alR6WkQ3VVd3NllpVC0xZ1RsbFlGSS1tRWVpU2xuSHJMNnpVTEtONnBuR2p6UVdEUHhJb2c5Slh5bFFkSW9xdWxVX3NVcnN6SEttQWFSQS1xdVZmNFlZaElVbm94eW1pQjA5MkJ6Tm5BcFB1UllIQ0JsMUstRjQ5aW1UWk9BcnVHX1dEeGhKMUo3SEhJWEJzVElGTEpQX0ItOTVpS1A0SHNhTEpqREZBTmJxV3JoSC1OQXc1aWZDTWRsSlBMbTdsU0NJV3JsVVVZLVpPR2tpNnVUUm9kdUhjMGYza2lXOEhuUHJqYkkyRHd6am0zQWQ3dnMxMXpnMzBtZUNvU19ZTWtsb2VPM0RRUS5UWE1sNjNvYWREREc1dDd1WG5aLVRBLlFVeUhrY2JpZU95R21LTWdxUF9QTjIteTJDMW9MNDNneGNvQkxidkM0c0h0VmNoYWtQMU9lWmdwRll0My1UbjRscDNNak83ZFF0a09ZeXd0c080TE13TUFsMXdvM0RHSDNaNHhVd1BQdHJGSV9uaWg0Z1IxS0ZMdXVZVE9CdUlkQ3MtVFpreVZOV1FreUh6VUpkcUx5SlhoOUlUdDJVSDJwOEJVTVZnZU5mdU5ONWd6MVlxa1Q4Um9aWmFRUnNkdnZWalRWazE4cWpFbG5YZ0I0ckFGWWIzcGZNdzhJbjBhc0E4Rkotc1JHdEZPTFhTbWs5M2dHTnp0ZnJQMUxYalpyU19iQkduc3UzMWItSEZJR1hNX3drdzZQUjBlSGZ2dGQ5Z1ZQMWpvREdWV3R1OFBDTlp1ek90ZlRMRG9VWVFvYkU2dmVpVEdRVzEwdWRQOW15S2FxaGtjSHBnc0trVzN4VjdRTDFRSFg2UjRUT0VTY1F1Qm5vQ3J3UlN0RnpuY29Mb2tmREdXYmZiWUdsb3F5THo4Y0IyaVZERTM3eUZUQzJEY2dMeW9tYklUWklvUU9EUHIwcEdOa2Y3WU4ycHU1UVRBZXN0ZnRqWWtlbUhfNEZadFcteFcxT1YwUDU3THgzcGpGcVFyaTR5YW1kUHYtS2F5YWwyUVNmV1p3RE5rX3h1cTFxT2dlb0NWMGhwSVFuYXBLYzBvVG8tTFdqMk1IazBBbFhQdWhyUmM0UHktWGJ2NGFRUE9qY0puMkZTZmF5YkQzejNiSzVPMklrNm9WZ2NwNjNhWDk0UUJFTXJjbGlpalhDRXpXS1ZTUmNBQVAxbWxUSVJiYW5paVFuMHhJQ3hUcXM1VVlvSW1fcFJ0YVB6N08xUGd6V3F3M2d4Vi1sSUZEd3cyNU5TR3pqS3VfTk9zUE5WVWtpa2xmWHJOZEpqME5oMFVObHFRejg2TWpnVnNadDVWQkZ3Q2VHQUhhMjdHTXdhVkd3M0dwNXpxbDJFU1E4Q3l0b2JSYUxQZ1RJNURESncza3E4M2dsa0pqSndzcmpIQ3JXaEM4b2tSck9la3NLMU8zbmpuTnlSMkQ5VmE2S3N4V2RXYzg0Tkd4Z1JURVpyWXA0SFFDcl8zMGpQdU9DbUwtTXA2cnF0OG0wSW1VTkUxZWUtc2NCbE8xLWpHcjc2QktRdVZQMUpOV2o5MTRETFE4aDNvMlhDT0g1ZndMRmRiLUhJWkZfazQ3eWZqSENmbm9TSm5LdUdiV05RUDc0TzI1MlFPSlFCOHhFSmpJbHFRdXI1SmhldDFFUWowYjZ1WFZhMHh4cTRlWjdDb0tIQ1FfZmRPbnd3aTNpaXNiQXd0Z183YndrdnpwUG9pSW40ZDY5bVk3NHBRRURsYzBzbTY3ZGJ4LWxFQW5faTFmNUVNVGVSWFgtUG9xSmRZaGItanlCbnR0d0dUQnIzSkJUVGFZOFpIZmhJem9MdTA2N0lqVGFHNFltZHRwc2JTajVramR2b19wR2t4UkVoaUw1em03RWdiZXo0Ui1JaE11N2pNd2lNSjJKUU9fMF9oVG5oY3NYeXBzbEpWN3NWSVY4UmJkcTY1Uk40UGlZUzU5ZVRBVUxKOFFaaWRyaUFfbkY1czFwQTNpLXA4Z1Q2YWx3bldCV0wwLUp2U1AteW9BVk8zS0ZIOWVDVnpxZ0FLeDNrQVhiNTJLMEtCZGQ5aXdiVlZoTU1VR3Zpbi00eThDRWd1dVB1S01lVm5fbTV1WkJpZFpTRWxLWnhpUE9WS0NzTUdLUTkxT29XR1pLelVwYmJ5NVNyTDJ5bFZoT3ZPZWVaSXJndVFCM1hvNjZJa2NFQ3daMHV6Z29zVHRfSm5JZVpqVHFZTU1WYTQzTEtjQmZBdVMzTnp6akhvNEhGb2JaWFdGc1RZN1pZdUFid0JtWkFFbWZhWDE3SlRSVlRKa3E3STRnamFXa04zaHFPdHJHZ3R6bEJSc2lvbE5YSWdyaGl0em5HUEdlcVpZYW4wZ190Q3BoWnpIT0hwX1BwSjlhcGNNeUxHRVp6NU11cE1rRVdwQlUteEs5WDJJLTVRSUx1eGcxSXF4aVNOLTZRTmlyXzdJdFhPT09GMVpyemMtNkRKMVpBaS1EdjRvRDlBcFM3c1lQQXNVQ1VYMU53Y2JkMVM2YkZlWEpwdDFzR0pUVE5jSFljV1pVUmxLZVlmNWpzVkZGMTczcHBiSG5NUnMtM3JWWkFrQzdnOUVrN3YxNFZpSEtqaHFfSlplZXJ2MFdKNHhpWExhVmIxZlN2azNQWXBTeGd5TDdtcF9sT3hpNS1GX1NQc3NVdTJwWnhYS1lqcG1wUDhnSHlKa1R6WGJ4SXJaWV9oMXBJNXFuSTZ4YTFqRkpiTUNuWUNRbHZTWWhIY1AycG1sM0FMeDBJNk9yUmY2Y25WNlUwWVNZWkcwemEtRXRKUU1nX3dHU2lMcV9LNk4yRWNUVDRFR1otZTJzN0VqLUQtVWxoLUthb19MS2k0Q2czaTEyYnNZRnBZcDROU1JlWnJVQjNHZEZrOGhhZWdQcVROdFhsR1IyWjNSd29SWHRkNXM0MnVxVC1fWlI1ZDBQclZRR1VNTUZ6Wk1Ga3E2Y1hNeXhzTjRXa283UGUyZW11Wl80ZkN6U2pFRmhpS0Rvel9ac3ZpZUZzUDZSdVFjQWtRM096R2xWYXpaYzl5ZUZjWDFCaWppQXg1OG5QMklNdmJDMVNPeDZJdnhRalZKU1NtdDI2c1dYTERTbjlpYWpkWUVTQmc4U0x5a0d3eDVMMUNzWEs2MFBtWEgwUGRkRkktak9oTDhXT2UwclBWSnoycklOeFhFMzVMRVFKaFBKY19qUFVONU9pV2d0YWd6Y2xJNjM2TWIwZFRYd0V4OWlHVURORXgzRmFJMEN5dW1UdURLNVJiaDFVdjNsVXhLSGdEcFJIX0JnYTh0a1RObHN4WDlmS0NVT2lqeVJiR3dzN0ZtWUZyYjdYMDJxYjU3bE9wZW1KbGVNSjBTbzRhWG5Yd1VTcTN3V0ZJTzRkVUN6dWZQRTloRkstYTVhRXVHVlk4Z2tsYzNJSVhsMHBxZXdSeVZJNDUzQWJBY2tXLU9WTUZCOGMwQ3hyMFZKWi1YUF9nLUd3YmpLWFRzUW44NlpPT0JjTFByUm9La3pRejRFamNjd1NBUTk0cko1Wm9YMmdFV3dEZTZTT0Etd283cnViSC1MLXdSck91Uk8zeUlVT0JrM1ZnLTRuLWlINjhSRkpVWkpLVTJmOG93TmVMUlBLV0xEVXBHUTJYSUphUXp2ZllIYThVeUR0bDQ2M3lOOElzN3djZ09ydmJlTXlMbVdJTDQ1WDl1TkNOVTRRaXFaRTM3dzFjUG1GOEhOSndwLXdBS2l2S29OMWZuR0xfT0xOMExBcnFxSV9PYUVFbWRVUUpCQVNQdS1JYWZNNE8xdGVVS1d6MGpjRjhockVwTkFNQnlrSUJmdUdCQ3NiRk5Qc1VwNENvWGlaZjBuWU5jMllrUnJDdnpHZXNpUzBOWXlvM3oyV2xoTnpkWU4xRG9DcS1Dd3hFb3V4dVphUGxVTW1zaFFJZUttMmFQT2dQTUIyd1NkWnlmUDEtMnZwNlN1c2lpbjJWYi1zcGdWMkcySXVqcWNNSFlnUnpJRFJrS0tHQklScFpsRDF6SlI2V3FjbkJ0Vjg0VlFGRG12NGFqMWRLUWM4Z2dhQ09NdVpicUtJQUhYcjhDRy1CbVpNM2pmb3o0YmVXbHZ0ZUJZWjJkaHB4ZXkwVzVYZ1hhaV9EYXl4U0ZxVmhOT2dkcFVuMVptRXFCVmVOSGNwWmxTTS0xU2dKallOREI4eVNIa2s5ZUhvSTV0QVAwMENfVWpjLUhoeFp3Zkxtem8tNWlmVDVoN1JvU2VWUjdxT2t2ZDhhd0RjU1FQNlA0UnltMEVsc0liRHY2TG81OXRXeFNlaGQwdTlJUE0tSnhmSElpSHJhWDVxc0l2WHhzYjI5MURTdl9GNy0yU25WS3hFZHY5bDhteFlrYTFGWGp4SEZvbFVoMmVIMFlMOHdwdVgwYTg0NXZoUzJvZ2dFYkNmZDJ5akowVHFOYTljeUlVaDFYVVVmS0RJT1BrQVNjdEdjbG90eE1vLWNfMkxTY3BKby13MlpiWlRfYXVURHJyeTN2V1V1VnNHMkNBa0pXVFlpRGloZjViMVc0VDlUM2VEZGJ3TEZjcHJDTE93Wjg0MlpMcGw0Njh4cDlwNThTa2s1aEtLV3h2YnBlTzhmdmctUjgxLU50QXVTWUtaZ2tNeFEwUlZUSkQwX052dE5yWXRzMUhZQ01NUzBUdkZZMzhweUl1aHVFN21ZNko3Z3ljckt5c2RYVkFYQTdjYzJNVUlJYkhVT3BlcEdZWlJQVzAyeHdoQUZlbmU1eHpIb3BjWkRlcTFvYl9vUDZtLUdFZEo4RzZqb2JQdmlEaW91Z0wweGc0d21RSkNjbnQ0UU5LdmlDQWZzNzhfWm5qUmNyQkU2LTJBUkRURGpwVkxKTzRPVTRVWWdzLUM2TGw3TktVUUNIWUNCNWlqM3VLTDV4eWluX2wxeFYya1VvR3g0TjdXTl93VEhpR1g2ejlMWEdocXY0bmhyNXBSLVFET01wTVhMU2VPeDEycko4OU9rYzVDZDJfbjV4cTJHUy1BVkFiTVd0ZGtjT1pSamJCSWE2VzhxNGFnLTNZbnZTSlkyaGljU2FNb0otY2dzUTVydC1fai1xcnQzMXJiRHc4cnpGazRleV9pNHZXbjk0bF9xODRGYmlKRVU4WFNaRnRtT0ZURkU1QnVoMm11U01TZ2hIMm5ZSFA0Q1ZDVzYtQU94cnU1UWlEZ0c5SkhRMTYyOTI5dFN2YXFjaV9ZSUVwVXU2YnBGS0RwQ1NmZUVMc2s1NVNMRnZHZnIzRkkzbmtNOFVYbkhUMGpNUnpLQ2VSTUliNUdYc2tJSEZCaE5BWElqd1pCRW1DZWphZlc4Wmh0SnFPOWxVOGc0a2hxRnFEUzhmcUFvU2Nub2U0VGZwbW1hUlFPMEViVUM2dk1Xdno4b091ZFdxbFBLN2NCVjYxd09uakNBaFFKenRkTHFzUF9kYkV4ZERvOUVqaVplYVB0NWNsOXJ4bEY1MzM3WFB5OUo4ZnI2M1JoYlV3aGdUSUxTWFh1NEpvOEVrZk5ZVjk2MjA2SW43WWE5SkVnZUNKOWp5anhkNTBabGhDaWtOamFaTDlpTlNYNnd5cmtDWlo3SUpyQ0gzbEd4Zl8wRHB1SWxMdzZ0Zm9GNXlTaDdHVnBYYy1xM3o3S3FDQ2E0RjN6aEU2WHN3WVE5SGdrVjdwRkc4Q0tDaEp4andoSVVjS2NLSlp3MkhSLW92VDVJTi04ZjhrQi1xaTBOeGgxWTIzeWRoVE1NVHRqN1pLNGZCNWJKRlY2WmduNWtiTXR0d2FOcWVjNnRZRmEzcVJnbUtoZW1YVTVsNjJyZ09nbkJlbjNCZEZ5MlJXVjVRSzZaeW9WQV94N0M5UGVFcVVLUTloLWQtb3NXVVUzVkJsRUgzSDh5UEs5aXlXWFhseDFZeC1xMmFGVFFlTlhqTW40TWhwMkRXZS1OUzFxTEFJM21zVmRKTVA4S0p5R3pJY3RfaGJOV2NSelhKUE5tRklaSWhjbTJJVU04Zml3aTZNcGhWdDZXZjVzQjZVdUFmVl82R1E2QlVwaENwclN6allUcTlEYVdkSnJYTUdvMW9TQ3FyRm5ZWGtxTkpLdWNFeURIU3dZZlVjc2RYZGZKMjFnYmUwUWF0X092dnJzcFpkbm8wdDhQY1NWQU5YeGdOVmhLRDgzTHphWEJrZ1lpbWZpQ3NmaExXbm9lQkZNbXhocC1MU0xJOUh0UU5oLVNxQWJBb0JyV05WUXNNeGIxaUYyTzhxYkJfWTBOeE5EYXZCU0l3QWNTOHRzUHVrd2RlUWNpV0tmZ2tJWng3c3JvWVViNE1zUUU1Q2ZoN0cxb0Vpc1dEX2hTNEFOVmFLbnJMeWNmZm5uM2UxenA0b3lvak9KVFJ0M1l6OUZCZDVLSjRRYjJWblh1MVJYNXgxd3JsYVZtY1B5eXlidk8zbTBFc3l3TkV6R001RTBLbFZiZ2NHTE9LT2NrbzZDbVlXVnh3RW5fSG9Sdmc5R3V6aEpjVzFKbXdoU29LeEFNUUpaRDNucGNkMjg4cWF2SUl5NHRHdTNtUkFCU1FRQmR5eUlVNmF3WWIxUjVhTEQ1YXhmUnlzZzl0OThBeDNLVGs5QlpFanFrcTVKXzRHckNtbzhNbndBVzhxUWN6U3VmNDNUbzVhWDBjVGFYb3p5SVdZM3FIMmNZZndYelMzZzFQT3RzU0FlNG5oaUtnVkxCYzh6MjZBV2F5RVZMX0htMGZXMlBGZGwzVVV3WU1KODllMmdhZGZCNTUyVnJuU2tmblBWSkhaUFMydHJuMGxCNlhhVTJOUDRoT2g0OUJUMTRpankwNUZiZHR0U29wMm5PYVNubmQ5NUV2dnhWdzRCYTd2S1hIblZvMHJoZlhWS2VSOHJUOFFRNU44c3NnY0xyLXRrM0U4WlhRZURuejZObkxVbUFpaDBFeTNMaC1XZzNVSmdKb1FiNDM1S1ZBX3ZKcFV1SnY0SmxSeHV4dVJLcHVYS2x5TEh4SjhQb1pUOGlzT1d6MFdJWk5xdWthdHY0TW5Nd09fbEhZa1RJLTZtQ3BwSHdkUkhrdk5ReWNZUDN5SzNXNVl4bU5LY1p4V1hQOFlxQ2F4UFhfZEJUWmNBOE0xb1FfUHpvaU5fRXlYdWx6VU1iR0J1UldoMklqWVdkdHdDT3c5SHQ5bTBlelQzZEk3M0ZBV0dXZkdJZXg4UC1sLXJBYUtLQ1A5RW81Slc3dGQ4T2s3bU5ES1p0ZjloSkNWNFNpSEhVUzNxdUZNVWVRMnQ2UHdUN1B4US1uMDk3Ri1zZ0ZzaTlJUmIzeEZsaHVHaUJpX1o1ckR5UUlsV0h6QmFUZ29iSmg0UTB5UHFhSExhM2ROOFVLRUxRblFXc2RCWHhmN2I1RUg1UTBranJ0bGVhUEVhOWhqd1Z6RTZDNk9OOWE4ZHpkSzVVenhsY0FieEZoZ3RaZVAwZFdkNXNET0I3bzhCbnFpYTllczNjZ192S2FSaXZvd3YySUItckxEWDJESGpPU2ZlNUR4TEpGQUNrVmtZM09hX1pEVDN1YmVBT0FJZ2dOUFRjVEpIRm9rTzFzbVlxN21lRlllUkpCWWpNMmVmRTJpWF9iNnRxbG42ZFZidENlOGhiRTJaYlVHZ0pzYjVRVHczWWlSb3BvREJZR1RCWVgwTXRMNE9GcUVCbTg5Sm1iaERzMG1SZFlvcmR0d2FndVVXRVFhTi1uNDNLVFdQeWxSR3k2emRNWE5KTWstWXE4NlF2MGMySV90c2pPa2tBakg3VEJIQVpsZVJLcFNlYXo2UEpJWHpmTzViV3NabGhWZnN0NUFYUjRNVWZBLXEtb3NFSHg0eEpFM2VjdmFxZGhkcnJoOVBLMC1zbl91MDBMV0hzcEJnd1pWNDVGc0RteXJGaHF6ZDFOQXRFOXlpVzYzXzJ0Q2pYVXVVcHpqYnN3MlhHaEtlVTZmQmkwTVFsalNUTEM3VFhtRkJFRy1OYjdXQUpFWmwtU181a0ZzdnZDdWJHeG5ZNVNOZ1AyNmJaSUYtX2xKSDk5WHk2YzhBdFhleUJydFh6emxGZmVlbjVBYjRhM2NTTlB6YnR5aGZfVG1yVWZJdG5SZ0JhOU1ORTB6M0ZDT29MUkQwMXlqQS1MdnMxc1ozRWdwZHMzOGhZcVdNTTNGUjN0MGtFZDhUWXRZcmNFdVVVQmNmVmJWdW9NTGxoRm5XYm5XNXRuWWtOVlU5SGRoNkdya04wdXJ6UzZKdnZIRTBPUlA2UDN1ME9fVWVlYTQzbnBBMGhwNmw0UFBoTnVRM21RRGRaX0pzRlEtcTJFdUpFOHRUdVVkdXczVmZhNkNDZlhiUVNlUW9JUWVWdHRYS2t1aUZoN042QXVXeXlsaDlia1V5LURMWmgtZUxsRnpXb2xES1hWdW9qUDJiZy1Gb1B3b0lWVTNxVVJoazVTQXlCT2FSM2pVZmx4YnAtUGRLNVJBcWJ1SVc3Y0lXUGx1amd5NXBVdVROVjJ3Mnlxa19VNTJGdzNEYXlZNXBzaEpWdXF1MFJiZHd3UGZhYXRvejVpUXVPblo2VjdDQWhvSW9oUjAzanVHLWFNZTlKYXQ4NGJ5WENPVF9waEU2OHdxTVpzaWV2VGs2NzRhZXlvckdkYk9BbjBTQWpjR2YwMnpWVWtrRWlQNkRudnptRXA1NEZlSlR2Y285VHlLUGlVUmU2SzdTR0hxREw1MEp0bjFFWVdhVGtqeHhRVXp1a21MWURLcHpGZFVBSUZadktGR1BTRmVEbFpTQ25IR2FlVWR6blFfWnhycFZlOG1UZVpJZTZ0ejg2QzdmUGFDX0hXWXZJLXNrRGoxQ2Y4Rm9FNzk2bEEwRWIzZk5ISkhXV2R6OVZBYngwSTNEcmJfd0JRWWFsdTBZa2FUUnI2dklyb25nanBOLU03VXV1dWdoRnFsaFVmR0JpTGh2M2lxcWRFWTl4X1RKWFc0anVfNVBqcXNtTU9VT1ltMG1NdnZTbGgzUDFQVGJCRlE1WXZvOVZWcV92bTNRWDhTOW45WDhLLXNFd1VVRUxjM05RcFVXNEp6c0t5dWFYVTNNcE5RenZxZ1UwWVp1MldoWFBZLWV5cUxWVXJFbXNjMWgtay0tSFhFT3BHOVNZemd3Q090RGRHcHNrdXdlVVR2eUluRXpaTlBMWEZ3Skx4S25oTVRwMElORG1tbFN2WVdWRzZhaEFHUF9OUlpBUHBsQVQ5NF9HUUNlUmVzUjZIbnN2MHc2TWVaYjU1MU5SSHE1dEdmYWd0ZGhiZnVjN0Q3Z2tJcEtzMEJZLVZPbVJSckNQR3V5YnhBeE9NbGVuRnAyUE9aTUY5Mk9CMFJhTi1ZTE5hVG9nZEtJTTlKcnNMVS1nZlJPZ1dFanZMSGhEYVd0dlFfLVFqMVZCUW1URno3c3NLSmJoNG9YQmZXZ1poTm1VeUUyWWREdnhQaWQzRDZEektMSlU0azNlUEJGUUZvVXo1a1BTQWhfc0FDbkNMU1ctaU43ZG1GUFRrYURlZEFnTHJuM3AwNmxKWE5XNERDT1ExLTN4YXVoQkdHS3RBSXFwVE82VDFlcmx1R09wOGszbnh2RF9QSlVTc1BQUzVpd2YxSW9fRUcxSUdPRXRFbHdSa1Fjb3ZLZFltMTAzUUFyWGt6STlqdjhRRXRsdHBQbWdENlh0YVVWVWtjTTY5RXg4emZaUzlocy1aa0xfbnpfOXJWQTNsTTlvam1lLUVNZXJTd05WZVBaLWVwUEJVWXlHbkY2eF9CUU9LWWxjV3BKaTdncy1mcHZIZnlqVVlQUW1QZjVkZlhEQ19xVzJUMG1EaEI0Y05SLUdnY09PQ3BjaUZoby15OWVaWWJ4bU1CTVA4U3NPNk44QzVtUS1YRFRQdVloZGN2c1QtcG0zVlF5ZGZWZDY4TmNXeVY1NGVfWlRtSl90ZW9LNk5OUHEtZFloNEVvbElVemVYc05MbVhPX1dQZzh6dmlSZlRrNGtZdjJobUZqcFlOdUdVd2s5NVdsYkszWGJMaDRmVEpvTHB6RGxrVy1JUFdrblVMUE9FMmQzTUJiZDFpMHZveEVuRjh5eXA2aXpqTmhQRFpuWmFuWHFycXVpNlBfWXpQZS1jYmxoRjl5VnpFTEEwbkJUREJhNUgxX201NWRtNDczNEVRclFfOXo0Y2dCeTlDYndaa000cVJ4c0syX1NUYnJKRTNUUG5hVzQzOGF2bENHekZ0MzBUSlY2bGx5U2d3RVBXNkk3b0w5UWpKQ3oyTVVVWnRvUjZaYXl1U3duQS5jNkhoeG92Nk12Vm1rd1ljSE1yZkxR\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "10671" + ], + "x-ms-client-request-id": [ + "5eff53d8-bc37-43ad-8a86-2b9d50820f0a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://kv-sdk-test.vault-int.azure-int.net/keys/KeyBackupRestoreTest/b1634f7d6662425d967888b6abb3f413\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"sutrU6YgaSoSGtNeDijrmXbC6fRjqwz1GIjczBJBFyKZwP_2hC1tRSlxoAHcpViObrhwo9gHQiIFg2jkZAMfYEQk3D6G1MutjEfcQGHi-3ReWV0BDDtkBvOuT8TWsGATQ9kYKgtWOWuFjEARxVzHaThuEbs-e_cHsPIglwcBUvPoMS-vrwyzowJaT95MMxLZUq42Xji3gKIbUhAEZ27z_tkEdQtkBpBorBzChkXdDak6D7XnIjsVQHnMRCwVMgRfIrT06ILdEBeq3eCjCx_jwvGrUyO4PwEm35ToMf-EXirz8X1Ea3JFZ2r5zIbSnoGst1okaQNbynXBlcOcGcVviQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1491343158,\r\n \"updated\": 1491343158,\r\n \"purgedisabled\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "691" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:00:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "2b28c6a2-5644-4ecb-98ef-fcdc04a14bba" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//keys/KeyBackupRestoreTest/?api-version=2016-10-01", + "EncodedRequestUri": "Ly9rZXlzL0tleUJhY2t1cFJlc3RvcmVUZXN0Lz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6301cbfe-3b9f-4d76-88b0-173f8a39f6c6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://kv-sdk-test.vault-int.azure-int.net/keys/KeyBackupRestoreTest/b1634f7d6662425d967888b6abb3f413\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"sutrU6YgaSoSGtNeDijrmXbC6fRjqwz1GIjczBJBFyKZwP_2hC1tRSlxoAHcpViObrhwo9gHQiIFg2jkZAMfYEQk3D6G1MutjEfcQGHi-3ReWV0BDDtkBvOuT8TWsGATQ9kYKgtWOWuFjEARxVzHaThuEbs-e_cHsPIglwcBUvPoMS-vrwyzowJaT95MMxLZUq42Xji3gKIbUhAEZ27z_tkEdQtkBpBorBzChkXdDak6D7XnIjsVQHnMRCwVMgRfIrT06ILdEBeq3eCjCx_jwvGrUyO4PwEm35ToMf-EXirz8X1Ea3JFZ2r5zIbSnoGst1okaQNbynXBlcOcGcVviQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": false,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1491343158,\r\n \"updated\": 1491343158,\r\n \"purgedisabled\": false\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "691" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:00:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "735f5f0d-a527-452f-80df-6fbf8e8777ff" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "VaultAddress": "https://kv-sdk-test.vault-int.azure-int.net/", + "KeyName": "sdktestkey", + "KeyVersion": "e239657e42f94dd091b5f424e07f6c19", + "SoftDeleteEnabled": "true" + } +} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultKeyCreateDeleteRecoverPurgeTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultKeyCreateDeleteRecoverPurgeTest.json index b67652eba361..efb8b592fb59 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultKeyCreateDeleteRecoverPurgeTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultKeyCreateDeleteRecoverPurgeTest.json @@ -1285,6 +1285,7 @@ "Variables": { "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "4ac8dbcb697b44a2bff598b1a21e371c" + "KeyVersion": "4ac8dbcb697b44a2bff598b1a21e371c", + "SoftDeleteEnabled": "true" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedKeysTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedKeysTest.json index 4aa9d146f884..8c24d17c03ba 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedKeysTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedKeysTest.json @@ -1861,6 +1861,7 @@ "Variables": { "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "cf7c860fb9db4564a1389db973a52436" + "KeyVersion": "cf7c860fb9db4564a1389db973a52436", + "SoftDeleteEnabled": "true" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedSecretsTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedSecretsTest.json index e09dd28ad95d..19cfd2100310 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedSecretsTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultListDeletedSecretsTest.json @@ -1925,6 +1925,7 @@ "Variables": { "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "cf7c860fb9db4564a1389db973a52436" + "KeyVersion": "cf7c860fb9db4564a1389db973a52436", + "SoftDeleteEnabled": "true" } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretBackupRestoreTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretBackupRestoreTest.json new file mode 100644 index 000000000000..399a5f66f645 --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretBackupRestoreTest.json @@ -0,0 +1,1245 @@ +{ + "Entries": [ + { + "RequestUri": "//secrets/SecretBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9zZWNyZXRzL1NlY3JldEJhY2t1cFJlc3RvcmVUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"value\": \"if found please return to secretbackuprestoretest\",\r\n \"contentType\": \"text\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "188" + ], + "x-ms-client-request-id": [ + "7523458d-d606-43c1-a2f7-1dcbe8bd219d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": \"if found please return to secretbackuprestoretest\",\r\n \"contentType\": \"text\",\r\n \"id\": \"https://kv-sdk-test.vault-int.azure-int.net/secrets/SecretBackupRestoreTest/0699d2c2baed44c09f9c8a54f5f1bcad\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1491343301,\r\n \"updated\": 1491343301\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:01:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "0955d1ef-5346-4b0d-bb78-cd3dd846a47d" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//secrets/SecretBackupRestoreTest/backup?api-version=2016-10-01", + "EncodedRequestUri": "Ly9zZWNyZXRzL1NlY3JldEJhY2t1cFJlc3RvcmVUZXN0L2JhY2t1cD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7dbf325-3307-47ca-8376-fa1d94af40d0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": \"KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUppTlRjMk5ESTVaaTB5TlRZNExUUTFZbVV0WW1aaFlTMHpOMlZrTURkbVl6QmpPREVpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLmtXdFNZT2c2bU1mN1BkaWhPUzE0Rlk4MktNX3doZFdSVHJPUzRqdVItRFlWXzkyZExWeUZMaHViOFlQMDRMMkNVTlUzSXoxaWF6bEpEc0JTZmxRY1FPUjJTSjUyYVE2RmwxYzM5SXNTekRNcmhxZUF5amR6YTZ3OVhYbFkya01scFl2RTMxa20xRVlwbDNCTk9aMmZiR1RfZEl1dDJYMjJ1NC1FZ3N1ZFlVOC1Sa3NRVENnUExQeTE2Wm1udEpUTWRmUDhjMHphUWIzMDFPRHdqMDRFdVBIMy1lS0l0YlNMR3BtRjlsdS1wNmxxcFQ5SjB0eXVYVlV1TnBHNGVKeHEtTWVJcWdHX2x1RGN5ZGFvS01BS2FEQnpCejJGTm9uM2J0R0V2Um5Fbm93VDFXWmVZZ0FxelBIWlNaZ0RuM3BPbmZpVU05QUpDcUJ2ck4zWjNJUnRCdy41RXBMVWFld2xwbS1LczZJejA2UGJ3LlhnS3VJd1pRdXlUdVRkMUZSQno2SVF0a0t0c0ZuellucFNvcGlzdlJCZWtaZkNEN0wtZzVHbzl3N1o0NkRJQkFHMV92bnpRNXo3WGlISEdJSUxuRW9CVEpLR0x6X3p3cVZMM1BFVTZEdEtOeWc5bWtrTHQza01hcHl5OHFMT0oxeXBoS1lQcEZQTnRPSFFoQ0dXSXBldlpuM3ZEeV9PMG5zbkdtaW13ZkhndlRjcUF2UzJVQTA4eXYzdEpSdHdTdVB6QW5MQTVOZzA2clJUeEJySk8tWG4yTzVXaHRYSml5b3o4bExteEpJdjNXZmcxS2pORDhuOVhjSGpUODlFa2VLQWk2aWp1M0p5OWFTclgwWnpubGZ6Z0ZGb3V4WVhGdXZvbGlNZXRuY19jSzJIYzVoekp3ZUprSld1Y3BTaGtTejRsUjFhLTVhRXRfUFVlTXZLMEd3UkxoQ2lZd3dmTDJDZFFJdkx6ZWhXdGV3VjkzTEhRSG1OU1ZEZjVCYkhEREF5MTBiMkhjMTJPY2Q0eEFKWUV2dDA0N1Z2THRHaE42V09CMnZ5VlBCa3RMamdCeG82ZHBlUVhaNEhZZzN0bUE2bDI1RXIzWnY4ZEtFZmNENXB3UWVPOXpzTzZwNXVHZlE0N2ljN2Mtalp3NWZOZlkwQlg1VHlnN01Lc0o3dGFjdkdmc0dDQWppaXdacDFKTGdZU3Y4Y2VDS1d1TUJSWXlOU3JfZ1pnLTJ1WUZUX1BOVEJUdkw2ZUVMalNoR3g3TEdFNWkzVlh2QUtmMHF6UDBjdnRzb01MSjUyU2RBNTFNSEpMOXBwVnFhYkk0WkhxX1RzTTZQMF9XS0lBU3QtdjRsOGdCcFQ4bEVac3NXdXVnRzhYOUt3Z054cF9FNFVtcDNJR1lidVhwaVRkbXdPZ3JqdURmM1RCZWxLOXJZc3VHSnBBOTNUZ0VvTTdwZjljTkRtM20wWFZBZFNPaGZEUk0wMndNSnpHVTMyc1g0TG9iMFh0Tmk3cHJvNnRoTU9RRzdld0diLVZxZXJYaXRnQ1JXT2RZVXA4RWRVcFJmby1OeUE3ZjZ5bl9zOHd3ODI4YkhIeTBzTTJGZWNQaUEtSjBhY2UxbGpCbjV4YlNQSUx0RjhFRDZTLVdOM3FlQXJfUVZidkc1bDNrYW9iRnpCemhOWlhhOWdTWkZZa1RwNExiQ3RwRW5TdVV5dVU4aUVpaU1LS1N3cmZiMFkwbkZTMnpZelRLZzU4c3lvdjdIQVBXT2tXOTNSM1RtUUF0elo2WW1aWW5ZcElKSjA3VTRJZ3hlMXI2dDhFUXNwd2tyV1BKME1IVjJOb3FKX3BPdHZTbkZ2ZHhhTkZEaGtMMlJnZWtZVWhLekgtdFJndGE2eUtkMDB4bTV4d0hwNVBzVnFnamlFTDlDWUtzbzdMcWNSUDBMMS1UdlZRNHVEeDk4S0hkei1nZ2hVRUJCUjdqM2pNeXBSbjVVemNVZWFEZEdPdHFZRjhYLW5yajVxM2FNYUQ3MUs0eWZ3QXNKSVdULVdIcnp1UkRRSFhmczFjOXp6SEM3NGFSREFnX2F5Ny1LTjQzc3VpdS0wb0pnSE40d3Y2ZUR1Wm5xMWNIQU9PdDZJVEMyLWFKdlZEa3o1N09wdG9jY1dDTDBtZTFqdWEtZGV5R0R4S1NaaC03Y0pPTVZ1Y0xQOVptX1NNV1k2aE1qM0lNUEVyN0xlMGZNZXZ1VTk0SG45YXZEdExHdFBHb2pGSzZMM3F0cWVUSnFaMnhwY0p2S1lXVW40MFZJRTY0LTkzQ09VT2VjZW9JeFJadDd2MTRpTE5nNkVSNnpwM2hrMF92dkF3dXQwNG9WNjItR1A2d3J1cHpheGN4SkNGOXhNaGhGU255OVdSVHVua21sdWtUT0FvQjJCMjhfWlhZekVNMzFIWVJWMjl6cGN4TjBxaWROUUpaS2xsOUxNbzQ1U3hLem1PRGNUaHpKM0J6bFhQWHM2QjJNWHhQMWhlQnViSGhnUHRsNDZ5ekdwVHdwVnpPVkQyMXlIM1o4R25ralVEQTdmMUhmVHhWMkFOTW5RWlJHUWZTalZhS2hwOG9IOFZCc0VhcWd6eW5MOTB3X0RHRldIcWs0ZHU2SHNxX0k4Z3VtMl9QbFRyU2VJWlMzNldhMzI0Ulg5cU00ak85RFladGdHSE5DR3k3bGZoY1lCU2wxa2FiY3BlQmFxdFlpYllKNVlJeE0zUFNxcWlOMVdMajJEWEdfT0w3RTVhdFhtNjRIbEVWcTFpUVk4SVpBcmZQeGNQMWRORnJSN0hveFRETlFZVkY5Q3hNR3o4dVg1eHFaSWF5dlZKSEtlYmxCZTI1R0tuQ3lIOGtWT1AybTNfalNFSUxFZ0x1cVVENTBxQURuVzFVZmlaWnpldVN3MXMtNWlCcEI5N3d0NG00dmRyck95YWFqdFU5YkE5UjRJX2ZBeDV6ZmE5T2otanBoVzE0UFhhWXhyc29ldXhWWlR1bFpxZ0tBT0VvVXF2N3BoeXB6MlE0Nm1GWV9MZmxRN2xNa0lkek16OUY5V0lZT25fcEl4NG1YT1R3UmZQRGkyM19yeEhhOFJSY1VxNGxPaUxXdjQyR0Y2X2hlSEdzQ1hfMHpjREZqSGRBYTBodU9JdU1lRFBwNjZmYzBJeHV3T1NXZWtZdS1TYnZoaXFrWjFHVXJoS2JRVmgtLWZwRXhnc2JVd0o0RlY0aWE4NlAya1lFcVJHLWpXUGY1TEtpZ3d4cHRGdGp0S25QQmFWTGQxQU0xejNwN3VSZVZzM2FJOXJrbHRMSXYySlRYMl9aa3ExY0pyMlpkRE5Rc2w5bHBCNzVIcDF5RlFYX3RYd01IWklSVDk2aUNycjFOejBCS2VncEtFQ1VlUUgybHVtQzlEMlAwU3ZnZzZFR29RVGZGWjBYZGRFUDZDb1pyazJHamN1NFpfT3dVc25BLUVvYTZsTW4wa0V2Z0NkbXA2dGJ2dVNVREFid0l0YWNDSUFOejVrWEdnNHJESGtpVDl6WUpJS2t5SzJsUHRhRFQySmltdDdhNklob3Y0MGF3QXpXbDhoODU0a0Jsb2p0ZEFEeWN5amVqb0ZRMjlMYnFaa3lMRG1qRklXdXBIOEl1X3VpQzZDRzVYNjF4LTZoeDVSTEdraldhekkxXzFpS3Q0OC1QQXVwR3I5QktQbkl6R3NjTm9URVg0RllZZElfSlNyTi0zVGpkWHVhUmxrWGVBV25lOXhzUjB2dklYSmMtdHFoM2RCWERWWHlTLXNfaHlZQ3dIYzN3WEMyQkdIU2EtWG42SGVWaG9PcHZUem1zaXd3eG1wN19LZnBlX2g5dWhMb2xlaEN2RGEwMWRuZW5PYUFCdkJoYVZGcGVtXzBfTHI2dzBBb3ZUaHNaQXFjekFUcmJoVmlMTU1vVkJZZy16em1DeFM5U3JrYmtiTURJSHU1T052ZWNTQTFMRkkxN0l2U1FJeDUxNUVmbU5VX2h0SWlQWnNoc3J5M3F4RWdvTUlDSmZVVEV2UU5wcmo0NkdhRlV6cUFXVkNHdGttRWlmMUpDQ0dnbFdGdUZwSTB5Ql9VUGFSa1JlY0hWRXItNGtiVzd1SGRfcTh3ZFFadHJoUExLc19INjhtWUQzdVRCME5tN3dPYXJYeXFSeUYxLWVzQ0wyRF9RbHowZ2FzRVZZcVVyQUx5MnIwS0dwLW9PeDBoUkZGOEdHdzZlT1NwXzVZNGt4ZV9yVEV5am9RcVJHTWxLMUZINUpFcENPTXpOXzM5UVVoc2FscWVIWGl1dW82Y2NkdlVFVHY4ZUVFb0kxRVN4YVpNbzY5d2FxdWw5NEgybFJCemlObl84XzhfbWVoSTdmVk5Zekpxb0JabS1KOWJyYmxzeTZ2bF9BODU1TUdJSXZZeXY1NFVLZjF2YlRWVzZpUEFGc28wLWQ4Y2YwOFdiY1UwbmViS0h2Q2lwN1VENnRxNnJPdnM4cWpjTjZDZDJYa3lwSTZrM0VOTTAwVHlSeE5Hc2VPOHRFNFdRTEZNZTNSNFJzbDB0Z1p5Qmx6SkctdDJtYWZfTEtDTElaVlB6X2lkaXhkejYxZzBaWlFUaDctLXlBa0RrY3BaUkJBZUxVNVl3ZDFaal9HbTVra1luVVgzbG1FQ0t3QlNGa2hEZG5CbDYyeHVfMVg4WHpodmxjVTFRWWdxeWVybi1wWEVtMGdyT3BPNzI1Zm92RTVldWVSMVVvUVhaM0x5aVVXT0xhcjl6VTd3Um1mNUFDcGxINjhfYU96WFlBZ3RFYnRFc0VhejBaQVNJWl9xOTBEOTBJOXRCS1dveTFZTTJ2bzdrMC1Oc0VfS0NWVnpwaUlwTHNVU1FtbEIzc2k4M3IxVTM4QXpRNy03SUdUemlGY0Y1cXFMTjYwR1ZsLXVOazlMOUlmOENGakp5UElvdUd0cEd1X3QxQkdUTmN6NGk4X2kwWVJELURudVpsMlhlQXY5UlFaRVVTcGdxdFN4X056M196MWZCdEc3WXZyclhXNWFZQTVmNDA0ZWF0NEc2anJ1UUNwZmRuSVZDREFmbHE1V1lkRTlDZ3ExTWI5U3NVdU13bVdpWktZX0tCS1g2QU5PU1lseTRSZE5MVzc4MXh5QnJiN2xKTU9vTnJHamhTaVVJUHpxTmNvLVN3cXB2OXNiWi1jSEJNWXJNbF9xaVEtTjNCZDNFZlQwWXdmZzN0Y3dWM2pvd0NXZEVPMEZCaHJldk9VVXd1LXlSdUp0dllpcnMxRlhGUHlYTU9kMDdJZ3dMeFVjLXFEY3I1enNCVzlqWWNVeXFla0gzZGRDZm04VWxyUGNSQTZoZkEtYWowdzBVZjBSMUVqWEJDYzUxZWFZOTVNcHJORmRiTHhVU2k0bk9yWVFnUlQxRncuNVIwTXJSMUZLWGVFRkRWU19jdzNhZw\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5634" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:01:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "74ba6f36-24b5-488a-9bda-6095e33055a6" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//secrets/SecretBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9zZWNyZXRzL1NlY3JldEJhY2t1cFJlc3RvcmVUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a65dd44c-9637-42e4-8371-ad1b94febf18" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://kv-sdk-test.vault-int.azure-int.net/deletedsecrets/SecretBackupRestoreTest\",\r\n \"deletedDate\": 1491343302,\r\n \"scheduledPurgeDate\": 1499119302,\r\n \"contentType\": \"text\",\r\n \"id\": \"https://kv-sdk-test.vault-int.azure-int.net/secrets/SecretBackupRestoreTest/0699d2c2baed44c09f9c8a54f5f1bcad\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1491343301,\r\n \"updated\": 1491343301\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "399" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:01:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "7e7b478f-acbc-484d-af7b-f880157dfc76" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//secrets/SecretBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9zZWNyZXRzL1NlY3JldEJhY2t1cFJlc3RvcmVUZXN0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e7808de-5e05-4e6b-8443-59641565af44" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://kv-sdk-test.vault-int.azure-int.net/deletedsecrets/SecretBackupRestoreTest\",\r\n \"deletedDate\": 1491343352,\r\n \"scheduledPurgeDate\": 1499119352,\r\n \"contentType\": \"text\",\r\n \"id\": \"https://kv-sdk-test.vault-int.azure-int.net/secrets/SecretBackupRestoreTest/0699d2c2baed44c09f9c8a54f5f1bcad\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1491343301,\r\n \"updated\": 1491343301\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "399" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:02:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "dd27f126-6a83-4997-9e15-ff9e015054af" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//deletedsecrets/SecretBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVkc2VjcmV0cy9TZWNyZXRCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd89e860-d9da-4255-b94a-a57dfe318a23" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: SecretBackupRestoreTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "97" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:01:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "023f7fd8-23e2-43ad-922f-5cfcd87a5a63" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "//deletedsecrets/SecretBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVkc2VjcmV0cy9TZWNyZXRCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "880d3879-3d80-4e87-b4be-0e5d5a43f62f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: SecretBackupRestoreTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "97" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:01:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "32d92809-d5d0-4aad-92aa-9d0ee13c805a" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "//deletedsecrets/SecretBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVkc2VjcmV0cy9TZWNyZXRCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05e04085-6672-4941-8e83-bbb4e8ae9525" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: SecretBackupRestoreTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "97" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:01:48 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "45e4c065-b926-4fd9-ba44-4c90ea237444" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "//deletedsecrets/SecretBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVkc2VjcmV0cy9TZWNyZXRCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "099706fe-59c0-4dc2-9c99-65ef8d8e779e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://kv-sdk-test.vault-int.azure-int.net/deletedsecrets/SecretBackupRestoreTest\",\r\n \"deletedDate\": 1491343302,\r\n \"scheduledPurgeDate\": 1499119302,\r\n \"contentType\": \"text\",\r\n \"id\": \"https://kv-sdk-test.vault-int.azure-int.net/secrets/SecretBackupRestoreTest/0699d2c2baed44c09f9c8a54f5f1bcad\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1491343301,\r\n \"updated\": 1491343301\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "399" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:02:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "a58a9577-dfe9-41eb-8c9f-37686fb58b61" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//deletedsecrets/SecretBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVkc2VjcmV0cy9TZWNyZXRCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f9f9733-33b3-474d-9ba8-154aa4a0a9d2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: SecretBackupRestoreTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "97" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:02:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "8800400a-87c6-4ff7-bed2-65592e91428c" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "//deletedsecrets/SecretBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVkc2VjcmV0cy9TZWNyZXRCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc3c5125-ccb0-4047-902e-24a1181e7e34" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: SecretBackupRestoreTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "97" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:02:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "bf6d0982-bd86-4bbf-9e94-3f06293676ec" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "//deletedsecrets/SecretBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVkc2VjcmV0cy9TZWNyZXRCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b29d75f-7f34-4729-83b6-3e6ae4f11b4e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SecretNotFound\",\r\n \"message\": \"Deleted Secret not found: SecretBackupRestoreTest\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "97" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:02:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "e0e0656b-a611-4601-9e15-a76f72592d43" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "//deletedsecrets/SecretBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVkc2VjcmV0cy9TZWNyZXRCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa27aac4-fa6d-4e58-8cf7-f6fe7a6c3e79" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"recoveryId\": \"https://kv-sdk-test.vault-int.azure-int.net/deletedsecrets/SecretBackupRestoreTest\",\r\n \"deletedDate\": 1491343352,\r\n \"scheduledPurgeDate\": 1499119352,\r\n \"contentType\": \"text\",\r\n \"id\": \"https://kv-sdk-test.vault-int.azure-int.net/secrets/SecretBackupRestoreTest/0699d2c2baed44c09f9c8a54f5f1bcad\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1491343301,\r\n \"updated\": 1491343301\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "399" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:02:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "982f882c-b078-4dac-89c7-66e97fc0bf76" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//deletedsecrets/SecretBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVkc2VjcmV0cy9TZWNyZXRCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6111deb-a22b-4250-bf6b-f9e417929e9b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:02:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "d1e30d29-09dd-4f23-bebb-74b14773a5bc" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "//deletedsecrets/SecretBackupRestoreTest?api-version=2016-10-01", + "EncodedRequestUri": "Ly9kZWxldGVkc2VjcmV0cy9TZWNyZXRCYWNrdXBSZXN0b3JlVGVzdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e7a48d8-468d-4c82-aad5-24f6f1c9c528" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:02:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "9ad71eaa-d368-4d45-91ca-a4ad83eaa0e4" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 204 + }, + { + "RequestUri": "//secrets/restore?api-version=2016-10-01", + "EncodedRequestUri": "Ly9zZWNyZXRzL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"value\": \"KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUppTlRjMk5ESTVaaTB5TlRZNExUUTFZbVV0WW1aaFlTMHpOMlZrTURkbVl6QmpPREVpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLmtXdFNZT2c2bU1mN1BkaWhPUzE0Rlk4MktNX3doZFdSVHJPUzRqdVItRFlWXzkyZExWeUZMaHViOFlQMDRMMkNVTlUzSXoxaWF6bEpEc0JTZmxRY1FPUjJTSjUyYVE2RmwxYzM5SXNTekRNcmhxZUF5amR6YTZ3OVhYbFkya01scFl2RTMxa20xRVlwbDNCTk9aMmZiR1RfZEl1dDJYMjJ1NC1FZ3N1ZFlVOC1Sa3NRVENnUExQeTE2Wm1udEpUTWRmUDhjMHphUWIzMDFPRHdqMDRFdVBIMy1lS0l0YlNMR3BtRjlsdS1wNmxxcFQ5SjB0eXVYVlV1TnBHNGVKeHEtTWVJcWdHX2x1RGN5ZGFvS01BS2FEQnpCejJGTm9uM2J0R0V2Um5Fbm93VDFXWmVZZ0FxelBIWlNaZ0RuM3BPbmZpVU05QUpDcUJ2ck4zWjNJUnRCdy41RXBMVWFld2xwbS1LczZJejA2UGJ3LlhnS3VJd1pRdXlUdVRkMUZSQno2SVF0a0t0c0ZuellucFNvcGlzdlJCZWtaZkNEN0wtZzVHbzl3N1o0NkRJQkFHMV92bnpRNXo3WGlISEdJSUxuRW9CVEpLR0x6X3p3cVZMM1BFVTZEdEtOeWc5bWtrTHQza01hcHl5OHFMT0oxeXBoS1lQcEZQTnRPSFFoQ0dXSXBldlpuM3ZEeV9PMG5zbkdtaW13ZkhndlRjcUF2UzJVQTA4eXYzdEpSdHdTdVB6QW5MQTVOZzA2clJUeEJySk8tWG4yTzVXaHRYSml5b3o4bExteEpJdjNXZmcxS2pORDhuOVhjSGpUODlFa2VLQWk2aWp1M0p5OWFTclgwWnpubGZ6Z0ZGb3V4WVhGdXZvbGlNZXRuY19jSzJIYzVoekp3ZUprSld1Y3BTaGtTejRsUjFhLTVhRXRfUFVlTXZLMEd3UkxoQ2lZd3dmTDJDZFFJdkx6ZWhXdGV3VjkzTEhRSG1OU1ZEZjVCYkhEREF5MTBiMkhjMTJPY2Q0eEFKWUV2dDA0N1Z2THRHaE42V09CMnZ5VlBCa3RMamdCeG82ZHBlUVhaNEhZZzN0bUE2bDI1RXIzWnY4ZEtFZmNENXB3UWVPOXpzTzZwNXVHZlE0N2ljN2Mtalp3NWZOZlkwQlg1VHlnN01Lc0o3dGFjdkdmc0dDQWppaXdacDFKTGdZU3Y4Y2VDS1d1TUJSWXlOU3JfZ1pnLTJ1WUZUX1BOVEJUdkw2ZUVMalNoR3g3TEdFNWkzVlh2QUtmMHF6UDBjdnRzb01MSjUyU2RBNTFNSEpMOXBwVnFhYkk0WkhxX1RzTTZQMF9XS0lBU3QtdjRsOGdCcFQ4bEVac3NXdXVnRzhYOUt3Z054cF9FNFVtcDNJR1lidVhwaVRkbXdPZ3JqdURmM1RCZWxLOXJZc3VHSnBBOTNUZ0VvTTdwZjljTkRtM20wWFZBZFNPaGZEUk0wMndNSnpHVTMyc1g0TG9iMFh0Tmk3cHJvNnRoTU9RRzdld0diLVZxZXJYaXRnQ1JXT2RZVXA4RWRVcFJmby1OeUE3ZjZ5bl9zOHd3ODI4YkhIeTBzTTJGZWNQaUEtSjBhY2UxbGpCbjV4YlNQSUx0RjhFRDZTLVdOM3FlQXJfUVZidkc1bDNrYW9iRnpCemhOWlhhOWdTWkZZa1RwNExiQ3RwRW5TdVV5dVU4aUVpaU1LS1N3cmZiMFkwbkZTMnpZelRLZzU4c3lvdjdIQVBXT2tXOTNSM1RtUUF0elo2WW1aWW5ZcElKSjA3VTRJZ3hlMXI2dDhFUXNwd2tyV1BKME1IVjJOb3FKX3BPdHZTbkZ2ZHhhTkZEaGtMMlJnZWtZVWhLekgtdFJndGE2eUtkMDB4bTV4d0hwNVBzVnFnamlFTDlDWUtzbzdMcWNSUDBMMS1UdlZRNHVEeDk4S0hkei1nZ2hVRUJCUjdqM2pNeXBSbjVVemNVZWFEZEdPdHFZRjhYLW5yajVxM2FNYUQ3MUs0eWZ3QXNKSVdULVdIcnp1UkRRSFhmczFjOXp6SEM3NGFSREFnX2F5Ny1LTjQzc3VpdS0wb0pnSE40d3Y2ZUR1Wm5xMWNIQU9PdDZJVEMyLWFKdlZEa3o1N09wdG9jY1dDTDBtZTFqdWEtZGV5R0R4S1NaaC03Y0pPTVZ1Y0xQOVptX1NNV1k2aE1qM0lNUEVyN0xlMGZNZXZ1VTk0SG45YXZEdExHdFBHb2pGSzZMM3F0cWVUSnFaMnhwY0p2S1lXVW40MFZJRTY0LTkzQ09VT2VjZW9JeFJadDd2MTRpTE5nNkVSNnpwM2hrMF92dkF3dXQwNG9WNjItR1A2d3J1cHpheGN4SkNGOXhNaGhGU255OVdSVHVua21sdWtUT0FvQjJCMjhfWlhZekVNMzFIWVJWMjl6cGN4TjBxaWROUUpaS2xsOUxNbzQ1U3hLem1PRGNUaHpKM0J6bFhQWHM2QjJNWHhQMWhlQnViSGhnUHRsNDZ5ekdwVHdwVnpPVkQyMXlIM1o4R25ralVEQTdmMUhmVHhWMkFOTW5RWlJHUWZTalZhS2hwOG9IOFZCc0VhcWd6eW5MOTB3X0RHRldIcWs0ZHU2SHNxX0k4Z3VtMl9QbFRyU2VJWlMzNldhMzI0Ulg5cU00ak85RFladGdHSE5DR3k3bGZoY1lCU2wxa2FiY3BlQmFxdFlpYllKNVlJeE0zUFNxcWlOMVdMajJEWEdfT0w3RTVhdFhtNjRIbEVWcTFpUVk4SVpBcmZQeGNQMWRORnJSN0hveFRETlFZVkY5Q3hNR3o4dVg1eHFaSWF5dlZKSEtlYmxCZTI1R0tuQ3lIOGtWT1AybTNfalNFSUxFZ0x1cVVENTBxQURuVzFVZmlaWnpldVN3MXMtNWlCcEI5N3d0NG00dmRyck95YWFqdFU5YkE5UjRJX2ZBeDV6ZmE5T2otanBoVzE0UFhhWXhyc29ldXhWWlR1bFpxZ0tBT0VvVXF2N3BoeXB6MlE0Nm1GWV9MZmxRN2xNa0lkek16OUY5V0lZT25fcEl4NG1YT1R3UmZQRGkyM19yeEhhOFJSY1VxNGxPaUxXdjQyR0Y2X2hlSEdzQ1hfMHpjREZqSGRBYTBodU9JdU1lRFBwNjZmYzBJeHV3T1NXZWtZdS1TYnZoaXFrWjFHVXJoS2JRVmgtLWZwRXhnc2JVd0o0RlY0aWE4NlAya1lFcVJHLWpXUGY1TEtpZ3d4cHRGdGp0S25QQmFWTGQxQU0xejNwN3VSZVZzM2FJOXJrbHRMSXYySlRYMl9aa3ExY0pyMlpkRE5Rc2w5bHBCNzVIcDF5RlFYX3RYd01IWklSVDk2aUNycjFOejBCS2VncEtFQ1VlUUgybHVtQzlEMlAwU3ZnZzZFR29RVGZGWjBYZGRFUDZDb1pyazJHamN1NFpfT3dVc25BLUVvYTZsTW4wa0V2Z0NkbXA2dGJ2dVNVREFid0l0YWNDSUFOejVrWEdnNHJESGtpVDl6WUpJS2t5SzJsUHRhRFQySmltdDdhNklob3Y0MGF3QXpXbDhoODU0a0Jsb2p0ZEFEeWN5amVqb0ZRMjlMYnFaa3lMRG1qRklXdXBIOEl1X3VpQzZDRzVYNjF4LTZoeDVSTEdraldhekkxXzFpS3Q0OC1QQXVwR3I5QktQbkl6R3NjTm9URVg0RllZZElfSlNyTi0zVGpkWHVhUmxrWGVBV25lOXhzUjB2dklYSmMtdHFoM2RCWERWWHlTLXNfaHlZQ3dIYzN3WEMyQkdIU2EtWG42SGVWaG9PcHZUem1zaXd3eG1wN19LZnBlX2g5dWhMb2xlaEN2RGEwMWRuZW5PYUFCdkJoYVZGcGVtXzBfTHI2dzBBb3ZUaHNaQXFjekFUcmJoVmlMTU1vVkJZZy16em1DeFM5U3JrYmtiTURJSHU1T052ZWNTQTFMRkkxN0l2U1FJeDUxNUVmbU5VX2h0SWlQWnNoc3J5M3F4RWdvTUlDSmZVVEV2UU5wcmo0NkdhRlV6cUFXVkNHdGttRWlmMUpDQ0dnbFdGdUZwSTB5Ql9VUGFSa1JlY0hWRXItNGtiVzd1SGRfcTh3ZFFadHJoUExLc19INjhtWUQzdVRCME5tN3dPYXJYeXFSeUYxLWVzQ0wyRF9RbHowZ2FzRVZZcVVyQUx5MnIwS0dwLW9PeDBoUkZGOEdHdzZlT1NwXzVZNGt4ZV9yVEV5am9RcVJHTWxLMUZINUpFcENPTXpOXzM5UVVoc2FscWVIWGl1dW82Y2NkdlVFVHY4ZUVFb0kxRVN4YVpNbzY5d2FxdWw5NEgybFJCemlObl84XzhfbWVoSTdmVk5Zekpxb0JabS1KOWJyYmxzeTZ2bF9BODU1TUdJSXZZeXY1NFVLZjF2YlRWVzZpUEFGc28wLWQ4Y2YwOFdiY1UwbmViS0h2Q2lwN1VENnRxNnJPdnM4cWpjTjZDZDJYa3lwSTZrM0VOTTAwVHlSeE5Hc2VPOHRFNFdRTEZNZTNSNFJzbDB0Z1p5Qmx6SkctdDJtYWZfTEtDTElaVlB6X2lkaXhkejYxZzBaWlFUaDctLXlBa0RrY3BaUkJBZUxVNVl3ZDFaal9HbTVra1luVVgzbG1FQ0t3QlNGa2hEZG5CbDYyeHVfMVg4WHpodmxjVTFRWWdxeWVybi1wWEVtMGdyT3BPNzI1Zm92RTVldWVSMVVvUVhaM0x5aVVXT0xhcjl6VTd3Um1mNUFDcGxINjhfYU96WFlBZ3RFYnRFc0VhejBaQVNJWl9xOTBEOTBJOXRCS1dveTFZTTJ2bzdrMC1Oc0VfS0NWVnpwaUlwTHNVU1FtbEIzc2k4M3IxVTM4QXpRNy03SUdUemlGY0Y1cXFMTjYwR1ZsLXVOazlMOUlmOENGakp5UElvdUd0cEd1X3QxQkdUTmN6NGk4X2kwWVJELURudVpsMlhlQXY5UlFaRVVTcGdxdFN4X056M196MWZCdEc3WXZyclhXNWFZQTVmNDA0ZWF0NEc2anJ1UUNwZmRuSVZDREFmbHE1V1lkRTlDZ3ExTWI5U3NVdU13bVdpWktZX0tCS1g2QU5PU1lseTRSZE5MVzc4MXh5QnJiN2xKTU9vTnJHamhTaVVJUHpxTmNvLVN3cXB2OXNiWi1jSEJNWXJNbF9xaVEtTjNCZDNFZlQwWXdmZzN0Y3dWM2pvd0NXZEVPMEZCaHJldk9VVXd1LXlSdUp0dllpcnMxRlhGUHlYTU9kMDdJZ3dMeFVjLXFEY3I1enNCVzlqWWNVeXFla0gzZGRDZm04VWxyUGNSQTZoZkEtYWowdzBVZjBSMUVqWEJDYzUxZWFZOTVNcHJORmRiTHhVU2k0bk9yWVFnUlQxRncuNVIwTXJSMUZLWGVFRkRWU19jdzNhZw\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "5641" + ], + "x-ms-client-request-id": [ + "ddcbfe1a-ebcd-425f-be9c-0968df25a6c0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"Conflict\",\r\n \"message\": \"Conflict while restoring secret https://kv-sdk-test.vault-int.azure-int.net/secrets/SecretBackupRestoreTest/0699d2c2baed44c09f9c8a54f5f1bcad - secret already exists or concurrent access\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:02:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "119bd839-51b5-4c36-91aa-fd80d483a062" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "//secrets/restore?api-version=2016-10-01", + "EncodedRequestUri": "Ly9zZWNyZXRzL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"value\": \"KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUppTlRjMk5ESTVaaTB5TlRZNExUUTFZbVV0WW1aaFlTMHpOMlZrTURkbVl6QmpPREVpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLmtXdFNZT2c2bU1mN1BkaWhPUzE0Rlk4MktNX3doZFdSVHJPUzRqdVItRFlWXzkyZExWeUZMaHViOFlQMDRMMkNVTlUzSXoxaWF6bEpEc0JTZmxRY1FPUjJTSjUyYVE2RmwxYzM5SXNTekRNcmhxZUF5amR6YTZ3OVhYbFkya01scFl2RTMxa20xRVlwbDNCTk9aMmZiR1RfZEl1dDJYMjJ1NC1FZ3N1ZFlVOC1Sa3NRVENnUExQeTE2Wm1udEpUTWRmUDhjMHphUWIzMDFPRHdqMDRFdVBIMy1lS0l0YlNMR3BtRjlsdS1wNmxxcFQ5SjB0eXVYVlV1TnBHNGVKeHEtTWVJcWdHX2x1RGN5ZGFvS01BS2FEQnpCejJGTm9uM2J0R0V2Um5Fbm93VDFXWmVZZ0FxelBIWlNaZ0RuM3BPbmZpVU05QUpDcUJ2ck4zWjNJUnRCdy41RXBMVWFld2xwbS1LczZJejA2UGJ3LlhnS3VJd1pRdXlUdVRkMUZSQno2SVF0a0t0c0ZuellucFNvcGlzdlJCZWtaZkNEN0wtZzVHbzl3N1o0NkRJQkFHMV92bnpRNXo3WGlISEdJSUxuRW9CVEpLR0x6X3p3cVZMM1BFVTZEdEtOeWc5bWtrTHQza01hcHl5OHFMT0oxeXBoS1lQcEZQTnRPSFFoQ0dXSXBldlpuM3ZEeV9PMG5zbkdtaW13ZkhndlRjcUF2UzJVQTA4eXYzdEpSdHdTdVB6QW5MQTVOZzA2clJUeEJySk8tWG4yTzVXaHRYSml5b3o4bExteEpJdjNXZmcxS2pORDhuOVhjSGpUODlFa2VLQWk2aWp1M0p5OWFTclgwWnpubGZ6Z0ZGb3V4WVhGdXZvbGlNZXRuY19jSzJIYzVoekp3ZUprSld1Y3BTaGtTejRsUjFhLTVhRXRfUFVlTXZLMEd3UkxoQ2lZd3dmTDJDZFFJdkx6ZWhXdGV3VjkzTEhRSG1OU1ZEZjVCYkhEREF5MTBiMkhjMTJPY2Q0eEFKWUV2dDA0N1Z2THRHaE42V09CMnZ5VlBCa3RMamdCeG82ZHBlUVhaNEhZZzN0bUE2bDI1RXIzWnY4ZEtFZmNENXB3UWVPOXpzTzZwNXVHZlE0N2ljN2Mtalp3NWZOZlkwQlg1VHlnN01Lc0o3dGFjdkdmc0dDQWppaXdacDFKTGdZU3Y4Y2VDS1d1TUJSWXlOU3JfZ1pnLTJ1WUZUX1BOVEJUdkw2ZUVMalNoR3g3TEdFNWkzVlh2QUtmMHF6UDBjdnRzb01MSjUyU2RBNTFNSEpMOXBwVnFhYkk0WkhxX1RzTTZQMF9XS0lBU3QtdjRsOGdCcFQ4bEVac3NXdXVnRzhYOUt3Z054cF9FNFVtcDNJR1lidVhwaVRkbXdPZ3JqdURmM1RCZWxLOXJZc3VHSnBBOTNUZ0VvTTdwZjljTkRtM20wWFZBZFNPaGZEUk0wMndNSnpHVTMyc1g0TG9iMFh0Tmk3cHJvNnRoTU9RRzdld0diLVZxZXJYaXRnQ1JXT2RZVXA4RWRVcFJmby1OeUE3ZjZ5bl9zOHd3ODI4YkhIeTBzTTJGZWNQaUEtSjBhY2UxbGpCbjV4YlNQSUx0RjhFRDZTLVdOM3FlQXJfUVZidkc1bDNrYW9iRnpCemhOWlhhOWdTWkZZa1RwNExiQ3RwRW5TdVV5dVU4aUVpaU1LS1N3cmZiMFkwbkZTMnpZelRLZzU4c3lvdjdIQVBXT2tXOTNSM1RtUUF0elo2WW1aWW5ZcElKSjA3VTRJZ3hlMXI2dDhFUXNwd2tyV1BKME1IVjJOb3FKX3BPdHZTbkZ2ZHhhTkZEaGtMMlJnZWtZVWhLekgtdFJndGE2eUtkMDB4bTV4d0hwNVBzVnFnamlFTDlDWUtzbzdMcWNSUDBMMS1UdlZRNHVEeDk4S0hkei1nZ2hVRUJCUjdqM2pNeXBSbjVVemNVZWFEZEdPdHFZRjhYLW5yajVxM2FNYUQ3MUs0eWZ3QXNKSVdULVdIcnp1UkRRSFhmczFjOXp6SEM3NGFSREFnX2F5Ny1LTjQzc3VpdS0wb0pnSE40d3Y2ZUR1Wm5xMWNIQU9PdDZJVEMyLWFKdlZEa3o1N09wdG9jY1dDTDBtZTFqdWEtZGV5R0R4S1NaaC03Y0pPTVZ1Y0xQOVptX1NNV1k2aE1qM0lNUEVyN0xlMGZNZXZ1VTk0SG45YXZEdExHdFBHb2pGSzZMM3F0cWVUSnFaMnhwY0p2S1lXVW40MFZJRTY0LTkzQ09VT2VjZW9JeFJadDd2MTRpTE5nNkVSNnpwM2hrMF92dkF3dXQwNG9WNjItR1A2d3J1cHpheGN4SkNGOXhNaGhGU255OVdSVHVua21sdWtUT0FvQjJCMjhfWlhZekVNMzFIWVJWMjl6cGN4TjBxaWROUUpaS2xsOUxNbzQ1U3hLem1PRGNUaHpKM0J6bFhQWHM2QjJNWHhQMWhlQnViSGhnUHRsNDZ5ekdwVHdwVnpPVkQyMXlIM1o4R25ralVEQTdmMUhmVHhWMkFOTW5RWlJHUWZTalZhS2hwOG9IOFZCc0VhcWd6eW5MOTB3X0RHRldIcWs0ZHU2SHNxX0k4Z3VtMl9QbFRyU2VJWlMzNldhMzI0Ulg5cU00ak85RFladGdHSE5DR3k3bGZoY1lCU2wxa2FiY3BlQmFxdFlpYllKNVlJeE0zUFNxcWlOMVdMajJEWEdfT0w3RTVhdFhtNjRIbEVWcTFpUVk4SVpBcmZQeGNQMWRORnJSN0hveFRETlFZVkY5Q3hNR3o4dVg1eHFaSWF5dlZKSEtlYmxCZTI1R0tuQ3lIOGtWT1AybTNfalNFSUxFZ0x1cVVENTBxQURuVzFVZmlaWnpldVN3MXMtNWlCcEI5N3d0NG00dmRyck95YWFqdFU5YkE5UjRJX2ZBeDV6ZmE5T2otanBoVzE0UFhhWXhyc29ldXhWWlR1bFpxZ0tBT0VvVXF2N3BoeXB6MlE0Nm1GWV9MZmxRN2xNa0lkek16OUY5V0lZT25fcEl4NG1YT1R3UmZQRGkyM19yeEhhOFJSY1VxNGxPaUxXdjQyR0Y2X2hlSEdzQ1hfMHpjREZqSGRBYTBodU9JdU1lRFBwNjZmYzBJeHV3T1NXZWtZdS1TYnZoaXFrWjFHVXJoS2JRVmgtLWZwRXhnc2JVd0o0RlY0aWE4NlAya1lFcVJHLWpXUGY1TEtpZ3d4cHRGdGp0S25QQmFWTGQxQU0xejNwN3VSZVZzM2FJOXJrbHRMSXYySlRYMl9aa3ExY0pyMlpkRE5Rc2w5bHBCNzVIcDF5RlFYX3RYd01IWklSVDk2aUNycjFOejBCS2VncEtFQ1VlUUgybHVtQzlEMlAwU3ZnZzZFR29RVGZGWjBYZGRFUDZDb1pyazJHamN1NFpfT3dVc25BLUVvYTZsTW4wa0V2Z0NkbXA2dGJ2dVNVREFid0l0YWNDSUFOejVrWEdnNHJESGtpVDl6WUpJS2t5SzJsUHRhRFQySmltdDdhNklob3Y0MGF3QXpXbDhoODU0a0Jsb2p0ZEFEeWN5amVqb0ZRMjlMYnFaa3lMRG1qRklXdXBIOEl1X3VpQzZDRzVYNjF4LTZoeDVSTEdraldhekkxXzFpS3Q0OC1QQXVwR3I5QktQbkl6R3NjTm9URVg0RllZZElfSlNyTi0zVGpkWHVhUmxrWGVBV25lOXhzUjB2dklYSmMtdHFoM2RCWERWWHlTLXNfaHlZQ3dIYzN3WEMyQkdIU2EtWG42SGVWaG9PcHZUem1zaXd3eG1wN19LZnBlX2g5dWhMb2xlaEN2RGEwMWRuZW5PYUFCdkJoYVZGcGVtXzBfTHI2dzBBb3ZUaHNaQXFjekFUcmJoVmlMTU1vVkJZZy16em1DeFM5U3JrYmtiTURJSHU1T052ZWNTQTFMRkkxN0l2U1FJeDUxNUVmbU5VX2h0SWlQWnNoc3J5M3F4RWdvTUlDSmZVVEV2UU5wcmo0NkdhRlV6cUFXVkNHdGttRWlmMUpDQ0dnbFdGdUZwSTB5Ql9VUGFSa1JlY0hWRXItNGtiVzd1SGRfcTh3ZFFadHJoUExLc19INjhtWUQzdVRCME5tN3dPYXJYeXFSeUYxLWVzQ0wyRF9RbHowZ2FzRVZZcVVyQUx5MnIwS0dwLW9PeDBoUkZGOEdHdzZlT1NwXzVZNGt4ZV9yVEV5am9RcVJHTWxLMUZINUpFcENPTXpOXzM5UVVoc2FscWVIWGl1dW82Y2NkdlVFVHY4ZUVFb0kxRVN4YVpNbzY5d2FxdWw5NEgybFJCemlObl84XzhfbWVoSTdmVk5Zekpxb0JabS1KOWJyYmxzeTZ2bF9BODU1TUdJSXZZeXY1NFVLZjF2YlRWVzZpUEFGc28wLWQ4Y2YwOFdiY1UwbmViS0h2Q2lwN1VENnRxNnJPdnM4cWpjTjZDZDJYa3lwSTZrM0VOTTAwVHlSeE5Hc2VPOHRFNFdRTEZNZTNSNFJzbDB0Z1p5Qmx6SkctdDJtYWZfTEtDTElaVlB6X2lkaXhkejYxZzBaWlFUaDctLXlBa0RrY3BaUkJBZUxVNVl3ZDFaal9HbTVra1luVVgzbG1FQ0t3QlNGa2hEZG5CbDYyeHVfMVg4WHpodmxjVTFRWWdxeWVybi1wWEVtMGdyT3BPNzI1Zm92RTVldWVSMVVvUVhaM0x5aVVXT0xhcjl6VTd3Um1mNUFDcGxINjhfYU96WFlBZ3RFYnRFc0VhejBaQVNJWl9xOTBEOTBJOXRCS1dveTFZTTJ2bzdrMC1Oc0VfS0NWVnpwaUlwTHNVU1FtbEIzc2k4M3IxVTM4QXpRNy03SUdUemlGY0Y1cXFMTjYwR1ZsLXVOazlMOUlmOENGakp5UElvdUd0cEd1X3QxQkdUTmN6NGk4X2kwWVJELURudVpsMlhlQXY5UlFaRVVTcGdxdFN4X056M196MWZCdEc3WXZyclhXNWFZQTVmNDA0ZWF0NEc2anJ1UUNwZmRuSVZDREFmbHE1V1lkRTlDZ3ExTWI5U3NVdU13bVdpWktZX0tCS1g2QU5PU1lseTRSZE5MVzc4MXh5QnJiN2xKTU9vTnJHamhTaVVJUHpxTmNvLVN3cXB2OXNiWi1jSEJNWXJNbF9xaVEtTjNCZDNFZlQwWXdmZzN0Y3dWM2pvd0NXZEVPMEZCaHJldk9VVXd1LXlSdUp0dllpcnMxRlhGUHlYTU9kMDdJZ3dMeFVjLXFEY3I1enNCVzlqWWNVeXFla0gzZGRDZm04VWxyUGNSQTZoZkEtYWowdzBVZjBSMUVqWEJDYzUxZWFZOTVNcHJORmRiTHhVU2k0bk9yWVFnUlQxRncuNVIwTXJSMUZLWGVFRkRWU19jdzNhZw\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "5641" + ], + "x-ms-client-request-id": [ + "770dc53b-248f-4ba7-9e31-ddd1a0496092" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"Conflict\",\r\n \"message\": \"Conflict while restoring secret https://kv-sdk-test.vault-int.azure-int.net/secrets/SecretBackupRestoreTest/0699d2c2baed44c09f9c8a54f5f1bcad - secret already exists or concurrent access\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:02:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "7e1b53dd-53df-4820-a035-3c33e84ff39e" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "//secrets/restore?api-version=2016-10-01", + "EncodedRequestUri": "Ly9zZWNyZXRzL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"value\": \"KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUppTlRjMk5ESTVaaTB5TlRZNExUUTFZbVV0WW1aaFlTMHpOMlZrTURkbVl6QmpPREVpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLmtXdFNZT2c2bU1mN1BkaWhPUzE0Rlk4MktNX3doZFdSVHJPUzRqdVItRFlWXzkyZExWeUZMaHViOFlQMDRMMkNVTlUzSXoxaWF6bEpEc0JTZmxRY1FPUjJTSjUyYVE2RmwxYzM5SXNTekRNcmhxZUF5amR6YTZ3OVhYbFkya01scFl2RTMxa20xRVlwbDNCTk9aMmZiR1RfZEl1dDJYMjJ1NC1FZ3N1ZFlVOC1Sa3NRVENnUExQeTE2Wm1udEpUTWRmUDhjMHphUWIzMDFPRHdqMDRFdVBIMy1lS0l0YlNMR3BtRjlsdS1wNmxxcFQ5SjB0eXVYVlV1TnBHNGVKeHEtTWVJcWdHX2x1RGN5ZGFvS01BS2FEQnpCejJGTm9uM2J0R0V2Um5Fbm93VDFXWmVZZ0FxelBIWlNaZ0RuM3BPbmZpVU05QUpDcUJ2ck4zWjNJUnRCdy41RXBMVWFld2xwbS1LczZJejA2UGJ3LlhnS3VJd1pRdXlUdVRkMUZSQno2SVF0a0t0c0ZuellucFNvcGlzdlJCZWtaZkNEN0wtZzVHbzl3N1o0NkRJQkFHMV92bnpRNXo3WGlISEdJSUxuRW9CVEpLR0x6X3p3cVZMM1BFVTZEdEtOeWc5bWtrTHQza01hcHl5OHFMT0oxeXBoS1lQcEZQTnRPSFFoQ0dXSXBldlpuM3ZEeV9PMG5zbkdtaW13ZkhndlRjcUF2UzJVQTA4eXYzdEpSdHdTdVB6QW5MQTVOZzA2clJUeEJySk8tWG4yTzVXaHRYSml5b3o4bExteEpJdjNXZmcxS2pORDhuOVhjSGpUODlFa2VLQWk2aWp1M0p5OWFTclgwWnpubGZ6Z0ZGb3V4WVhGdXZvbGlNZXRuY19jSzJIYzVoekp3ZUprSld1Y3BTaGtTejRsUjFhLTVhRXRfUFVlTXZLMEd3UkxoQ2lZd3dmTDJDZFFJdkx6ZWhXdGV3VjkzTEhRSG1OU1ZEZjVCYkhEREF5MTBiMkhjMTJPY2Q0eEFKWUV2dDA0N1Z2THRHaE42V09CMnZ5VlBCa3RMamdCeG82ZHBlUVhaNEhZZzN0bUE2bDI1RXIzWnY4ZEtFZmNENXB3UWVPOXpzTzZwNXVHZlE0N2ljN2Mtalp3NWZOZlkwQlg1VHlnN01Lc0o3dGFjdkdmc0dDQWppaXdacDFKTGdZU3Y4Y2VDS1d1TUJSWXlOU3JfZ1pnLTJ1WUZUX1BOVEJUdkw2ZUVMalNoR3g3TEdFNWkzVlh2QUtmMHF6UDBjdnRzb01MSjUyU2RBNTFNSEpMOXBwVnFhYkk0WkhxX1RzTTZQMF9XS0lBU3QtdjRsOGdCcFQ4bEVac3NXdXVnRzhYOUt3Z054cF9FNFVtcDNJR1lidVhwaVRkbXdPZ3JqdURmM1RCZWxLOXJZc3VHSnBBOTNUZ0VvTTdwZjljTkRtM20wWFZBZFNPaGZEUk0wMndNSnpHVTMyc1g0TG9iMFh0Tmk3cHJvNnRoTU9RRzdld0diLVZxZXJYaXRnQ1JXT2RZVXA4RWRVcFJmby1OeUE3ZjZ5bl9zOHd3ODI4YkhIeTBzTTJGZWNQaUEtSjBhY2UxbGpCbjV4YlNQSUx0RjhFRDZTLVdOM3FlQXJfUVZidkc1bDNrYW9iRnpCemhOWlhhOWdTWkZZa1RwNExiQ3RwRW5TdVV5dVU4aUVpaU1LS1N3cmZiMFkwbkZTMnpZelRLZzU4c3lvdjdIQVBXT2tXOTNSM1RtUUF0elo2WW1aWW5ZcElKSjA3VTRJZ3hlMXI2dDhFUXNwd2tyV1BKME1IVjJOb3FKX3BPdHZTbkZ2ZHhhTkZEaGtMMlJnZWtZVWhLekgtdFJndGE2eUtkMDB4bTV4d0hwNVBzVnFnamlFTDlDWUtzbzdMcWNSUDBMMS1UdlZRNHVEeDk4S0hkei1nZ2hVRUJCUjdqM2pNeXBSbjVVemNVZWFEZEdPdHFZRjhYLW5yajVxM2FNYUQ3MUs0eWZ3QXNKSVdULVdIcnp1UkRRSFhmczFjOXp6SEM3NGFSREFnX2F5Ny1LTjQzc3VpdS0wb0pnSE40d3Y2ZUR1Wm5xMWNIQU9PdDZJVEMyLWFKdlZEa3o1N09wdG9jY1dDTDBtZTFqdWEtZGV5R0R4S1NaaC03Y0pPTVZ1Y0xQOVptX1NNV1k2aE1qM0lNUEVyN0xlMGZNZXZ1VTk0SG45YXZEdExHdFBHb2pGSzZMM3F0cWVUSnFaMnhwY0p2S1lXVW40MFZJRTY0LTkzQ09VT2VjZW9JeFJadDd2MTRpTE5nNkVSNnpwM2hrMF92dkF3dXQwNG9WNjItR1A2d3J1cHpheGN4SkNGOXhNaGhGU255OVdSVHVua21sdWtUT0FvQjJCMjhfWlhZekVNMzFIWVJWMjl6cGN4TjBxaWROUUpaS2xsOUxNbzQ1U3hLem1PRGNUaHpKM0J6bFhQWHM2QjJNWHhQMWhlQnViSGhnUHRsNDZ5ekdwVHdwVnpPVkQyMXlIM1o4R25ralVEQTdmMUhmVHhWMkFOTW5RWlJHUWZTalZhS2hwOG9IOFZCc0VhcWd6eW5MOTB3X0RHRldIcWs0ZHU2SHNxX0k4Z3VtMl9QbFRyU2VJWlMzNldhMzI0Ulg5cU00ak85RFladGdHSE5DR3k3bGZoY1lCU2wxa2FiY3BlQmFxdFlpYllKNVlJeE0zUFNxcWlOMVdMajJEWEdfT0w3RTVhdFhtNjRIbEVWcTFpUVk4SVpBcmZQeGNQMWRORnJSN0hveFRETlFZVkY5Q3hNR3o4dVg1eHFaSWF5dlZKSEtlYmxCZTI1R0tuQ3lIOGtWT1AybTNfalNFSUxFZ0x1cVVENTBxQURuVzFVZmlaWnpldVN3MXMtNWlCcEI5N3d0NG00dmRyck95YWFqdFU5YkE5UjRJX2ZBeDV6ZmE5T2otanBoVzE0UFhhWXhyc29ldXhWWlR1bFpxZ0tBT0VvVXF2N3BoeXB6MlE0Nm1GWV9MZmxRN2xNa0lkek16OUY5V0lZT25fcEl4NG1YT1R3UmZQRGkyM19yeEhhOFJSY1VxNGxPaUxXdjQyR0Y2X2hlSEdzQ1hfMHpjREZqSGRBYTBodU9JdU1lRFBwNjZmYzBJeHV3T1NXZWtZdS1TYnZoaXFrWjFHVXJoS2JRVmgtLWZwRXhnc2JVd0o0RlY0aWE4NlAya1lFcVJHLWpXUGY1TEtpZ3d4cHRGdGp0S25QQmFWTGQxQU0xejNwN3VSZVZzM2FJOXJrbHRMSXYySlRYMl9aa3ExY0pyMlpkRE5Rc2w5bHBCNzVIcDF5RlFYX3RYd01IWklSVDk2aUNycjFOejBCS2VncEtFQ1VlUUgybHVtQzlEMlAwU3ZnZzZFR29RVGZGWjBYZGRFUDZDb1pyazJHamN1NFpfT3dVc25BLUVvYTZsTW4wa0V2Z0NkbXA2dGJ2dVNVREFid0l0YWNDSUFOejVrWEdnNHJESGtpVDl6WUpJS2t5SzJsUHRhRFQySmltdDdhNklob3Y0MGF3QXpXbDhoODU0a0Jsb2p0ZEFEeWN5amVqb0ZRMjlMYnFaa3lMRG1qRklXdXBIOEl1X3VpQzZDRzVYNjF4LTZoeDVSTEdraldhekkxXzFpS3Q0OC1QQXVwR3I5QktQbkl6R3NjTm9URVg0RllZZElfSlNyTi0zVGpkWHVhUmxrWGVBV25lOXhzUjB2dklYSmMtdHFoM2RCWERWWHlTLXNfaHlZQ3dIYzN3WEMyQkdIU2EtWG42SGVWaG9PcHZUem1zaXd3eG1wN19LZnBlX2g5dWhMb2xlaEN2RGEwMWRuZW5PYUFCdkJoYVZGcGVtXzBfTHI2dzBBb3ZUaHNaQXFjekFUcmJoVmlMTU1vVkJZZy16em1DeFM5U3JrYmtiTURJSHU1T052ZWNTQTFMRkkxN0l2U1FJeDUxNUVmbU5VX2h0SWlQWnNoc3J5M3F4RWdvTUlDSmZVVEV2UU5wcmo0NkdhRlV6cUFXVkNHdGttRWlmMUpDQ0dnbFdGdUZwSTB5Ql9VUGFSa1JlY0hWRXItNGtiVzd1SGRfcTh3ZFFadHJoUExLc19INjhtWUQzdVRCME5tN3dPYXJYeXFSeUYxLWVzQ0wyRF9RbHowZ2FzRVZZcVVyQUx5MnIwS0dwLW9PeDBoUkZGOEdHdzZlT1NwXzVZNGt4ZV9yVEV5am9RcVJHTWxLMUZINUpFcENPTXpOXzM5UVVoc2FscWVIWGl1dW82Y2NkdlVFVHY4ZUVFb0kxRVN4YVpNbzY5d2FxdWw5NEgybFJCemlObl84XzhfbWVoSTdmVk5Zekpxb0JabS1KOWJyYmxzeTZ2bF9BODU1TUdJSXZZeXY1NFVLZjF2YlRWVzZpUEFGc28wLWQ4Y2YwOFdiY1UwbmViS0h2Q2lwN1VENnRxNnJPdnM4cWpjTjZDZDJYa3lwSTZrM0VOTTAwVHlSeE5Hc2VPOHRFNFdRTEZNZTNSNFJzbDB0Z1p5Qmx6SkctdDJtYWZfTEtDTElaVlB6X2lkaXhkejYxZzBaWlFUaDctLXlBa0RrY3BaUkJBZUxVNVl3ZDFaal9HbTVra1luVVgzbG1FQ0t3QlNGa2hEZG5CbDYyeHVfMVg4WHpodmxjVTFRWWdxeWVybi1wWEVtMGdyT3BPNzI1Zm92RTVldWVSMVVvUVhaM0x5aVVXT0xhcjl6VTd3Um1mNUFDcGxINjhfYU96WFlBZ3RFYnRFc0VhejBaQVNJWl9xOTBEOTBJOXRCS1dveTFZTTJ2bzdrMC1Oc0VfS0NWVnpwaUlwTHNVU1FtbEIzc2k4M3IxVTM4QXpRNy03SUdUemlGY0Y1cXFMTjYwR1ZsLXVOazlMOUlmOENGakp5UElvdUd0cEd1X3QxQkdUTmN6NGk4X2kwWVJELURudVpsMlhlQXY5UlFaRVVTcGdxdFN4X056M196MWZCdEc3WXZyclhXNWFZQTVmNDA0ZWF0NEc2anJ1UUNwZmRuSVZDREFmbHE1V1lkRTlDZ3ExTWI5U3NVdU13bVdpWktZX0tCS1g2QU5PU1lseTRSZE5MVzc4MXh5QnJiN2xKTU9vTnJHamhTaVVJUHpxTmNvLVN3cXB2OXNiWi1jSEJNWXJNbF9xaVEtTjNCZDNFZlQwWXdmZzN0Y3dWM2pvd0NXZEVPMEZCaHJldk9VVXd1LXlSdUp0dllpcnMxRlhGUHlYTU9kMDdJZ3dMeFVjLXFEY3I1enNCVzlqWWNVeXFla0gzZGRDZm04VWxyUGNSQTZoZkEtYWowdzBVZjBSMUVqWEJDYzUxZWFZOTVNcHJORmRiTHhVU2k0bk9yWVFnUlQxRncuNVIwTXJSMUZLWGVFRkRWU19jdzNhZw\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "5641" + ], + "x-ms-client-request-id": [ + "932891ed-7291-4a6a-972e-13d168828cf2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"Conflict\",\r\n \"message\": \"Conflict while restoring secret https://kv-sdk-test.vault-int.azure-int.net/secrets/SecretBackupRestoreTest/0699d2c2baed44c09f9c8a54f5f1bcad - secret already exists or concurrent access\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "227" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:02:11 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "88aaa59b-f85a-424f-8d38-1372dfd533f7" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 409 + }, + { + "RequestUri": "//secrets/restore?api-version=2016-10-01", + "EncodedRequestUri": "Ly9zZWNyZXRzL3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"value\": \"KUF6dXJlS2V5VmF1bHRTZWNyZXRCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUppTlRjMk5ESTVaaTB5TlRZNExUUTFZbVV0WW1aaFlTMHpOMlZrTURkbVl6QmpPREVpTENKaGJHY2lPaUpTVTBFdFQwRkZVQ0lzSW1WdVl5STZJa0V4TWpoRFFrTXRTRk15TlRZaWZRLmtXdFNZT2c2bU1mN1BkaWhPUzE0Rlk4MktNX3doZFdSVHJPUzRqdVItRFlWXzkyZExWeUZMaHViOFlQMDRMMkNVTlUzSXoxaWF6bEpEc0JTZmxRY1FPUjJTSjUyYVE2RmwxYzM5SXNTekRNcmhxZUF5amR6YTZ3OVhYbFkya01scFl2RTMxa20xRVlwbDNCTk9aMmZiR1RfZEl1dDJYMjJ1NC1FZ3N1ZFlVOC1Sa3NRVENnUExQeTE2Wm1udEpUTWRmUDhjMHphUWIzMDFPRHdqMDRFdVBIMy1lS0l0YlNMR3BtRjlsdS1wNmxxcFQ5SjB0eXVYVlV1TnBHNGVKeHEtTWVJcWdHX2x1RGN5ZGFvS01BS2FEQnpCejJGTm9uM2J0R0V2Um5Fbm93VDFXWmVZZ0FxelBIWlNaZ0RuM3BPbmZpVU05QUpDcUJ2ck4zWjNJUnRCdy41RXBMVWFld2xwbS1LczZJejA2UGJ3LlhnS3VJd1pRdXlUdVRkMUZSQno2SVF0a0t0c0ZuellucFNvcGlzdlJCZWtaZkNEN0wtZzVHbzl3N1o0NkRJQkFHMV92bnpRNXo3WGlISEdJSUxuRW9CVEpLR0x6X3p3cVZMM1BFVTZEdEtOeWc5bWtrTHQza01hcHl5OHFMT0oxeXBoS1lQcEZQTnRPSFFoQ0dXSXBldlpuM3ZEeV9PMG5zbkdtaW13ZkhndlRjcUF2UzJVQTA4eXYzdEpSdHdTdVB6QW5MQTVOZzA2clJUeEJySk8tWG4yTzVXaHRYSml5b3o4bExteEpJdjNXZmcxS2pORDhuOVhjSGpUODlFa2VLQWk2aWp1M0p5OWFTclgwWnpubGZ6Z0ZGb3V4WVhGdXZvbGlNZXRuY19jSzJIYzVoekp3ZUprSld1Y3BTaGtTejRsUjFhLTVhRXRfUFVlTXZLMEd3UkxoQ2lZd3dmTDJDZFFJdkx6ZWhXdGV3VjkzTEhRSG1OU1ZEZjVCYkhEREF5MTBiMkhjMTJPY2Q0eEFKWUV2dDA0N1Z2THRHaE42V09CMnZ5VlBCa3RMamdCeG82ZHBlUVhaNEhZZzN0bUE2bDI1RXIzWnY4ZEtFZmNENXB3UWVPOXpzTzZwNXVHZlE0N2ljN2Mtalp3NWZOZlkwQlg1VHlnN01Lc0o3dGFjdkdmc0dDQWppaXdacDFKTGdZU3Y4Y2VDS1d1TUJSWXlOU3JfZ1pnLTJ1WUZUX1BOVEJUdkw2ZUVMalNoR3g3TEdFNWkzVlh2QUtmMHF6UDBjdnRzb01MSjUyU2RBNTFNSEpMOXBwVnFhYkk0WkhxX1RzTTZQMF9XS0lBU3QtdjRsOGdCcFQ4bEVac3NXdXVnRzhYOUt3Z054cF9FNFVtcDNJR1lidVhwaVRkbXdPZ3JqdURmM1RCZWxLOXJZc3VHSnBBOTNUZ0VvTTdwZjljTkRtM20wWFZBZFNPaGZEUk0wMndNSnpHVTMyc1g0TG9iMFh0Tmk3cHJvNnRoTU9RRzdld0diLVZxZXJYaXRnQ1JXT2RZVXA4RWRVcFJmby1OeUE3ZjZ5bl9zOHd3ODI4YkhIeTBzTTJGZWNQaUEtSjBhY2UxbGpCbjV4YlNQSUx0RjhFRDZTLVdOM3FlQXJfUVZidkc1bDNrYW9iRnpCemhOWlhhOWdTWkZZa1RwNExiQ3RwRW5TdVV5dVU4aUVpaU1LS1N3cmZiMFkwbkZTMnpZelRLZzU4c3lvdjdIQVBXT2tXOTNSM1RtUUF0elo2WW1aWW5ZcElKSjA3VTRJZ3hlMXI2dDhFUXNwd2tyV1BKME1IVjJOb3FKX3BPdHZTbkZ2ZHhhTkZEaGtMMlJnZWtZVWhLekgtdFJndGE2eUtkMDB4bTV4d0hwNVBzVnFnamlFTDlDWUtzbzdMcWNSUDBMMS1UdlZRNHVEeDk4S0hkei1nZ2hVRUJCUjdqM2pNeXBSbjVVemNVZWFEZEdPdHFZRjhYLW5yajVxM2FNYUQ3MUs0eWZ3QXNKSVdULVdIcnp1UkRRSFhmczFjOXp6SEM3NGFSREFnX2F5Ny1LTjQzc3VpdS0wb0pnSE40d3Y2ZUR1Wm5xMWNIQU9PdDZJVEMyLWFKdlZEa3o1N09wdG9jY1dDTDBtZTFqdWEtZGV5R0R4S1NaaC03Y0pPTVZ1Y0xQOVptX1NNV1k2aE1qM0lNUEVyN0xlMGZNZXZ1VTk0SG45YXZEdExHdFBHb2pGSzZMM3F0cWVUSnFaMnhwY0p2S1lXVW40MFZJRTY0LTkzQ09VT2VjZW9JeFJadDd2MTRpTE5nNkVSNnpwM2hrMF92dkF3dXQwNG9WNjItR1A2d3J1cHpheGN4SkNGOXhNaGhGU255OVdSVHVua21sdWtUT0FvQjJCMjhfWlhZekVNMzFIWVJWMjl6cGN4TjBxaWROUUpaS2xsOUxNbzQ1U3hLem1PRGNUaHpKM0J6bFhQWHM2QjJNWHhQMWhlQnViSGhnUHRsNDZ5ekdwVHdwVnpPVkQyMXlIM1o4R25ralVEQTdmMUhmVHhWMkFOTW5RWlJHUWZTalZhS2hwOG9IOFZCc0VhcWd6eW5MOTB3X0RHRldIcWs0ZHU2SHNxX0k4Z3VtMl9QbFRyU2VJWlMzNldhMzI0Ulg5cU00ak85RFladGdHSE5DR3k3bGZoY1lCU2wxa2FiY3BlQmFxdFlpYllKNVlJeE0zUFNxcWlOMVdMajJEWEdfT0w3RTVhdFhtNjRIbEVWcTFpUVk4SVpBcmZQeGNQMWRORnJSN0hveFRETlFZVkY5Q3hNR3o4dVg1eHFaSWF5dlZKSEtlYmxCZTI1R0tuQ3lIOGtWT1AybTNfalNFSUxFZ0x1cVVENTBxQURuVzFVZmlaWnpldVN3MXMtNWlCcEI5N3d0NG00dmRyck95YWFqdFU5YkE5UjRJX2ZBeDV6ZmE5T2otanBoVzE0UFhhWXhyc29ldXhWWlR1bFpxZ0tBT0VvVXF2N3BoeXB6MlE0Nm1GWV9MZmxRN2xNa0lkek16OUY5V0lZT25fcEl4NG1YT1R3UmZQRGkyM19yeEhhOFJSY1VxNGxPaUxXdjQyR0Y2X2hlSEdzQ1hfMHpjREZqSGRBYTBodU9JdU1lRFBwNjZmYzBJeHV3T1NXZWtZdS1TYnZoaXFrWjFHVXJoS2JRVmgtLWZwRXhnc2JVd0o0RlY0aWE4NlAya1lFcVJHLWpXUGY1TEtpZ3d4cHRGdGp0S25QQmFWTGQxQU0xejNwN3VSZVZzM2FJOXJrbHRMSXYySlRYMl9aa3ExY0pyMlpkRE5Rc2w5bHBCNzVIcDF5RlFYX3RYd01IWklSVDk2aUNycjFOejBCS2VncEtFQ1VlUUgybHVtQzlEMlAwU3ZnZzZFR29RVGZGWjBYZGRFUDZDb1pyazJHamN1NFpfT3dVc25BLUVvYTZsTW4wa0V2Z0NkbXA2dGJ2dVNVREFid0l0YWNDSUFOejVrWEdnNHJESGtpVDl6WUpJS2t5SzJsUHRhRFQySmltdDdhNklob3Y0MGF3QXpXbDhoODU0a0Jsb2p0ZEFEeWN5amVqb0ZRMjlMYnFaa3lMRG1qRklXdXBIOEl1X3VpQzZDRzVYNjF4LTZoeDVSTEdraldhekkxXzFpS3Q0OC1QQXVwR3I5QktQbkl6R3NjTm9URVg0RllZZElfSlNyTi0zVGpkWHVhUmxrWGVBV25lOXhzUjB2dklYSmMtdHFoM2RCWERWWHlTLXNfaHlZQ3dIYzN3WEMyQkdIU2EtWG42SGVWaG9PcHZUem1zaXd3eG1wN19LZnBlX2g5dWhMb2xlaEN2RGEwMWRuZW5PYUFCdkJoYVZGcGVtXzBfTHI2dzBBb3ZUaHNaQXFjekFUcmJoVmlMTU1vVkJZZy16em1DeFM5U3JrYmtiTURJSHU1T052ZWNTQTFMRkkxN0l2U1FJeDUxNUVmbU5VX2h0SWlQWnNoc3J5M3F4RWdvTUlDSmZVVEV2UU5wcmo0NkdhRlV6cUFXVkNHdGttRWlmMUpDQ0dnbFdGdUZwSTB5Ql9VUGFSa1JlY0hWRXItNGtiVzd1SGRfcTh3ZFFadHJoUExLc19INjhtWUQzdVRCME5tN3dPYXJYeXFSeUYxLWVzQ0wyRF9RbHowZ2FzRVZZcVVyQUx5MnIwS0dwLW9PeDBoUkZGOEdHdzZlT1NwXzVZNGt4ZV9yVEV5am9RcVJHTWxLMUZINUpFcENPTXpOXzM5UVVoc2FscWVIWGl1dW82Y2NkdlVFVHY4ZUVFb0kxRVN4YVpNbzY5d2FxdWw5NEgybFJCemlObl84XzhfbWVoSTdmVk5Zekpxb0JabS1KOWJyYmxzeTZ2bF9BODU1TUdJSXZZeXY1NFVLZjF2YlRWVzZpUEFGc28wLWQ4Y2YwOFdiY1UwbmViS0h2Q2lwN1VENnRxNnJPdnM4cWpjTjZDZDJYa3lwSTZrM0VOTTAwVHlSeE5Hc2VPOHRFNFdRTEZNZTNSNFJzbDB0Z1p5Qmx6SkctdDJtYWZfTEtDTElaVlB6X2lkaXhkejYxZzBaWlFUaDctLXlBa0RrY3BaUkJBZUxVNVl3ZDFaal9HbTVra1luVVgzbG1FQ0t3QlNGa2hEZG5CbDYyeHVfMVg4WHpodmxjVTFRWWdxeWVybi1wWEVtMGdyT3BPNzI1Zm92RTVldWVSMVVvUVhaM0x5aVVXT0xhcjl6VTd3Um1mNUFDcGxINjhfYU96WFlBZ3RFYnRFc0VhejBaQVNJWl9xOTBEOTBJOXRCS1dveTFZTTJ2bzdrMC1Oc0VfS0NWVnpwaUlwTHNVU1FtbEIzc2k4M3IxVTM4QXpRNy03SUdUemlGY0Y1cXFMTjYwR1ZsLXVOazlMOUlmOENGakp5UElvdUd0cEd1X3QxQkdUTmN6NGk4X2kwWVJELURudVpsMlhlQXY5UlFaRVVTcGdxdFN4X056M196MWZCdEc3WXZyclhXNWFZQTVmNDA0ZWF0NEc2anJ1UUNwZmRuSVZDREFmbHE1V1lkRTlDZ3ExTWI5U3NVdU13bVdpWktZX0tCS1g2QU5PU1lseTRSZE5MVzc4MXh5QnJiN2xKTU9vTnJHamhTaVVJUHpxTmNvLVN3cXB2OXNiWi1jSEJNWXJNbF9xaVEtTjNCZDNFZlQwWXdmZzN0Y3dWM2pvd0NXZEVPMEZCaHJldk9VVXd1LXlSdUp0dllpcnMxRlhGUHlYTU9kMDdJZ3dMeFVjLXFEY3I1enNCVzlqWWNVeXFla0gzZGRDZm04VWxyUGNSQTZoZkEtYWowdzBVZjBSMUVqWEJDYzUxZWFZOTVNcHJORmRiTHhVU2k0bk9yWVFnUlQxRncuNVIwTXJSMUZLWGVFRkRWU19jdzNhZw\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "5641" + ], + "x-ms-client-request-id": [ + "8df9d312-364a-4140-ab41-691851106cb0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"contentType\": \"text\",\r\n \"id\": \"https://kv-sdk-test.vault-int.azure-int.net/secrets/SecretBackupRestoreTest/0699d2c2baed44c09f9c8a54f5f1bcad\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1491343301,\r\n \"updated\": 1491343301\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "244" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:02:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "6d1c95c9-4dcf-4341-ad55-229df739b940" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//secrets/SecretBackupRestoreTest/?api-version=2016-10-01", + "EncodedRequestUri": "Ly9zZWNyZXRzL1NlY3JldEJhY2t1cFJlc3RvcmVUZXN0Lz9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a2e2fdd-a386-4aae-a30f-d6083fe6adb8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": \"if found please return to secretbackuprestoretest\",\r\n \"contentType\": \"text\",\r\n \"id\": \"https://kv-sdk-test.vault-int.azure-int.net/secrets/SecretBackupRestoreTest/0699d2c2baed44c09f9c8a54f5f1bcad\",\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"nbf\": 1262332800,\r\n \"exp\": 1893484800,\r\n \"created\": 1491343301,\r\n \"updated\": 1491343301\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 04 Apr 2017 22:02:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "42ca4ebe-fc6f-4703-8da7-1751b802f760" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1151" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "VaultAddress": "https://kv-sdk-test.vault-int.azure-int.net/", + "KeyName": "sdktestkey", + "KeyVersion": "749745164e5b41f0b8b39046339118cb", + "SoftDeleteEnabled": "true" + } +} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretCreateDeleteRecoverPurgeTest.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretCreateDeleteRecoverPurgeTest.json index d1f0e85145ee..7111d4f78339 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretCreateDeleteRecoverPurgeTest.json +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSecretCreateDeleteRecoverPurgeTest.json @@ -1477,6 +1477,7 @@ "Variables": { "VaultAddress": "https://karlaugsoftdeletesdk.vault-int.azure-int.net", "KeyName": "sdktestkey", - "KeyVersion": "cf7c860fb9db4564a1389db973a52436" + "KeyVersion": "cf7c860fb9db4564a1389db973a52436", + "SoftDeleteEnabled": "true", } } \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/IKeyVaultClient.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/IKeyVaultClient.cs index 96c6bee21987..1cfadacd1281 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/IKeyVaultClient.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/IKeyVaultClient.cs @@ -726,6 +726,41 @@ public partial interface IKeyVaultClient : System.IDisposable /// Task> RecoverDeletedSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Requests that a backup of the specified secret be downloaded to the + /// client. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the secret. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> BackupSecretWithHttpMessagesAsync( string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default( CancellationToken ) ); + + /// + /// Restores a backed up secret to a vault. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The backup blob associated with a secret bundle. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> RestoreSecretWithHttpMessagesAsync( string vaultBaseUrl, byte[ ] secretBundleBackup, Dictionary> customHeaders = null, CancellationToken cancellationToken = default( CancellationToken ) ); + /// /// List certificates in a specified key vault /// diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClient.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClient.cs index 28c321df71ac..5d9e974d5dd8 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClient.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClient.cs @@ -6115,6 +6115,388 @@ private void Initialize() return _result; } + /// + /// Requests that a backup of the specified secret be downloaded to the client. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the secret. + /// + /// + /// 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> BackupSecretWithHttpMessagesAsync( string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default( CancellationToken ) ) + { + if ( vaultBaseUrl == null ) + { + throw new ValidationException( ValidationRules.CannotBeNull, "vaultBaseUrl" ); + } + if ( secretName == null ) + { + throw new ValidationException( ValidationRules.CannotBeNull, "secretName" ); + } + if ( ApiVersion == null ) + { + throw new ValidationException( ValidationRules.CannotBeNull, "this.ApiVersion" ); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if ( _shouldTrace ) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString( ); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add( "vaultBaseUrl", vaultBaseUrl ); + tracingParameters.Add( "secretName", secretName ); + tracingParameters.Add( "cancellationToken", cancellationToken ); + ServiceClientTracing.Enter( _invocationId, this, "BackupSecret", tracingParameters ); + } + // Construct URL + var _baseUrl = BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets/{secret-name}/backup"; + _url = _url.Replace( "{vaultBaseUrl}", vaultBaseUrl ); + _url = _url.Replace( "{secret-name}", System.Uri.EscapeDataString( secretName ) ); + 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod( "POST" ); + _httpRequest.RequestUri = new System.Uri( _url ); + // Set Headers + if ( GenerateClientRequestId != null && GenerateClientRequestId.Value ) + { + _httpRequest.Headers.TryAddWithoutValidation( "x-ms-client-request-id", System.Guid.NewGuid( ).ToString( ) ); + } + if ( AcceptLanguage != null ) + { + if ( _httpRequest.Headers.Contains( "accept-language" ) ) + { + _httpRequest.Headers.Remove( "accept-language" ); + } + _httpRequest.Headers.TryAddWithoutValidation( "accept-language", 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 ( Credentials != null ) + { + cancellationToken.ThrowIfCancellationRequested( ); + await Credentials.ProcessHttpRequestAsync( _httpRequest, cancellationToken ).ConfigureAwait( false ); + } + // Send Request + if ( _shouldTrace ) + { + ServiceClientTracing.SendRequest( _invocationId, _httpRequest ); + } + cancellationToken.ThrowIfCancellationRequested( ); + _httpResponse = await 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 KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync( ).ConfigureAwait( false ); + KeyVaultError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + if ( _errorBody != null ) + { + ex.Body = _errorBody; + } + } + catch ( JsonException ) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper( _httpRequest, _requestContent ); + ex.Response = new HttpResponseMessageWrapper( _httpResponse, _responseContent ); + 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 = SafeJsonConvert.DeserializeObject( _responseContent, 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; + } + + /// + /// Restores a backed up secret to a vault. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The backup blob associated with a secret bundle. + /// + /// + /// 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> RestoreSecretWithHttpMessagesAsync( string vaultBaseUrl, byte[ ] secretBundleBackup, Dictionary> customHeaders = null, CancellationToken cancellationToken = default( CancellationToken ) ) + { + if ( vaultBaseUrl == null ) + { + throw new ValidationException( ValidationRules.CannotBeNull, "vaultBaseUrl" ); + } + if ( ApiVersion == null ) + { + throw new ValidationException( ValidationRules.CannotBeNull, "this.ApiVersion" ); + } + if ( secretBundleBackup == null ) + { + throw new ValidationException( ValidationRules.CannotBeNull, "secretBundleBackup" ); + } + SecretRestoreParameters parameters = new SecretRestoreParameters(); + if ( secretBundleBackup != null ) + { + parameters.SecretBundleBackup = secretBundleBackup; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if ( _shouldTrace ) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString( ); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add( "vaultBaseUrl", vaultBaseUrl ); + tracingParameters.Add( "parameters", parameters ); + tracingParameters.Add( "cancellationToken", cancellationToken ); + ServiceClientTracing.Enter( _invocationId, this, "RestoreSecret", tracingParameters ); + } + // Construct URL + var _baseUrl = BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets/restore"; + _url = _url.Replace( "{vaultBaseUrl}", vaultBaseUrl ); + 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 System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod( "POST" ); + _httpRequest.RequestUri = new System.Uri( _url ); + // Set Headers + if ( GenerateClientRequestId != null && GenerateClientRequestId.Value ) + { + _httpRequest.Headers.TryAddWithoutValidation( "x-ms-client-request-id", System.Guid.NewGuid( ).ToString( ) ); + } + if ( AcceptLanguage != null ) + { + if ( _httpRequest.Headers.Contains( "accept-language" ) ) + { + _httpRequest.Headers.Remove( "accept-language" ); + } + _httpRequest.Headers.TryAddWithoutValidation( "accept-language", 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 ( parameters != null ) + { + _requestContent = SafeJsonConvert.SerializeObject( parameters, SerializationSettings ); + _httpRequest.Content = new System.Net.Http.StringContent( _requestContent, System.Text.Encoding.UTF8 ); + _httpRequest.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse( "application/json; charset=utf-8" ); + } + // Set Credentials + if ( Credentials != null ) + { + cancellationToken.ThrowIfCancellationRequested( ); + await Credentials.ProcessHttpRequestAsync( _httpRequest, cancellationToken ).ConfigureAwait( false ); + } + // Send Request + if ( _shouldTrace ) + { + ServiceClientTracing.SendRequest( _invocationId, _httpRequest ); + } + cancellationToken.ThrowIfCancellationRequested( ); + _httpResponse = await 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 KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync( ).ConfigureAwait( false ); + KeyVaultError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); + if ( _errorBody != null ) + { + ex.Body = _errorBody; + } + } + catch ( JsonException ) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper( _httpRequest, _requestContent ); + ex.Response = new HttpResponseMessageWrapper( _httpResponse, _responseContent ); + 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 = SafeJsonConvert.DeserializeObject( _responseContent, 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; + } + /// /// List certificates in a specified key vault /// diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClientExtensions.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClientExtensions.cs index cbee66088301..e03edfc7b69d 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClientExtensions.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClientExtensions.cs @@ -845,23 +845,69 @@ public static partial class KeyVaultClientExtensions } } - /// - /// List certificates in a specified key vault - /// - /// - /// The operations group for this extension method. - /// - /// - /// The vault name, for example https://myvault.vault.azure.net. - /// - /// - /// Maximum number of results to return in a page. If not specified the service - /// will return up to 25 results. - /// - /// - /// The cancellation token. - /// - public static async Task> GetCertificatesAsync(this IKeyVaultClient operations, string vaultBaseUrl, int? maxresults = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + /// + /// Requests that a backup of the specified secret be downloaded to the client. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the secret. + /// + /// + /// The cancellation token. + /// + public static async Task BackupSecretAsync( this IKeyVaultClient operations, string vaultBaseUrl, string secretName, CancellationToken cancellationToken = default( CancellationToken ) ) + { + using ( var _result = await operations.BackupSecretWithHttpMessagesAsync( vaultBaseUrl, secretName, null, cancellationToken ).ConfigureAwait( false ) ) + { + return _result.Body; + } + } + + /// + /// Restores a backed up secret to a vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The backup blob associated with a secret bundle. + /// + /// + /// The cancellation token. + /// + public static async Task RestoreSecretAsync( this IKeyVaultClient operations, string vaultBaseUrl, byte[ ] secretBundleBackup, CancellationToken cancellationToken = default( CancellationToken ) ) + { + using ( var _result = await operations.RestoreSecretWithHttpMessagesAsync( vaultBaseUrl, secretBundleBackup, null, cancellationToken ).ConfigureAwait( false ) ) + { + return _result.Body; + } + } + + /// + /// List certificates in a specified key vault + /// + /// + /// The operations group for this extension method. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// Maximum number of results to return in a page. If not specified the service + /// will return up to 25 results. + /// + /// + /// The cancellation token. + /// + public static async Task> GetCertificatesAsync(this IKeyVaultClient operations, string vaultBaseUrl, int? maxresults = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetCertificatesWithHttpMessagesAsync(vaultBaseUrl, maxresults, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/BackupSecretResult.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/BackupSecretResult.cs new file mode 100644 index 000000000000..d8ea9504489f --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/BackupSecretResult.cs @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.KeyVault.Models +{ + using Azure; + using KeyVault; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The backup secret result, containing the backup blob. + /// + public partial class BackupSecretResult + { + /// + /// Initializes a new instance of the BackupSecretResult class. + /// + public BackupSecretResult( ) { } + + /// + /// Initializes a new instance of the BackupSecretResult class. + /// + /// The backup blob containing the backed up + /// secret. + public BackupSecretResult( byte[ ] value = default( byte[ ] ) ) + { + Value = value; + } + + /// + /// Gets the backup blob containing the backed up secret. + /// + [JsonConverter( typeof( Base64UrlJsonConverter ) )] + [JsonProperty( PropertyName = "value" )] + public byte[ ] Value { get; protected set; } + + } +} diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/SecretRestoreParameters.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/SecretRestoreParameters.cs new file mode 100644 index 000000000000..603613152004 --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/SecretRestoreParameters.cs @@ -0,0 +1,59 @@ +// 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.0.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.KeyVault.Models +{ + using Azure; + using KeyVault; + using Rest; + using Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The secret restore parameters. + /// + public partial class SecretRestoreParameters + { + /// + /// Initializes a new instance of the SecretRestoreParameters class. + /// + public SecretRestoreParameters( ) { } + + /// + /// Initializes a new instance of the SecretRestoreParameters class. + /// + /// The backup blob associated with a + /// secret bundle. + public SecretRestoreParameters( byte[ ] secretBundleBackup ) + { + SecretBundleBackup = secretBundleBackup; + } + + /// + /// Gets or sets the backup blob associated with a secret bundle. + /// + [JsonConverter( typeof( Base64UrlJsonConverter ) )] + [JsonProperty( PropertyName = "value" )] + public byte[ ] SecretBundleBackup { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate( ) + { + if ( SecretBundleBackup == null ) + { + throw new ValidationException( ValidationRules.CannotBeNull, "SecretBundleBackup" ); + } + } + } +} From dffa874947272275e7d7267ac6b4049402283061 Mon Sep 17 00:00:00 2001 From: Dragos Avadanei Date: Thu, 6 Apr 2017 22:29:27 -0700 Subject: [PATCH 56/56] exposing additional signing and encryption algorithms in the KeyVault .net SDK (#3040) * exporting secret backup/restore in KV .net SDK * Azure Machine Learning WebServicesRP new API version (#3036) * Initial change for a new version * Update the POST operation id * POST method update * Make the POST call long running operation and handle the request id. * Update existing test cases to work with new API version. * Add new test case for POST * Add test case for large payload scenario. * Description update according to swagger update * Update generate.cmd to point to new swagger spec * Suppress CredScan message for certificate thumbprint, which is for encryption, not auth. * Replace real thumbprints with dummy strings * More thumbprints replaced with dummy strings * Replace hardcoded web service keys with dummy strings * Replace keys and thumbprints with dummy strings * Remove all encrypted content which were treated as credentials by CredScan in the lab build. * Update .net SDK with the latest swagger. * exposing additional signing and encryption algorithms in the KeyVault .Net SDK --- .../KeyVaultOperationsTest.cs | 63 ++++ .../KeyVaultEncryptDecryptRsaOaep256Test.json | 152 ++++++++++ .../KeyVaultSignVerifyPS256Test.json | 152 ++++++++++ .../KeyVaultSignVerifyPS384Test.json | 152 ++++++++++ .../KeyVaultSignVerifyPS512Test.json | 152 ++++++++++ .../KeyVaultWrapUnwrapRsaOaep256Test.json | 152 ++++++++++ .../JsonWebKeyEncryptionAlgorithms.cs | 6 +- .../JsonWebKeySignatureAlgorithms.cs | 10 +- .../Generated/IKeyVaultClient.cs | 22 +- .../Generated/KeyVaultClient.cs | 284 +++++++++--------- .../Generated/KeyVaultClientExtensions.cs | 134 +++++---- .../Generated/Models/BackupSecretResult.cs | 14 +- .../Models/KeyOperationsParameters.cs | 4 +- .../Generated/Models/KeySignParameters.cs | 8 +- .../Generated/Models/KeyVerifyParameters.cs | 8 +- .../Models/SecretRestoreParameters.cs | 12 +- 16 files changed, 1087 insertions(+), 238 deletions(-) create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptRsaOaep256Test.json create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyPS256Test.json create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyPS384Test.json create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyPS512Test.json create mode 100644 src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultWrapUnwrapRsaOaep256Test.json diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/KeyVaultOperationsTest.cs b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/KeyVaultOperationsTest.cs index b3af905782d2..57e907e7aa84 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/KeyVaultOperationsTest.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/KeyVaultOperationsTest.cs @@ -112,6 +112,17 @@ public void KeyVaultEncryptDecryptRsa15Test() } } + [Fact] + public void KeyVaultEncryptDecryptRsaOaep256Test( ) + { + using ( MockContext context = MockContext.Start( this.GetType( ).FullName ) ) + { + var client = GetKeyVaultClient(); + + EncryptDecrypt( client, _keyIdentifier, JsonWebKeyEncryptionAlgorithm.RSAOAEP256 ); + } + } + [Fact] public void KeyVaultEncryptDecryptWithOlderKeyVersion() { @@ -192,6 +203,45 @@ public void KeyVaultSignVerifyRS512Test() } } + [Fact] + public void KeyVaultSignVerifyPS256Test( ) + { + using ( MockContext context = MockContext.Start( this.GetType( ).FullName ) ) + { + var client = GetKeyVaultClient(); + + var digest = RandomHash(SHA256.Create(), 32); + + SignVerify( client, _keyIdentifier, JsonWebKeySignatureAlgorithm.PS256, digest ); + } + } + + [Fact] + public void KeyVaultSignVerifyPS384Test( ) + { + using ( MockContext context = MockContext.Start( this.GetType( ).FullName ) ) + { + var client = GetKeyVaultClient(); + + var digest = RandomHash(SHA384.Create(), 64); + + SignVerify( client, _keyIdentifier, JsonWebKeySignatureAlgorithm.PS384, digest ); + } + } + + [Fact] + public void KeyVaultSignVerifyPS512Test( ) + { + using ( MockContext context = MockContext.Start( this.GetType( ).FullName ) ) + { + var client = GetKeyVaultClient(); + + var digest = RandomHash(SHA512.Create(), 64); + + SignVerify( client, _keyIdentifier, JsonWebKeySignatureAlgorithm.PS512, digest ); + } + } + [Fact] public void KeyVaultWrapUnwrapRsaOaepTest() { @@ -218,6 +268,19 @@ public void KeyVaultWrapUnwrapRsa15Test() } } + [Fact] + public void KeyVaultWrapUnwrapRsaOaep256Test( ) + { + using ( MockContext context = MockContext.Start( this.GetType( ).FullName ) ) + { + + var client = GetKeyVaultClient(); + + var symmetricKeyBytes = GetSymmetricKeyBytes(); + WrapAndUnwrap( client, _keyIdentifier, JsonWebKeyEncryptionAlgorithm.RSAOAEP256, symmetricKeyBytes ); + } + } + [Fact] public void KeyVaultCreateGetDeleteKeyTest() { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptRsaOaep256Test.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptRsaOaep256Test.json new file mode 100644 index 000000000000..4df9e0bdd390 --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultEncryptDecryptRsaOaep256Test.json @@ -0,0 +1,152 @@ +{ + "Entries": [ + { + "RequestUri": "/keys/sdktestkey//encrypt?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8vZW5jcnlwdD9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"alg\": \"RSA-OAEP-256\",\r\n \"value\": \"2Ht8TBsMWK1uFw\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "59" + ], + "x-ms-client-request-id": [ + "6ad15aa2-5a2d-422b-ae6a-1a9b05a613ad" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"kid\": \"https://kv-sdk-test.vault-int.azure-int.net/keys/sdktestkey/0b12b5e5fb8241a39baad0ea60450b82\",\r\n \"value\": \"RLm5dIhcbeVei8BgMHiVe7n_FwFFLZ0kdYyxuFHnTBdbD80TsrpWBdSug3Ynye5b2oVx8Zp-mmVYCh9X4p84ECrRkwCVak110h1QqJlt6IjmUbgBkng9UyoVRc8Zdh-ZHDkEZT47ccCeSrbXmGzTGPHt9l3u5s3vSK_h1JMdTy7LZ9_Z3JX85w_qXOEIsxJUwdQqJj0pB4awxAwKa6a_uZHC56q3Td10LsGXEvBdDlPydc8YZf66LlYm7DWU3DITIjAZ5aOTyQ1qItPxzwFysECDVRLjnMucP4Jzy0oDcAQaagHO4BJzjCLBBxHN-u8t7vtV1FOOuvQDLaHoo0Kcpg\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "455" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 05 Apr 2017 23:16:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "d10d83b9-b464-421e-b9da-ab74c8e62eda" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1152" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/sdktestkey/0b12b5e5fb8241a39baad0ea60450b82/decrypt?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8wYjEyYjVlNWZiODI0MWEzOWJhYWQwZWE2MDQ1MGI4Mi9kZWNyeXB0P2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"alg\": \"RSA-OAEP-256\",\r\n \"value\": \"RLm5dIhcbeVei8BgMHiVe7n_FwFFLZ0kdYyxuFHnTBdbD80TsrpWBdSug3Ynye5b2oVx8Zp-mmVYCh9X4p84ECrRkwCVak110h1QqJlt6IjmUbgBkng9UyoVRc8Zdh-ZHDkEZT47ccCeSrbXmGzTGPHt9l3u5s3vSK_h1JMdTy7LZ9_Z3JX85w_qXOEIsxJUwdQqJj0pB4awxAwKa6a_uZHC56q3Td10LsGXEvBdDlPydc8YZf66LlYm7DWU3DITIjAZ5aOTyQ1qItPxzwFysECDVRLjnMucP4Jzy0oDcAQaagHO4BJzjCLBBxHN-u8t7vtV1FOOuvQDLaHoo0Kcpg\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "387" + ], + "x-ms-client-request-id": [ + "6a05d3b7-72de-4f38-bc32-3c1e0124e1e3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"kid\": \"https://kv-sdk-test.vault-int.azure-int.net/keys/sdktestkey/0b12b5e5fb8241a39baad0ea60450b82\",\r\n \"value\": \"2Ht8TBsMWK1uFw\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "127" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 05 Apr 2017 23:16:57 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "74100356-e4c1-49be-a226-258b19a17876" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1152" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "VaultAddress": "https://kv-sdk-test.vault-int.azure-int.net/", + "KeyName": "sdktestkey", + "KeyVersion": "0b12b5e5fb8241a39baad0ea60450b82", + "SoftDeleteEnabled": "True", + "RandomBytes": "2Ht8TBsMWK1uFw==" + } +} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyPS256Test.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyPS256Test.json new file mode 100644 index 000000000000..9c8923e72a18 --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyPS256Test.json @@ -0,0 +1,152 @@ +{ + "Entries": [ + { + "RequestUri": "/keys/sdktestkey//sign?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8vc2lnbj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"alg\": \"PS256\",\r\n \"value\": \"PuFZmx4hbmrEJAQr9NHVwGLSgigztg3Zdca6uplmUc0\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "81" + ], + "x-ms-client-request-id": [ + "744e35ba-a678-46c9-aec0-e6466bcd4f32" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"kid\": \"https://kv-sdk-test.vault-int.azure-int.net/keys/sdktestkey/dc3985ff8b604442ba3597bfb2d1312a\",\r\n \"value\": \"GSD8pAA7Dd9fdC4-FYw_5CVfN9cMc32cpVSbIdH1OsMw1ZCqy5vPIU2qCUTbE_Ipo-6yDVRvMb3246C7vu6RSUTnrG9qTbV64NH4RviYAT_hPyIiwg2Gcx29WRLH-6MT6i-h564QwqVvk5KyWXeOOaGi8e9eTxaHZi_ZIpr06l3SSsYJT-AqL-d1FBgH5BoMTtosLALUgmS_QTXDKZvDqusCjuOAZjmWN8D02QlBT1RST-34B42KPuHUnsSFoixLaL_02f01QdKxPDKyKmAyMv-O5GjWWV9DlL76Z3bPu-VNDeEqN_-Fy6aoDPu_ws6B2uw4S09SFZyByJ6pl_zVvA\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "455" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 05 Apr 2017 23:14:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "16e60192-b5a1-4889-874f-3400f21d8012" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1152" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/sdktestkey/dc3985ff8b604442ba3597bfb2d1312a/verify?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS9kYzM5ODVmZjhiNjA0NDQyYmEzNTk3YmZiMmQxMzEyYS92ZXJpZnk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"alg\": \"PS256\",\r\n \"digest\": \"PuFZmx4hbmrEJAQr9NHVwGLSgigztg3Zdca6uplmUc0\",\r\n \"value\": \"GSD8pAA7Dd9fdC4-FYw_5CVfN9cMc32cpVSbIdH1OsMw1ZCqy5vPIU2qCUTbE_Ipo-6yDVRvMb3246C7vu6RSUTnrG9qTbV64NH4RviYAT_hPyIiwg2Gcx29WRLH-6MT6i-h564QwqVvk5KyWXeOOaGi8e9eTxaHZi_ZIpr06l3SSsYJT-AqL-d1FBgH5BoMTtosLALUgmS_QTXDKZvDqusCjuOAZjmWN8D02QlBT1RST-34B42KPuHUnsSFoixLaL_02f01QdKxPDKyKmAyMv-O5GjWWV9DlL76Z3bPu-VNDeEqN_-Fy6aoDPu_ws6B2uw4S09SFZyByJ6pl_zVvA\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "440" + ], + "x-ms-client-request-id": [ + "e94b742a-13ee-482b-9bf3-e07019ca0759" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": true\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "14" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 05 Apr 2017 23:14:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "d0891bfa-c785-4b4a-aadb-f3847f6af1c3" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1152" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "VaultAddress": "https://kv-sdk-test.vault-int.azure-int.net/", + "KeyName": "sdktestkey", + "KeyVersion": "dc3985ff8b604442ba3597bfb2d1312a", + "SoftDeleteEnabled": "True", + "RandomBytes": "os05VZvwVe+zSG0iPpF1Ks/26I/nCJYu0h7RCrhq7TM=" + } +} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyPS384Test.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyPS384Test.json new file mode 100644 index 000000000000..13da17e23938 --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyPS384Test.json @@ -0,0 +1,152 @@ +{ + "Entries": [ + { + "RequestUri": "/keys/sdktestkey//sign?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8vc2lnbj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"alg\": \"PS384\",\r\n \"value\": \"KslKmzSowLqCJ0_ohRv0tcDa45QbDHEgNJ4GFvp24geIBu85haD5b3C-2us8ONzI\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ], + "x-ms-client-request-id": [ + "b4f3acdc-e44b-4186-b701-d790a239b7bc" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"kid\": \"https://kv-sdk-test.vault-int.azure-int.net/keys/sdktestkey/7353bf89eedf4da18a8c7f4d0a108dfd\",\r\n \"value\": \"MGyFDEXVQ3d2khuOMIcZCutGG8pcYes4M1ZfNXkg1OoAYuLkpq6DtijUL0nsV4bE-aRR1kBCXt-4nxyphbEv6CBW6Ip7obvFw_zedPloZALoPUMSMy4a8YLXfCZWKxpaPFEro3Fz4faszR4dlm7Vg73kHhAoo0nz-2NEHs5dgbBX4SwrUK2GlJfxU0MX_yQbpffSslUO4jCCU1BL4SLyZmybIr3OkFGhhIdgAw6TXrA38f2abN1Cp2VFEu2jMQ9oQqaq4VPbH3KuaZUdGXmEnm9RX9YGggTQTOtjq6a3p6vsBv5sAs7_TGlryQQOlhchqfiUE87nDJdWXd6LmEdShA\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "455" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 05 Apr 2017 23:14:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "5dae721c-a4a9-4c1f-9817-767aab771da6" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1152" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/sdktestkey/7353bf89eedf4da18a8c7f4d0a108dfd/verify?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS83MzUzYmY4OWVlZGY0ZGExOGE4YzdmNGQwYTEwOGRmZC92ZXJpZnk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"alg\": \"PS384\",\r\n \"digest\": \"KslKmzSowLqCJ0_ohRv0tcDa45QbDHEgNJ4GFvp24geIBu85haD5b3C-2us8ONzI\",\r\n \"value\": \"MGyFDEXVQ3d2khuOMIcZCutGG8pcYes4M1ZfNXkg1OoAYuLkpq6DtijUL0nsV4bE-aRR1kBCXt-4nxyphbEv6CBW6Ip7obvFw_zedPloZALoPUMSMy4a8YLXfCZWKxpaPFEro3Fz4faszR4dlm7Vg73kHhAoo0nz-2NEHs5dgbBX4SwrUK2GlJfxU0MX_yQbpffSslUO4jCCU1BL4SLyZmybIr3OkFGhhIdgAw6TXrA38f2abN1Cp2VFEu2jMQ9oQqaq4VPbH3KuaZUdGXmEnm9RX9YGggTQTOtjq6a3p6vsBv5sAs7_TGlryQQOlhchqfiUE87nDJdWXd6LmEdShA\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "461" + ], + "x-ms-client-request-id": [ + "d5bd45a9-dce5-43f2-a107-3420e0e80cdd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": true\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "14" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 05 Apr 2017 23:14:41 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "80663465-f2f4-4bc4-91e8-5c2c1f85bd69" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1152" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "VaultAddress": "https://kv-sdk-test.vault-int.azure-int.net/", + "KeyName": "sdktestkey", + "KeyVersion": "7353bf89eedf4da18a8c7f4d0a108dfd", + "SoftDeleteEnabled": "True", + "RandomBytes": "QJ3WTsFlqRiXV7ofNur31sp6bBXqCKXGPFy68d22xUTcqssRoNysdmA+OlkCrHJb/PS3XVNZGjf3EBFlq7c74Q==" + } +} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyPS512Test.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyPS512Test.json new file mode 100644 index 000000000000..cedd3c33a49e --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultSignVerifyPS512Test.json @@ -0,0 +1,152 @@ +{ + "Entries": [ + { + "RequestUri": "/keys/sdktestkey//sign?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8vc2lnbj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"alg\": \"PS512\",\r\n \"value\": \"4wt-h1SnktyWQjR_fl9dMP9T_M7bOCh-YcXfB0FSlUZcN2Dvb63ZIXoh0ogad3nkMjSMVhrk85-CDEo7lFDm-Q\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "124" + ], + "x-ms-client-request-id": [ + "13ebf1c6-5d0f-4812-8b07-022061147cf0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"kid\": \"https://kv-sdk-test.vault-int.azure-int.net/keys/sdktestkey/76c1a0157d6749be942408a8ba77b6e0\",\r\n \"value\": \"K93Em7Op15cBUUYXWNZotYkXPuUm71oum_74B-HE_WwdhvtJ3ThVD78jdheunIzJiQWRCa_J8p-WxzqaFEp7IqdoDFPOgPwJG4fW9ZdPlzEtse-CrssrcgLQPq9c9vkvThI2mDzMYoE7bG3t6FZksO8BZJFDx08r0jnk4a5RAOz6D1UWzKT5DBhQFZcmASrRYwMuhAjZ3tEpIJZ_XCx6Mna9wyhxPnzEdQyRtSd6Gly6DWhYmYiSNaQbFi0qg0Cr74TwKpHfw7HPurg1J5hp3yBz-Egr7Q1P0k-XcXAmAflhw-_vrGDBjgj_74A0uPKEQWFkCRHevqfT0XQX3BCa1w\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "455" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 05 Apr 2017 23:14:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "8923e4bd-c201-49aa-ac70-7eb049b3a5b3" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1152" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/sdktestkey/76c1a0157d6749be942408a8ba77b6e0/verify?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS83NmMxYTAxNTdkNjc0OWJlOTQyNDA4YThiYTc3YjZlMC92ZXJpZnk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"alg\": \"PS512\",\r\n \"digest\": \"4wt-h1SnktyWQjR_fl9dMP9T_M7bOCh-YcXfB0FSlUZcN2Dvb63ZIXoh0ogad3nkMjSMVhrk85-CDEo7lFDm-Q\",\r\n \"value\": \"K93Em7Op15cBUUYXWNZotYkXPuUm71oum_74B-HE_WwdhvtJ3ThVD78jdheunIzJiQWRCa_J8p-WxzqaFEp7IqdoDFPOgPwJG4fW9ZdPlzEtse-CrssrcgLQPq9c9vkvThI2mDzMYoE7bG3t6FZksO8BZJFDx08r0jnk4a5RAOz6D1UWzKT5DBhQFZcmASrRYwMuhAjZ3tEpIJZ_XCx6Mna9wyhxPnzEdQyRtSd6Gly6DWhYmYiSNaQbFi0qg0Cr74TwKpHfw7HPurg1J5hp3yBz-Egr7Q1P0k-XcXAmAflhw-_vrGDBjgj_74A0uPKEQWFkCRHevqfT0XQX3BCa1w\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "483" + ], + "x-ms-client-request-id": [ + "1a3cfa2b-d705-4c5d-8290-fe98818ceebb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": true\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "14" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 05 Apr 2017 23:14:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "90fac9c9-89c9-4f73-bfd9-a580f2d32b39" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1152" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "VaultAddress": "https://kv-sdk-test.vault-int.azure-int.net/", + "KeyName": "sdktestkey", + "KeyVersion": "76c1a0157d6749be942408a8ba77b6e0", + "SoftDeleteEnabled": "True", + "RandomBytes": "W7DduZTWdrorOxao32F3aLss9Qci5VaLA+4jGvEAa2yOXuBnUyd2K0+RF3K661go8DvmocR413VaUrams1zJKg==" + } +} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultWrapUnwrapRsaOaep256Test.json b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultWrapUnwrapRsaOaep256Test.json new file mode 100644 index 000000000000..dc2cad0c92e5 --- /dev/null +++ b/src/KeyVault/Microsoft.Azure.KeyVault.Tests/SessionRecords/Microsoft.Azure.KeyVault.Tests.KeyVaultOperationsTest/KeyVaultWrapUnwrapRsaOaep256Test.json @@ -0,0 +1,152 @@ +{ + "Entries": [ + { + "RequestUri": "/keys/sdktestkey//wrapkey?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS8vd3JhcGtleT9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"alg\": \"RSA-OAEP-256\",\r\n \"value\": \"CIpsKPmL_HU7E5BXsW9ELlH0SmzI83whyXCwVsYKwnA\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "88" + ], + "x-ms-client-request-id": [ + "40b720e8-e458-4986-a4c2-03e11d2ed6a7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"kid\": \"https://kv-sdk-test.vault-int.azure-int.net/keys/sdktestkey/c5c57eb2b32244be9cd87ec9a0a915e0\",\r\n \"value\": \"UPVd8u6cj54-EGuDyMHp96bNIz1DvGOAPLl9CNNELkGOWpWIRslKHVfSnu_HJAyw6rbY9rGU4pTnQuc2b2tANItvGBh5sbRoP2O-MnQqbeFykHUWuusmRW9d0x9bnPUKxTR4UwURFNCP9bZEH3pJBOQJifjSp8xqDAyHOvSn0UpYcf7hXr-62u49kJXwjeDlCnV7_i90cv-I2g8B-2dZdQ-bxH6n8KXfIhy4CaxvghEwlTaSDHZgrW9pNjbj8Sh8OQvktheWcvHPqx26ZK0rMXTZhrNMwJqfpgwFLg3v-Nc1vt45ajkUbgG0qcUq2cpVYRpZzGbRZhZ5WYhrI_wUzQ\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "455" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 05 Apr 2017 23:15:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "e1b332bb-b1b2-42f4-98fe-a4e871f99700" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1152" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/keys/sdktestkey/c5c57eb2b32244be9cd87ec9a0a915e0/unwrapkey?api-version=2016-10-01", + "EncodedRequestUri": "L2tleXMvc2RrdGVzdGtleS9jNWM1N2ViMmIzMjI0NGJlOWNkODdlYzlhMGE5MTVlMC91bndyYXBrZXk/YXBpLXZlcnNpb249MjAxNi0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"alg\": \"RSA-OAEP-256\",\r\n \"value\": \"UPVd8u6cj54-EGuDyMHp96bNIz1DvGOAPLl9CNNELkGOWpWIRslKHVfSnu_HJAyw6rbY9rGU4pTnQuc2b2tANItvGBh5sbRoP2O-MnQqbeFykHUWuusmRW9d0x9bnPUKxTR4UwURFNCP9bZEH3pJBOQJifjSp8xqDAyHOvSn0UpYcf7hXr-62u49kJXwjeDlCnV7_i90cv-I2g8B-2dZdQ-bxH6n8KXfIhy4CaxvghEwlTaSDHZgrW9pNjbj8Sh8OQvktheWcvHPqx26ZK0rMXTZhrNMwJqfpgwFLg3v-Nc1vt45ajkUbgG0qcUq2cpVYRpZzGbRZhZ5WYhrI_wUzQ\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "387" + ], + "x-ms-client-request-id": [ + "0efb1c2b-8b56-4e5b-af8e-fe34121b6c5f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24214.01", + "Microsoft.Azure.KeyVault.KeyVaultClient/2.1.0-preview" + ] + }, + "ResponseBody": "{\r\n \"kid\": \"https://kv-sdk-test.vault-int.azure-int.net/keys/sdktestkey/c5c57eb2b32244be9cd87ec9a0a915e0\",\r\n \"value\": \"CIpsKPmL_HU7E5BXsW9ELlH0SmzI83whyXCwVsYKwnA\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "156" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Wed, 05 Apr 2017 23:15:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "x-ms-keyvault-region": [ + "eastus2" + ], + "x-ms-request-id": [ + "6784a8b9-0b6a-4b46-8f10-0021ab40e0ce" + ], + "x-ms-keyvault-service-version": [ + "1.0.0.1152" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "Strict-Transport-Security": [ + "max-age=31536000;includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "VaultAddress": "https://kv-sdk-test.vault-int.azure-int.net/", + "KeyName": "sdktestkey", + "KeyVersion": "c5c57eb2b32244be9cd87ec9a0a915e0", + "SoftDeleteEnabled": "True", + "SymmetricKeyBytes": "CIpsKPmL/HU7E5BXsW9ELlH0SmzI83whyXCwVsYKwnA=" + } +} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/JsonWebKeyEncryptionAlgorithms.cs b/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/JsonWebKeyEncryptionAlgorithms.cs index 1f07b3a96e80..0a0b5e62755a 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/JsonWebKeyEncryptionAlgorithms.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/JsonWebKeyEncryptionAlgorithms.cs @@ -13,6 +13,10 @@ public static class JsonWebKeyEncryptionAlgorithm public const string RSAOAEP = "RSA-OAEP"; public const string RSA15 = "RSA1_5"; + // RSAES OAEP using SHA-256 and MGF1 with SHA-256 + // defined https://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms + public const string RSAOAEP256 = "RSA-OAEP-256"; + /// /// All algorithms names. Use clone to avoid FxCop violation /// @@ -21,6 +25,6 @@ public static string[] AllAlgorithms get { return (string[])_allAlgorithms.Clone(); } } - private static readonly string[] _allAlgorithms = { RSA15, RSAOAEP }; + private static readonly string[] _allAlgorithms = { RSA15, RSAOAEP, RSAOAEP256 }; } } diff --git a/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/JsonWebKeySignatureAlgorithms.cs b/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/JsonWebKeySignatureAlgorithms.cs index 99023858e595..c62f071ab8d7 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/JsonWebKeySignatureAlgorithms.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault.WebKey/JsonWebKeySignatureAlgorithms.cs @@ -15,6 +15,14 @@ public static class JsonWebKeySignatureAlgorithm public const string RS512 = "RS512"; public const string RSNULL = "RSNULL"; + // RSASSA-PSS using SHA-256 and MGF1 with SHA-256 + // defined https://tools.ietf.org/html/draft-ietf-jose-json-web-algorithms + public const string PS256 = "PS256"; + // RSASSA-PSS using SHA-384 and MGF1 with SHA-384 + public const string PS384 = "PS384"; + // RSASSA-PSS using SHA-512 and MGF1 with SHA-512 + public const string PS512 = "PS512"; + /// /// All algorithms names. Use clone to avoid FxCop violation /// @@ -23,6 +31,6 @@ public static string[] AllAlgorithms get { return (string[])_allAlgorithms.Clone(); } } - private static readonly string[] _allAlgorithms = { RS256, RS384, RS512, RSNULL }; + private static readonly string[] _allAlgorithms = { RS256, RS384, RS512, RSNULL, PS256, PS384, PS512 }; } } diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/IKeyVaultClient.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/IKeyVaultClient.cs index 1cfadacd1281..6a7828b70546 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/IKeyVaultClient.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/IKeyVaultClient.cs @@ -306,7 +306,8 @@ public partial interface IKeyVaultClient : System.IDisposable /// The version of the key. /// /// - /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA1_5' + /// algorithm identifier. Possible values include: 'RSA-OAEP', + /// 'RSA-OAEP-256', 'RSA1_5' /// /// /// @@ -331,7 +332,8 @@ public partial interface IKeyVaultClient : System.IDisposable /// The version of the key. /// /// - /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA1_5' + /// algorithm identifier. Possible values include: 'RSA-OAEP', + /// 'RSA-OAEP-256', 'RSA1_5' /// /// /// @@ -358,7 +360,8 @@ public partial interface IKeyVaultClient : System.IDisposable /// /// The signing/verification algorithm identifier. For more information /// on possible algorithm types, see JsonWebKeySignatureAlgorithm. - /// Possible values include: 'RS256', 'RS384', 'RS512', 'RSNULL' + /// Possible values include: 'PS256', 'PS384', 'PS512', 'RS256', + /// 'RS384', 'RS512', 'RSNULL' /// /// /// @@ -385,7 +388,8 @@ public partial interface IKeyVaultClient : System.IDisposable /// /// The signing/verification algorithm. For more information on /// possible algorithm types, see JsonWebKeySignatureAlgorithm. - /// Possible values include: 'RS256', 'RS384', 'RS512', 'RSNULL' + /// Possible values include: 'PS256', 'PS384', 'PS512', 'RS256', + /// 'RS384', 'RS512', 'RSNULL' /// /// /// The digest used for signing. @@ -414,7 +418,8 @@ public partial interface IKeyVaultClient : System.IDisposable /// The version of the key. /// /// - /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA1_5' + /// algorithm identifier. Possible values include: 'RSA-OAEP', + /// 'RSA-OAEP-256', 'RSA1_5' /// /// /// @@ -440,7 +445,8 @@ public partial interface IKeyVaultClient : System.IDisposable /// The version of the key. /// /// - /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA1_5' + /// algorithm identifier. Possible values include: 'RSA-OAEP', + /// 'RSA-OAEP-256', 'RSA1_5' /// /// /// @@ -742,7 +748,7 @@ public partial interface IKeyVaultClient : System.IDisposable /// /// The cancellation token. /// - Task> BackupSecretWithHttpMessagesAsync( string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default( CancellationToken ) ); + Task> BackupSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Restores a backed up secret to a vault. @@ -759,7 +765,7 @@ public partial interface IKeyVaultClient : System.IDisposable /// /// The cancellation token. /// - Task> RestoreSecretWithHttpMessagesAsync( string vaultBaseUrl, byte[ ] secretBundleBackup, Dictionary> customHeaders = null, CancellationToken cancellationToken = default( CancellationToken ) ); + Task> RestoreSecretWithHttpMessagesAsync(string vaultBaseUrl, byte[] secretBundleBackup, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// List certificates in a specified key vault diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClient.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClient.cs index 5d9e974d5dd8..8b94e810de41 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClient.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClient.cs @@ -2063,7 +2063,8 @@ private void Initialize() /// The version of the key. /// /// - /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA1_5' + /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA-OAEP-256', + /// 'RSA1_5' /// /// /// @@ -2291,7 +2292,8 @@ private void Initialize() /// The version of the key. /// /// - /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA1_5' + /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA-OAEP-256', + /// 'RSA1_5' /// /// /// @@ -2521,7 +2523,7 @@ private void Initialize() /// /// The signing/verification algorithm identifier. For more information on /// possible algorithm types, see JsonWebKeySignatureAlgorithm. Possible values - /// include: 'RS256', 'RS384', 'RS512', 'RSNULL' + /// include: 'PS256', 'PS384', 'PS512', 'RS256', 'RS384', 'RS512', 'RSNULL' /// /// /// @@ -2751,7 +2753,7 @@ private void Initialize() /// /// The signing/verification algorithm. For more information on possible /// algorithm types, see JsonWebKeySignatureAlgorithm. Possible values include: - /// 'RS256', 'RS384', 'RS512', 'RSNULL' + /// 'PS256', 'PS384', 'PS512', 'RS256', 'RS384', 'RS512', 'RSNULL' /// /// /// The digest used for signing. @@ -2988,7 +2990,8 @@ private void Initialize() /// The version of the key. /// /// - /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA1_5' + /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA-OAEP-256', + /// 'RSA1_5' /// /// /// @@ -3217,7 +3220,8 @@ private void Initialize() /// The version of the key. /// /// - /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA1_5' + /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA-OAEP-256', + /// 'RSA1_5' /// /// /// @@ -6145,126 +6149,126 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> BackupSecretWithHttpMessagesAsync( string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default( CancellationToken ) ) + public async Task> BackupSecretWithHttpMessagesAsync(string vaultBaseUrl, string secretName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if ( vaultBaseUrl == null ) + if (vaultBaseUrl == null) { - throw new ValidationException( ValidationRules.CannotBeNull, "vaultBaseUrl" ); + throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } - if ( secretName == null ) + if (secretName == null) { - throw new ValidationException( ValidationRules.CannotBeNull, "secretName" ); + throw new ValidationException(ValidationRules.CannotBeNull, "secretName"); } - if ( ApiVersion == null ) + if (ApiVersion == null) { - throw new ValidationException( ValidationRules.CannotBeNull, "this.ApiVersion" ); + throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; - if ( _shouldTrace ) + if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString( ); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add( "vaultBaseUrl", vaultBaseUrl ); - tracingParameters.Add( "secretName", secretName ); - tracingParameters.Add( "cancellationToken", cancellationToken ); - ServiceClientTracing.Enter( _invocationId, this, "BackupSecret", tracingParameters ); + tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); + tracingParameters.Add("secretName", secretName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BackupSecret", tracingParameters); } // Construct URL var _baseUrl = BaseUri; var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets/{secret-name}/backup"; - _url = _url.Replace( "{vaultBaseUrl}", vaultBaseUrl ); - _url = _url.Replace( "{secret-name}", System.Uri.EscapeDataString( secretName ) ); + _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); + _url = _url.Replace("{secret-name}", System.Uri.EscapeDataString(secretName)); List _queryParameters = new List(); - if ( ApiVersion != null ) + if (ApiVersion != null) { - _queryParameters.Add( string.Format( "api-version={0}", System.Uri.EscapeDataString( ApiVersion ) ) ); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(ApiVersion))); } - if ( _queryParameters.Count > 0 ) + if (_queryParameters.Count > 0) { - _url += ( _url.Contains( "?" ) ? "&" : "?" ) + string.Join( "&", _queryParameters ); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod( "POST" ); - _httpRequest.RequestUri = new System.Uri( _url ); + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if ( GenerateClientRequestId != null && GenerateClientRequestId.Value ) + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation( "x-ms-client-request-id", System.Guid.NewGuid( ).ToString( ) ); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if ( AcceptLanguage != null ) + if (AcceptLanguage != null) { - if ( _httpRequest.Headers.Contains( "accept-language" ) ) + if (_httpRequest.Headers.Contains("accept-language")) { - _httpRequest.Headers.Remove( "accept-language" ); + _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation( "accept-language", AcceptLanguage ); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", AcceptLanguage); } - if ( customHeaders != null ) + if (customHeaders != null) { - foreach ( var _header in customHeaders ) + foreach(var _header in customHeaders) { - if ( _httpRequest.Headers.Contains( _header.Key ) ) + if (_httpRequest.Headers.Contains(_header.Key)) { - _httpRequest.Headers.Remove( _header.Key ); + _httpRequest.Headers.Remove(_header.Key); } - _httpRequest.Headers.TryAddWithoutValidation( _header.Key, _header.Value ); + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); } } // Serialize Request string _requestContent = null; // Set Credentials - if ( Credentials != null ) + if (Credentials != null) { - cancellationToken.ThrowIfCancellationRequested( ); - await Credentials.ProcessHttpRequestAsync( _httpRequest, cancellationToken ).ConfigureAwait( false ); + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request - if ( _shouldTrace ) + if (_shouldTrace) { - ServiceClientTracing.SendRequest( _invocationId, _httpRequest ); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } - cancellationToken.ThrowIfCancellationRequested( ); - _httpResponse = await HttpClient.SendAsync( _httpRequest, cancellationToken ).ConfigureAwait( false ); - if ( _shouldTrace ) + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse( _invocationId, _httpResponse ); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested( ); + cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ( ( int )_statusCode != 200 ) + if ((int)_statusCode != 200) { var ex = new KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { - _responseContent = await _httpResponse.Content.ReadAsStringAsync( ).ConfigureAwait( false ); + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); KeyVaultError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - if ( _errorBody != null ) + if (_errorBody != null) { ex.Body = _errorBody; } } - catch ( JsonException ) + catch (JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper( _httpRequest, _requestContent ); - ex.Response = new HttpResponseMessageWrapper( _httpResponse, _responseContent ); - if ( _shouldTrace ) + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) { - ServiceClientTracing.Error( _invocationId, ex ); + ServiceClientTracing.Error(_invocationId, ex); } - _httpRequest.Dispose( ); - if ( _httpResponse != null ) + _httpRequest.Dispose(); + if (_httpResponse != null) { - _httpResponse.Dispose( ); + _httpResponse.Dispose(); } throw ex; } @@ -6272,31 +6276,31 @@ private void Initialize() var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; - if ( _httpResponse.Headers.Contains( "x-ms-request-id" ) ) + if (_httpResponse.Headers.Contains("x-ms-request-id")) { - _result.RequestId = _httpResponse.Headers.GetValues( "x-ms-request-id" ).FirstOrDefault( ); + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if ( ( int )_statusCode == 200 ) + if ((int)_statusCode == 200) { - _responseContent = await _httpResponse.Content.ReadAsStringAsync( ).ConfigureAwait( false ); + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject( _responseContent, DeserializationSettings ); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } - catch ( JsonException ex ) + catch (JsonException ex) { - _httpRequest.Dispose( ); - if ( _httpResponse != null ) + _httpRequest.Dispose(); + if (_httpResponse != null) { - _httpResponse.Dispose( ); + _httpResponse.Dispose(); } - throw new SerializationException( "Unable to deserialize the response.", _responseContent, ex ); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - if ( _shouldTrace ) + if (_shouldTrace) { - ServiceClientTracing.Exit( _invocationId, _result ); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } @@ -6331,136 +6335,136 @@ private void Initialize() /// /// A response object containing the response body and response headers. /// - public async Task> RestoreSecretWithHttpMessagesAsync( string vaultBaseUrl, byte[ ] secretBundleBackup, Dictionary> customHeaders = null, CancellationToken cancellationToken = default( CancellationToken ) ) + public async Task> RestoreSecretWithHttpMessagesAsync(string vaultBaseUrl, byte[] secretBundleBackup, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if ( vaultBaseUrl == null ) + if (vaultBaseUrl == null) { - throw new ValidationException( ValidationRules.CannotBeNull, "vaultBaseUrl" ); + throw new ValidationException(ValidationRules.CannotBeNull, "vaultBaseUrl"); } - if ( ApiVersion == null ) + if (ApiVersion == null) { - throw new ValidationException( ValidationRules.CannotBeNull, "this.ApiVersion" ); + throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); } - if ( secretBundleBackup == null ) + if (secretBundleBackup == null) { - throw new ValidationException( ValidationRules.CannotBeNull, "secretBundleBackup" ); + throw new ValidationException(ValidationRules.CannotBeNull, "secretBundleBackup"); } SecretRestoreParameters parameters = new SecretRestoreParameters(); - if ( secretBundleBackup != null ) + if (secretBundleBackup != null) { parameters.SecretBundleBackup = secretBundleBackup; } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; - if ( _shouldTrace ) + if (_shouldTrace) { - _invocationId = ServiceClientTracing.NextInvocationId.ToString( ); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add( "vaultBaseUrl", vaultBaseUrl ); - tracingParameters.Add( "parameters", parameters ); - tracingParameters.Add( "cancellationToken", cancellationToken ); - ServiceClientTracing.Enter( _invocationId, this, "RestoreSecret", tracingParameters ); + tracingParameters.Add("vaultBaseUrl", vaultBaseUrl); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "RestoreSecret", tracingParameters); } // Construct URL var _baseUrl = BaseUri; var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "secrets/restore"; - _url = _url.Replace( "{vaultBaseUrl}", vaultBaseUrl ); + _url = _url.Replace("{vaultBaseUrl}", vaultBaseUrl); List _queryParameters = new List(); - if ( ApiVersion != null ) + if (ApiVersion != null) { - _queryParameters.Add( string.Format( "api-version={0}", System.Uri.EscapeDataString( ApiVersion ) ) ); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(ApiVersion))); } - if ( _queryParameters.Count > 0 ) + if (_queryParameters.Count > 0) { - _url += ( _url.Contains( "?" ) ? "&" : "?" ) + string.Join( "&", _queryParameters ); + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); } // Create HTTP transport objects var _httpRequest = new System.Net.Http.HttpRequestMessage(); System.Net.Http.HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new System.Net.Http.HttpMethod( "POST" ); - _httpRequest.RequestUri = new System.Uri( _url ); + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); // Set Headers - if ( GenerateClientRequestId != null && GenerateClientRequestId.Value ) + if (GenerateClientRequestId != null && GenerateClientRequestId.Value) { - _httpRequest.Headers.TryAddWithoutValidation( "x-ms-client-request-id", System.Guid.NewGuid( ).ToString( ) ); + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); } - if ( AcceptLanguage != null ) + if (AcceptLanguage != null) { - if ( _httpRequest.Headers.Contains( "accept-language" ) ) + if (_httpRequest.Headers.Contains("accept-language")) { - _httpRequest.Headers.Remove( "accept-language" ); + _httpRequest.Headers.Remove("accept-language"); } - _httpRequest.Headers.TryAddWithoutValidation( "accept-language", AcceptLanguage ); + _httpRequest.Headers.TryAddWithoutValidation("accept-language", AcceptLanguage); } - if ( customHeaders != null ) + if (customHeaders != null) { - foreach ( var _header in customHeaders ) + foreach(var _header in customHeaders) { - if ( _httpRequest.Headers.Contains( _header.Key ) ) + if (_httpRequest.Headers.Contains(_header.Key)) { - _httpRequest.Headers.Remove( _header.Key ); + _httpRequest.Headers.Remove(_header.Key); } - _httpRequest.Headers.TryAddWithoutValidation( _header.Key, _header.Value ); + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); } } // Serialize Request string _requestContent = null; - if ( parameters != null ) + if(parameters != null) { - _requestContent = SafeJsonConvert.SerializeObject( parameters, SerializationSettings ); - _httpRequest.Content = new System.Net.Http.StringContent( _requestContent, System.Text.Encoding.UTF8 ); - _httpRequest.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse( "application/json; charset=utf-8" ); + _requestContent = SafeJsonConvert.SerializeObject(parameters, SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } // Set Credentials - if ( Credentials != null ) + if (Credentials != null) { - cancellationToken.ThrowIfCancellationRequested( ); - await Credentials.ProcessHttpRequestAsync( _httpRequest, cancellationToken ).ConfigureAwait( false ); + cancellationToken.ThrowIfCancellationRequested(); + await Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } // Send Request - if ( _shouldTrace ) + if (_shouldTrace) { - ServiceClientTracing.SendRequest( _invocationId, _httpRequest ); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); } - cancellationToken.ThrowIfCancellationRequested( ); - _httpResponse = await HttpClient.SendAsync( _httpRequest, cancellationToken ).ConfigureAwait( false ); - if ( _shouldTrace ) + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) { - ServiceClientTracing.ReceiveResponse( _invocationId, _httpResponse ); + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } HttpStatusCode _statusCode = _httpResponse.StatusCode; - cancellationToken.ThrowIfCancellationRequested( ); + cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ( ( int )_statusCode != 200 ) + if ((int)_statusCode != 200) { var ex = new KeyVaultErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try { - _responseContent = await _httpResponse.Content.ReadAsStringAsync( ).ConfigureAwait( false ); + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); KeyVaultError _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); - if ( _errorBody != null ) + if (_errorBody != null) { ex.Body = _errorBody; } } - catch ( JsonException ) + catch (JsonException) { // Ignore the exception } - ex.Request = new HttpRequestMessageWrapper( _httpRequest, _requestContent ); - ex.Response = new HttpResponseMessageWrapper( _httpResponse, _responseContent ); - if ( _shouldTrace ) + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) { - ServiceClientTracing.Error( _invocationId, ex ); + ServiceClientTracing.Error(_invocationId, ex); } - _httpRequest.Dispose( ); - if ( _httpResponse != null ) + _httpRequest.Dispose(); + if (_httpResponse != null) { - _httpResponse.Dispose( ); + _httpResponse.Dispose(); } throw ex; } @@ -6468,31 +6472,31 @@ private void Initialize() var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; - if ( _httpResponse.Headers.Contains( "x-ms-request-id" ) ) + if (_httpResponse.Headers.Contains("x-ms-request-id")) { - _result.RequestId = _httpResponse.Headers.GetValues( "x-ms-request-id" ).FirstOrDefault( ); + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if ( ( int )_statusCode == 200 ) + if ((int)_statusCode == 200) { - _responseContent = await _httpResponse.Content.ReadAsStringAsync( ).ConfigureAwait( false ); + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = SafeJsonConvert.DeserializeObject( _responseContent, DeserializationSettings ); + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, DeserializationSettings); } - catch ( JsonException ex ) + catch (JsonException ex) { - _httpRequest.Dispose( ); - if ( _httpResponse != null ) + _httpRequest.Dispose(); + if (_httpResponse != null) { - _httpResponse.Dispose( ); + _httpResponse.Dispose(); } - throw new SerializationException( "Unable to deserialize the response.", _responseContent, ex ); + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); } } - if ( _shouldTrace ) + if (_shouldTrace) { - ServiceClientTracing.Exit( _invocationId, _result ); + ServiceClientTracing.Exit(_invocationId, _result); } return _result; } diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClientExtensions.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClientExtensions.cs index e03edfc7b69d..ad327101950a 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClientExtensions.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/KeyVaultClientExtensions.cs @@ -315,7 +315,8 @@ public static partial class KeyVaultClientExtensions /// The version of the key. /// /// - /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA1_5' + /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA-OAEP-256', + /// 'RSA1_5' /// /// /// @@ -346,7 +347,8 @@ public static partial class KeyVaultClientExtensions /// The version of the key. /// /// - /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA1_5' + /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA-OAEP-256', + /// 'RSA1_5' /// /// /// @@ -379,7 +381,7 @@ public static partial class KeyVaultClientExtensions /// /// The signing/verification algorithm identifier. For more information on /// possible algorithm types, see JsonWebKeySignatureAlgorithm. Possible values - /// include: 'RS256', 'RS384', 'RS512', 'RSNULL' + /// include: 'PS256', 'PS384', 'PS512', 'RS256', 'RS384', 'RS512', 'RSNULL' /// /// /// @@ -412,7 +414,7 @@ public static partial class KeyVaultClientExtensions /// /// The signing/verification algorithm. For more information on possible /// algorithm types, see JsonWebKeySignatureAlgorithm. Possible values include: - /// 'RS256', 'RS384', 'RS512', 'RSNULL' + /// 'PS256', 'PS384', 'PS512', 'RS256', 'RS384', 'RS512', 'RSNULL' /// /// /// The digest used for signing. @@ -447,7 +449,8 @@ public static partial class KeyVaultClientExtensions /// The version of the key. /// /// - /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA1_5' + /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA-OAEP-256', + /// 'RSA1_5' /// /// /// @@ -479,7 +482,8 @@ public static partial class KeyVaultClientExtensions /// The version of the key. /// /// - /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA1_5' + /// algorithm identifier. Possible values include: 'RSA-OAEP', 'RSA-OAEP-256', + /// 'RSA1_5' /// /// /// @@ -845,69 +849,69 @@ public static partial class KeyVaultClientExtensions } } - /// - /// Requests that a backup of the specified secret be downloaded to the client. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The vault name, for example https://myvault.vault.azure.net. - /// - /// - /// The name of the secret. - /// - /// - /// The cancellation token. - /// - public static async Task BackupSecretAsync( this IKeyVaultClient operations, string vaultBaseUrl, string secretName, CancellationToken cancellationToken = default( CancellationToken ) ) - { - using ( var _result = await operations.BackupSecretWithHttpMessagesAsync( vaultBaseUrl, secretName, null, cancellationToken ).ConfigureAwait( false ) ) + /// + /// Requests that a backup of the specified secret be downloaded to the client. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The name of the secret. + /// + /// + /// The cancellation token. + /// + public static async Task BackupSecretAsync(this IKeyVaultClient operations, string vaultBaseUrl, string secretName, CancellationToken cancellationToken = default(CancellationToken)) { - return _result.Body; + using (var _result = await operations.BackupSecretWithHttpMessagesAsync(vaultBaseUrl, secretName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } - } - - /// - /// Restores a backed up secret to a vault. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The vault name, for example https://myvault.vault.azure.net. - /// - /// - /// The backup blob associated with a secret bundle. - /// - /// - /// The cancellation token. - /// - public static async Task RestoreSecretAsync( this IKeyVaultClient operations, string vaultBaseUrl, byte[ ] secretBundleBackup, CancellationToken cancellationToken = default( CancellationToken ) ) - { - using ( var _result = await operations.RestoreSecretWithHttpMessagesAsync( vaultBaseUrl, secretBundleBackup, null, cancellationToken ).ConfigureAwait( false ) ) + + /// + /// Restores a backed up secret to a vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// The backup blob associated with a secret bundle. + /// + /// + /// The cancellation token. + /// + public static async Task RestoreSecretAsync(this IKeyVaultClient operations, string vaultBaseUrl, byte[] secretBundleBackup, CancellationToken cancellationToken = default(CancellationToken)) { - return _result.Body; + using (var _result = await operations.RestoreSecretWithHttpMessagesAsync(vaultBaseUrl, secretBundleBackup, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } - } - - /// - /// List certificates in a specified key vault - /// - /// - /// The operations group for this extension method. - /// - /// - /// The vault name, for example https://myvault.vault.azure.net. - /// - /// - /// Maximum number of results to return in a page. If not specified the service - /// will return up to 25 results. - /// - /// - /// The cancellation token. - /// - public static async Task> GetCertificatesAsync(this IKeyVaultClient operations, string vaultBaseUrl, int? maxresults = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + + /// + /// List certificates in a specified key vault + /// + /// + /// The operations group for this extension method. + /// + /// + /// The vault name, for example https://myvault.vault.azure.net. + /// + /// + /// Maximum number of results to return in a page. If not specified the service + /// will return up to 25 results. + /// + /// + /// The cancellation token. + /// + public static async Task> GetCertificatesAsync(this IKeyVaultClient operations, string vaultBaseUrl, int? maxresults = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetCertificatesWithHttpMessagesAsync(vaultBaseUrl, maxresults, null, cancellationToken).ConfigureAwait(false)) { diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/BackupSecretResult.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/BackupSecretResult.cs index d8ea9504489f..dd125585911f 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/BackupSecretResult.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/BackupSecretResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. +// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. // @@ -23,14 +23,14 @@ public partial class BackupSecretResult /// /// Initializes a new instance of the BackupSecretResult class. /// - public BackupSecretResult( ) { } + public BackupSecretResult() { } /// /// Initializes a new instance of the BackupSecretResult class. /// /// The backup blob containing the backed up /// secret. - public BackupSecretResult( byte[ ] value = default( byte[ ] ) ) + public BackupSecretResult(byte[] value = default(byte[])) { Value = value; } @@ -38,9 +38,9 @@ public BackupSecretResult( ) { } /// /// Gets the backup blob containing the backed up secret. /// - [JsonConverter( typeof( Base64UrlJsonConverter ) )] - [JsonProperty( PropertyName = "value" )] - public byte[ ] Value { get; protected set; } + [JsonConverter(typeof(Base64UrlJsonConverter))] + [JsonProperty(PropertyName = "value")] + public byte[] Value { get; protected set; } } -} +} \ No newline at end of file diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeyOperationsParameters.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeyOperationsParameters.cs index e0f0f92a4e63..ba8a603c354b 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeyOperationsParameters.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeyOperationsParameters.cs @@ -29,7 +29,7 @@ public KeyOperationsParameters() { } /// Initializes a new instance of the KeyOperationsParameters class. /// /// algorithm identifier. Possible values - /// include: 'RSA-OAEP', 'RSA1_5' + /// include: 'RSA-OAEP', 'RSA-OAEP-256', 'RSA1_5' public KeyOperationsParameters(string algorithm, byte[] value) { Algorithm = algorithm; @@ -38,7 +38,7 @@ public KeyOperationsParameters(string algorithm, byte[] value) /// /// Gets or sets algorithm identifier. Possible values include: - /// 'RSA-OAEP', 'RSA1_5' + /// 'RSA-OAEP', 'RSA-OAEP-256', 'RSA1_5' /// [JsonProperty(PropertyName = "alg")] public string Algorithm { get; set; } diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeySignParameters.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeySignParameters.cs index a1ae0fd35d20..98fdf2b6f8a1 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeySignParameters.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeySignParameters.cs @@ -30,8 +30,8 @@ public KeySignParameters() { } /// /// The signing/verification algorithm /// identifier. For more information on possible algorithm types, see - /// JsonWebKeySignatureAlgorithm. Possible values include: 'RS256', - /// 'RS384', 'RS512', 'RSNULL' + /// JsonWebKeySignatureAlgorithm. Possible values include: 'PS256', + /// 'PS384', 'PS512', 'RS256', 'RS384', 'RS512', 'RSNULL' public KeySignParameters(string algorithm, byte[] value) { Algorithm = algorithm; @@ -41,8 +41,8 @@ public KeySignParameters(string algorithm, byte[] value) /// /// Gets or sets the signing/verification algorithm identifier. For /// more information on possible algorithm types, see - /// JsonWebKeySignatureAlgorithm. Possible values include: 'RS256', - /// 'RS384', 'RS512', 'RSNULL' + /// JsonWebKeySignatureAlgorithm. Possible values include: 'PS256', + /// 'PS384', 'PS512', 'RS256', 'RS384', 'RS512', 'RSNULL' /// [JsonProperty(PropertyName = "alg")] public string Algorithm { get; set; } diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeyVerifyParameters.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeyVerifyParameters.cs index 5824ee499cc5..3e4ed6a3fec9 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeyVerifyParameters.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/KeyVerifyParameters.cs @@ -30,8 +30,8 @@ public KeyVerifyParameters() { } /// /// The signing/verification algorithm. For /// more information on possible algorithm types, see - /// JsonWebKeySignatureAlgorithm. Possible values include: 'RS256', - /// 'RS384', 'RS512', 'RSNULL' + /// JsonWebKeySignatureAlgorithm. Possible values include: 'PS256', + /// 'PS384', 'PS512', 'RS256', 'RS384', 'RS512', 'RSNULL' /// The digest used for signing. /// The signature to be verified. public KeyVerifyParameters(string algorithm, byte[] digest, byte[] signature) @@ -44,8 +44,8 @@ public KeyVerifyParameters(string algorithm, byte[] digest, byte[] signature) /// /// Gets or sets the signing/verification algorithm. For more /// information on possible algorithm types, see - /// JsonWebKeySignatureAlgorithm. Possible values include: 'RS256', - /// 'RS384', 'RS512', 'RSNULL' + /// JsonWebKeySignatureAlgorithm. Possible values include: 'PS256', + /// 'PS384', 'PS512', 'RS256', 'RS384', 'RS512', 'RSNULL' /// [JsonProperty(PropertyName = "alg")] public string Algorithm { get; set; } diff --git a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/SecretRestoreParameters.cs b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/SecretRestoreParameters.cs index 603613152004..2d04af33a573 100644 --- a/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/SecretRestoreParameters.cs +++ b/src/KeyVault/Microsoft.Azure.KeyVault/Generated/Models/SecretRestoreParameters.cs @@ -1,4 +1,4 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. +// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. // @@ -23,14 +23,14 @@ public partial class SecretRestoreParameters /// /// Initializes a new instance of the SecretRestoreParameters class. /// - public SecretRestoreParameters( ) { } + public SecretRestoreParameters() { } /// /// Initializes a new instance of the SecretRestoreParameters class. /// /// The backup blob associated with a /// secret bundle. - public SecretRestoreParameters( byte[ ] secretBundleBackup ) + public SecretRestoreParameters(byte[] secretBundleBackup) { SecretBundleBackup = secretBundleBackup; } @@ -38,9 +38,9 @@ public SecretRestoreParameters( byte[ ] secretBundleBackup ) /// /// Gets or sets the backup blob associated with a secret bundle. /// - [JsonConverter( typeof( Base64UrlJsonConverter ) )] - [JsonProperty( PropertyName = "value" )] - public byte[ ] SecretBundleBackup { get; set; } + [JsonConverter(typeof(Base64UrlJsonConverter))] + [JsonProperty(PropertyName = "value")] + public byte[] SecretBundleBackup { get; set; } /// /// Validate the object.